mirror of https://github.com/r4sas/py-i2phosts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
554 B
22 lines
554 B
14 years ago
|
#!/usr/bin/python
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
# django setup
|
||
|
DJANGO_SETTINGS_MODULE = 'settings'
|
||
14 years ago
|
DJANGO_PROJECT_PATH = os.path.dirname(sys.argv[0]) + '/web'
|
||
14 years ago
|
sys.path.insert(1, DJANGO_PROJECT_PATH)
|
||
|
os.environ['DJANGO_SETTINGS_MODULE'] = DJANGO_SETTINGS_MODULE
|
||
|
from web.postkey.models import i2phost
|
||
|
|
||
|
# result hosts.txt
|
||
|
hostsfile = 'hosts.txt'
|
||
|
|
||
|
f = open(hostsfile, 'w')
|
||
|
# select name and hash for all activated hosts
|
||
|
l = i2phost.objects.filter(activated=True).values('name', 'b64hash')
|
||
|
for entry in l:
|
||
|
f.write(entry['name'] + '=' + entry['b64hash'])
|
||
|
f.close()
|