pjdev-sqlmodel 4.3.4__tar.gz → 4.4.0__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: pjdev-sqlmodel
3
- Version: 4.3.4
3
+ Version: 4.4.0
4
4
  Project-URL: Documentation, https://gitlab.purplejay.net/keystone/python
5
5
  Project-URL: Issues, https://gitlab.purplejay.net/keystone/python/issues
6
6
  Project-URL: Source, https://gitlab.purplejay.net/keystone/python
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2024-present Chris O'Neill <chris@purplejay.io>
2
2
  #
3
3
  # SPDX-License-Identifier: MIT
4
- __version__ = "4.3.4"
4
+ __version__ = "4.4.0"
@@ -17,6 +17,9 @@ from .utilities import (
17
17
  load_raw_excel_data,
18
18
  load_workbook,
19
19
  get_files_in_directory,
20
+ convert_table_to_df,
21
+ convert_table_to_csv,
22
+ export_to_sheet
20
23
  )
21
24
 
22
25
  __all__ = [
@@ -32,6 +35,9 @@ __all__ = [
32
35
  "load_raw_csv_data",
33
36
  "load_csv_data",
34
37
  "get_files_in_directory",
38
+ "convert_table_to_df",
39
+ "convert_table_to_csv",
40
+ "export_to_sheet",
35
41
  ] + models.__all__
36
42
 
37
43
  from loguru import logger
File without changes