Skip to content

Instantly share code, notes, and snippets.

@rockink
Created October 2, 2021 14:40
Show Gist options
  • Save rockink/108f3171d2d56368594fb54373aa3642 to your computer and use it in GitHub Desktop.
Save rockink/108f3171d2d56368594fb54373aa3642 to your computer and use it in GitHub Desktop.
import requests
def make_call(page: int):
API_SERVER = f"https://jsonplaceholder.typicode.com/posts/{page}"
return requests.get(API_SERVER).json()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment