Metadata-Version: 2.1
Name: vastsite
Version: 0.1.1
Summary: A simple Python package to simplify Flask web app development.
Home-page: https://github.com/your_username/flask_easy
Author: Mingde Yang
Author-email: yangsilicon9@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: Flask

# Flask Easy

Flask Easy is a simple Python package that simplifies Flask web app development by providing a function to start the server with customizable IP and port.

## Installation

You can install Flask Easy using pip:

```bash
pip install flask_easy
```

## Usage

Import the `start_flask_app` function from `flask_easy` and call it to start a Flask web server with default or custom host and port.

```python
from flask_easy import start_flask_app

# Start Flask app with default host and port
start_flask_app()

# Start Flask app with custom host and port
start_flask_app(host='127.0.0.1', port=8080)
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.


