Sign in
apache
/
incubator-resilientdb-python-sdk
/
refs/heads/sdk-df
/
.
/
service
/
pybind_sample
/
endpoint_test.py
blob: 3058bb3ca915f9884bb2a78e7c36b5c7bf815310 [
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
)