Metadata-Version: 2.1
Name: ss-pylib
Version: 0.19.2
Summary: SWEET-SOOP Python Library
Author: sweetsoop
Author-email: sweetsoop@gmail.com
License: MIT
Requires-Python: >=3.13.5
Description-Content-Type: text/markdown
Requires-Dist: httpx
Requires-Dist: PyMySQL
Requires-Dist: stringcase
Requires-Dist: cryptography
Requires-Dist: python-dateutil
Requires-Dist: dataclasses-json

# SWEET-SOOP Python Library

## Decorator
### Singleton
**How to use**
```python
from sslib.decorator.singleton import singleton

@singleton
class MyClass:
  pass
```

## Helper
### Config
**.env**
```c
[common] //group
NAME = sweetsoop  //key = value
```
**How to use**
```python
from sslib.helper.config import Config

config = Config(os.path.dirname(__file__) + '/.env')
print(config.get('common.NAME'))
```
