tablemaster 1.2.3__tar.gz → 1.2.4__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.
- {tablemaster-1.2.3/tablemaster.egg-info → tablemaster-1.2.4}/PKG-INFO +17 -17
- {tablemaster-1.2.3 → tablemaster-1.2.4}/setup.cfg +4 -4
- {tablemaster-1.2.3 → tablemaster-1.2.4}/setup.py +1 -1
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster/__init__.py +6 -3
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster/gspread.py +1 -1
- {tablemaster-1.2.3 → tablemaster-1.2.4/tablemaster.egg-info}/PKG-INFO +17 -17
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster.egg-info/SOURCES.txt +0 -1
- {tablemaster-1.2.3 → tablemaster-1.2.4}/LICENSE +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/README.md +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster/feishu.py +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster/local.py +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster/mysql.py +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster/utils.py +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster.egg-info/dependency_links.txt +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster.egg-info/requires.txt +0 -0
- {tablemaster-1.2.3 → tablemaster-1.2.4}/tablemaster.egg-info/top_level.txt +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: tablemaster
|
|
3
|
-
Version: 1.2.
|
|
4
|
-
Summary: A Python package makes it easy to manage tables anywhere
|
|
5
|
-
Home-page: https://github.com/ilivid/tablemaster
|
|
6
|
-
Author: Livid
|
|
7
|
-
Author-email: livid.su@gmail.com
|
|
8
|
-
License-File: LICENSE
|
|
9
|
-
Requires-Dist: PyMySQL
|
|
10
|
-
Requires-Dist: SQLAlchemy
|
|
11
|
-
Requires-Dist: pandas
|
|
12
|
-
Requires-Dist: python-dateutil
|
|
13
|
-
Requires-Dist: gspread
|
|
14
|
-
Requires-Dist: tqdm
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
Requires-Dist: pyyaml
|
|
17
|
-
Requires-Dist: openpyxl
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tablemaster
|
|
3
|
+
Version: 1.2.4
|
|
4
|
+
Summary: A Python package makes it easy to manage tables anywhere
|
|
5
|
+
Home-page: https://github.com/ilivid/tablemaster
|
|
6
|
+
Author: Livid
|
|
7
|
+
Author-email: livid.su@gmail.com
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: PyMySQL
|
|
10
|
+
Requires-Dist: SQLAlchemy
|
|
11
|
+
Requires-Dist: pandas
|
|
12
|
+
Requires-Dist: python-dateutil
|
|
13
|
+
Requires-Dist: gspread
|
|
14
|
+
Requires-Dist: tqdm
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: pyyaml
|
|
17
|
+
Requires-Dist: openpyxl
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[egg_info]
|
|
2
|
-
tag_build =
|
|
3
|
-
tag_date = 0
|
|
4
|
-
|
|
1
|
+
[egg_info]
|
|
2
|
+
tag_build =
|
|
3
|
+
tag_date = 0
|
|
4
|
+
|
|
@@ -8,9 +8,12 @@ import json
|
|
|
8
8
|
from types import SimpleNamespace
|
|
9
9
|
import pandas as pd
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
with open('cfg.yaml') as cfg:
|
|
13
|
-
|
|
11
|
+
try:
|
|
12
|
+
with open('cfg.yaml') as cfg:
|
|
13
|
+
cfg = json.loads(json.dumps(load(cfg, Loader=Loader)), object_hook=lambda d: SimpleNamespace(**d))
|
|
14
|
+
except Exception as e:
|
|
15
|
+
print(e)
|
|
16
|
+
|
|
14
17
|
|
|
15
18
|
from . import utils
|
|
16
19
|
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: tablemaster
|
|
3
|
-
Version: 1.2.
|
|
4
|
-
Summary: A Python package makes it easy to manage tables anywhere
|
|
5
|
-
Home-page: https://github.com/ilivid/tablemaster
|
|
6
|
-
Author: Livid
|
|
7
|
-
Author-email: livid.su@gmail.com
|
|
8
|
-
License-File: LICENSE
|
|
9
|
-
Requires-Dist: PyMySQL
|
|
10
|
-
Requires-Dist: SQLAlchemy
|
|
11
|
-
Requires-Dist: pandas
|
|
12
|
-
Requires-Dist: python-dateutil
|
|
13
|
-
Requires-Dist: gspread
|
|
14
|
-
Requires-Dist: tqdm
|
|
15
|
-
Requires-Dist: numpy
|
|
16
|
-
Requires-Dist: pyyaml
|
|
17
|
-
Requires-Dist: openpyxl
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: tablemaster
|
|
3
|
+
Version: 1.2.4
|
|
4
|
+
Summary: A Python package makes it easy to manage tables anywhere
|
|
5
|
+
Home-page: https://github.com/ilivid/tablemaster
|
|
6
|
+
Author: Livid
|
|
7
|
+
Author-email: livid.su@gmail.com
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: PyMySQL
|
|
10
|
+
Requires-Dist: SQLAlchemy
|
|
11
|
+
Requires-Dist: pandas
|
|
12
|
+
Requires-Dist: python-dateutil
|
|
13
|
+
Requires-Dist: gspread
|
|
14
|
+
Requires-Dist: tqdm
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: pyyaml
|
|
17
|
+
Requires-Dist: openpyxl
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|