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

https://github.com/pjones/playground.py

This repository is my playground while learning Python.
https://github.com/pjones/playground.py

Last synced: 4 months ago
JSON representation

This repository is my playground while learning Python.

Awesome Lists containing this project

README

        

# Python Playground

This repository is my playground while learning Python.

## Components

* [SQLAlchemy](https://docs.sqlalchemy.org/en/13/index.html)

- [Column Types](https://docs.sqlalchemy.org/en/13/core/type_basics.html#generic-types)

* [Flask](https://flask.palletsprojects.com/en/1.1.x/)

Simple and small web application framework.

- [Minimal Example](https://flask.palletsprojects.com/en/1.1.x/quickstart/#a-minimal-application)

- [SQLAlchemy in Flask](https://flask.palletsprojects.com/en/1.1.x/patterns/sqlalchemy/)

## Other Reference Material

* [How to Structure Python Programs](https://docs.python-guide.org/writing/structure/)

* [The Python Import System](https://docs.python.org/3/reference/import.html)

* [Python Typing Hints](https://docs.python.org/3/library/typing.html)

## Running this Tool

Start the flask server:

```
python -m playground
```

Look at the `API.http` file for examples on how to use the HTTP API
provided by this package.