An open API service indexing awesome lists of open source software.

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

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.