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 /
filechunkio /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
107
B
-rw-r--r--
2016-06-19 12:55
__init__.pyc
323
B
-rw-r--r--
2021-10-02 02:45
filechunkio.py
2.25
KB
-rw-r--r--
2016-06-19 12:36
filechunkio.pyc
3.17
KB
-rw-r--r--
2021-10-02 02:45
tests.py
3.36
KB
-rw-r--r--
2016-06-19 12:36
tests.pyc
5.88
KB
-rw-r--r--
2021-10-02 02:45
Save
Rename
import io import os SEEK_SET = getattr(io, 'SEEK_SET', 0) SEEK_CUR = getattr(io, 'SEEK_CUR', 1) SEEK_END = getattr(io, 'SEEK_END', 2) class FileChunkIO(io.FileIO): """ A class that allows you reading only a chunk of a file. """ def __init__(self, name, mode='r', closefd=True, offset=0, bytes=None, *args, **kwargs): """ Open a file chunk. The mode can only be 'r' for reading. Offset is the amount of bytes that the chunks starts after the real file's first byte. Bytes defines the amount of bytes the chunk has, which you can set to None to include the last byte of the real file. """ if not mode.startswith('r'): raise ValueError("Mode string must begin with 'r'") self.offset = offset self.bytes = bytes if bytes is None: self.bytes = os.stat(name).st_size - self.offset super(FileChunkIO, self).__init__(name, mode, closefd, *args, **kwargs) self.seek(0) def seek(self, offset, whence=SEEK_SET): """ Move to a new chunk position. """ if whence == SEEK_SET: super(FileChunkIO, self).seek(self.offset + offset) elif whence == SEEK_CUR: self.seek(self.tell() + offset) elif whence == SEEK_END: self.seek(self.bytes + offset) def tell(self): """ Current file position. """ return super(FileChunkIO, self).tell() - self.offset def read(self, n=-1): """ Read and return at most n bytes. """ if n >= 0: max_n = self.bytes - self.tell() n = min([n, max_n]) return super(FileChunkIO, self).read(n) else: return self.readall() def readall(self): """ Read all data from the chunk. """ return self.read(self.bytes - self.tell()) def readinto(self, b): """ Same as RawIOBase.readinto(). """ data = self.read(len(b)) n = len(data) try: b[:n] = data except TypeError as err: import array if not isinstance(b, array.array): raise err b[:n] = array.array(b'b', data) return n