OXIESEC PANEL
- Current Dir:
/
/
home
/
accsadminuser
/
venv
/
lib
/
python3.6
/
site-packages
/
setuptools
/
_vendor
/
packaging
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/19/2021 03:34:42 PM
rwxr-xr-x
📄
__about__.py
720 bytes
09/19/2021 03:34:42 PM
rw-r--r--
📄
__init__.py
513 bytes
09/19/2021 03:34:42 PM
rw-r--r--
📁
__pycache__
-
09/19/2021 03:34:42 PM
rwxr-xr-x
📄
_compat.py
860 bytes
09/19/2021 03:34:42 PM
rw-r--r--
📄
_structures.py
1.38 KB
09/19/2021 03:34:42 PM
rw-r--r--
📄
markers.py
8.05 KB
09/19/2021 03:34:42 PM
rw-r--r--
📄
requirements.py
4.24 KB
09/19/2021 03:34:42 PM
rw-r--r--
📄
specifiers.py
27.37 KB
09/19/2021 03:34:42 PM
rw-r--r--
📄
utils.py
421 bytes
09/19/2021 03:34:42 PM
rw-r--r--
📄
version.py
11.29 KB
09/19/2021 03:34:42 PM
rw-r--r--
Editing: utils.py
Close
# This file is dual licensed under the terms of the Apache License, Version # 2.0, and the BSD License. See the LICENSE file in the root of this repository # for complete details. from __future__ import absolute_import, division, print_function import re _canonicalize_regex = re.compile(r"[-_.]+") def canonicalize_name(name): # This is taken from PEP 503. return _canonicalize_regex.sub("-", name).lower()