Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
future /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2018-02-22 00:25
__init__.py
6.68
KB
-rw-r--r--
2014-11-21 12:52
newbytes.py
14.56
KB
-rw-r--r--
2015-07-25 12:34
newdict.py
3.04
KB
-rw-r--r--
2014-11-21 12:52
newint.py
12.92
KB
-rw-r--r--
2015-07-25 12:34
newlist.py
2.23
KB
-rw-r--r--
2014-11-21 12:52
newmemoryview.py
654
B
-rw-r--r--
2014-11-21 12:52
newobject.py
3.65
KB
-rw-r--r--
2014-11-21 12:52
newopen.py
811
B
-rw-r--r--
2014-11-21 12:52
newrange.py
4.92
KB
-rw-r--r--
2015-09-11 09:22
newstr.py
14.83
KB
-rw-r--r--
2014-11-21 12:52
Save
Rename
""" A substitute for the Python 3 open() function. Note that io.open() is more complete but maybe slower. Even so, the completeness may be a better default. TODO: compare these """ _builtin_open = open class newopen(object): """Wrapper providing key part of Python 3 open() interface. From IPython's py3compat.py module. License: BSD. """ def __init__(self, fname, mode="r", encoding="utf-8"): self.f = _builtin_open(fname, mode) self.enc = encoding def write(self, s): return self.f.write(s.encode(self.enc)) def read(self, size=-1): return self.f.read(size).decode(self.enc) def close(self): return self.f.close() def __enter__(self): return self def __exit__(self, etype, value, traceback): self.f.close()