https://github.com/lestherll/url-shortener
URL Shortener in FastAPI
https://github.com/lestherll/url-shortener
Last synced: about 2 months ago
JSON representation
URL Shortener in FastAPI
- Host: GitHub
- URL: https://github.com/lestherll/url-shortener
- Owner: lestherll
- Created: 2023-11-15T15:18:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-03T01:45:01.000Z (over 2 years ago)
- Last Synced: 2025-03-06T04:13:31.035Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Liit
[](https://github.com/lestherll/url-shortener/actions/workflows/python-app.yml)
Liit (pronounced Li-it, Filipino word for little) is a minimal URL Shortener API written in Python using FastAPI.
# Design
| | |
|---------------|------------|
| **Server** | FastAPI |
| **Cache** | memcached |
| **Database** | PostgreSQL |
# Running the application
This project has been developed with `poetry` in mind, and thus should be more convenient to use with `poetry`.
Running the project is as simple as:
```
poetry run uvicorn url_shortener.main:app
```
# Running tests
```
python -m pytest
```