Shelve can refer to either a Python object persistence or a pending change in a Visual Studio Workspace
2
votes
1answer
21 views
Shelve module in python not working: “db type cannot be determined”
I am trying to make a simple password-storing program in Python, and it seems pretty simple so I am wondering if I am using shelve wrong.
I have the main .py file:
import shelve
passwords = ...
0
votes
1answer
30 views
Shelve: Can't pickle <class 'method'>: attribute lookup builtins.method failed
I'm using shelve to store some data.
Traceback (most recent call last):
File "rogue.py", line 312, in <module>
curses.wrapper(game)
File "/usr/lib/python3.3/curses/__init__.py", line ...
2
votes
2answers
57 views
Is there a maximum size for python's shelve module?
I'm getting this exception when trying to open shelve persisted files over a certain size which is actually pretty small (< 1MB) but I'm not sure where the exactly number is. Now, I know pickle is ...
0
votes
1answer
16 views
python3 shelve UnicodeDecodeError [closed]
I run this little program and all seems fine except for a little surprise: the file created has a ".db" extension. But this is the least of my problems.
#!/usr/bin/env python3
bob = {'name':'Bob ...
0
votes
1answer
28 views
How can I force python to use dumbdbm module to create a new database?
The shelve module is implemented on top of the anydbm module. This module acts as a facade for 4 different specific DBM implementations, and it will pick the first module available when creating a new ...
2
votes
1answer
68 views
why sometimes shelve module in python create files with different extensions?
I'm running a python program which uses a shelve module on top of a pickle. After running this program sometimes I get one output file as a.data but sometimes i get three output files as a.data.bak, ...
1
vote
1answer
18 views
Are TFS shelves a Diff related to a repository version or are they the entire files that were shelved?
Do TFS shelves have the entire files that were changed or do shelves have just the difference compared to a specific version of the repositotory? If it's the first than it can be applied in any ...
0
votes
0answers
32 views
Best way to deliver recommendations online using Python and Crab?
I've begun experimenting with the Crab recommender. My plan is to do item based recommendations and do the calculations overnight. What is the best way to achieve memory persistence for the ...
1
vote
3answers
95 views
How to access ALL global variables in a python function?
I'm trying to mimic the matlab load and save functions. I'm following this thread: Shelve Code gives KeyError
it is smart. However, if I write that code in a seperate module, and try to import that ...
1
vote
1answer
493 views
How to add row separator to grid view in Android? [duplicate]
I want to add row separators in GridView. Basically I'm making a shelf app in which shelf will look like this:
so number of columns can vary with device resolution and also when orientation is ...
2
votes
2answers
86 views
Find all files that differ from shelveset?
I have a shelveset of my rather large solution where one element is working. In my workspace version, it is not - however, other elements are working in my workspace version that are not working in ...
0
votes
0answers
22 views
Jenkins-Shelve- Plugin project
We are using for Jenkins-Shelve-Project Plugins for our CI (Jenkins) for shelving the project. When a new job is created (Copying from the existing job) and saved the configurations, Shelve Project ...
0
votes
4answers
248 views
Perforce: move shelved files from workspace to backup
I have some old shelved files in long-standing pending Perforce changelists that I'll probably never submit. I'd like to get rid of those changelists because they're polluting my space, but I don't ...
0
votes
1answer
234 views
Pickle versus shelve storing large dictionaries in Python
If I am storing a large directory as a pickle file, does loading it via cPickle mean that it will all be consumed into memory at once? If so, is there a cross platform way to get something like ...
2
votes
2answers
95 views
equivalent to python's shelve module in Java
Is there any module in Java equivalent to python's shelve module? I need this to achieve dictionary like taxonomic data access. Dictionary-like taxonomic data access is a powerful way to save Python ...
1
vote
2answers
112 views
Mercurial: shelving committed files
I have two repos, dev and testing. In dev, I've made several commits since the last push to testing. However, now I want to shelve all those commits, make a different change, push it to testing, and ...
0
votes
2answers
103 views
How to get user inputs into python database?
Why the menu does not start (solved by Roman Susi)
Why the menu do not work as expected (error below)
How do I solve the error in my foo.add code?
Traceback (most recent call last):
File ...
1
vote
2answers
277 views
perforce shelve examples
I have codelines Foo v1 and Foo v2 checked out from the depot, where v2 was created
from v1 by a p4 integrate command. I have some changes to Foo v1 which
are not checked in (I don't want them to be ...
2
votes
2answers
81 views
Shelve: choice of database
shelve documentation says:
The choice of which database package will be used (such as dbm, gdbm
or bsddb) depends on which interface is available.
What is that mean? How to determine which ...
0
votes
1answer
118 views
Python shelve error - claims NoneType, but the object *is* there
I have just bumped into a totally bizarre error. I'm saving a selection of things into a single file. One of these is a version of a class called Tracker, and this copy is called tracker.
...
0
votes
1answer
134 views
Shelve, Python, updating a dictionary
I am working with Shelve in Python and I am having an issue:
In [391]: x
Out[391]: {'broken': {'position': 25, 'page': 1, 'letter': 'a'}}
In [392]: ...
1
vote
1answer
118 views
Unable to see shelved Perforce Changelist in UI
I generally shelve my Perforce change lists the following way:
Right click the pending changelist.
Click on Shelve.
Unshelve later by right clicking the shelved changelist and click Unshelve.
But ...
0
votes
0answers
101 views
shelve module not working as expected in maya 2013
well I want user to be able to save ftp information to disk instead of entering it into application, so since its not big app i did not wanted to make things complex, so i am using shelve module
the ...
1
vote
2answers
157 views
Python and Freeze Application with shelve.py
I am trying to freeze an application that involves the use of the shelve module. To freeze it, I am using the GUI2EXE python code and utilizing the cx_freeze portion (everything works great if i ...
0
votes
1answer
51 views
Shelve not saving off-screen consoles in Python (using libtcod)
I'm having some trouble with shelve. In every other way, it's working perfectly, but it refuses to properly load off-screen consoles generated with the libtcod library.
The console is called ...
1
vote
2answers
511 views
How to download TFS shelveset
I need to download a shelveset from TFS to a local folder. Is there any tools or add-in for Visual studio 2010 to download shelveset
2
votes
2answers
109 views
How to revert open files in workspace WITHOUT removing them from their changelist in perforce?
Is it possible in perforce (server version 2010.1/265509 (2010/09/23), so I don't have newer "git like" server functionality) to revert all the open files in a client without the files being removed ...
0
votes
0answers
48 views
python 3.2 shelve datetime as key
I use python for parsing lots of big logfiles after a loadtest run. Currently I work with regular expressions returning every match via generator to concatenate logentries of each businesscase ...
0
votes
1answer
181 views
Exception RuntimeError while using shelve module in python 2.6
I'm using the shelve module to add some persistence to my program. At first I was using the default bsddb in shelve but I had to change it to gdbm and after that change the exception occurs:
...
0
votes
2answers
76 views
Cache results of a time-intensive operation
I have a program (PatchDock), which takes its input from a parameters file, and produces an output file. Running this program is time-intensive, and I'd like to cache results of past runs so that I ...
0
votes
1answer
89 views
Python losing performance writing to disk over time
I have written a code to take an input from a file of very big data, perform some simple processing on it and then store it in a shelve dictionary format. I have 41 million entries to process. ...
1
vote
2answers
316 views
updating a shelve dictionary in python parallely
I have a program that takes a very huge input file and makes a dict out of it. Since there is no way this is going to fit in memory, I Decided to use shelve to write it to my disk. Now I need to take ...
0
votes
1answer
665 views
seeing changes in shelve in TFS2010
I am using TFS 2010. I have to review code which is shelved by other developer before checkin. How can we do this in TFS2010 so that I can get his changes and review.
Thanks!
2
votes
2answers
67 views
Bizarre behavior trying to store a deque in a Shelve
I will let the following terminal session speak for itself:
>>> import shelve
>>> s = shelve.open('TestShelve')
>>> from collections import deque
>>> s['store'] = ...
1
vote
0answers
70 views
perforce, shelve testing failing
My Shelve testing build is failing, and it is giving me:
Project file 'e:\p4\tech\...\someproject.vcproj' could not be loaded.
The project is either missing from disk or access was denied.
whereas ...
2
votes
2answers
525 views
Selecting between shelve and sqlite for really large dictionary (Python)
I have a large Python dictionary of vectors (150k vectors, 10k dimensions each) of float numbers that can't be loaded into memory, so I have to use one of the two methods for storing this on disk and ...
0
votes
1answer
600 views
Perforce (p4) shelve workflow?
I'm trying to devise useful workflows for working with p4 shelve. I'm a git user and miss a lot of its features.
The basic flow (store an unfinished changelist, do something else, go back to finish ...
1
vote
1answer
109 views
is there a way to manually apply the diffs in hg unshelve -i output?
hg shelve did it again - even after applying the patch described in hg unshelve not working (which worked happily for about a month), shelve just "lost" all my changes again.
I see the name of my ...
1
vote
1answer
193 views
Python shelve; unexpected RAM usage when loading/saving
I've been starting to use Python's shelve module (and I'm new-ish to Python per se), and while it is storing and loading information perfectly, the RAM usage is... strange.
The parts I want to save ...
0
votes
1answer
58 views
How can I merge Shelve files/databases?
I have several Shelve i.e. .db files that I wish to merge together into one single database.
The only method I could think of was to iterate through each database rewriting each iteration to the new ...
5
votes
1answer
844 views
How can I use Perforce Shelving to have one person create a change and another person submit it?
I want UserA to be able to create a changelist in Perforce and then Shelve it. I would then like UserB to be able to unshelve that changelist and submit it.
This sounds simple, but Perforce ...
1
vote
0answers
98 views
TypeError when using shelve with django
I put this code in the models.py of my django application:
import shelve
s = shelve.open('mystorage')
Everything works right, but when the interpreter is being shutdown, I get the following output:
...
1
vote
3answers
205 views
Automatic shelve before pulling in Mercurial (with TortoiseHG)?
I have some changed files I don't want to commit (e.g. web.config). Before I pull new changesets, I have to shelve them. After the pull, I have to unshelve them.
I'm currently using TortoiseHG. Is ...
1
vote
2answers
344 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
1answer
298 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 = ...
-1
votes
1answer
162 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 = ...
3
votes
1answer
666 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 ...
4
votes
2answers
678 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 ...
0
votes
0answers
192 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 ...
1
vote
2answers
318 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 ...