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.
- Host: GitHub
- URL: https://github.com/pjones/playground.py
- Owner: pjones
- Created: 2020-12-20T00:24:27.000Z (over 4 years ago)
- Default Branch: trunk
- Last Pushed: 2020-12-22T19:13:50.000Z (over 4 years ago)
- Last Synced: 2024-12-27T04:08:37.863Z (5 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.