Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
piptools /
Delete
Unzip
Name
Size
Permission
Date
Action
_compat
[ DIR ]
drwxr-xr-x
2021-01-02 08:30
repositories
[ DIR ]
drwxr-xr-x
2021-01-02 08:30
scripts
[ DIR ]
drwxr-xr-x
2021-01-02 08:30
__init__.py
379
B
-rw-r--r--
2021-01-02 08:30
__init__.pyc
421
B
-rw-r--r--
2021-01-02 08:30
__main__.py
267
B
-rw-r--r--
2021-01-02 08:30
__main__.pyc
535
B
-rw-r--r--
2021-01-02 08:30
cache.py
5.56
KB
-rw-r--r--
2021-01-02 08:30
cache.pyc
7.53
KB
-rw-r--r--
2021-01-02 08:30
click.py
128
B
-rw-r--r--
2021-01-02 08:30
click.pyc
307
B
-rw-r--r--
2021-01-02 08:30
exceptions.py
2.03
KB
-rw-r--r--
2021-01-02 08:30
exceptions.pyc
3
KB
-rw-r--r--
2021-01-02 08:30
locations.py
776
B
-rw-r--r--
2021-01-02 08:30
locations.pyc
634
B
-rw-r--r--
2021-01-02 08:30
logging.py
1.46
KB
-rw-r--r--
2021-01-02 08:30
logging.pyc
2.74
KB
-rw-r--r--
2021-01-02 08:30
resolver.py
15.79
KB
-rw-r--r--
2021-01-02 08:30
resolver.pyc
13.49
KB
-rw-r--r--
2021-01-02 08:30
sync.py
6.88
KB
-rw-r--r--
2021-01-02 08:30
sync.pyc
6.45
KB
-rw-r--r--
2021-01-02 08:30
utils.py
11.41
KB
-rw-r--r--
2021-01-02 08:30
utils.pyc
12.12
KB
-rw-r--r--
2021-01-02 08:30
writer.py
8.01
KB
-rw-r--r--
2021-01-02 08:30
writer.pyc
7.88
KB
-rw-r--r--
2021-01-02 08:30
Save
Rename
from pip._internal.utils.misc import redact_auth_from_url class PipToolsError(Exception): pass class NoCandidateFound(PipToolsError): def __init__(self, ireq, candidates_tried, finder): self.ireq = ireq self.candidates_tried = candidates_tried self.finder = finder def __str__(self): versions = [] pre_versions = [] for candidate in sorted(self.candidates_tried): version = str(candidate.version) if candidate.version.is_prerelease: pre_versions.append(version) else: versions.append(version) lines = ["Could not find a version that matches {}".format(self.ireq)] if versions: lines.append("Tried: {}".format(", ".join(versions))) if pre_versions: if self.finder.allow_all_prereleases: line = "Tried" else: line = "Skipped" line += " pre-versions: {}".format(", ".join(pre_versions)) lines.append(line) if versions or pre_versions: lines.append( "There are incompatible versions in the resolved dependencies:" ) source_ireqs = getattr(self.ireq, "_source_ireqs", []) lines.extend(" {}".format(ireq) for ireq in source_ireqs) else: redacted_urls = tuple( redact_auth_from_url(url) for url in self.finder.index_urls ) lines.append("No versions found") lines.append( "{} {} reachable?".format( "Were" if len(redacted_urls) > 1 else "Was", " or ".join(redacted_urls), ) ) return "\n".join(lines) class IncompatibleRequirements(PipToolsError): def __init__(self, ireq_a, ireq_b): self.ireq_a = ireq_a self.ireq_b = ireq_b def __str__(self): message = "Incompatible requirements found: {} and {}" return message.format(self.ireq_a, self.ireq_b)