PATH:
opt
/
hc_python
/
share
/
doc
/
pycurl
/
examples
#! /usr/bin/env python # vi:ts=4:et import pycurl class Test: def __init__(self): self.contents = b'' def body_callback(self, buf): self.contents = self.contents + buf import sys sys.stderr.write("Testing %s\n" % pycurl.version) t = Test() c = pycurl.Curl() c.setopt(c.URL, 'https://curl.haxx.se/dev/') c.setopt(c.WRITEFUNCTION, t.body_callback) c.perform() c.close() print(t.contents)
[+]
__pycache__
[-] xmlrpc_curl.py
[edit]
[-] file_upload.py
[edit]
[+]
..
[-] linksys.py
[edit]
[-] opensocketexception.py
[edit]
[-] ws_callback.py
[edit]
[-] ws_echo.py
[edit]
[-] retriever.py
[edit]
[-] sfquery.py
[edit]
[-] basicfirst.py
[edit]
[+]
quickstart
[-] smtp.py
[edit]
[-] retriever-multi.py
[edit]
[-] ssh_keyfunction.py
[edit]
[-] ws_fragmented.py
[edit]
[-] ws_multi.py
[edit]
[-] multi-socket_action-select.py
[edit]