utilskit 0.2.18__tar.gz → 0.2.18.2__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.
Files changed (26) hide show
  1. {utilskit-0.2.18 → utilskit-0.2.18.2}/PKG-INFO +29 -20
  2. {utilskit-0.2.18 → utilskit-0.2.18.2}/README.md +28 -19
  3. {utilskit-0.2.18 → utilskit-0.2.18.2}/pyproject.toml +1 -1
  4. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit.egg-info/PKG-INFO +29 -20
  5. {utilskit-0.2.18 → utilskit-0.2.18.2}/MANIFEST.in +0 -0
  6. {utilskit-0.2.18 → utilskit-0.2.18.2}/setup.cfg +0 -0
  7. {utilskit-0.2.18 → utilskit-0.2.18.2}/test/test.py +0 -0
  8. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/__init__.py +0 -0
  9. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/classificationutils/__init__.py +0 -0
  10. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/classificationutils/classificationutils.py +0 -0
  11. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/dataframeutils/__init__.py +0 -0
  12. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/dataframeutils/dataframeutils.py +0 -0
  13. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/dbutils/__init__.py +0 -0
  14. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/dbutils/dbutils.py +0 -0
  15. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/plotutils/__init__.py +0 -0
  16. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/plotutils/plotutils.py +0 -0
  17. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/repeatutils/__init__.py +0 -0
  18. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/repeatutils/repeatutils.py +0 -0
  19. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/timeutils/__init__.py +0 -0
  20. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/timeutils/timeutils.py +0 -0
  21. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/utils/__init__.py +0 -0
  22. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit/utils/utils.py +0 -0
  23. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit.egg-info/SOURCES.txt +0 -0
  24. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit.egg-info/dependency_links.txt +0 -0
  25. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit.egg-info/requires.txt +0 -0
  26. {utilskit-0.2.18 → utilskit-0.2.18.2}/utilskit.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: utilskit
3
- Version: 0.2.18
3
+ Version: 0.2.18.2
4
4
  Summary: 다양한 편의성 함수 모음 패키지
5
5
  Author-email: kimyh <kim_yh663927@naver.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -32,55 +32,55 @@ pip install utilskit
32
32
 
33
33
  | 함수명 | 목적 |
34
34
  | --------------------------------------------- | --------------------- |
35
- | [confucsion_matrix](docs/confusion_matrix.md) | confusion matrix 생성 |
35
+ | [confucsion_matrix](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/confusion_matrix.md) | confusion matrix 생성 |
36
36
 
37
37
  ## - dataframeutils
38
38
 
39
39
  | 함수명 | 목적 |
40
40
  | ------------------------------------------ | --------------------- |
41
- | [read_df](docs/read_df.md) | 데이터 불러오기 |
42
- | [utc2kor](docs/utc2kor.md) | 시간대 변경 |
43
- | [adnormal2nan](docs/adnormal2nan.md) | 이상치 --> 결측치 |
44
- | [time_filling](docs/time_filling.md) | 시간 확장 |
45
- | [isdfvalid](docs/isdfvalid.md) | dataframe 유효성 검증 |
46
- | [fill_repeat_nan](docs/fill_repeat_nan.md) | 반복성 결측치 보정 |
47
- | [pin2nan](docs/pin2nan.md) | 핀포인트 결측치 보정 |
41
+ | [read_df](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/read_df.md) | 데이터 불러오기 |
42
+ | [utc2kor](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/utc2kor.md) | 시간대 변경 |
43
+ | [adnormal2nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/adnormal2nan.md) | 이상치 --> 결측치 |
44
+ | [time_filling](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/time_filling.md) | 시간 확장 |
45
+ | [isdfvalid](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/isdfvalid.md) | dataframe 유효성 검증 |
46
+ | [fill_repeat_nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/fill_repeat_nan.md) | 반복성 결측치 보정 |
47
+ | [pin2nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/pin2nan.md) | 핀포인트 결측치 보정 |
48
48
 
49
49
  ## - dbutils
50
50
 
51
51
  | 함수명 | 목적 |
52
52
  | ---------------------------- | ---------------------- |
53
- | [query2db](docs/query2db.md) | Query 를 DB에 커밋 |
54
- | [df2db](docs/df2db.md) | dataframe을 DB 에 삽입 |
53
+ | [query2db](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/query2db.md) | Query 를 DB에 커밋 |
54
+ | [df2db](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/df2db.md) | dataframe을 DB 에 삽입 |
55
55
 
56
56
  ## - plotutils
57
57
 
58
58
  | 함수명 | 목적 |
59
59
  | ------------------------------------ | ----------- |
60
- | [draw_plot](docs/draw_plot.md) | 이미지 생성 |
61
- | [draw_subplot](docs/draw_subplot.md) | |
60
+ | [draw_plot](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/draw_plot.md) | 이미지 생성 |
61
+ | [draw_subplot](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/draw_subplot.md) | |
62
62
 
