web3-starter-py/web2-projects/fastapi-location-app/README.md
osiris account 314bdf533e 💾
2023-03-12 15:32:23 -07:00

36 lines
326 B
Markdown

# Location API 🗺
Location API built with FastAPI.
<br>
## Endpoint /location
Input data:
```
{"city": "berlin"}
```
Response:
```
{"lat":52.5186925,"lon":13.3996024,"tzone":1}
```
### Installing
```
virtualenv -p python3.9 venv
source venv/bin/activate
pipenv install
```
### Running
```
python3 main.py
```