aiteamutils 0.2.0__tar.gz → 0.2.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/PKG-INFO +7 -7
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/README.md +6 -6
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/pyproject.toml +1 -1
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/.gitignore +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/__init__.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/base_model.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/base_repository.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/base_service.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/cache.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/config.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/database.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/dependencies.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/enums.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/exceptions.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/security.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/aiteamutils/validators.py +0 -0
- {aiteamutils-0.2.0 → aiteamutils-0.2.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: aiteamutils
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: AI Team Utilities
|
5
5
|
Project-URL: Homepage, https://github.com/yourusername/aiteamutils
|
6
6
|
Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
|
@@ -14,21 +14,21 @@ Requires-Dist: python-jose
|
|
14
14
|
Requires-Dist: sqlalchemy
|
15
15
|
Description-Content-Type: text/markdown
|
16
16
|
|
17
|
-
# AI Team
|
17
|
+
# AI Team Utils
|
18
18
|
|
19
|
-
AI Team
|
19
|
+
AI Team의 공통 유틸리티 패키지입니다.
|
20
20
|
|
21
21
|
## 설치 방법
|
22
22
|
|
23
23
|
```bash
|
24
|
-
pip install
|
24
|
+
pip install aiteamutils
|
25
25
|
```
|
26
26
|
|
27
27
|
## 사용 예시
|
28
28
|
|
29
29
|
```python
|
30
|
-
from
|
31
|
-
from
|
30
|
+
from aiteamutils.database import DatabaseManager
|
31
|
+
from aiteamutils.base_model import Base
|
32
32
|
|
33
33
|
# DB 매니저 초기화
|
34
34
|
db = DatabaseManager("postgresql+asyncpg://user:pass@localhost/db")
|
@@ -39,7 +39,7 @@ async with db.get_session() as session:
|
|
39
39
|
pass
|
40
40
|
|
41
41
|
# 예외 처리
|
42
|
-
from
|
42
|
+
from aiteamutils.exceptions import CustomException, ErrorCode
|
43
43
|
|
44
44
|
try:
|
45
45
|
# 작업 수행
|
@@ -1,18 +1,18 @@
|
|
1
|
-
# AI Team
|
1
|
+
# AI Team Utils
|
2
2
|
|
3
|
-
AI Team
|
3
|
+
AI Team의 공통 유틸리티 패키지입니다.
|
4
4
|
|
5
5
|
## 설치 방법
|
6
6
|
|
7
7
|
```bash
|
8
|
-
pip install
|
8
|
+
pip install aiteamutils
|
9
9
|
```
|
10
10
|
|
11
11
|
## 사용 예시
|
12
12
|
|
13
13
|
```python
|
14
|
-
from
|
15
|
-
from
|
14
|
+
from aiteamutils.database import DatabaseManager
|
15
|
+
from aiteamutils.base_model import Base
|
16
16
|
|
17
17
|
# DB 매니저 초기화
|
18
18
|
db = DatabaseManager("postgresql+asyncpg://user:pass@localhost/db")
|
@@ -23,7 +23,7 @@ async with db.get_session() as session:
|
|
23
23
|
pass
|
24
24
|
|
25
25
|
# 예외 처리
|
26
|
-
from
|
26
|
+
from aiteamutils.exceptions import CustomException, ErrorCode
|
27
27
|
|
28
28
|
try:
|
29
29
|
# 작업 수행
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|