__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
�

*�_ij"����SrSSKJrJrJr SSKJr SSKr/SQr	"SS\RR5r"SS	\RR5r
"S
S\
5r"SS
\
5rSSjrg)a�
Manage shelves of pickled objects.

A "shelf" is a persistent, dictionary-like object.  The difference
with dbm databases is that the values (not the keys!) in a shelf can
be essentially arbitrary Python objects -- anything that the "pickle"
module can handle.  This includes most class instances, recursive data
types, and objects containing lots of shared sub-objects.  The keys
are ordinary strings.

To summarize the interface (key is a string, data is an arbitrary
object):

        import shelve
        d = shelve.open(filename) # open, with (g)dbm filename -- no suffix

        d[key] = data   # store data at key (overwrites old data if
                        # using an existing key)
        data = d[key]   # retrieve a COPY of the data at key (raise
                        # KeyError if no such key) -- NOTE that this
                        # access returns a *copy* of the entry!
        del d[key]      # delete data stored at key (raises KeyError
                        # if no such key)
        flag = key in d # true if the key exists
        list = d.keys() # a list of all existing keys (slow!)

        d.close()       # close it

Dependent on the implementation, closing a persistent dictionary may
or may not be necessary to flush changes to disk.

Normally, d[key] returns a COPY of the entry.  This needs care when
mutable entries are mutated: for example, if d[key] is a list,
        d[key].append(anitem)
does NOT modify the entry d[key] itself, as stored in the persistent
mapping -- it only modifies the copy, which is then immediately
discarded, so that the append has NO effect whatsoever.  To append an
item to d[key] in a way that will affect the persistent mapping, use:
        data = d[key]
        data.append(anitem)
        d[key] = data

To avoid the problem with mutable entries, you may pass the keyword
argument writeback=True in the call to shelve.open.  When you use:
        d = shelve.open(filename, writeback=True)
then d keeps a cache of all entries you access, and writes them all back
to the persistent mapping when you call d.close().  This ensures that
such usage as d[key].append(anitem) works as intended.

