https://github.com/mgobeaalcoba/flask_python
Creation of to do list program with flask and python
https://github.com/mgobeaalcoba/flask_python
app-engine backend firebase firestore flask nosql-database python3 venv-python
Last synced: 3 months ago
JSON representation
Creation of to do list program with flask and python
- Host: GitHub
- URL: https://github.com/mgobeaalcoba/flask_python
- Owner: Mgobeaalcoba
- License: mit
- Created: 2023-06-05T18:33:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-18T21:31:25.000Z (over 2 years ago)
- Last Synced: 2025-06-15T13:52:36.476Z (6 months ago)
- Topics: app-engine, backend, firebase, firestore, flask, nosql-database, python3, venv-python
- Language: Python
- Homepage: https://mgobea-flask-production.ue.r.appspot.com/auth/login?next=%2Fhello
- Size: 699 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask Python Web Application
This repository contains a Flask web application built using Python. The application is designed to showcase the basic features and functionality of Flask, a lightweight web framework. It serves as a starting point for building your own Flask-based projects.
## Features
- Simple and intuitive Flask application structure
- Basic CRUD operations (Create, Read, Update, Delete)
- Routing and URL handling using Flask routes
- Rendering HTML templates with Jinja2 templating engine
- Form handling and validation with Flask-WTF
- Database integration with Flask-SQLAlchemy
- User authentication and session management
- Bootstrap for responsive and modern UI design
## Requirements
- Python 3.x
- Flask
- Flask-WTF
- Flask-SQLAlchemy
## Getting Started
1. Clone the repository:
```bash
git clone https://github.com/Mgobeaalcoba/flask_python.git
```
2. Change into the project directory:
```bash
cd flask_python
```
3. Install the required dependencies:
```bash
pip install -r requirements.txt
```
4. Set up the database:
```bash
python manage.py create_db
```
5. Run the application:
```bash
flask run
```
6. Open your web browser and visit `http://localhost:5000` to see the application in action.
## Project Structure
The project structure follows the recommended Flask application structure:
- `app`: This directory contains the main Flask application code.
- `static`: Static assets such as CSS, JavaScript, and images.
- `templates`: HTML templates for rendering the views.
- `forms.py`: Flask-WTF forms for handling user input and validation.
- `models.py`: Database models using Flask-SQLAlchemy.
- `routes.py`: Flask routes for handling different URL endpoints.
- `migrations`: Database migration scripts generated by Flask-Migrate.
## Contributing
Contributions to this Flask Python web application are always welcome. Here are a few ways you can help:
- Report bugs and issues
- Suggest new features and enhancements
- Fix bugs and submit pull requests
Please make sure to follow the existing code style and conventions when making contributions.
## License
This project is licensed under the [MIT License](LICENSE).