The Load Simulator is designed to simulate a variety of mathematical operations. It offers different levels of complexities and maintains an operation rate limiting feature.
The Load Simulator package is now available on PyPI. You can easily install it using pip:
pip install load-simulator==0.1.1
Contains constants and enumerations.
Defines data models for operation details, a list of operations, and simulator configuration.
Contains the OperationExecutor
class to execute mathematical operations.
Utility functions and context managers for logging and other functionalities.
Contains the LoadSimulator
class and run_simulator
function for simulating the load for mathematical operations.
-
Install the package
pip install load-simulator==0.1.1
-
Clone the repository
git clone https://github.com/yourkin/load-simulator.git
-
Navigate to the project directory
cd load_simulator
-
Install dependencies using Poetry
poetry install
-
Activate the virtual environment
poetry shell
The run_simulator
function can be imported to run the simulation:
from load_simulator.load_simulator import run_simulator
run_simulator(
seconds_to_run=10,
complexity="medium",
max_ops_per_sec=5
)
seconds_to_run
: Number of seconds to run the simulation.complexity
: Complexity level for operations. Options are "easy", "medium", and "complicated".max_ops_per_sec
: Maximum number of operations per second.
Run the following command to execute the tests:
pytest
Fork the repository and make changes as you'd like. Pull requests are warmly welcome.
For commit messages, conform to Conventional Commits.
Distributed under the MIT License. See LICENSE
for more information.