$33 GRAYBYTE WORDPRESS FILE MANAGER $89

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/python27/lib64/python2.7/distutils/

HOME
Current File : /opt/alt/python27/lib64/python2.7/distutils//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

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
14 Aug 2025 9.29 PM
root / 996
0755
command
--
14 Aug 2025 9.24 PM
root / 996
0755
README
0.288 KB
8 Jan 2025 5.43 PM
root / 996
0644
__init__.py
0.23 KB
8 Jan 2025 5.43 PM
root / 996
0644
__init__.pyc
0.418 KB
8 Jan 2025 5.43 PM
root / 996
0644
__init__.pyo
0.418 KB
8 Jan 2025 5.43 PM
root / 996
0644
archive_util.py
8.026 KB
8 Jan 2025 5.43 PM
root / 996
0644
archive_util.pyc
7.524 KB
8 Jan 2025 5.43 PM
root / 996
0644
archive_util.pyo
7.524 KB
8 Jan 2025 5.43 PM
root / 996
0644
bcppcompiler.py
14.591 KB
8 Jan 2025 5.43 PM
root / 996
0644
bcppcompiler.pyc
7.812 KB
8 Jan 2025 5.43 PM
root / 996
0644
bcppcompiler.pyo
7.812 KB
8 Jan 2025 5.43 PM
root / 996
0644
ccompiler.py
45.631 KB
8 Jan 2025 5.43 PM
root / 996
0644
ccompiler.pyc
36.716 KB
8 Jan 2025 5.43 PM
root / 996
0644
ccompiler.pyo
36.578 KB
8 Jan 2025 5.43 PM
root / 996
0644
cmd.py
18.818 KB
8 Jan 2025 5.43 PM
root / 996
0644
cmd.pyc
16.88 KB
8 Jan 2025 5.43 PM
root / 996
0644
cmd.pyo
16.88 KB
8 Jan 2025 5.43 PM
root / 996
0644
config.py
4.037 KB
8 Jan 2025 5.43 PM
root / 996
0644
config.pyc
3.57 KB
8 Jan 2025 5.43 PM
root / 996
0644
config.pyo
3.57 KB
8 Jan 2025 5.43 PM
root / 996
0644
core.py
8.808 KB
8 Jan 2025 5.43 PM
root / 996
0644
core.pyc
7.41 KB
8 Jan 2025 5.43 PM
root / 996
0644
core.pyo
7.41 KB
8 Jan 2025 5.43 PM
root / 996
0644
cygwinccompiler.py
17.319 KB
8 Jan 2025 5.43 PM
root / 996
0644
cygwinccompiler.pyc
9.747 KB
8 Jan 2025 5.43 PM
root / 996
0644
cygwinccompiler.pyo
9.747 KB
8 Jan 2025 5.43 PM
root / 996
0644
debug.py
0.158 KB
8 Jan 2025 5.43 PM
root / 996
0644
debug.pyc
0.261 KB
8 Jan 2025 5.43 PM
root / 996
0644
debug.pyo
0.261 KB
8 Jan 2025 5.43 PM
root / 996
0644
dep_util.py
3.427 KB
8 Jan 2025 5.43 PM
root / 996
0644
dep_util.pyc
3.156 KB
8 Jan 2025 5.43 PM
root / 996
0644
dep_util.pyo
3.156 KB
8 Jan 2025 5.43 PM
root / 996
0644
dir_util.py
7.684 KB
8 Jan 2025 5.43 PM
root / 996
0644
dir_util.pyc
6.716 KB
8 Jan 2025 5.43 PM
root / 996
0644
dir_util.pyo
6.716 KB
8 Jan 2025 5.43 PM
root / 996
0644
dist.py
48.876 KB
8 Jan 2025 5.43 PM
root / 996
0644
dist.pyc
39.108 KB
8 Jan 2025 5.43 PM
root / 996
0644
dist.pyo
39.108 KB
8 Jan 2025 5.43 PM
root / 996
0644
emxccompiler.py
11.651 KB
8 Jan 2025 5.43 PM
root / 996
0644
emxccompiler.pyc
7.406 KB
8 Jan 2025 5.43 PM
root / 996
0644
emxccompiler.pyo
7.406 KB
8 Jan 2025 5.43 PM
root / 996
0644
errors.py
3.412 KB
8 Jan 2025 5.43 PM
root / 996
0644
errors.pyc
6.392 KB
8 Jan 2025 5.43 PM
root / 996
0644
errors.pyo
6.392 KB
8 Jan 2025 5.43 PM
root / 996
0644
extension.py
10.648 KB
8 Jan 2025 5.43 PM
root / 996
0644
extension.pyc
7.289 KB
8 Jan 2025 5.43 PM
root / 996
0644
extension.pyo
7.068 KB
8 Jan 2025 5.43 PM
root / 996
0644
fancy_getopt.py
17.527 KB
8 Jan 2025 5.43 PM
root / 996
0644
fancy_getopt.pyc
11.944 KB
8 Jan 2025 5.43 PM
root / 996
0644
fancy_getopt.pyo
11.771 KB
8 Jan 2025 5.43 PM
root / 996
0644
file_util.py
7.94 KB
8 Jan 2025 5.43 PM
root / 996
0644
file_util.pyc
6.655 KB
8 Jan 2025 5.43 PM
root / 996
0644
file_util.pyo
6.655 KB
8 Jan 2025 5.43 PM
root / 996
0644
filelist.py
12.392 KB
8 Jan 2025 5.43 PM
root / 996
0644
filelist.pyc
10.72 KB
8 Jan 2025 5.43 PM
root / 996
0644
filelist.pyo
10.72 KB
8 Jan 2025 5.43 PM
root / 996
0644
log.py
1.646 KB
8 Jan 2025 5.43 PM
root / 996
0644
log.pyc
2.873 KB
8 Jan 2025 5.43 PM
root / 996
0644
log.pyo
2.873 KB
8 Jan 2025 5.43 PM
root / 996
0644
msvc9compiler.py
30.277 KB
8 Jan 2025 5.43 PM
root / 996
0644
msvc9compiler.pyc
21.387 KB
8 Jan 2025 5.43 PM
root / 996
0644
msvc9compiler.pyo
21.315 KB
8 Jan 2025 5.43 PM
root / 996
0644
msvccompiler.py
23.083 KB
8 Jan 2025 5.43 PM
root / 996
0644
msvccompiler.pyc
17.444 KB
8 Jan 2025 5.43 PM
root / 996
0644
msvccompiler.pyo
17.444 KB
8 Jan 2025 5.43 PM
root / 996
0644
spawn.py
8.445 KB
8 Jan 2025 5.43 PM
root / 996
0644
spawn.pyc
6.365 KB
8 Jan 2025 5.43 PM
root / 996
0644
spawn.pyo
6.365 KB
8 Jan 2025 5.43 PM
root / 996
0644
sysconfig.py
17.292 KB
8 Jan 2025 5.43 PM
root / 996
0644
sysconfig.py.debug-build
17.209 KB
8 Jan 2025 5.43 PM
root / 996
0644
sysconfig.pyc
13.29 KB
8 Jan 2025 5.43 PM
root / 996
0644
sysconfig.pyo
13.29 KB
8 Jan 2025 5.43 PM
root / 996
0644
text_file.py
12.137 KB
8 Jan 2025 5.43 PM
root / 996
0644
text_file.pyc
9.182 KB
8 Jan 2025 5.43 PM
root / 996
0644
text_file.pyo
9.182 KB
8 Jan 2025 5.43 PM
root / 996
0644
unixccompiler.py
13.889 KB
8 Jan 2025 5.43 PM
root / 996
0644
unixccompiler.py.distutils-rpath
13.356 KB
8 Jan 2025 5.43 PM
root / 996
0644
unixccompiler.pyc
8.188 KB
8 Jan 2025 5.43 PM
root / 996
0644
unixccompiler.pyo
8.188 KB
8 Jan 2025 5.43 PM
root / 996
0644
util.py
17.809 KB
8 Jan 2025 5.43 PM
root / 996
0644
util.pyc
14.227 KB
8 Jan 2025 5.43 PM
root / 996
0644
util.pyo
14.227 KB
8 Jan 2025 5.43 PM
root / 996
0644
version.py
11.165 KB
8 Jan 2025 5.43 PM
root / 996
0644
version.pyc
7.229 KB
8 Jan 2025 5.43 PM
root / 996
0644
version.pyo
7.229 KB
8 Jan 2025 5.43 PM
root / 996
0644
versionpredicate.py
4.976 KB
8 Jan 2025 5.43 PM
root / 996
0644
versionpredicate.pyc
5.501 KB
8 Jan 2025 5.43 PM
root / 996
0644
versionpredicate.pyo
5.501 KB
8 Jan 2025 5.43 PM
root / 996
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF