hossam 0.3.16__py3-none-any.whl → 0.3.18__py3-none-any.whl

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.
@@ -0,0 +1,206 @@
1
+ Metadata-Version: 2.4
2
+ Name: hossam
3
+ Version: 0.3.18
4
+ Summary: Hossam Data Helper
5
+ Author-email: Lee Kwang-Ho <leekh4232@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/leekh4232/hossam-py
8
+ Project-URL: Repository, https://github.com/leekh4232/hossam-py
9
+ Keywords: data,analysis,helper,hossam,tensorflow
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Topic :: Software Development :: Libraries
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Requires-Python: >=3.11
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: tqdm
19
+ Requires-Dist: tabulate
20
+ Requires-Dist: pandas
21
+ Requires-Dist: matplotlib
22
+ Requires-Dist: seaborn
23
+ Requires-Dist: requests
24
+ Requires-Dist: openpyxl
25
+ Requires-Dist: xlrd
26
+ Requires-Dist: statsmodels
27
+ Requires-Dist: scipy
28
+ Requires-Dist: scikit-learn
29
+ Requires-Dist: pingouin
30
+ Requires-Dist: statannotations
31
+ Requires-Dist: joblib
32
+ Requires-Dist: geopandas
33
+ Requires-Dist: kmodes
34
+ Requires-Dist: pmdarima
35
+ Requires-Dist: prophet
36
+ Requires-Dist: plotly
37
+ Requires-Dist: jenkspy
38
+ Dynamic: license-file
39
+
40
+ ---
41
+ title: 🎓 Hossam Data Helper
42
+ ---
43
+
44
+ # 🎓 Hossam Data Helper
45
+
46
+ [![Python Version](https://img.shields.io/badge/python-3.8%2B-blue.svg)](https://www.python.org/downloads/)
47
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
48
+ [![Version](https://img.shields.io/badge/version-0.3.8-green.svg)](https://pypi.org/project/hossam/)
49
+ [![Documentation](https://img.shields.io/badge/docs-py.hossam.kr-blue.svg)](https://py.hossam.kr)
50
+
51
+ **Hossam**은 데이터 분석, 시각화, 통계 처리를 위한 종합 헬퍼 라이브러리입니다.
52
+
53
+ 아이티윌(ITWILL)에서 진행 중인 머신러닝 및 데이터 분석 수업을 위해 개발되었으며, 이광호 강사의 강의에서 활용됩니다.
54
+
55
+ ## ✨ 주요 특징
56
+
57
+ - 📊 **풍부한 시각화**: 25+ 시각화 함수 (Seaborn/Matplotlib 기반)
58
+ - 🎯 **통계 분석**: 회귀, 분류, 시계열 분석 도구
59
+ - 📦 **샘플 데이터**: 학습용 데이터셋 즉시 로드
60
+ - 🔧 **데이터 전처리**: 결측치 처리, 이상치 탐지, 스케일링
61
+ - 🤖 **MCP 서버**: VSCode/Copilot과 통합 가능한 Model Context Protocol 지원
62
+ - 📈 **교육용 최적화**: 데이터 분석 교육에 특화된 설계
63
+
64
+ ---
65
+
66
+ ## 📦 설치
67
+
68
+ ```bash
69
+ pip install hossam
70
+ ```
71
+
72
+ **요구사항**: Python 3.8 이상
73
+
74
+ ---
75
+
76
+ ## 🚀 빠른 시작
77
+
78
+ ### 샘플 데이터 로드
79
+
80
+ ```python
81
+ from hossam import load_data, load_info
82
+
83
+ # 사용 가능한 데이터셋 확인
84
+ datasets = load_info()
85
+
86
+ # 데이터 로드
87
+ df = load_data('AD_SALES')
88
+ ```
89
+
90
+ ### 간단한 시각화
91
+
92
+ ```python
93
+ from hossam import hs_plot
94
+ import pandas as pd
95
+ import numpy as np
96
+
97
+ df = pd.DataFrame({
98
+ 'x': np.random.randn(100),
99
+ 'y': np.random.randn(100),
100
+ 'category': np.random.choice(['A', 'B', 'C'], 100)
101
+ })
102
+
103
+ # 산점도
104
+ hs_plot.scatterplot(df=df, xname='x', yname='y', hue='category')
105
+
106
+ # 박스플롯
107
+ hs_plot.boxplot(df=df, xname='category', yname='x')
108
+ ```
109
+
110
+ ---
111
+
112
+ ## 🤖 MCP Server
113
+
114
+ Hossam은 **Model Context Protocol(MCP)** 기반 서버로도 작동하며, VSCode Copilot/Cline과 통합하여 데이터 분석 코드를 자동 생성할 수 있습니다.
115
+
116
+ ### 빠른 시작
117
+
118
+ ```bash
119
+ # 서버 시작
120
+ hossam-mcp
121
+ ```
122
+
123
+ ### VSCode + Copilot 연동
124
+
125
+ VSCode에서 Copilot과 함께 사용하려면 `.vscode/settings.json` 설정이 필요합니다.
126
+
127
+ **Copilot Chat에서 사용:**
128
+ ```
129
+ @hossam 이 DataFrame의 결측치를 분석하고 처리하는 코드 작성해줘
130
+ ```
131
+
132
+ **설정 가이드:**
133
+ - [`.vscode/settings.json` 완성형 샘플](https://py.hossam.kr/guides/vscode-settings-sample/) ⭐
134
+ - [VSCode + Copilot 연동 상세](https://py.hossam.kr/guides/vscode-copilot-integration/)
135
+ - [MCP 서버 사용법](https://py.hossam.kr/guides/mcp/)
136
+ - [Copilot Chat 프롬프트 예시](https://py.hossam.kr/guides/copilot-prompts/)
137
+
138
+ ---
139
+
140
+ ## 📚 전체 문서
141
+
142
+ **완전한 API 문서와 가이드는 [py.hossam.kr](https://py.hossam.kr)에서 확인하세요.**
143
+
144
+ ### 주요 모듈
145
+
146
+ - **hs_plot**: 25+ 시각화 함수 (선 그래프, 산점도, 히스토그램, 박스플롯, 히트맵 등)
147
+ - **hs_stats**: 회귀/분류 분석, 교차검증, 정규성 검정, 상관분석 등
148
+ - **hs_prep**: 결측치 처리, 이상치 탐지, 스케일링, 인코딩
149
+ - **hs_gis**: GIS 데이터 로드 및 시각화 (대한민국 지도 지원)
150
+ - **hs_classroom**: 학습용 이진분류, 다중분류, 회귀 데이터 생성
151
+ - **hs_util**: 예쁜 테이블 출력, 그리드 서치 등
152
+
153
+ 자세한 사용법은 [API 문서](https://py.hossam.kr/api/hossam/)를 참고하세요.
154
+
155
+ ---
156
+
157
+ ## 🎓 예제
158
+
159
+ ### 결측치 분석
160
+
161
+ ```python
162
+ from hossam import hs_prep
163
+
164
+ # 결측치 정보 확인
165
+ hs_prep.hs_missing_values(df)
166
+
167
+ # 결측치 시각화
168
+ hs_prep.hs_missing_values_barplot(df)
169
+ ```
170
+
171
+ ### 회귀 분석
172
+
173
+ ```python
174
+ from hossam import hs_stats
175
+
176
+ # 단순 선형 회귀
177
+ result = hs_stats.hs_simple_regression(df, xname='x', yname='y', plot=True)
178
+ ```
179
+
180
+ ### 상관분석 히트맵
181
+
182
+ ```python
183
+ from hossam import hs_plot
184
+
185
+ hs_plot.heatmap(df=df, annot=True, cmap='coolwarm')
186
+ ```
187
+
188
+ 더 많은 예제는 [문서 사이트](https://py.hossam.kr)를 참고하세요.
189
+
190
+ ---
191
+
192
+ ## 📄 라이선스
193
+
194
+ 이 프로젝트는 MIT 라이선스를 따릅니다. 자유롭게 사용, 수정, 배포할 수 있습니다.
195
+
196
+ ---
197
+
198
+ ## 🔗 링크
199
+
200
+ - **문서**: [py.hossam.kr](https://py.hossam.kr)
201
+ - **PyPI**: [pypi.org/project/hossam](https://pypi.org/project/hossam/)
202
+ - **강사**: 이광호 (ITWILL 머신러닝 및 데이터 분석)
203
+
204
+ ---
205
+
206
+ **Made with ❤️ for Data Science Education**
@@ -0,0 +1,27 @@
1
+ hossam/NotoSansKR-Regular.ttf,sha256=0SCufUQwcVWrWTu75j4Lt_V2bgBJIBXl1p8iAJJYkVY,6185516
2
+ hossam/__init__.py,sha256=j5tp7g9ljMRUo-aCeMXRXyIOXiXkUN9dHRRMGmiG2kU,2800
3
+ hossam/data_loader.py,sha256=UpC_gn-xUWij0s-MO51qrzJNz3b5-RCz1N6esQMZUJM,6320
4
+ hossam/hs_classroom.py,sha256=b2vzxHapxibnJwcRwWvOfLfczjF-G3ZdT9hIUt4z4oU,27407
5
+ hossam/hs_gis.py,sha256=9ER8gXG2Or0DZ1fpbJR84WsNVPcxu788FsNtR6LsEgo,11379
6
+ hossam/hs_plot.py,sha256=7cngzrEeVeBvANyReI9kd3yHZGMOFZjvgBbBGA7rT2E,78467
7
+ hossam/hs_prep.py,sha256=RMeM6QPR-dsk3X_crJity8Tva8xY-mOXlcG3L7W-qjg,36220
8
+ hossam/hs_stats.py,sha256=2P_CeitniiiOcuX1El6si7IUOayThxIVBbuCaCASNVY,117746
9
+ hossam/hs_timeserise.py,sha256=loRofR-m2NMxHaDEWDhZjo6DwayEf4c7qkSoCErfBWY,42165
10
+ hossam/hs_util.py,sha256=E4LnzPlRdWeqICv7TtTL9DT5PogqBhOuTgYiaav565U,7461
11
+ hossam/leekh.png,sha256=1PB5NQ24SDoHA5KMiBBsWpSa3iniFcwFTuGwuOsTHfI,6395
12
+ hossam/mcp/__init__.py,sha256=uOFs4lTDpYoB_YZM4wOENkB0yWD0m8xuY7p4RQaskyE,338
13
+ hossam/mcp/hs_classroom.py,sha256=u_5WUvNSS9e9wmBAxsMeCty5lnposZC1w-pud7jMhuk,759
14
+ hossam/mcp/hs_gis.py,sha256=PyfzySp_degVbg7O3h0BlDfZJjgclCQKScku-klcuX8,1176
15
+ hossam/mcp/hs_plot.py,sha256=3e9FabRrf0FEwUTtld3e3irJFWzmU7EuV99GMfzLqnY,2474
16
+ hossam/mcp/hs_prep.py,sha256=QcaUb-kggexi-chMCRoN104YXKsDHJNZJifDJkadef4,2624
17
+ hossam/mcp/hs_stats.py,sha256=9ODc3rXxzOasng1nvMDctbPC_T6gyeN72-hOiDCJ2eQ,796
18
+ hossam/mcp/hs_timeserise.py,sha256=Uc5ZKLv_sBe1tUdSZ0pmBuAFOQ_yX2MH8Me3DVeBp7c,762
19
+ hossam/mcp/hs_util.py,sha256=XsjOb9K5PUeAStgne-BluVUGyt0QEzN5wmFX77-yYGk,1237
20
+ hossam/mcp/loader.py,sha256=Ib11QUG8gV1V0TkMUz1g5kGsFJCApiwiwQ9N1cCy7bA,857
21
+ hossam/mcp/server.py,sha256=4B6ri8xwX22sA6OlNOWC4wN7Uwfgtt4gQ_HvROMNINo,21270
22
+ hossam-0.3.18.dist-info/licenses/LICENSE,sha256=nIqzhlcFY_2D6QtFsYjwU7BWkafo-rUJOQpDZ-DsauI,941
23
+ hossam-0.3.18.dist-info/METADATA,sha256=6HZVz9ZZp5P3bmwGPnTmYcD0dfl8DYRrLPi1TEGJ_Vs,5677
24
+ hossam-0.3.18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
25
+ hossam-0.3.18.dist-info/entry_points.txt,sha256=0y7c7g_swXFS6See69i-4q_shcwUs-wIalfuvuYiA9I,53
26
+ hossam-0.3.18.dist-info/top_level.txt,sha256=_-7bwjhthHplWhywEaHIJX2yL11CQCaLjCNSBlk6wiQ,7
27
+ hossam-0.3.18.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ hossam-mcp = hossam.mcp.server:run