seatable-api 2.8.2__tar.gz → 3.1.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.
- {seatable-api-2.8.2 → seatable_api-3.1.0}/PKG-INFO +17 -11
- seatable_api-3.1.0/README.md +4 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/socket_io.py +4 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api.egg-info/PKG-INFO +17 -11
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api.egg-info/requires.txt +1 -1
- {seatable-api-2.8.2 → seatable_api-3.1.0}/setup.py +2 -2
- seatable-api-2.8.2/README.md +0 -11
- {seatable-api-2.8.2 → seatable_api-3.1.0}/LICENSE +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/__init__.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/api_gateway.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/column.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/constants.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/context.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/convert_airtable.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/date_utils.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/exception.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/main.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/message.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/query.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api/utils.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api.egg-info/SOURCES.txt +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api.egg-info/dependency_links.txt +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/seatable_api.egg-info/top_level.txt +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/setup.cfg +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/tests/__init__.py +0 -0
- {seatable-api-2.8.2 → seatable_api-3.1.0}/tests/dateutils_test.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: seatable-api
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.1.0
|
|
4
4
|
Summary: Python client for SeaTable web api
|
|
5
5
|
Home-page: https://github.com/seatable/seatable-api-python
|
|
6
6
|
Author: seatable
|
|
@@ -10,17 +10,23 @@ Platform: any
|
|
|
10
10
|
Classifier: Programming Language :: Python
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: python-socketio>5
|
|
15
|
+
Requires-Dist: ply
|
|
16
|
+
Requires-Dist: python_dateutil
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: platform
|
|
26
|
+
Dynamic: requires-dist
|
|
27
|
+
Dynamic: summary
|
|
13
28
|
|
|
14
29
|
# seatable-api-python
|
|
15
30
|
|
|
16
31
|
Python client for SeaTable web api
|
|
17
32
|
|
|
18
|
-
English document: <https://seatable.github.io/seatable-scripts/>
|
|
19
|
-
|
|
20
|
-
Chinese document: <https://seatable.github.io/seatable-scripts-cn/>
|
|
21
|
-
|
|
22
|
-
pypi: <https://pypi.org/project/seatable-api/>
|
|
23
|
-
|
|
24
|
-
github: <https://github.com/seatable/seatable-api-python>
|
|
25
|
-
|
|
26
|
-
|
|
@@ -18,6 +18,10 @@ class SIO(socketio.Client):
|
|
|
18
18
|
namespace = namespace or '/'
|
|
19
19
|
self._trigger_event('io-disconnect', namespace=namespace)
|
|
20
20
|
|
|
21
|
+
def connect(self, *args, **kwargs):
|
|
22
|
+
kwargs['socketio_path'] = '/api-gateway/socket.io'
|
|
23
|
+
return super().connect(*args, **kwargs)
|
|
24
|
+
|
|
21
25
|
|
|
22
26
|
class SocketIO(object):
|
|
23
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: seatable-api
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.1.0
|
|
4
4
|
Summary: Python client for SeaTable web api
|
|
5
5
|
Home-page: https://github.com/seatable/seatable-api-python
|
|
6
6
|
Author: seatable
|
|
@@ -10,17 +10,23 @@ Platform: any
|
|
|
10
10
|
Classifier: Programming Language :: Python
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: python-socketio>5
|
|
15
|
+
Requires-Dist: ply
|
|
16
|
+
Requires-Dist: python_dateutil
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: platform
|
|
26
|
+
Dynamic: requires-dist
|
|
27
|
+
Dynamic: summary
|
|
13
28
|
|
|
14
29
|
# seatable-api-python
|
|
15
30
|
|
|
16
31
|
Python client for SeaTable web api
|
|
17
32
|
|
|
18
|
-
English document: <https://seatable.github.io/seatable-scripts/>
|
|
19
|
-
|
|
20
|
-
Chinese document: <https://seatable.github.io/seatable-scripts-cn/>
|
|
21
|
-
|
|
22
|
-
pypi: <https://pypi.org/project/seatable-api/>
|
|
23
|
-
|
|
24
|
-
github: <https://github.com/seatable/seatable-api-python>
|
|
25
|
-
|
|
26
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from setuptools import setup, find_packages
|
|
2
2
|
|
|
3
|
-
__version__ = '
|
|
3
|
+
__version__ = '3.1.0'
|
|
4
4
|
|
|
5
5
|
with open('README.md', 'r', encoding='utf-8') as fh:
|
|
6
6
|
long_description = fh.read()
|
|
@@ -18,6 +18,6 @@ setup(
|
|
|
18
18
|
|
|
19
19
|
platforms='any',
|
|
20
20
|
packages=find_packages(), # folder with __init__.py
|
|
21
|
-
install_requires=['requests', 'python-socketio
|
|
21
|
+
install_requires=['requests', 'python-socketio>5', 'ply', 'python_dateutil'],
|
|
22
22
|
classifiers=['Programming Language :: Python'],
|
|
23
23
|
)
|
seatable-api-2.8.2/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# seatable-api-python
|
|
2
|
-
|
|
3
|
-
Python client for SeaTable web api
|
|
4
|
-
|
|
5
|
-
English document: <https://seatable.github.io/seatable-scripts/>
|
|
6
|
-
|
|
7
|
-
Chinese document: <https://seatable.github.io/seatable-scripts-cn/>
|
|
8
|
-
|
|
9
|
-
pypi: <https://pypi.org/project/seatable-api/>
|
|
10
|
-
|
|
11
|
-
github: <https://github.com/seatable/seatable-api-python>
|
|
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
|
|
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
|
|
File without changes
|