Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
# eed_basic_utils
## eed_basic_utils

This folder contains basic utility functions used throughout the project.
To use these utilities, import them in your Python scripts:

```python
from eed_basic_utils.<category> import <module_name>
```

### Contents

- Utility functions for common tasks
- Helpers for time, logging, and more

### Usage Example

```python
from eed_basic_utils.time import sleep_random

sleep_random(1, 5)
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "eed-basic-utils"
version = "0.1.2"
version = "1.0.0"
description = "Add your description here"
readme = "README.md"
authors = [
Expand Down
Loading