63
63
  ## - repeatutils
64
64
 
65
65
  | 함수명 | 목적 |
66
66
  | -------------------------------------- | ------------------------- |
67
- | [get_section](docs/get_section.md) | 반복 구간 산출 |
68
- | [section_union](docs/section_union.md) | 구간과 구간과의 겹침 연산 |
67
+ | [get_section](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_section.md) | 반복 구간 산출 |
68
+ | [section_union](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/section_union.md) | 구간과 구간과의 겹침 연산 |
69
69
 
70
70
  ## - timeutils
71
71
 
72
72
  | 함수명 | 목적 |
73
73
  | -------------------------------------- | ------------------------------------------ |
74
- | [get_now](docs/get_now.md) | 사용자 지정 방식의 현재 시간 추출 |
75
- | [time_measure](docs/time_measure.md) | 정수 --> 시, 분, 초 변환 |
76
- | [get_date_list](docs/get_date_list.md) | 입력한 기준값을 통해 전체 날짜 리스트 생성 |
74
+ | [get_now](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_now.md) | 사용자 지정 방식의 현재 시간 추출 |
75
+ | [time_measure](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/time_measure.md) | 정수 --> 시, 분, 초 변환 |
76
+ | [get_date_list](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_date_list.md) | 입력한 기준값을 통해 전체 날짜 리스트 생성 |
77
77
 
78
78
  ## - utils
79
79
 
80
80
  | 함수명 | 목적 |
81
81
  | ---------------------------------------- | ------------------- |
82
- | [envs_setting](docs/envs_setting.md) | 각종 랜덤 시드 설정 |
83
- | [get_error_info](docs/get_error_info.md) | |
82
+ | [envs_setting](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/envs_setting.md) | 각종 랜덤 시드 설정 |
83
+ | [get_error_info](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_error_info.md) | |
84
84
 
85
85
  # Version
86
86
  ## 2025-11-24 ver 0.2.18
@@ -93,7 +93,16 @@ pip install utilskit
93
93
 
94
94
  - README, docs 구조 변경
95
95
 
96
+ ### 0.2.18.1
97
+
98
+ - README 의 하이퍼링크를 github 절대경로로 변경
99
+
100
+ ### 0.2.18.2
101
+
102
+ - README 의 하이퍼링크를 github 절대경로로 변경(경로 수정)
103
+
96
104
  ## 0.2.17
105
+
97
106
  - logutils 기능 완전 삭제 > logie 패키지로 분리
98
107
  ## 0.2.16
99
108
  - repeatutils 의 section_union 에서 mode 를 & 으로 하고 sub 또는 main section 이 빈 리스트인 경우 빈리스트 [] 를 리턴 하도록 수정
@@ -13,55 +13,55 @@ pip install utilskit
13
13
 
14
14
  | 함수명 | 목적 |
15
15
  | --------------------------------------------- | --------------------- |
16
- | [confucsion_matrix](docs/confusion_matrix.md) | confusion matrix 생성 |
16
+ | [confucsion_matrix](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/confusion_matrix.md) | confusion matrix 생성 |
17
17
 
18
18
  ## - dataframeutils
19
19
 
20
20
  | 함수명 | 목적 |
21
21
  | ------------------------------------------ | --------------------- |
22
- | [read_df](docs/read_df.md) | 데이터 불러오기 |
23
- | [utc2kor](docs/utc2kor.md) | 시간대 변경 |
24
- | [adnormal2nan](docs/adnormal2nan.md) | 이상치 --> 결측치 |
25
- | [time_filling](docs/time_filling.md) | 시간 확장 |
26
- | [isdfvalid](docs/isdfvalid.md) | dataframe 유효성 검증 |
27
- | [fill_repeat_nan](docs/fill_repeat_nan.md) | 반복성 결측치 보정 |
28
- | [pin2nan](docs/pin2nan.md) | 핀포인트 결측치 보정 |
22
+ | [read_df](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/read_df.md) | 데이터 불러오기 |
23
+ | [utc2kor](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/utc2kor.md) | 시간대 변경 |
24
+ | [adnormal2nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/adnormal2nan.md) | 이상치 --> 결측치 |
25
+ | [time_filling](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/time_filling.md) | 시간 확장 |
26
+ | [isdfvalid](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/isdfvalid.md) | dataframe 유효성 검증 |
27
+ | [fill_repeat_nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/fill_repeat_nan.md) | 반복성 결측치 보정 |
28
+ | [pin2nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/pin2nan.md) | 핀포인트 결측치 보정 |
29
29
 
30
30
  ## - dbutils
31
31
 
32
32
  | 함수명 | 목적 |
33
33
  | ---------------------------- | ---------------------- |
