mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 11:12:47 +01:00
Removed dumpdb.py and makedb.py, both useless since the conversion to SQLite.
This commit is contained in:
parent
935b09d5b8
commit
cbfcd0b523
@ -1,18 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
import anydbm
|
||||
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) < 2:
|
||||
print 'Usage: %s <dbfile> <dumpfile>' % sys.argv[0]
|
||||
sys.exit(-1)
|
||||
db = anydbm.open(sys.argv[1], 'r')
|
||||
fd = open(sys.argv[2], 'w')
|
||||
key = db.firstkey()
|
||||
while key != None:
|
||||
fd.write('%s => %s\n' % (key, db[key]))
|
||||
key = db.nextkey(key)
|
||||
db.close()
|
||||
fd.close()
|
||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
@ -1,24 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import re
|
||||
import sys
|
||||
import anydbm
|
||||
|
||||
r = r'(.*?)\s+=>\s+(.*?)\n$'
|
||||
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) < 3:
|
||||
print 'Usage: %s <dumpname> <dbname>' % sys.argv[0]
|
||||
sys.exit(-1)
|
||||
fd = open(sys.argv[1], 'r')
|
||||
db = anydbm.open(sys.argv[2], 'c')
|
||||
for line in fd:
|
||||
m = re.match(r, line)
|
||||
if m:
|
||||
(key, value) = m.groups()[-2:]
|
||||
db[key] = value
|
||||
else:
|
||||
print 'Invalid line: %s' % line.strip()
|
||||
db.close()
|
||||
fd.close()
|
||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
Loading…
Reference in New Issue
Block a user