Library for Generating Flask Applications in Rails-like Style
Project description
flask-generator
A Library to generate a Flask app.
Table of Contents
Prerequisites
Before installing, make sure you have the following installed:
- Python 3.x
- pip
Installation
Installing via pip
Install the library using pip
:
pip install flask-app-gen
Manual Installation
If you prefer, you can manually install the library by cloning the repository:
git clone https://github.com/sushmithapopuri/flask-generator.git
cd flask-generator
pip install .
Usage
App Generation
this command helps to generate a skeleton flask app.
scaffold new <app-name>
Installing requirements and the app is ready
cd <app-name>
pip install -r requirements.txt
Resource Generation
Generating a controller, a model and a view made simple
scaffold generate scaffold posts author:string description:text
For generating a controller/ model alone:
scaffold generate model posts author:string description:text
scaffold generate controller posts author:string description:text
scaffold generate view posts author:string description:text
Starting the App
Migrating the DB, SQLITE here using flask-migrate and the app is ready for demo
flask db init
flask db migrate
flask db upgrade
flask run
Features
- Generate a Flask application from scratch
- Create controllers, views with simple commands in rails style
- Web pages neatly aligned
- Cleanup of code using destroy command
Contributing
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch: git checkout -b feature-branch.
- Make your changes.
- Commit your changes: git commit -m 'Add some feature'.
- Push to the branch: git push origin feature-branch.
- Open a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contact
For any questions, issues, or suggestions, please reach out:
Maintainer: Sushmitha Popuri Email: sushmithapopuri@ymail.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flask_gem-1.1.tar.gz
.
File metadata
- Download URL: flask_gem-1.1.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c433aab39745aef96f78b30a452cc50ce3c07a55f0bfc875dc1fb84ed544bb55 |
|
MD5 | f4b2e4d3d25e5d526da40a6c67949258 |
|
BLAKE2b-256 | eea44fe49f71b5179ce7097cb70f28a03b62879b8c4bbc28c365c502aef26b28 |
Provenance
File details
Details for the file flask_gem-1.1-py3-none-any.whl
.
File metadata
- Download URL: flask_gem-1.1-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9a5c956ce30d31c1535f314383fec3f531f4b38ea7101563e1d6f036af3ab37 |
|
MD5 | 2b9c38ec64bbb5596e3b75ee8aefdb27 |
|
BLAKE2b-256 | cee2f1d4343f03ebd90095d5e26cfcd75da9e62fc8fc016a5292bcb519d25db9 |