whoami7 - Manager
:
/
proc
/
self
/
root
/
opt
/
hc_python
/
share
/
doc
/
pycurl
/
examples
/
quickstart
/
Upload File:
files >> //proc/self/root/opt/hc_python/share/doc/pycurl/examples/quickstart/get_python2.py
#! /usr/bin/env python # -*- coding: utf-8 -*- # vi:ts=4:et import pycurl from StringIO import StringIO buffer = StringIO() c = pycurl.Curl() c.setopt(c.URL, 'http://pycurl.io/') c.setopt(c.WRITEDATA, buffer) # For older PycURL versions: #c.setopt(c.WRITEFUNCTION, buffer.write) c.perform() c.close() body = buffer.getvalue() # Body is a string in some encoding. # In Python 2, we can print it without knowing what the encoding is. print(body)
Copyright ©2021 || Defacer Indonesia