Metadata-Version: 2.2
Name: timelap
Version: 0.0.1
Summary: A simple time measuring library
Author: aftxrlifx
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

[![License: CC0-1.0 license](https://img.shields.io/npm/l/badge-maker.svg)](http://creativecommons.org/publicdomain/zero/1.0/)

# Timelap


### Usage
```py
from timelap import timelap

timelap.start("Starting timer") # Starts the timer. Text is optional.
# Some code
timelap.now("Checkpoint") # Prints the amount of time that's passed since timelap.start(). Text is optional.
# Some more code
timelap.stop("Now stopped") # Prints the amount of time passed a final time, then stopping. Text is optional.
```

## License
No Copyright

The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law.
You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. See Other Information below.

 In no way are the patent or trademark rights of any person affected by CC0, nor are the rights that other persons may have in the work or in how the work is used, such as [publicity or privacy](https://creativecommons.org/publicdomain/zero/1.0/#ref-publicity-rights) rights.
Unless expressly stated otherwise, the person who associated a work with this deed makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law.
When using or citing the work, you should not imply [endorsement](https://creativecommons.org/publicdomain/zero/1.0/#ref-endorsement) by the author or the affirmer.
