blob: 14945ee073c86059b99607abb97f3089bee76bf8 [file] [log] [blame]
import requests
print("Example of calling NexRes endpoint from Python")
url = "http://localhost:8000/v1/transactions"
response = requests.get(url)
print(response)
print(response.content)