https://github.com/marcosstefani/api_django_postgresql_example
API example using Django and PostgreSQL
https://github.com/marcosstefani/api_django_postgresql_example
Last synced: about 2 months ago
JSON representation
API example using Django and PostgreSQL
- Host: GitHub
- URL: https://github.com/marcosstefani/api_django_postgresql_example
- Owner: marcosstefani
- Created: 2020-03-16T23:50:39.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T18:45:16.000Z (over 3 years ago)
- Last Synced: 2025-02-13T03:25:56.720Z (4 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# api_django_postgresql_example
API example using Django and PostgreSQL## EndPoints:
- POST http://127.0.0.1:8000/users/ >> Add list of Users
- GET http://127.0.0.1:8000/users/birthdays >> Find All Users
- GET http://127.0.0.1:8000/users/birthdays?from=date&to=date >> Find Filtered Users
- GET http://127.0.0.1:8000/users/birthdays/sum >> Return the sum of ages- GET http://127.0.0.1:8000/tools/letter/digit?str=text >> return all possibilities of cases on string
# Compose:
sudo docker-compose up