34
- | [query2db](docs/query2db.md) | Query 를 DB에 커밋 |
35
- | [df2db](docs/df2db.md) | dataframe을 DB 에 삽입 |
34
+ | [query2db](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/query2db.md) | Query 를 DB에 커밋 |
35
+ | [df2db](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/df2db.md) | dataframe을 DB 에 삽입 |
36
36
 
37
37
  ## - plotutils
38
38
 
39
39
  | 함수명 | 목적 |
40
40
  | ------------------------------------ | ----------- |
41
- | [draw_plot](docs/draw_plot.md) | 이미지 생성 |
42
- | [draw_subplot](docs/draw_subplot.md) | |
41
+ | [draw_plot](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/draw_plot.md) | 이미지 생성 |
42
+ | [draw_subplot](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/draw_subplot.md) | |
43
43
 
44
44
  ## - repeatutils
45
45
 
46
46
  | 함수명 | 목적 |
47
47
  | -------------------------------------- | ------------------------- |
48
- | [get_section](docs/get_section.md) | 반복 구간 산출 |
49
- | [section_union](docs/section_union.md) | 구간과 구간과의 겹침 연산 |
48
+ | [get_section](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_section.md) | 반복 구간 산출 |
49
+ | [section_union](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/section_union.md) | 구간과 구간과의 겹침 연산 |
50
50
 
51
51
  ## - timeutils
52
52
 
53
53
  | 함수명 | 목적 |
54
54
  | -------------------------------------- | ------------------------------------------ |
55
- | [get_now](docs/get_now.md) | 사용자 지정 방식의 현재 시간 추출 |
56
- | [time_measure](docs/time_measure.md) | 정수 --> 시, 분, 초 변환 |
57
- | [get_date_list](docs/get_date_list.md) | 입력한 기준값을 통해 전체 날짜 리스트 생성 |
55
+ | [get_now](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_now.md) | 사용자 지정 방식의 현재 시간 추출 |
56
+ | [time_measure](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/time_measure.md) | 정수 --> 시, 분, 초 변환 |
57
+ | [get_date_list](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_date_list.md) | 입력한 기준값을 통해 전체 날짜 리스트 생성 |
58
58
 
59
59
  ## - utils
60
60
 
61
61
  | 함수명 | 목적 |
62
62
  | ---------------------------------------- | ------------------- |
63
- | [envs_setting](docs/envs_setting.md) | 각종 랜덤 시드 설정 |
64
- | [get_error_info](docs/get_error_info.md) | |
63
+ | [envs_setting](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/envs_setting.md) | 각종 랜덤 시드 설정 |
64
+ | [get_error_info](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_error_info.md) | |
65
65
 
66
66
  # Version
67
67
  ## 2025-11-24 ver 0.2.18
@@ -74,7 +74,16 @@ pip install utilskit
74
74
 
75
75
  - README, docs 구조 변경
76
76
 
77
+ ### 0.2.18.1
78
+
79
+ - README 의 하이퍼링크를 github 절대경로로 변경
80
+
81
+ ### 0.2.18.2
82
+
83
+ - README 의 하이퍼링크를 github 절대경로로 변경(경로 수정)
84
+
77
85
  ## 0.2.17
86
+
78
87
  - logutils 기능 완전 삭제 > logie 패키지로 분리
79
88
  ## 0.2.16
80
89
  - repeatutils 의 section_union 에서 mode 를 & 으로 하고 sub 또는 main section 이 빈 리스트인 경우 빈리스트 [] 를 리턴 하도록 수정
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
8
8
  name = "utilskit"
9
9
 
10
10
  # 버전
11
- version = "0.2.18"
11
+ version = "0.2.18.2"
12
12
 
13
13
  # 패키지 설명 (짧은 설명)
14
14
  description = "다양한 편의성 함수 모음 패키지"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: utilskit
3
- Version: 0.2.18
3
+ Version: 0.2.18.2
4
4
  Summary: 다양한 편의성 함수 모음 패키지
5
5
  Author-email: kimyh <kim_yh663927@naver.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -32,55 +32,55 @@ pip install utilskit
32
32
 
33
33
  | 함수명 | 목적 |
34
34
  | --------------------------------------------- | --------------------- |
35
- | [confucsion_matrix](docs/confusion_matrix.md) | confusion matrix 생성 |
35
+ | [confucsion_matrix](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/confusion_matrix.md) | confusion matrix 생성 |
36
36
 
37
37
  ## - dataframeutils
38
38
 
39
39
  | 함수명 | 목적 |
40
40
  | ------------------------------------------ | --------------------- |
