📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-26 22:16:29
📂
/ (Root)
/
opt
/
hc_python
/
share
/
doc
/
pycurl
/
examples
/
quickstart
📍 /opt/hc_python/share/doc/pycurl/examples/quickstart
🔄 Refresh
✏️
Editing: get.py
Read Only
#! /usr/bin/env python # -*- coding: utf-8 -*- # vi:ts=4:et import pycurl try: from io import BytesIO except ImportError: from StringIO import StringIO as BytesIO buffer = BytesIO() 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 on Python 2 and a byte string on Python 3. # If we know the encoding, we can always decode the body and # end up with a Unicode string. print(body.decode('iso-8859-1'))
💾 Save Changes
❌ Cancel