Metadata-Version: 2.1
Name: qrandom-NoahGWood
Version: 1.0.0
Summary: Shrodingers Random Number Generator
Home-page: https://github.com/NoahGWood/QRandom
Author: Noah Wood
Author-email: ngwood111@gmail.com
License: UNKNOWN
Description: # QRandom
        Random number generation using quantum computers.
        
        Right now the project is in its' infancy.
        
        # WARNING: THIS PROGRAM SHOULD NOT BE CONSIDERED CRYPTOGRAPHICALLY RANDOM UNLESS CONNECTED TO A REAL QUANTUM PROCESSOR
        
        
        ## This is a basic example of how to use QRandom
        
        ### You can import everything
        from qrandom import *
        
        ### or just the QRandom module if you'd like to instantiate it yourself
        from qrandom import Qrandom
        x = QRandom()
        
        ### generate a random float between 0 and 1:
        print(random())
        print(x.random())
        
        ### generate a random integer in range
        print(randrange(0, 5))
        print(x.randrange(0, 5))
        
        ### Generate a random number n bits long, defaults to integer output
        print(getrandbits(8))
        print(x.getrandbits(8))
        
        ### You can also get the number in byte format
        print(getrandbits(8, x="bytes"))
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
