Welcome to pyrand! This software helps you quickly generate random numbers for your Python projects using Rust technology. It is designed to be fast and efficient, making it ideal for anyone needing reliable random number generation.
To get started, visit the Releases page to download the latest version of pyrand: Download pyrand.
.whl file from the Releases page..whl file:
cd path\to\your\file.pip install pyrand-<version>.whl
.whl file from the Releases page..whl file:
cd /path/to/your/file
pip install pyrand-<version>.whl
.whl file from the Releases page.chmod +x pyrand-<version>.sh
Then run it with:
./pyrand-<version>.sh
.whl file:
cd /path/to/your/file
pip install pyrand-<version>.whl
To run pyrand smoothly, ensure your system meets the following requirements:
After installation, you can start using pyrand in your Python scripts.
Here is a simple example to get you started:
import pyrand
# Create a random number generator
rng = pyrand.RandomGenerator()
# Generate a random integer between 1 and 10
random_number = rng.randint(1, 10)
print(f'Random number: {random_number}')
This example demonstrates how easy it is to generate a random number using pyrand. You can integrate this into your projects as needed.
We welcome contributions! If you have ideas for improvements or find a bug, please open an issue or submit a pull request. Join our community and help us make pyrand even better.
For updates and new releases, keep an eye on our Releases page. You can also follow our repository for notifications about upcoming features and improvements.
Thank you for using pyrand! We hope it serves your random number generation needs effectively.