Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9db49c84
Commit
9db49c84
authored
Feb 03, 2003
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
convert pickles generated by db2pickle.py back to database files
parent
4c6c9c42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
127 additions
and
0 deletions
+127
-0
Tools/scripts/pickle2db.py
Tools/scripts/pickle2db.py
+127
-0
No files found.
Tools/scripts/pickle2db.py
0 → 100644
View file @
9db49c84
#!/usr/bin/env python
"""
Synopsis: %(prog)s [-h|-b|-r|-a|-d] dbfile [ picklefile ]
Read the given picklefile as a series of key/value pairs and write to a new
bsddb database. If the database already exists, any contents are deleted.
The optional flags indicate the type of the database (bsddb hash, bsddb
btree, bsddb recno, anydbm, dbm). The default is hash. If a pickle file is
named it is opened for read access. If no pickle file is named, the pickle
input is read from standard input.
Note that recno databases can only contain numeric keys, so you can't dump a
hash or btree database using bsddb2pickle.py and reconstitute it to a recno
database with %(prog)s.
"""
import
getopt
try
:
import
bsddb
except
ImportError
:
bsddb
=
None
try
:
import
dbm
except
ImportError
:
dbm
=
None
try
:
import
anydbm
except
ImportError
:
anydbm
=
None
import
sys
try
:
import
cPickle
as
pickle
except
ImportError
:
import
pickle
prog
=
sys
.
argv
[
0
]
def
usage
():
print
>>
sys
.
stderr
,
__doc__
%
globals
()
def
main
(
args
):
try
:
opts
,
args
=
getopt
.
getopt
(
args
,
"hbrda"
,
[
"hash"
,
"btree"
,
"recno"
,
"dbm"
,
"anydbm"
])
except
getopt
.
error
:
usage
()
return
1
if
len
(
args
)
==
0
or
len
(
args
)
>
2
:
usage
()
return
1
elif
len
(
args
)
==
1
:
dbfile
=
args
[
0
]
pfile
=
sys
.
stdin
else
:
dbfile
=
args
[
0
]
try
:
pfile
=
file
(
args
[
1
],
'rb'
)
except
IOError
:
print
>>
sys
.
stderr
,
"Unable to open"
,
args
[
1
]
return
1
dbopen
=
None
for
opt
,
arg
in
opts
:
if
opt
in
(
"-h"
,
"--hash"
):
try
:
dbopen
=
bsddb
.
hashopen
except
AttributeError
:
print
>>
sys
.
stderr
,
"bsddb module unavailable."
return
1
elif
opt
in
(
"-b"
,
"--btree"
):
try
:
dbopen
=
bsddb
.
btopen
except
AttributeError
:
print
>>
sys
.
stderr
,
"bsddb module unavailable."
return
1
elif
opt
in
(
"-r"
,
"--recno"
):
try
:
dbopen
=
bsddb
.
rnopen
except
AttributeError
:
print
>>
sys
.
stderr
,
"bsddb module unavailable."
return
1
elif
opt
in
(
"-a"
,
"--anydbm"
):
try
:
dbopen
=
anydbm
.
open
except
AttributeError
:
print
>>
sys
.
stderr
,
"anydbm module unavailable."
return
1
elif
opt
in
(
"-d"
,
"--dbm"
):
try
:
dbopen
=
dbm
.
open
except
AttributeError
:
print
>>
sys
.
stderr
,
"dbm module unavailable."
return
1
if
dbopen
is
None
:
if
bsddb
is
None
:
print
>>
sys
.
stderr
,
"bsddb module unavailable -"
print
>>
sys
.
stderr
,
"must specify dbtype."
return
1
else
:
dbopen
=
bsddb
.
hashopen
try
:
db
=
dbopen
(
dbfile
,
'c'
)
except
bsddb
.
error
:
print
>>
sys
.
stderr
,
"Unable to open"
,
dbfile
,
print
>>
sys
.
stderr
,
"Check for format or version mismatch."
return
1
else
:
for
k
in
db
.
keys
():
del
db
[
k
]
while
1
:
try
:
(
key
,
val
)
=
pickle
.
load
(
pfile
)
except
EOFError
:
break
db
[
key
]
=
val
db
.
close
()
pfile
.
close
()
return
0
if
__name__
==
"__main__"
:
sys
.
exit
(
main
(
sys
.
argv
[
1
:]))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment