An Easy Way To Benchmark Your Python Code
Project description
Raptor
A Easy Way To Benchmark Your Code.
How To Use It
Step 1: First You Will Need To Create A Benchmark File For Your Project
"""to_benchmark.py"""
#Add All Your Setup
import math
#Write Your Benchmarking Functions
def bench_square_root():
"""Name Your Function Starting With bench. Or Raptor Wont Detect It
Also the function should not take any arguments"""
return math.sqrt(25)
def bench_multiply():
return 5 ** 25
Step 2: Download raptor.py
pip install python-raptor
Then, Run This In Your Terminal
NOTICE: The -t Argument Takes An Integer Which Tells Raptor How Many Times Should Each Benchmarking Function Run
raptor.py to_benchmark.py -t 10000
Step 3: See The Output. Voilaaaaa!!!!!!!!!
Output
========== Bench Marking ===========
[bench_square_root] Took 0.0025385 Seconds For 10000 Run(s)
[bench_multiply] Took 0.0010813999999999997 Seconds For 10000 Run(s)
Future Features
- I want to add an history, which can show you how much faster or slower your program has gotten
- I want to add colored output
- I want to add better exception handling
Built With
Raptor Uses Timeit Module To Benchmark Your Code
Author
Roshan Jignesh Mehta - sonicroshan122@gmail.com
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
python_raptor-0.2.1.tar.gz
(2.7 kB
view details)
Built Distribution
File details
Details for the file python_raptor-0.2.1.tar.gz
.
File metadata
- Download URL: python_raptor-0.2.1.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
bdb482391184207f7e2490e61986d7d1bc43468bfb493b4fe350d6fcbf85843b
|
|
MD5 |
dd2f22e0f54a3f6290fdbd7f27a713ad
|
|
BLAKE2b-256 |
90e0fdf4099aea3a867b7a5fb29da408ce26df5f958874d683f62bb479880089
|
File details
Details for the file python_raptor-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: python_raptor-0.2.1-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
42d47bd647407e3db6470254ba475d431e039b394b5702ba0c61d10877670ee3
|
|
MD5 |
70bfa52f0ea1752c8e20630cf849b76e
|
|
BLAKE2b-256 |
8d851f1dca86966126692a784e5d1bfe734bbb8cd42cbfdb3ce739501a6982a7
|