Metadata-Version: 2.3
Name: kbasic
Version: 0.1.21
Summary: Keyan's basic utility functions.
Author: Keyan Gootkin
Author-email: Keyan Gootkin <keyangootkin@gmail.com>
Requires-Dist: numpy>=2.4.2
Requires-Dist: pylatexenc>=2.10
Requires-Dist: scipy>=1.17.0
Requires-Dist: tqdm>=4.67.3
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# KBasic
The core utility functions that Keyan is sick of rewriting in every project :-) 
```
pip install kbasic
```
## Modules
### kbasic.audio
a module for playing sounds

```python
kbasic.audio.sound.play(
    file: str # the path to the audio file
) -> None
```
Play an audio file through the computer 

args:
* file (str): the path to the audio file you want to play
> NOTE: THIS ONLY WORKS FOR LINUX/MAC I THINK

### kbasic.array
a module for manipulating numpy arrays

```python
kbasic.
```


