https://github.com/tleonhardt/pypi
Code from working through a flask course
https://github.com/tleonhardt/pypi
Last synced: 9 months ago
JSON representation
Code from working through a flask course
- Host: GitHub
- URL: https://github.com/tleonhardt/pypi
- Owner: tleonhardt
- License: mit
- Created: 2020-02-25T04:50:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-08T16:41:06.000Z (about 6 years ago)
- Last Synced: 2025-07-13T00:44:19.844Z (10 months ago)
- Language: Python
- Size: 3.62 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyPI Flask clone
This is code from following along with the
[Building data-driven web apps with Flask and SQLAlchemy](https://training.talkpython.fm/courses/details/building-data-driven-web-applications-in-python-with-flask-sqlalchemy-and-bootstrap)
course from [Talk Python Training](https://training.talkpython.fm).
Here is the [parent GitHub repo](https://github.com/talkpython/data-driven-web-apps-with-flask) for the course.
# Branches
The `master` branch contains code which uses [SQLAlchemy](https://www.sqlalchemy.org) and
[SQLite](https://www.sqlite.org/index.html) for a traditional relational database backend along with
[Alembic](https://alembic.sqlalchemy.org) for database migrations.
The `mongo-db` branch contains code which uses [MongoEngine](http://mongoengine.org) and
[MongoDB](https://www.mongodb.com) for a NoSQL Document DB approach.