mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-16 23:39:22 +01:00
c803e5e9d8
consistent between developers. Jeremy should be adding the equivalent settings for emacs soon.
25 lines
582 B
Python
Executable File
25 lines
582 B
Python
Executable File
#!/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:
|