aiteamutils 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.0
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 Core Utils
17
+ # AI Team Utils
18
18
 
19
- AI Team Platform의 공통 유틸리티 패키지입니다.
19
+ AI Team의 공통 유틸리티 패키지입니다.
20
20
 
21
21
  ## 설치 방법
22
22
 
23
23
  ```bash
24
- pip install ai-team-core-utils
24
+ pip install aiteamutils
25
25
  ```
26
26
 
27
27
  ## 사용 예시
28
28
 
29
29
  ```python
30
- from ai_team_core_utils.database import DatabaseManager
31
- from ai_team_core_utils.base_model import Base
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 ai_team_core_utils.exceptions import CustomException, ErrorCode
42
+ from aiteamutils.exceptions import CustomException, ErrorCode
43
43
 
44
44
  try:
45
45
  # 작업 수행
@@ -1,18 +1,18 @@
1
- # AI Team Core Utils
1
+ # AI Team Utils
2
2
 
3
- AI Team Platform의 공통 유틸리티 패키지입니다.
3
+ AI Team의 공통 유틸리티 패키지입니다.
4
4
 
5
5
  ## 설치 방법
6
6
 
7
7
  ```bash
8
- pip install ai-team-core-utils
8
+ pip install aiteamutils
9
9
  ```
10
10
 
11
11
  ## 사용 예시
12
12
 
13
13
  ```python
14
- from ai_team_core_utils.database import DatabaseManager
15
- from ai_team_core_utils.base_model import Base
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 ai_team_core_utils.exceptions import CustomException, ErrorCode
26
+ from aiteamutils.exceptions import CustomException, ErrorCode
27
27
 
28
28
  try:
29
29
  # 작업 수행
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "aiteamutils"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  authors = [
9
9
  { name="AI Team" },
10
10
  ]
File without changes
File without changes