However, using keyword argument writeback=True may consume vast amount
of memory for the cache, and it may make d.close() very slow, if you
access many of d's entries after opening it in this way: d has no way to
check which of the entries you access are mutable and/or which ones you
actually mutate, so it must cache, and write back at close, all of the
entries that you access.  You can call d.sync() to write back all the
entries in the cache, and empty the cache (d.sync() also synchronizes
the persistent dictionary on disk, if feasible).
�)�DEFAULT_PROTOCOL�Pickler�	Unpickler)�BytesION)�Shelf�
BsdDbShelf�DbfilenameShelf�openc�<�\rSrSrSrSr\=r=r=r=r	=r
rSrSr
g)�_ClosedDict�Bz>Marker for a closed dict.  Access attempts raise a ValueError.c��[S5e)Nz!invalid operation on closed shelf)�
ValueError)�self�argss  �/usr/lib/python3.13/shelve.py�closed�_ClosedDict.closedEs���<�=�=�c��g)Nz<Closed Dictionary>��rs r�__repr__�_ClosedDict.__repr__Is��$rrN)�__name__�
__module__�__qualname__�__firstlineno__�__doc__r�__iter__�__len__�__getitem__�__setitem__�__delitem__�keysr�__static_attributes__rrrrrBs-��D�>�JP�P�H�P�w�P��P�{�P�[�4�%rrc�r�\rSrSrSrSSjrSrSrSrSSjr	S	r
S
rSrSr
S
rSrSrSrSrg)r�Mz�Base class for shelf implementations.

This is initialized with a dictionary-like object.
See the module's __doc__ string for an overview of the interface.
Nc�T�XlUc[nX lX0l0UlX@lg�N)�dictr�	_protocol�	writeback�cache�keyencoding�rr+�protocolr-r/s     r�__init__�Shelf.__init__Ts)���	���'�H�!��"����
�&�rc#�# �URR5H nURUR5v� M" g7fr*)r+r%�decoder/)r�ks  rr �Shelf.__iter__^s/��������!�A��(�(�4�+�+�,�,�"�s�AAc�,�[UR5$r*)�lenr+rs rr!�
Shelf.__len__bs���4�9�9�~�rc�R�URUR5UR;$r*��encoder/r+�r�keys  r�__contains__�Shelf.__contains__es ���z�z�$�*�*�+�t�y�y�8�8rc�`�URUR5UR;aX$U$r*r<)rr?�defaults   r�get�	Shelf.geths*���:�:�d�&�&�'�4�9�9�4��9���rc��URUnU$![am [URUR	UR
55n[
U5R5nUR(aX RU'U$f=fr*)	r.�KeyErrorrr+r=r/r�loadr-�rr?�value�fs    rr"�Shelf.__getitem__msx��	(��J�J�s�O�E�����	(���	�	�#�*�*�T�-=�-=�">�?�@�A��a�L�%�%�'�E��~�~�"'�
�
�3�����	(�s��A3B
�	B
c��UR(aX RU'[5n[X0R5nURU5 UR
5URURUR5'gr*)
r-r.rrr,�dump�getvaluer+r=r/)rr?rJrK�ps     rr#�Shelf.__setitem__wsW���>�>�#�J�J�s�O��I���A�~�~�&��	���u�
�23�*�*�,��	�	�#�*�*�T�-�-�.�/rc��URURUR5	URU	g![a gf=fr*)r+r=r/r.rGr>s  rr$�Shelf.__delitem__s?���I�I�c�j�j��!1�!1�2�3�	��
�
�3����	��	�s�
6�
A�Ac��U$r*rrs r�	__enter__�Shelf.__enter__�s���rc�$�UR5 gr*)�close)r�typerJ�	tracebacks    r�__exit__�Shelf.__exit__�s���
�
�rc��URcgUR5 URR5 [	5Ulg![a Nf=f! SUlg=f![	5Ulf! SUlf=f=fr*)r+�syncrX�AttributeErrorrrs rrX�Shelf.close�s{���9�9���	!��I�I�K�
��	�	���!�
!�'�M��	��
"�
��
��
!� ��	��
!�'�M��	��
!� ��	�sK�A*�A�A�
A�A*�A�A*�	A'�*B
�,A<�;B
�<	B�B
c�H�[US5(dgUR5 g)Nr-)�hasattrrXrs r�__del__�
Shelf.__del__�s���t�[�)�)�
��
�
�rc�,�UR(aMUR(a<SUlURR5H	upX U'M SUl0Ul[URS5(aURR5 gg)NFTr^)r-r.�itemsrbr+r^)rr?�entrys   rr^�
Shelf.sync�sh���>�>�d�j�j�"�D�N�"�j�j�.�.�0�
��!�S�	�1�!�D�N��D�J��4�9�9�f�%�%��I�I�N�N��&r)r,r.r+r/r-�NFzutf-8r*)rrrrrr2r r!r@rDr"r#r$rUr[rXrcr^r&rrrrrMsP���7<�$�'�-��9��
�?����!�"�rrc�D�\rSrSrSrSSjrSrSrSrSr	S	r
S
rg)r�a�Shelf implementation using the "BSD" db interface.

This adds methods first(), next(), previous(), last() and
set_location() that have no counterpart in [g]dbm databases.

The actual database must be opened using one of the "bsddb"
modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
bsddb.rnopen) and passed to the constructor.

See the module's __doc__ string for an overview of the interface.
Nc�2�[RXX#U5 gr*)rr2r0s     rr2�BsdDbShelf.__init__�s��
���t�8��Drc��URRU5up[U5nURUR5[U5R
54$r*)r+�set_locationrr5r/rrHrIs    rro�BsdDbShelf.set_location�sH���y�y�-�-�c�2����E�N���
�
�4�+�+�,�i��l�.?�.?�.A�B�Brc��[UR5up[U5nURUR5[U5R
54$r*)�nextr+rr5r/rrHrIs    rrr�BsdDbShelf.next�sA���D�I�I�����E�N���
�
�4�+�+�,�i��l�.?�.?�.A�B�Brc��URR5up[U5nURUR5[U5R
54$r*)r+�previousrr5r/rrHrIs    rru�BsdDbShelf.previous�sF���y�y�)�)�+����E�N���
�
�4�+�+�,�i��l�.?�.?�.A�B�Brc��URR5up[U5nURUR5[U5R
54$r*)r+�firstrr5r/rrHrIs    rrx�BsdDbShelf.first�sD���y�y���(����E�N���
�
�4�+�+�,�i��l�.?�.?�.A�B�Brc��URR5up[U5nURUR5[U5R
54$r*)r+�lastrr5r/rrHrIs    rr{�BsdDbShelf.last�sD���y�y�~�~�'����E�N���
�
�4�+�+�,�i��l�.?�.?�.A�B�Brrri)rrrrrr2rorrrurxr{r&rrrrr�s3��
�7<�$�E�C�
C�
C�
C�
Crrc�(�\rSrSrSrSSjrSrSrg)r	��z�Shelf implementation using the "dbm" generic dbm interface.

This is initialized with the filename for the dbm database.
See the module's __doc__ string for an overview of the interface.
Nc�V�SSKn[RXRX5X45 g)Nr)�dbmrr2r
)r�filename�flagr1r-r�s      rr2�DbfilenameShelf.__init__�s���
���t�X�X�h�5�x�Krc�l�URR5 URR5 g)z Remove all items from the shelf.N)r.�clearr+rs rr��DbfilenameShelf.clear�s"��	
�
�
�����	�	���rr��cNF)rrrrrr2r�r&rrrr	r	�s���L�rr	c��[XX#5$)a�Open a persistent dictionary for reading and writing.

The filename parameter is the base filename for the underlying
database.  As a side-effect, an extension may be added to the
filename and more than one file may be created.  The optional flag
parameter has the same interpretation as the flag parameter of
dbm.open(). The optional protocol parameter specifies the
version of the pickle protocol.

See the module's __doc__ string for an overview of the interface.
)r	)r�r�r1r-s    rr
r
�s���8�8�?�?rr�)r�picklerrr�ior�collections.abc�collections�__all__�abc�MutableMappingrrrr	r
rrr�<module>r�sn��8�t8�7���
<��%�+�/�/�0�0�%�_�K�O�O�*�*�_�D(C��(C�V�e��&
@r

Filemanager

Name Type Size Permission Actions
__future__.cpython-313.pyc File 4.61 KB 0644
__hello__.cpython-313.pyc File 966 B 0644
_aix_support.cpython-313.pyc File 4.61 KB 0644
_android_support.cpython-313.pyc File 7.44 KB 0644
_apple_support.cpython-313.pyc File 3.4 KB 0644
_collections_abc.cpython-313.pyc File 45.6 KB 0644
_colorize.cpython-313.pyc File 3.92 KB 0644
_compat_pickle.cpython-313.pyc File 7.02 KB 0644
_compression.cpython-313.pyc File 7.62 KB 0644
_distutils_system_mod.cpython-313.pyc File 7.89 KB 0644
_ios_support.cpython-313.pyc File 2.65 KB 0644
_markupbase.cpython-313.pyc File 12.14 KB 0644
_opcode_metadata.cpython-313.pyc File 10.43 KB 0644
_osx_support.cpython-313.pyc File 17.7 KB 0644
_py_abc.cpython-313.pyc File 7.02 KB 0644
_pydatetime.cpython-313.pyc File 92.36 KB 0644
_pydecimal.cpython-313.pyc File 211.95 KB 0644
_pyio.cpython-313.pyc File 108.59 KB 0644
_pylong.cpython-313.pyc File 10.9 KB 0644
_sitebuiltins.cpython-313.pyc File 4.79 KB 0644
_strptime.cpython-313.pyc File 28.04 KB 0644
_sysconfigdata__linux_x86_64-linux-gnu.cpython-313.pyc File 60.07 KB 0644
_sysconfigdata__x86_64-linux-gnu.cpython-313.pyc File 60.06 KB 0644
_threading_local.cpython-313.pyc File 8.19 KB 0644
_weakrefset.cpython-313.pyc File 11.77 KB 0644
abc.cpython-313.pyc File 7.73 KB 0644
antigravity.cpython-313.pyc File 985 B 0644
argparse.cpython-313.pyc File 102.11 KB 0644
ast.cpython-313.pyc File 100.56 KB 0644
base64.cpython-313.pyc File 25.21 KB 0644
bdb.cpython-313.pyc File 39.61 KB 0644
bisect.cpython-313.pyc File 3.42 KB 0644
bz2.cpython-313.pyc File 14.81 KB 0644
cProfile.cpython-313.pyc File 8.46 KB 0644
calendar.cpython-313.pyc File 38.76 KB 0644
cmd.cpython-313.pyc File 18.52 KB 0644
code.cpython-313.pyc File 15.41 KB 0644
codecs.cpython-313.pyc File 39.59 KB 0644
codeop.cpython-313.pyc File 6.48 KB 0644
colorsys.cpython-313.pyc File 4.4 KB 0644
compileall.cpython-313.pyc File 20.22 KB 0644
configparser.cpython-313.pyc File 67.32 KB 0644
contextlib.cpython-313.pyc File 29.78 KB 0644
contextvars.cpython-313.pyc File 261 B 0644
copy.cpython-313.pyc File 10.38 KB 0644
copyreg.cpython-313.pyc File 7.36 KB 0644
csv.cpython-313.pyc File 20.21 KB 0644
dataclasses.cpython-313.pyc File 46.7 KB 0644
datetime.cpython-313.pyc File 411 B 0644
decimal.cpython-313.pyc File 2.93 KB 0644
difflib.cpython-313.pyc File 70.35 KB 0644
dis.cpython-313.pyc File 46.4 KB 0644
doctest.cpython-313.pyc File 105.01 KB 0644
enum.cpython-313.pyc File 83.7 KB 0644
filecmp.cpython-313.pyc File 14.67 KB 0644
fileinput.cpython-313.pyc File 20.15 KB 0644
fnmatch.cpython-313.pyc File 6.64 KB 0644
fractions.cpython-313.pyc File 37.42 KB 0644
ftplib.cpython-313.pyc File 41.34 KB 0644
functools.cpython-313.pyc File 41.26 KB 0644
genericpath.cpython-313.pyc File 7.63 KB 0644
getopt.cpython-313.pyc File 8.27 KB 0644
getpass.cpython-313.pyc File 7.14 KB 0644
gettext.cpython-313.pyc File 22.35 KB 0644
glob.cpython-313.pyc File 23.11 KB 0644
graphlib.cpython-313.pyc File 9.96 KB 0644
gzip.cpython-313.pyc File 31.23 KB 0644
hashlib.cpython-313.pyc File 7.99 KB 0644
heapq.cpython-313.pyc File 17.35 KB 0644
hmac.cpython-313.pyc File 10.41 KB 0644
imaplib.cpython-313.pyc File 61.18 KB 0644
inspect.cpython-313.pyc File 132.7 KB 0644
io.cpython-313.pyc File 4.17 KB 0644
ipaddress.cpython-313.pyc File 89.47 KB 0644
keyword.cpython-313.pyc File 1.02 KB 0644
linecache.cpython-313.pyc File 8.35 KB 0644
locale.cpython-313.pyc File 57.63 KB 0644
lzma.cpython-313.pyc File 15.35 KB 0644
mailbox.cpython-313.pyc File 115.95 KB 0644
mimetypes.cpython-313.pyc File 24.31 KB 0644
modulefinder.cpython-313.pyc File 27.73 KB 0644
netrc.cpython-313.pyc File 8.93 KB 0644
ntpath.cpython-313.pyc File 26.56 KB 0644
nturl2path.cpython-313.pyc File 2.67 KB 0644
numbers.cpython-313.pyc File 13.45 KB 0644
opcode.cpython-313.pyc File 3.97 KB 0644
operator.cpython-313.pyc File 16.96 KB 0644
optparse.cpython-313.pyc File 66 KB 0644
os.cpython-313.pyc File 44.75 KB 0644
pdb.cpython-313.pyc File 103.62 KB 0644
pickle.cpython-313.pyc File 76.57 KB 0644
pickletools.cpython-313.pyc File 78.54 KB 0644
pkgutil.cpython-313.pyc File 19.49 KB 0644
platform.cpython-313.pyc File 43.63 KB 0644
plistlib.cpython-313.pyc File 42.09 KB 0644
poplib.cpython-313.pyc File 17.99 KB 0644
posixpath.cpython-313.pyc File 17.7 KB 0644
pprint.cpython-313.pyc File 29 KB 0644
profile.cpython-313.pyc File 22.03 KB 0644
pstats.cpython-313.pyc File 36.97 KB 0644
pty.cpython-313.pyc File 7.23 KB 0644
py_compile.cpython-313.pyc File 9.83 KB 0644
pyclbr.cpython-313.pyc File 14.79 KB 0644
pydoc.cpython-313.pyc File 136.68 KB 0644
queue.cpython-313.pyc File 16.94 KB 0644
quopri.cpython-313.pyc File 9.34 KB 0644
random.cpython-313.pyc File 34.43 KB 0644
reprlib.cpython-313.pyc File 10.18 KB 0644
rlcompleter.cpython-313.pyc File 8.37 KB 0644
runpy.cpython-313.pyc File 14.05 KB 0644
sched.cpython-313.pyc File 7.42 KB 0644
secrets.cpython-313.pyc File 2.45 KB 0644
selectors.cpython-313.pyc File 25.74 KB 0644
shelve.cpython-313.pyc File 12.98 KB 0644
shlex.cpython-313.pyc File 14.5 KB 0644
shutil.cpython-313.pyc File 65.87 KB 0644
signal.cpython-313.pyc File 4.44 KB 0644
site.cpython-313.pyc File 31.86 KB 0644
sitecustomize.cpython-313.pyc File 299 B 0644
smtplib.cpython-313.pyc File 46.25 KB 0644
socket.cpython-313.pyc File 41.23 KB 0644
socketserver.cpython-313.pyc File 33.84 KB 0644
sre_compile.cpython-313.pyc File 627 B 0644
sre_constants.cpython-313.pyc File 630 B 0644
sre_parse.cpython-313.pyc File 623 B 0644
ssl.cpython-313.pyc File 63.68 KB 0644
stat.cpython-313.pyc File 5.39 KB 0644
statistics.cpython-313.pyc File 69.43 KB 0644
string.cpython-313.pyc File 11.38 KB 0644
stringprep.cpython-313.pyc File 24.67 KB 0644
struct.cpython-313.pyc File 325 B 0644
subprocess.cpython-313.pyc File 79.8 KB 0644
symtable.cpython-313.pyc File 22.65 KB 0644
tabnanny.cpython-313.pyc File 12.13 KB 0644
tarfile.cpython-313.pyc File 122.79 KB 0644
tempfile.cpython-313.pyc File 48.68 KB 0644
textwrap.cpython-313.pyc File 17.51 KB 0644
this.cpython-313.pyc File 1.38 KB 0644
threading.cpython-313.pyc File 61.72 KB 0644
timeit.cpython-313.pyc File 14.29 KB 0644
token.cpython-313.pyc File 3.49 KB 0644
tokenize.cpython-313.pyc File 24.84 KB 0644
trace.cpython-313.pyc File 33.17 KB 0644
traceback.cpython-313.pyc File 69.38 KB 0644
tracemalloc.cpython-313.pyc File 26.77 KB 0644
tty.cpython-313.pyc File 2.6 KB 0644
turtle.cpython-313.pyc File 171.21 KB 0644
types.cpython-313.pyc File 15.18 KB 0644
typing.cpython-313.pyc File 150.96 KB 0644
uuid.cpython-313.pyc File 31.4 KB 0644
warnings.cpython-313.pyc File 28.85 KB 0644
wave.cpython-313.pyc File 32.44 KB 0644
weakref.cpython-313.pyc File 31.06 KB 0644
webbrowser.cpython-313.pyc File 26.26 KB 0644
zipapp.cpython-313.pyc File 10.15 KB 0644
zipimport.cpython-313.pyc File 25.89 KB 0644
Filemanager