Metadata-Version: 2.4
Name: sleep_in_ms
Version: 0.0.3
Summary: A simple function to sleep in milliseconds
Author-email: João Senger <joaontn@gmail.com>, Felipe Cerquiare <contato.felipecerquiare@gmail.com>
Project-URL: Homepage, https://github.com/joaosenger/sleep_in_ms
Project-URL: Bug Tracker, https://github.com/joaosenger/sleep_in_ms/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.25
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# sleep-in-ms

A simple function to sleep in milliseconds.

## Installation

```bash
pip install sleep-in-ms
```

## Usage

```python
from sleep_in_ms import sleep_in_ms

sleep_in_ms(1000) # Sleeps for 1 second
```
