Tagged Questions
2
votes
1answer
35 views
Finding a set in a Dictionary fitting a certain criteria
I have a dictionary. If V is in DICT[K] then someFunc(k, v) and someFunc(v, k) both return true (and K is in DICT[V]). The dictionary could look like this:
{
1: [2, 3, 5],
2: [3, 1, 5],
3: [1, 2],
5: ...
4
votes
1answer
48 views
complicated list and dictionary lookup in python
I have a list of tuples and a dictionary of lists as follows.
# List of tuples
lot = [('Item 1', 43), ('Item 4', 82), ('Item 12', 33), ('Item 10', 21)]
# dict of lists
dol = {
...
0
votes
1answer
47 views
django - get the latest one if duplicate, if not, take it
I am trying to achieve this:
I have 2 tables: Location and Rate. Location can have multiple rates. Now what I want is, look up in the database and take the rate if no duplicate foreignkey, but if ...
0
votes
2answers
58 views
Reconstruct dictionary in python
I have two dictionaries created from a config file:
dict1 = {'x':'A', 'y':'B', 'z':'C'} # decoding ABCs
dict2 = {'ID1': ('x','n1'), 'ID2': ('y','n2'), 'ID3':('z', 'n3') }
I want to create ...
0
votes
3answers
75 views
fast lookup in python
I have entries (~88 millions in all) in the following format:
userid age test value
111 33 SODIUM 140
111 34 POTASSIUM 4.1
333 65.4 CHLORIDE 107
444 24 BICARBONATE 24
I need to ...
2
votes
4answers
241 views
What is the best data structure in Python for storing a set of four (or more) values?
Say I have the following variables and its corresponding values which represents a record.
name = 'abc'
age = 23
weight = 60
height = 174
Please note that the value could be of different types ...
1
vote
2answers
49 views
How to do a complex lookup like this?
OK, maybe it isn't complex, but i am stuck at this. I have this models schema:
Evento(models.Model):
aprobado = models.BooleanField()
mod = models.ForeignKey(model=Mod, null=True)
[...]
...
1
vote
2answers
72 views
Subject Oriented or Refinements with builtin python objects
Goal:
Extend abitrary classes with roles that are only valid in a certain context.
This works:
# from https://github.com/niccokunzmann/wwp/blob/master/C_builtinTypes.py
from relative import roleOf, ...
2
votes
1answer
152 views
How to check if an element exists in a Python array (Equivalent of PHP in_array)?
I'm new to Python and I'm looking for a standard function that would tell me if an element is present in an array. I found the index method but it throws an exception if the element is not found. I ...
0
votes
2answers
178 views
Python: Use variable as a lookup reference in CSV and return value
Couldn't find an answer to this solution, so once I figured it out I thought I'd re-post my solution...
I was looking for a way of taking a user input (sys.argv[1]) and use this value to perform a ...
1
vote
2answers
90 views
python: how to acces attributes of functions
I'm trying to acces attributes of member functions, but I cannot understand why I can access only through the __dict__.
class A(object):
def fA(self):
print A.fA.x
fA.x = 2
...
0
votes
3answers
492 views
Python: Check one element in csv, use another to remove from second file
I am trying to get a script working, where it will check the existance of an IP in a lookup csv file, and then if it exists take the third element and remove that third element from another (second) ...
0
votes
2answers
377 views
Django filter() lookup type documentation
I looked on Django's documentation and Googled every varation of the phrase but I cannot find any documentation that exactly describes the behaviour of lookuptypes.
...
6
votes
2answers
241 views
Is there a way to get an item from a set in O(1) time? [duplicate]
Possible Duplicate:
Python: Retrieve items from a set
Consider the following code:
>>> item1 = (1,)
>>> item2 = (2,)
>>> s = set([item1, item2])
>>> s
...
4
votes
3answers
1k views
Storing a list of 1 million key value pairs in python
I need to store a list of 1 million key-value pairs in python. The key would be a string/integer while the value would be a list of float values. For example:
...
0
votes
1answer
227 views
Why does pywhois return empty headers?
I am using pywhois module in Python to fetch the Whois headers for websites. While it runs fine for most of the websites, I am trying to understand why sites like google.com and few others come back ...
1
vote
2answers
142 views
Underlying mechanism for Python class member lookup
In Python, if I define three classes:
class A:
name = 'oliver'
hailstone_ending = [4,2,1]
class B:
def __init__(self):
self.name = 'oliver'
self.hailstone_ending = ...
3
votes
2answers
882 views
python: fast dictionary word lookup with wildcards*
Given a text, which is split into a list of words, I want to lookup each of the words in an dictionary of words, which too is read from a text-file and split('\n').
Rather than checking if each word ...
10
votes
6answers
297 views
What is the proper way to track indexes in python?
Right now I am tracking my index in side the loop like this
index = 0
for entry in longList:
if entry == 'foo':
print index
index += 1
is there a better way to do this?
5
votes
4answers
323 views
Lookup table for unhashable in Python
I need to create a mapping from objects of my own custom class (derived from dict) to objects of another custom class. As I see it there are two ways of doing this:
I can make the objects hashable. ...
3
votes
5answers
474 views
In python, how can you retrieve a key from a dictionary?
I have a hashable identifier for putting things in a dictionary:
class identifier():
def __init__(self, d):
self.my_dict = d
self.my_frozenset = frozenset(d.items())
def ...
3
votes
1answer
517 views
Dynamic symbol lookup fails with statically embedded Python on Mac OS X
I'm building a Mac OS X application that is to embed Python. My application is technically a bundle (i.e. its main executable is MH_BUNDLE); it's a plug-in for another application. I'd like it to ...
1
vote
4answers
134 views
Efficient way of Element lookup in a Python List?
I have a list of files in a directory. I have to process only certain files from that directory. filelist is my desired file-list. How do I go about achieving this? Not interested in a bash solution ...
3
votes
4answers
705 views
Python nested dictionary lookup with default values
>>> d2
{'egg': 3, 'ham': {'grill': 4, 'fry': 6, 'bake': 5}, 'spam': 2}
>>> d2.get('spamx',99)
99
>>> d2.get('ham')['fry']
6
I want to get value of fry inside of ham, if ...
2
votes
4answers
2k views
Find value within a range in lookup table
I have the simplest problem to implement, but so far I have not been able to get my head around a solution in Python.
I have built a table that looks similar to this one:
501 - ASIA
1262 - EUROPE
...
5
votes
4answers
981 views
Python __setattr__ and __getattr__ for global scope?
Suppose I need to create my own small DSL that would use Python to describe a certain data structure. E.g. I'd like to be able to write something like
f(x) = some_stuff(a,b,c)
and have Python, ...
2
votes
1answer
527 views
How do I wrangle python lookups: make.up.a.dot.separated.name.and.use.it.until.destroyed = 777
I'm a Python newbie with a very particular itch to experiment with Python's dot-name-lookup process. How do I code either a class or function in "make.py" so that these assignment statements work ...
4
votes
7answers
435 views
Convert list of objects to a list of integers and a lookup table
To illustrate what I mean by this, here is an example
messages = [
('Ricky', 'Steve', 'SMS'),
('Steve', 'Karl', 'SMS'),
('Karl', 'Nora', 'Email')
]
I want to convert this list and a ...
2
votes
5answers
1k views
most efficient data structure for a read-only list of strings (about 100,000) with fast prefix search
I'm writing an application that needs to read a list of strings from a file, save them in a data structure, and then look up those strings by prefixes. The list of strings is simply a list of words in ...
2
votes
7answers
3k views
Python: How to extract variable name of a dictionary entry?
I'm wondering how I would go about finding the variable name of a dictionary element:
For example:
>>>dict1={}
>>>dict2={}
>>>dict1['0001']='0002'
...
