Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| import requests | |
| app = FastAPI() | |
| def greet(): | |
| return requests.get("https://ipinfo.io/").json() | |
| from fastapi import FastAPI | |
| import requests | |
| app = FastAPI() | |
| def greet(): | |
| return requests.get("https://ipinfo.io/").json() | |