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.
@@ -1,17 +1,17 @@
1
- Metadata-Version: 2.1
2
- Name: tablemaster
3
- Version: 1.2.3
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
+
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='tablemaster',
5
- version='1.2.3',
5
+ version='1.2.4',
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  'PyMySQL',
@@ -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
- cfg = json.loads(json.dumps(load(cfg, Loader=Loader)), object_hook=lambda d: SimpleNamespace(**d))
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
 
@@ -32,4 +32,4 @@ def gs_write_df(map, df, loc='A1',service_account_path=None):
32
32
  for col in non_float_int_columns:
33
33
  df[col] = df[col].astype(str)
34
34
  wks.update(loc,([df.columns.values.tolist()] + df.values.tolist()))
35
- print('data is written!')
35
+ print('data is written!')
@@ -1,17 +1,17 @@
1
- Metadata-Version: 2.1
2
- Name: tablemaster
3
- Version: 1.2.3
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,6 +1,5 @@
1
1
  LICENSE
2
2
  README.md
3
- setup.cfg
4
3
  setup.py
5
4
  tablemaster/__init__.py
6
5
  tablemaster/feishu.py
File without changes
File without changes