xython 4.5.6__tar.gz → 4.5.8__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.
- {xython-4.5.6/src/xython.egg-info → xython-4.5.8}/PKG-INFO +1 -1
- {xython-4.5.6 → xython-4.5.8}/pyproject.toml +1 -1
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_db.py +0 -5
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_excel.py +841 -965
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_outlook.py +2 -2
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_time.py +41 -38
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_util.py +115 -52
- {xython-4.5.6 → xython-4.5.8/src/xython.egg-info}/PKG-INFO +1 -1
- {xython-4.5.6 → xython-4.5.8}/MANIFEST.in +0 -0
- {xython-4.5.6 → xython-4.5.8}/README.md +0 -0
- {xython-4.5.6 → xython-4.5.8}/requirements.txt +0 -0
- {xython-4.5.6 → xython-4.5.8}/setup.cfg +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/__init__.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_auto.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_chrome.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_color.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_common.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_edge.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_excel_event.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_hwp.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_list.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_map.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_re.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython/xy_word.py +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython.egg-info/SOURCES.txt +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython.egg-info/dependency_links.txt +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython.egg-info/requires.txt +0 -0
- {xython-4.5.6 → xython-4.5.8}/src/xython.egg-info/top_level.txt +0 -0
|
@@ -57,11 +57,6 @@ class xy_db:
|
|
|
57
57
|
input_l2d.append(line_data)
|
|
58
58
|
return input_l2d
|
|
59
59
|
|
|
60
|
-
def append_df1_in_df2(self, df_obj_1, df_obj_2):
|
|
61
|
-
#dataframe의 끝에 dataframe으로 만든 것을 맨끝에 추가하는것
|
|
62
|
-
df_obj_1 = pd.concat([df_obj_1, df_obj_2])
|
|
63
|
-
return df_obj_1
|
|
64
|
-
|
|
65
60
|
def change_any_data_to_dic(self, input_1, input_2=""):
|
|
66
61
|
"""
|
|
67
62
|
입력되는 자료가 어떤 자료형태라도 사전형식으로 만드는 것
|