Tagged Questions

4
votes
3answers
156 views

Measuring efficiency of Huffman coding with Python bitstring

I have the following string that I would like to Huffman-encode and store efficiently into a bit array: >>> print sequence GTCAGGACAAGAAAGACAANTCCAATTNACATTATG| The frequencies of the ...
2
votes
1answer
34 views

Can I store a dict with bitstring values in memory without padding?

I have a dict from some hash key to a bitstring. The bitstring can be variable length, but are generally < 160 bits and usually <80. I have about 80M key value pairs. How can I store this data ...
1
vote
2answers
132 views

stepping in python-bitstring 2.2.0

Update: in python-bitstring 3.0.0 step has the conventional meaning I am using python bitstring, I have a ConstBitArray loaded from file and I would like to get a slice with a step different from 1. ...
0
votes
2answers
100 views

BitString error on Windows XP?

Scott, I'd like to thank you for your BitString program. I am working on interpreting data from a neutron detector, and I've found that this module is just the tool I need. Unfortunately, I have yet ...