Sign in
android-kvm
/
buildroot
/
2766f346195dec29b53bc09f6038193998ea3693
/
.
/
support
/
testing
/
tests
/
package
/
sample_python_treq.py
blob: 974fdcd8e19f069d3e946214f89d0d6c8448d326 [
file
] [
log
] [
blame
]
from
twisted
.
internet
import
reactor
import
treq
def
done
(
response
):
print
(
response
.
code
)
reactor
.
stop
()
def
err
(
fail
):
print
(
fail
.
value
)
reactor
.
stop
()
treq
.
get
(
"https://localhost"
).
addCallback
(
done
).
addErrback
(
err
)
reactor
.
run
()