Tagged Questions
7
votes
3answers
239 views
Ways to store and access large (~10 GB) lists in Python?
I have a large set of strings that I'm using for natural language processing research, and I'd like a nice way to store it in Python.
I could use pickle, but loading the entire list into memory would ...
4
votes
3answers
351 views
Is there anything wrong with creating a Python Pickle powered website?
I have been toying with this idea for quite awhile now, but haven't seen any information on people doing it. I have a small website project where I need to load and modify 1 object. This object is ...
4
votes
3answers
1k views
Python shelve module question
Does the Python shelve module have any protection built in to make sure two processes aren't writing to a file at the same time?
3
votes
1answer
57 views
How to implement a Python virtual filesystem using shelve
I have set up a Python script that simulates an OS. It has a command prompt and a virtual file system. I am using the shelve module to simulate the file system, being multi-dimensional in order to ...
3
votes
1answer
185 views
Does linux disk buffer cache make python cPickle more efficient than shelve?
Is IO more efficient, due to the linux disk buffer cache, when storing frequently accessed python objects as separate cPickle files instead of storing all objects in one large shelf?
Does the disk ...
3
votes
2answers
357 views
Does Python's shelve module use memory-mapped IO?
Does anyone know if Python's shelve module uses memory-mapped IO?
Maybe that question is a bit misleading. I realize that shelve uses an underlying dbm-style module to do its dirty work. What are ...
2
votes
1answer
83 views
python: container for card catalog - sqlite, dict, other?
I'm developing a card catalog type application and Python and am trying to decide how to store the data. Not a web app. I don't expect a large app or a massive amount of data.
One alternative is a ...
2
votes
2answers
281 views
remotely start Python program in background
I need to use fabfile to remotely start some program in remote boxes from time to time, and get the results. Since the program takes a long while to finish, I wish to make it run in background and so ...
2
votes
3answers
162 views
Very basic persistence or data storage for a Python script
I have a script which processes a list of URLs. The script may be called at any time with a fresh list of URLs. I want to avoid processing an URL which has already been processed at any time in the ...
2
votes
2answers
140 views
How can we modify data that is in a shelve?
I have opened a shelve using the following code:
#!/usr/bin/python
import shelve #Module:Shelve is imported to achieve persistence
Accounts = 0
Victor = {'Name':'Victor ...
2
votes
4answers
457 views
In python, looking for an alternative to Shelve (too slow for large dictionaries)
I am storing a table using python, and I need persistance.
Essentially I am storing the table as a dictionary string to numbers. And the whole is stored with shelve
...
2
votes
2answers
155 views
shelve gives strange error
I'm trying to put some sites i crawled into a shelve, but the shelve won't accept any Site-objects. It will accept lists, strings, tuples, what have you, but as soon as i put in a Site-object, it ...
2
votes
3answers
223 views
Any way to use a tuple as key in a shelf? (Python)
I want to use a tuple (1,2,3) as a key using the shelve module in Python. I can do this with dictionaries:
d = {}
d[(1,2,3)] = 4
But if i try it with shelve:
s = shelve.open('myshelf')
s[(1,2,3)] ...
1
vote
2answers
83 views
How to serialize hash objects in Python
How can I serialize hash objects?, I'm using shelve to store a lot of objects.
Hierarchy:
- user
- client
- friend
user.py:
import time
import hashlib
from localfile import localfile
...
1
vote
2answers
84 views
Using python shelve cross-platform
I am hoping for a little advice on shelves/databases in Python.
Problem: I have a database created on the mac, that I want to use on windows 7. I use Python 3.2, MacOS 10.7, and win 7.
When I open ...
1
vote
2answers
64 views
Python 3.1 installed from Macports on 10.5.8 - shelve error (bug or not?)
I am running python 3.1.4 from macports and I am attempting to use the shelve module here. I can use it successfully on another dev. machine (different OS, etc.) so I am not sure what I may be doing ...
1
vote
2answers
57 views
Python: Attribute error with shelve when using 2 py modules
I'm trying out the shelve module and I'm running into some trouble. My intention is to have one module call a function in a second one which will modify a file inside a shelve. I made a prototype ...
1
vote
1answer
58 views
Control memory used by shelve
I am using shelve in Python to handle a huge dictionary that would not fit in the memory, as well as to achieve persistence.
While running my code, which requires frequent retrieval and insertion ...
1
vote
0answers
123 views
Python Shelve Module Memory Consumption
I have been assigned the task of reading a .txt file which is a log of various events and writing some of those events into a dictionary.
The problem is that the file can sometimes get bigger than ...
1
vote
2answers
174 views
Temporary Shelves?
I am designing a class that has undo/redo functionality and has to temporarily store a lot of data. I'm currently implementing a "temporary" file by overloading the del operator to delete the file ...
1
vote
2answers
126 views
allow a shelve object to be pickled in python, pypar and mpich2
I have some legacy python code that using pypar and mpich2 to transmit data between multiple nodes. For some reason the data is kept in shelves and pypar wants to pickle the shelve to send it to ...
1
vote
2answers
253 views
Is shelve in Python thread safe?
Is shelve in Python used for data persistence thread safe? If not, what's a good alternative?
Thanks! :-)
1
vote
0answers
146 views
python shelve dbm.error?
I'm trying to add a dict of dicts to a shelve file:
>>> d = shelve.open('index.shelve')
>>> d
<shelve.DbfilenameShelf object at 0x21965f0>
>>> print(list(d.keys()))
...
1
vote
1answer
140 views
How do you erase the 3 shelve files in python 3?
I wrote a few unittests with shelve at http://code.google.com/p/filecache/ and python 2 saves exactly the filename I specifiy in shelve.open() but in python 3 I get 3 different files "bak", "dat" and ...
1
vote
2answers
133 views
Easy way to delete a shelve .dat file left behind by my Python program?
So I have a python program that ends up leaving a .dat file from the shelve function behind after execution. I would like my program to delete or clear that file once it is done. My textbook only ...
1
vote
4answers
452 views
Really weird issue with shelve (python)
I create a file called foo_module.py containing the following code:
import shelve, whichdb, os
from foo_package.g import g
g.shelf = shelve.open("foo_path")
g.shelf.close()
print ...
1
vote
2answers
231 views
Problem with shelve module?
Using the shelve module has given me some surprising behavior. keys(), iter(), and iteritems() don't return all the entries in the shelf! Here's the code:
cache = shelve.open('my.cache')
# ...
...
1
vote
1answer
194 views
Is there an easy way to use a python tempfile in a shelve (and make sure it cleans itself up)?
Basically, I want an infinite size (more accurately, hard-drive rather than memory bound) dict in a python program I'm writing. It seems like the tempfile and shelve modules are naturally suited for ...
0
votes
1answer
34 views
Shelve Code gives KeyError
I wanted to use the following code from here:
How can I save all the variables in the current python session?
import shelve
T='Hiya'
val=[1,2,3]
filename='/tmp/shelve.out'
my_shelf = ...
0
votes
0answers
57 views
concurrency issues with event and lock python
My critical region is a shelve object and I'm using a combination of event and lock to keep the threads separated. However this isn't working. By that I mean the process hangs, I have an unchecked ...
0
votes
2answers
142 views
python shelve … bsddb deprecated … how to get shelve to use another database?
I have an app developed in python 2.7.2 on OS X.
I use the module shelve and seems to default to bsddb on the mac.
The program won't run on a Windows 7 machine with ActiveState python 2.7 because the ...
0
votes
2answers
72 views
Easiest way to add a function to existing class
I'm using the python's built-in shelve module to manage some simple dictionaries. The problem I'm having is I want to use with shelve.open(filename) as f:, but when I try it claims DbfilenameShelf has ...
0
votes
1answer
77 views
Shelve module in Python 3.1.1
I'm new to Python and learning through the O'Reilly "Learning Python" series. I'm stuck on a shelve example and can't figure out why the program doesn't work. I'm trying to build some sample data ...
0
votes
1answer
80 views
How to populate shelf with existing dictionary
Lets say I have a large, 100s of megabytes, dictionary that I want to make into an on disk shelve. I'm using pypar to utilize MPI to generate cleaned bits of a master list. What's the best way to ...
0
votes
0answers
44 views
Custom Shelve Implementation in Python
I am very new to Python.A have a requirement to use a custom Shelve implementation where it can be backed by MySQL in stead of FileSystem. The requirement looks a bit odd as you may think if I need a ...
0
votes
1answer
171 views
Prevent python shelve corruption
How should I prevent corruption in a shelve file? Should the shelve be closed most of the time and then opened only when I need to read or edit a value?
0
votes
1answer
316 views
What is the difference between pickle and shelve?
I am learning about object serialization for the first time. I tried reading and 'googling' for differences in the modules pickle and shelve but I am not sure I understand it. When to use which one?
...
0
votes
1answer
269 views
How do I take integer keys in shelve?
I want to store an integer key in shelve. But when I try to store integer key in shelve it give me an error
Traceback (most recent call last):
File "./write.py", line 12, in
data[id] = {"Id": ...
0
votes
2answers
130 views
Print all variables in a class? - Python
I'm making a program that can access data stored inside a class. So for example I have this class:
#!/usr/bin/env python
import shelve
cur_dir = '.'
class Person:
def __init__(self, name, ...
0
votes
1answer
142 views
Working on Dictionary of Classes in Python
For this example, I have a dictionary, that when I call on it, "Ember Attack" is displayed.
#import shelve
class Pokemon():
"""Each pokemon's attributes"""
def __init__(self):
self.id=[]
...
0
votes
2answers
118 views
Accessing Dictionaries VS Accessing Shelves
Currently, I have a dictionary that has a number as the key and a Class as a value. I can access the attributes of that Class like so:
dictionary[str(instantiated_class_id_number)].attribute1
Due ...
0
votes
1answer
64 views
Viewing Python's shelve objects in PHP
I am using Python for indexing utilizing the shelve functionality and I was wondering whether it was possible to open and read the files in PHP.
I checked out the PHP Shelve option and it doesn't ...
0
votes
2answers
476 views
Python shelve OutOfMemory error
I have some data stored in a DB that I want to process. DB access is painfully slow, so I decided to load all data in a dictionary before any processing. However, due to the huge size of the data ...
-1
votes
1answer
54 views
Python code is in one directory, database file is in another. How to open db and process?
I have a directory of db files in folder A. My python code runs from another place.
When I run the following code:
path = 'xxx' # path to file directory
filenames = ...