https://github.com/rollbar/tutorial-sqlalchemy-caching
https://github.com/rollbar/tutorial-sqlalchemy-caching
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rollbar/tutorial-sqlalchemy-caching
- Owner: rollbar
- Created: 2022-12-16T15:47:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-20T12:03:24.000Z (almost 3 years ago)
- Last Synced: 2024-11-17T06:40:47.207Z (over 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 4
- Watchers: 14
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SQLAlchemy Caching Tutorial
A tutorial on caching SQLAlchemy v1.3 ORM queries.
## Setup
1. Create a virtualenv: `$ python -m venv .venv && source .venv/bin/activate`
1. Install the project dependencies: `$ pip install -r requirements.txt`
1. Install the project itself: `$ pip install -e .`
1. Explore the code and run the tests: `$ pytest -v`