Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.137.184.32
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.6 /
site-packages /
pip /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-06-13 10:36
__init__.py
27.11
KB
-rw-r--r--
2024-04-06 13:40
appdirs.py
8.6
KB
-rw-r--r--
2024-04-06 13:40
build.py
1.28
KB
-rw-r--r--
2024-04-06 13:40
deprecation.py
2.18
KB
-rw-r--r--
2024-04-06 13:40
encoding.py
971
B
-rw-r--r--
2024-04-06 13:40
filesystem.py
899
B
-rw-r--r--
2024-04-06 13:40
glibc.py
2.87
KB
-rw-r--r--
2024-04-06 13:40
hashes.py
2.8
KB
-rw-r--r--
2024-04-06 13:40
logging.py
3.25
KB
-rw-r--r--
2024-04-06 13:40
outdated.py
5.85
KB
-rw-r--r--
2024-04-06 13:40
packaging.py
2.03
KB
-rw-r--r--
2024-04-06 13:40
setuptools_build.py
278
B
-rw-r--r--
2024-04-06 13:40
ui.py
11.33
KB
-rw-r--r--
2024-04-06 13:40
Save
Rename
from __future__ import absolute_import import os.path import tempfile from pip.utils import rmtree class BuildDirectory(object): def __init__(self, name=None, delete=None): # If we were not given an explicit directory, and we were not given an # explicit delete option, then we'll default to deleting. if name is None and delete is None: delete = True if name is None: # We realpath here because some systems have their default tmpdir # symlinked to another directory. This tends to confuse build # scripts, so we canonicalize the path by traversing potential # symlinks here. name = os.path.realpath(tempfile.mkdtemp(prefix="pip-build-")) # If we were not given an explicit directory, and we were not given # an explicit delete option, then we'll default to deleting. if delete is None: delete = True self.name = name self.delete = delete def __repr__(self): return "<{} {!r}>".format(self.__class__.__name__, self.name) def __enter__(self): return self.name def __exit__(self, exc, value, tb): self.cleanup() def cleanup(self): if self.delete: rmtree(self.name)