OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
virtualenv
/
util
/
path
/
_pathlib
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/16/2023 11:25:58 AM
rwxr-xr-x
📄
__init__.py
340 bytes
01/02/2022 03:54:28 PM
rw-r--r--
📁
__pycache__
-
03/16/2023 11:25:58 AM
rwxr-xr-x
📄
via_os_path.py
3.68 KB
01/02/2022 03:54:28 PM
rw-r--r--
Editing: __init__.py
Close
from __future__ import absolute_import, unicode_literals import sys import six if six.PY3: from pathlib import Path else: if sys.platform == "win32": # workaround for https://github.com/mcmtroffaes/pathlib2/issues/56 from .via_os_path import Path else: from pathlib2 import Path __all__ = ("Path",)