41
- | [read_df](docs/read_df.md) | 데이터 불러오기 |
42
- | [utc2kor](docs/utc2kor.md) | 시간대 변경 |
43
- | [adnormal2nan](docs/adnormal2nan.md) | 이상치 --> 결측치 |
44
- | [time_filling](docs/time_filling.md) | 시간 확장 |
45
- | [isdfvalid](docs/isdfvalid.md) | dataframe 유효성 검증 |
46
- | [fill_repeat_nan](docs/fill_repeat_nan.md) | 반복성 결측치 보정 |
47
- | [pin2nan](docs/pin2nan.md) | 핀포인트 결측치 보정 |
41
+ | [read_df](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/read_df.md) | 데이터 불러오기 |
42
+ | [utc2kor](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/utc2kor.md) | 시간대 변경 |
43
+ | [adnormal2nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/adnormal2nan.md) | 이상치 --> 결측치 |
44
+ | [time_filling](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/time_filling.md) | 시간 확장 |
45
+ | [isdfvalid](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/isdfvalid.md) | dataframe 유효성 검증 |
46
+ | [fill_repeat_nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/fill_repeat_nan.md) | 반복성 결측치 보정 |
47
+ | [pin2nan](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/pin2nan.md) | 핀포인트 결측치 보정 |
48
48
 
49
49
  ## - dbutils
50
50
 
51
51
  | 함수명 | 목적 |
52
52
  | ---------------------------- | ---------------------- |
53
- | [query2db](docs/query2db.md) | Query 를 DB에 커밋 |
54
- | [df2db](docs/df2db.md) | dataframe을 DB 에 삽입 |
53
+ | [query2db](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/query2db.md) | Query 를 DB에 커밋 |
54
+ | [df2db](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/df2db.md) | dataframe을 DB 에 삽입 |
55
55
 
56
56
  ## - plotutils
57
57
 
58
58
  | 함수명 | 목적 |
59
59
  | ------------------------------------ | ----------- |
60
- | [draw_plot](docs/draw_plot.md) | 이미지 생성 |
61
- | [draw_subplot](docs/draw_subplot.md) | |
60
+ | [draw_plot](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/draw_plot.md) | 이미지 생성 |
61
+ | [draw_subplot](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/draw_subplot.md) | |
62
62
 
63
63
  ## - repeatutils
64
64
 
65
65
  | 함수명 | 목적 |
66
66
  | -------------------------------------- | ------------------------- |
67
- | [get_section](docs/get_section.md) | 반복 구간 산출 |
68
- | [section_union](docs/section_union.md) | 구간과 구간과의 겹침 연산 |
67
+ | [get_section](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_section.md) | 반복 구간 산출 |
68
+ | [section_union](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/section_union.md) | 구간과 구간과의 겹침 연산 |
69
69
 
70
70
  ## - timeutils
71
71
 
72
72
  | 함수명 | 목적 |
73
73
  | -------------------------------------- | ------------------------------------------ |
74
- | [get_now](docs/get_now.md) | 사용자 지정 방식의 현재 시간 추출 |
75
- | [time_measure](docs/time_measure.md) | 정수 --> 시, 분, 초 변환 |
76
- | [get_date_list](docs/get_date_list.md) | 입력한 기준값을 통해 전체 날짜 리스트 생성 |
74
+ | [get_now](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_now.md) | 사용자 지정 방식의 현재 시간 추출 |
75
+ | [time_measure](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/time_measure.md) | 정수 --> 시, 분, 초 변환 |
76
+ | [get_date_list](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_date_list.md) | 입력한 기준값을 통해 전체 날짜 리스트 생성 |
77
77
 
78
78
  ## - utils
79
79
 
80
80
  | 함수명 | 목적 |
81
81
  | ---------------------------------------- | ------------------- |
82
- | [envs_setting](docs/envs_setting.md) | 각종 랜덤 시드 설정 |
83
- | [get_error_info](docs/get_error_info.md) | |
82
+ | [envs_setting](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/envs_setting.md) | 각종 랜덤 시드 설정 |
83
+ | [get_error_info](https://github.com/Kim-YoonHyun/utilskit/blob/master/docs/get_error_info.md) | |
84
84
 
85
85
  # Version
86
86
  ## 2025-11-24 ver 0.2.18
@@ -93,7 +93,16 @@ pip install utilskit
93
93
 
94
94
  - README, docs 구조 변경
95
95
 
96
+ ### 0.2.18.1
97
+
98
+ - README 의 하이퍼링크를 github 절대경로로 변경
99
+
100
+ ### 0.2.18.2
101
+
102
+ - README 의 하이퍼링크를 github 절대경로로 변경(경로 수정)
103
+
96
104
  ## 0.2.17
105
+
97
106
  - logutils 기능 완전 삭제 > logie 패키지로 분리
98
107
  ## 0.2.16
99
108
  - repeatutils 의 section_union 에서 mode 를 & 으로 하고 sub 또는 main section 이 빈 리스트인 경우 빈리스트 [] 를 리턴 하도록 수정
File without changes
File without changes
File without changes