Metadata-Version: 2.1
Name: vastsite
Version: 1.7.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
License-File: LICENSE

# VastSite

VastSite 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 Vast Site using pip:

```bash
pip install vastsite
```

## Usage

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

```python
from vastsite 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)
```

Please note that if `import vastsite` does not work, try `import VastSite`.

## License

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


