Async random number generator.
Project description
Asyncrandom
Utility for fetching one or more random numbers from the ANU Quantum Random Numbers Server by calling the endpoint at https://qrng.anu.edu.au/API/jsonI.php. Requests are executed asynchronously using the tornado networking framework.
More information about how the numbers are generated can be found on https://qrng.anu.edu.au/.
Requires tornado and its IOLoop to run.
Installation
Download the source and run the setup file:
python setup.py install
Usage
A simple example of generating a single random uint8:
def handle_random_int(f): print(f.result()) f = asyncrandom.fetch() f.add_done_callback(handle_random_int) tornado.ioloop.IOLoop.current()
Multiple numbers can be generated as well. In this example we generate 10:
def handle_random_int(f): print(f.result()) f = asyncrandom.fetch(10) f.add_done_callback(handle_random_int) tornado.ioloop.IOLoop.current().start()
By default, 8-bit unsigned integers are generated. Optionally, this can be changed to 16-bit. Example of generating 10 16-bit integers:
def handle_random_int(f): print(f.result()) f = asyncrandom.fetch(10, asyncrandom.IntegerType.UINT16) f.add_done_callback(handle_random_int) tornado.ioloop.IOLoop.current()
If called from the command, issues a synchronous call to the service. Optionally, --length and --type can be specified as arguments, with default values of 1 and "uint-8" respectively.
Command line example:
$ asyncrandom --int-type=uint8 --length=1 105
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file asyncrandom-0.0.1.tar.gz
.
File metadata
- Download URL: asyncrandom-0.0.1.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79e44e1066744a8e91a2d784218ecef14bc484ed40734e2d9680d4633e0a26fc |
|
MD5 | a6c6b8295bb1295f5e0f56d46c958027 |
|
BLAKE2b-256 | 6714f4fa3b7a3d1fbef2383901f69159ae1769cd195d5ec0f87c1a1b9fdc0ccb |
File details
Details for the file asyncrandom-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: asyncrandom-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9338a1d2d103714567abdcfe7e158922b75333a348dde8b59aedf29dd293918 |
|
MD5 | 195267f3901be23b34a42fca14634f2f |
|
BLAKE2b-256 | 0d6ab06eef52aaa0eede5be6920a765ab0858806f59f9b96156a340f1a8f0cd0 |