https://github.com/andres15alvarez/crypto-exchange
An API for crypto exchange app
https://github.com/andres15alvarez/crypto-exchange
crypto fastapi postgresql python
Last synced: 2 months ago
JSON representation
An API for crypto exchange app
- Host: GitHub
- URL: https://github.com/andres15alvarez/crypto-exchange
- Owner: andres15alvarez
- License: mit
- Created: 2022-06-22T14:37:05.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-02T19:31:44.000Z (almost 3 years ago)
- Last Synced: 2025-01-17T13:30:05.924Z (4 months ago)
- Topics: crypto, fastapi, postgresql, python
- Language: Python
- Homepage:
- Size: 74.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crypto Exchange API
### This API was developed to be used as a cryptocurrency exchange
### You can get the exchange rate of two currencies and buy cryptocurrencies with a debit/credit card
Note: This API is only for educational purpose, not real money is being traded.## Setup
### This API was developed with the followin stack:
* FastAPI
* PonyORM
* PostgreSQL
```
virtualenv venv
source venv/bin/activate
python -m scripts.migrator
uvicorn main:app --reload
```