https://github.com/aryannn053/todo
a simple and easy to use todo app built with flask
https://github.com/aryannn053/todo
flask todo
Last synced: 2 months ago
JSON representation
a simple and easy to use todo app built with flask
- Host: GitHub
- URL: https://github.com/aryannn053/todo
- Owner: aryannn053
- Created: 2024-07-22T02:13:10.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-22T02:44:03.000Z (almost 2 years ago)
- Last Synced: 2025-03-22T03:26:44.260Z (over 1 year ago)
- Topics: flask, todo
- Language: HTML
- Homepage: https://todoran.vercel.app
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# To do list in Flask
This is a to do list created using flask, Data Base, HTML, and Jinja. All Modules need to create this project are in the README.md file.
# Modules
# virtualenv
```
pip install virtualenv
```
After insalling this module, type virtualenv env, it will create a folder.
# flask
```
pip install flask
```
This is very important module don't forget to install it.
# flask_sqlalchemy
```
pip install flask_sqlalchemy
```
This module will help us to use database.
# datetime
```
pip install datetime
```
This is already installed but sometime you get errors
So you can install this.
# How to run??
```
python (file_name).py
```
# todo.db Error
If you get an error saying that no file named todo.db, what you need to do is, firstly open terminal
Type python and press enter
After that, type, and one more thing, don't type file_name.py type file_name only
```
>>> from (file_name) import db
>>> db.create_all()
```