[15/11/23] Updating README, adding simple run script

This commit is contained in:
Andrew Conlin 2023-11-15 11:19:13 +00:00
parent 1631868a5f
commit 0a5e4eb4ca
3 changed files with 58 additions and 3 deletions

3
.gitignore vendored
View File

@ -77,8 +77,5 @@ docs/_build/
# pyenv # pyenv
.env/ .env/
# Python files
run.py
# Rust files # Rust files
src/main.rs src/main.rs

View File

@ -1,2 +1,49 @@
![A logo with the word tictoc followed by a stopwatch emoji](./.docs/logoLightMode.png#gh-light-mode-only) ![A logo with the word tictoc followed by a stopwatch emoji](./.docs/logoLightMode.png#gh-light-mode-only)
![A logo with the word tictoc followed by a stopwatch emoji](./.docs/logoDarkMode.png#gh-dark-mode-only) ![A logo with the word tictoc followed by a stopwatch emoji](./.docs/logoDarkMode.png#gh-dark-mode-only)
# 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

11
run.py Normal file
View File

@ -0,0 +1,11 @@
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)