Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hackersandslackers/flask-wtform-tutorial
📝😎 Tutorial to implement forms in your Flask app.
https://github.com/hackersandslackers/flask-wtform-tutorial
flask flask-application flask-wtf form-validation python tutorial wtforms
Last synced: 4 days ago
JSON representation
📝😎 Tutorial to implement forms in your Flask app.
- Host: GitHub
- URL: https://github.com/hackersandslackers/flask-wtform-tutorial
- Owner: hackersandslackers
- License: mit
- Created: 2019-11-08T08:25:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T21:46:41.000Z (4 months ago)
- Last Synced: 2024-09-18T23:46:29.256Z (4 months ago)
- Topics: flask, flask-application, flask-wtf, form-validation, python, tutorial, wtforms
- Language: Jinja
- Homepage: https://hackersandslackers.com/flask-wtforms-forms/
- Size: 273 KB
- Stars: 138
- Watchers: 7
- Forks: 43
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- jimsghstars - hackersandslackers/flask-wtform-tutorial - 📝😎 Tutorial to implement forms in your Flask app. (Jinja)
README
# Flask-WTF Tutorial
![Python](https://img.shields.io/badge/Python-v3.10-blue.svg?logo=python&longCache=true&logoColor=white&colorB=5e81ac&style=flat-square&colorA=4c566a)
![Flask](https://img.shields.io/badge/Flask-v3.0.0-blue.svg?longCache=true&logo=flask&style=flat-square&logoColor=white&colorB=5e81ac&colorA=4c566a)
![Flask-WTF](https://img.shields.io/badge/Flask--WTF-v1.2.1-blue.svg?longCache=true&logo=flask&style=flat-square&logoColor=white&colorB=5e81ac&colorA=4c566a)
![GitHub Last Commit](https://img.shields.io/github/last-commit/google/skia.svg?style=flat-square&colorA=4c566a&colorB=a3be8c&logo=GitHub)
[![GitHub Issues](https://img.shields.io/github/issues/hackersandslackers/flask-wtform-tutorial.svg?style=flat-square&colorA=4c566a&logo=GitHub&colorB=ebcb8b)](https://github.com/hackersandslackers/flask-wtform-tutorial/issues)
[![GitHub Stars](https://img.shields.io/github/stars/hackersandslackers/flask-wtform-tutorial.svg?style=flat-square&colorA=4c566a&logo=GitHub&colorB=ebcb8b)](https://github.com/hackersandslackers/flask-wtform-tutorial/stargazers)
[![GitHub Forks](https://img.shields.io/github/forks/hackersandslackers/flask-wtform-tutorial.svg?style=flat-square&colorA=4c566a&logo=GitHub&colorB=ebcb8b)](https://github.com/hackersandslackers/flask-wtform-tutorial/network)![Flask-WTF Tutorial](https://github.com/hackersandslackers/flask-wtform-tutorial/blob/master/.github/[email protected]?raw=true)
Handle user input in your Flask app by creating forms with the Flask-WTForm library.
* **Tutorial**: [https://hackersandslackers.com/flask-wtforms-forms/](https://hackersandslackers.com/flask-wtforms-forms/)
* **Demo**: [https://flaskwtf.hackersandslackers.app/](https://flaskwtf.hackersandslackers.app/)## Getting Started
Get set up locally:
### Installation
Get up and running with `make deploy`:
```shell
git clone https://github.com/hackersandslackers/flask-wtform-tutorial.git
cd flask-wtform-tutorial
make deploy
```### Environment Variables
Replace the values in **.env.example** with your values and rename this file to **.env**:
* `SECRET_KEY`: Randomly generated string of characters used to encrypt your app's data.
* `FLASK_DEBUG`: Whether to run Flask in "debug" mode (either `True` or `False`).*Remember never to commit secrets saved in .env files to Github.*
-----
**Hackers and Slackers** tutorials are free of charge. If you found this tutorial helpful, a [small donation](https://www.buymeacoffee.com/hackersslackers) would be greatly appreciated to keep us in business. All proceeds go towards coffee, and all coffee goes towards more content.