Skip to content

Instantly share code, notes, and snippets.

@tedsuo
Created November 24, 2020 17:43
Show Gist options
  • Save tedsuo/b781aa12fcaa9098936dcfe5146633fc to your computer and use it in GitHub Desktop.
Save tedsuo/b781aa12fcaa9098936dcfe5146633fc to your computer and use it in GitHub Desktop.
python basic client
import requests
for i in range(5):
r = requests.get("http://localhost:8000/hello")
print(r.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment