https://github.com/em-r/HelloFlask
Python CLI to boostrap Flask projects
https://github.com/em-r/HelloFlask
automation flask python
Last synced: 10 months ago
JSON representation
Python CLI to boostrap Flask projects
- Host: GitHub
- URL: https://github.com/em-r/HelloFlask
- Owner: em-r
- License: mit
- Created: 2020-09-12T01:03:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T12:35:56.000Z (about 5 years ago)
- Last Synced: 2024-12-15T19:08:29.783Z (over 1 year ago)
- Topics: automation, flask, python
- Language: Python
- Homepage: https://pypi.org/project/HelloFlask/
- Size: 1.14 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HelloFlask

Python library to automate boostrapping a Flask project.
## Features:
- Sets up a virtual environment
- Installs Flask and python-dotenv by default in the virtual environment
- Installs third party libraries needed by the user asynchronously
- Creates a flask app with boilerplate files
## Requirements:
Python +3.6
## Installation:
pip install helloflask
## Usage
Run the command that suits you:
- For Linux/Max users: helloflask project_name or python3 -m helloflask project_name
- For windows users: python -m helloflask project_name
You'll be then asked to type in the names of needed libraries:
Example: `pytz flask-restful flask-sqlalchemy`
After the packages are installed, instructions on how to use use the app will be displayed.