I need to create a large bytearry of a specific size but the size is not known prior to run time. The bytes need to be fairly random. The bytearray size may be as small as a few KBs but as large as a several MB. I do not want to iterate byte-by-byte. This is too slow -- I need performance similar to numpy.random. However, I do not have the numpy module available for this project. Is there something part of a standard python install that will do this? Or do i need to compile my own using C?

for those asking for timings:

>>> timeit.timeit('[random.randint(0,128) for i in xrange(1,100000)]',setup='import random', number=100)
35.73110193696641
>>> timeit.timeit('numpy.random.random_integers(0,128,100000)',setup='import numpy', number=100)
0.5785652013481126
>>> 
link|improve this question

5  
Open /dev/urandom? – Santa Aug 12 '11 at 17:34
sorry, Santa. Windows. – Paul Aug 12 '11 at 18:00
2  
Python provides a portable interface to /dev/urandom: see my (second) answer. – Ned Batchelder Aug 12 '11 at 18:20
feedback

3 Answers

up vote 10 down vote accepted

The os module provides urandom, even on Windows:

bytearray(os.urandom(1000000))

This seems to perform as quickly as you need, in fact, I get better timings than your numpy (though our machines could be wildly different):

timeit.timeit(lambda:bytearray(os.urandom(1000000)), number=10)
0.0554857286941
link|improve this answer
There it is! Thank you Ned. – Paul Aug 12 '11 at 18:24
feedback

What's wrong with just including numpy? Anyhow, this creates a random N-bit integer:

import random
N = 100000
bits = random.getrandbits(N)

So if you needed to see if the value of the j-th bit is set or not, you can do bits & (2**j)==(2**j)

EDIT: He asked for byte array not bit array. Ned's answer is better: your_byte_array= bytearray((random.getrandbits(8) for i in xrange(N))

link|improve this answer
+1 This may be the quickest way to do that. – Tadeck Aug 12 '11 at 18:05
This is nice. Am i missing some obvious way of converting a long to a bytearray or bytebuffer? – Paul Aug 12 '11 at 18:06
Can't use NumPy because I am confined by my environment to a very limited number of external packages. – Paul Aug 12 '11 at 18:08
@Paul - Ned has the solution. Sorry I suck at reading comprehension and misread it as bitarray. If you want it as a oneliner you can do bytearray((random.getrandbits(8) for i in xrange(N)) – dr jimbob Aug 12 '11 at 18:11
feedback
import random
def randbytes(n):
    for _ in xrange(n):
        yield random.getrandbits(8)

my_random_bytes = bytearray(randbytes(1000000))

There's probably something in itertools that could help here, there always is...

My timings indicate that this goes about five times faster than [random.randint(0,128) for i in xrange(1,100000)]

link|improve this answer
See my timings. I'm looking for an approx 30-100x speedup. – Paul Aug 12 '11 at 18:10
1  
On the machine I'm writing from, using random.getrandbits(8) as drop-in replacement for random.randint(0, 256) is about 6 times as fast. – Karl Knechtel - away from home Aug 12 '11 at 18:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.