Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
qrcode /
Delete
Unzip
Name
Size
Permission
Date
Action
image
[ DIR ]
drwxr-xr-x
2022-07-26 09:09
__init__.py
489
B
-rw-r--r--
2013-03-11 23:54
__init__.pyc
883
B
-rw-r--r--
2015-03-06 00:13
__init__.pyo
883
B
-rw-r--r--
2015-03-06 00:13
base.py
7.22
KB
-rw-r--r--
2014-05-19 18:49
base.pyc
7.73
KB
-rw-r--r--
2015-03-06 00:13
base.pyo
7.73
KB
-rw-r--r--
2015-03-06 00:13
constants.py
106
B
-rw-r--r--
2012-10-11 16:45
constants.pyc
269
B
-rw-r--r--
2015-03-06 00:13
constants.pyo
269
B
-rw-r--r--
2015-03-06 00:13
exceptions.py
45
B
-rw-r--r--
2012-10-11 16:45
exceptions.pyc
360
B
-rw-r--r--
2015-03-06 00:13
exceptions.pyo
360
B
-rw-r--r--
2015-03-06 00:13
main.py
12.49
KB
-rw-r--r--
2014-06-16 22:27
main.pyc
11.54
KB
-rw-r--r--
2015-03-06 00:13
main.pyo
11.44
KB
-rw-r--r--
2015-03-06 00:13
mecard.py
912
B
-rw-r--r--
2014-05-19 20:25
mecard.pyc
1.09
KB
-rw-r--r--
2015-03-06 00:13
mecard.pyo
1.09
KB
-rw-r--r--
2015-03-06 00:13
speedy.py
110
B
-rw-r--r--
2013-12-02 21:00
speedy.pyc
316
B
-rw-r--r--
2015-03-06 00:13
speedy.pyo
316
B
-rw-r--r--
2015-03-06 00:13
tests.py
3.79
KB
-rw-r--r--
2014-06-16 20:26
tests.pyc
5.68
KB
-rw-r--r--
2015-03-06 00:13
tests.pyo
5.68
KB
-rw-r--r--
2015-03-06 00:13
util.py
14.85
KB
-rw-r--r--
2014-06-16 22:27
util.pyc
16.19
KB
-rw-r--r--
2015-03-06 00:13
util.pyo
16.19
KB
-rw-r--r--
2015-03-06 00:13
Save
Rename
import six # {'code': 'N', 'label': 'Name', 'required': True, 'multipart': [ # 'Last Name', 'First Name']}, PROPERTIES = { 'NICKNAME': {'label': 'Nickname'}, 'BDAY': {'label': 'Birthday', 'date': True}, 'TEL': {'label': 'Phone'}, 'EMAIL': {'label': 'E-mail'}, 'ADR': {'label': 'Address', 'multipart': [ 'PO Box', 'Room Number', 'House Number', 'City', 'Prefecture', 'Zip Code', 'Country']}, 'URL': {'label': 'URL'}, 'MEMO': {'label': 'Note'}, } def build_code(data): notation = [] name = data['N'] if not isinstance(name, six.text_type): name = ','.join(name) notation.append('N', name) for prop in PROPERTIES: value = data.get(prop['code']) if not value: continue if prop['date']: value = value.strftime('%Y%m%d') elif prop['multipart']: value = ','.join(value)