Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.138
676 Domain
5.6.40
omxrelocation
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python-pycurl-7.19.0 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
test.py
1.91
KB
-rw-r--r--
test_cb.py
693
B
-rw-r--r--
test_debug.py
340
B
-rw-r--r--
test_ftp.py
289
B
-rw-r--r--
test_getinfo.py
1.39
KB
-rw-r--r--
test_gtk.py
2.67
KB
-rw-r--r--
test_internals.py
5.48
KB
-rw-r--r--
test_memleak.py
1.1
KB
-rw-r--r--
test_multi.py
676
B
-rw-r--r--
test_multi2.py
1.71
KB
-rw-r--r--
test_multi3.py
2.02
KB
-rw-r--r--
test_multi4.py
1.37
KB
-rw-r--r--
test_multi5.py
1.44
KB
-rw-r--r--
test_multi6.py
1.5
KB
-rw-r--r--
test_multi_socket.py
1.88
KB
-rw-r--r--
test_multi_socket_select.py
2.39
KB
-rw-r--r--
test_multi_timer.py
1.71
KB
-rw-r--r--
test_multi_vs_thread.py
5.64
KB
-rw-r--r--
test_post.py
589
B
-rw-r--r--
test_post2.py
535
B
-rw-r--r--
test_post3.py
804
B
-rw-r--r--
test_reset.py
2.19
KB
-rw-r--r--
test_share.py
714
B
-rw-r--r--
test_socketopen.py
440
B
-rw-r--r--
test_stringio.py
473
B
-rw-r--r--
test_write_abort.py
663
B
-rw-r--r--
test_xmlrpc.py
744
B
-rw-r--r--
util.py
949
B
-rw-r--r--
util.pyc
1004
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test_gtk.py
#! /usr/bin/env python # -*- coding: iso-8859-1 -*- # vi:ts=4:et # $Id: test_gtk.py,v 1.24 2005/03/30 12:05:50 kjetilja Exp $ import sys, threading import pycurl import pygtk pygtk.require('2.0') import gtk # We should ignore SIGPIPE when using pycurl.NOSIGNAL - see # the libcurl tutorial for more info. try: import signal from signal import SIGPIPE, SIG_IGN signal.signal(signal.SIGPIPE, signal.SIG_IGN) except ImportError: pass class ProgressBar: def __init__(self, uri): self.round = 0.0 win = gtk.Window(gtk.WINDOW_TOPLEVEL) win.set_title("PycURL progress") win.show() vbox = gtk.VBox(spacing=5) vbox.set_border_width(10) win.add(vbox) win.set_default_size(200, 20) vbox.show() label = gtk.Label("Downloading %s" % uri) label.set_alignment(0, 0.5) vbox.pack_start(label) label.show() pbar = gtk.ProgressBar() pbar.show() self.pbar = pbar vbox.pack_start(pbar) win.connect("destroy", self.close_app) def progress(self, download_t, download_d, upload_t, upload_d): if download_t == 0: self.round = self.round + 0.1 if self.round >= 1.0: self.round = 0.0 else: self.round = float(download_d) / float(download_t) gtk.threads_enter() self.pbar.set_fraction(self.round) gtk.threads_leave() def mainloop(self): gtk.threads_enter() gtk.main() gtk.threads_leave() def close_app(self, *args): args[0].destroy() gtk.main_quit() class Test(threading.Thread): def __init__(self, url, target_file, progress): threading.Thread.__init__(self) self.target_file = target_file self.progress = progress self.curl = pycurl.Curl() self.curl.setopt(pycurl.URL, url) self.curl.setopt(pycurl.WRITEDATA, self.target_file) self.curl.setopt(pycurl.FOLLOWLOCATION, 1) self.curl.setopt(pycurl.NOPROGRESS, 0) self.curl.setopt(pycurl.PROGRESSFUNCTION, self.progress) self.curl.setopt(pycurl.MAXREDIRS, 5) self.curl.setopt(pycurl.NOSIGNAL, 1) def run(self): self.curl.perform() self.curl.close() self.target_file.close() self.progress(1.0, 1.0, 0, 0) # Check command line args if len(sys.argv) < 3: print "Usage: %s <URL> <filename>" % sys.argv[0] raise SystemExit # Make a progress bar window p = ProgressBar(sys.argv[1]) # Start thread for fetching url Test(sys.argv[1], open(sys.argv[2], 'wb'), p.progress).start() # Enter the GTK mainloop gtk.threads_init() try: p.mainloop() except KeyboardInterrupt: pass
Close