Skip to main content

Quantum random number generation using IBM Quantum (Qiskit)

Project description

Command Line Usage

You can use the package directly from the command line with the following commands:

# Show help and usage
python -m qrngtools --help

# Generate a random bit
python -m qrngtools --type bit

# Generate a string of 16 random bits
python -m qrngtools --type bits --length 16

# Generate a random integer in [0, 1000)
python -m qrngtools --type int --max 1000

# Generate a random float in [0, 1)
python -m qrngtools --type float

# Generate a random string of length 12
python -m qrngtools --type string --length 12

# Generate 8 random bytes
python -m qrngtools --type bytes --length 8

# Generate a random boolean value
python -m qrngtools --type bool

# Pick a random element from a sequence
python -m qrngtools --type choice --seq A B C D

# Pick 2 unique random elements from a sequence
python -m qrngtools --type sample --seq A B C D --k 2

# Generate a random UUID
python -m qrngtools --type uuid

# Generate a 3x3 matrix of random floats
python -m qrngtools --type matrix --rows 3 --cols 3

# Generate a random permutation of a sequence
python -m qrngtools --type permutation --seq A B C D

# Generate a list of 10 random bits
python -m qrngtools --type bit_array --length 10

# Generate a list of 10 random floats
python -m qrngtools --type float_array --length 10

# Add --with-source to any command to show the randomness source
python -m qrngtools --type int --max 1000 --with-source

qrngtools

Quantum random number generation using IBM Quantum (Qiskit) and AerSimulator.

1. Environment Setup (Recommended)

Create and activate a clean Python environment:

python -m venv .venv
.\.venv\Scripts\Activate.ps1

2. Install the Package

Install from PyPI:

pip install qrngtools

3. (Optional) Set Up IBM Quantum Cloud Backend

Set your IBM Quantum API token as an environment variable:

Windows PowerShell:

$env:IBM_QUANTUM_TOKEN="your_token_here"

Windows Command Prompt:

set IBM_QUANTUM_TOKEN=your_token_here

If the token is set and the IBM provider is available, the package will use the IBM Quantum cloud backend. Otherwise, it defaults to AerSimulator (local quantum simulation).

4. Usage

Import and use the API functions:

from qrngtools import get_random_bit, get_random_bits, get_random_int, get_random_float, get_random_string

# By default, functions return only the random value
print(get_random_bit())      # 0 or 1
print(get_random_bits(8))    # e.g. '01101001'
print(get_random_int(100))   # random int in [0, 100)
print(get_random_float())    # random float in [0, 1)
print(get_random_string(10)) # e.g. 'aB3kLmP9Qz'

# To get the randomness source as well, pass with_source=True
bit, source = get_random_bit(with_source=True)
print(bit, source)           # e.g. 1, 'quantum' or 'system'

5. CLI Usage

Generate a quantum random integer from the command line:

python -m qrngtools

6. Fallback

If Qiskit or AerSimulator is unavailable, the package automatically falls back to system randomness.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qrngtools-0.1.1.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qrngtools-0.1.1-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file qrngtools-0.1.1.tar.gz.

File metadata

  • Download URL: qrngtools-0.1.1.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for qrngtools-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3a6b193c8bd855dc6242bdd0e345101b601dba68b3453760bc73a0161ccf47e7
MD5 860c58f55a62fdd71f31a1bbd65fe354
BLAKE2b-256 89f85db97db2fc83ab20091b6cd59a23d7a0e8411e5e51e1fce001a69d7fc9d5

See more details on using hashes here.

File details

Details for the file qrngtools-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: qrngtools-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for qrngtools-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ffb62142ed2e4f98807884360fd0395cb4eb78a3aafd0530f012885594bf4ea7
MD5 73898cdce22c24fc091d5016f5be3863
BLAKE2b-256 bd2e2e1e99e3e2e886c131239565e75908550d1280ad796782cad065ff68ea2c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page