Chris Foote wrote:
> lcaamano wrote:
>   
>> Sounds like PyTables could be useful.
>>
>> http://www.pytables.org
>>     
>
> In browsing their excellent documentation, it seems that all concepts 
> are built around storing and reading HDF5 format files.
>
> Not suitable for this project unfortunately.
>
> Cheers,
> Chris
>
>   
How many values accept long and int in pairs ? It is possible to try to use
the dictionary of dictionaries:

d = {}
for long_val, int_val in list_vals:
    d.setdefault(long_val, {})[int_val] = None


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to