[15/11/23] Updating README, adding simple run script
This commit is contained in:
parent
1631868a5f
commit
0a5e4eb4ca
3
.gitignore
vendored
3
.gitignore
vendored
@ -77,8 +77,5 @@ docs/_build/
|
||||
# pyenv
|
||||
.env/
|
||||
|
||||
# Python files
|
||||
run.py
|
||||
|
||||
# Rust files
|
||||
src/main.rs
|
||||
|
47
README.md
47
README.md
@ -1,2 +1,49 @@
|
||||

|
||||

|
||||
|
||||
# Fast, simple and accurate Python timing. Written in Rust.
|
||||
|
||||
## Installation
|
||||
Install with [pip](https://pypi.org/project/pip):
|
||||
```bash
|
||||
$ python -m pip install tictoc
|
||||
```
|
||||
|
||||
## Usage
|
||||
Import and initialise. **The module must be initialised to be used!**
|
||||
```python
|
||||
import tictoc
|
||||
t = tictoc.init()
|
||||
```
|
||||
Begin timing with `tic()`, and stop with `toc()`.
|
||||
```python
|
||||
t.tic()
|
||||
# some code
|
||||
t.toc()
|
||||
```
|
||||
When `toc` is called, the results are saved. They can be accessed with the following syntax:
|
||||
```python
|
||||
t.results.{unit}
|
||||
```
|
||||
The available units are:
|
||||
```python
|
||||
t.results.nanos # u128
|
||||
t.results.micros # u128
|
||||
t.results.millis # u128
|
||||
t.results.seconds # f64
|
||||
```
|
||||
|
||||
## Full example
|
||||
```python
|
||||
import time
|
||||
|
||||
import tictoc
|
||||
t = tictoc.init()
|
||||
|
||||
t.tic() # start timing
|
||||
time.sleep(3) # sleep for 3 seconds
|
||||
t.toc() # stop timing
|
||||
|
||||
print(t.results.seconds)
|
||||
# >>>
|
||||
``` 3.000457715
|
||||
|
Loading…
x
Reference in New Issue
Block a user