hello-world / app.py
eramth's picture
Create app.py
cc2f080 verified
raw
history blame contribute delete
142 Bytes
from fastapi import FastAPI
import requests
app = FastAPI()
@app.get("/")
def greet():
return requests.get("https://ipinfo.io/").json()