Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
pyzor /
engines /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
891
B
-rw-r--r--
2014-12-10 14:10
__init__.pyc
1007
B
-rw-r--r--
2017-07-03 22:07
common.py
3.11
KB
-rw-r--r--
2014-12-10 14:10
common.pyc
5.1
KB
-rw-r--r--
2017-07-03 22:07
gdbm_.py
6.46
KB
-rw-r--r--
2014-12-10 14:10
gdbm_.pyc
8.42
KB
-rw-r--r--
2017-07-03 22:07
mysql.py
12.17
KB
-rw-r--r--
2014-12-10 14:10
mysql.pyc
13.24
KB
-rw-r--r--
2017-07-03 22:07
redis_.py
6.09
KB
-rw-r--r--
2014-12-10 14:10
redis_.pyc
8
KB
-rw-r--r--
2017-07-03 22:07
redis_v0.py
4.56
KB
-rw-r--r--
2014-12-10 14:10
redis_v0.pyc
6.49
KB
-rw-r--r--
2017-07-03 22:07
Save
Rename
"""Database backends for pyzord. The database class must expose a dictionary-like interface, allowing access via __getitem__, __setitem__, and __delitem__. The key will be a forty character string, and the value should be an instance of the Record class. If the database backend cannot store the Record objects natively, then it must transparently take care of translating to/from Record objects in __setitem__ and __getitem__. The database class should take care of expiring old values at the appropriate interval. """ from pyzor.engines import gdbm_ from pyzor.engines import mysql from pyzor.engines import redis_ from pyzor.engines import redis_v0 __all__ = ["database_classes"] database_classes = {"gdbm": gdbm_.handle, "mysql": mysql.handle, "redis_v0": redis_v0.handle, "redis": redis_.handle, }