dao-scripts 1.5.3__py3-none-any.whl → 1.5.4__py3-none-any.whl
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.
- dao_analyzer/cache_scripts/_version.py +9 -4
- dao_analyzer/cache_scripts/common/thegraph.py +3 -0
- dao_analyzer/cache_scripts/endpoints.json +0 -3
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info}/METADATA +25 -22
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info}/RECORD +11 -11
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info}/WHEEL +1 -1
- /dao_scripts-1.5.3-py3.12-nspkg.pth → /dao_scripts-1.5.4-py3.12-nspkg.pth +0 -0
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info}/entry_points.txt +0 -0
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info/licenses}/LICENSE +0 -0
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info}/namespace_packages.txt +0 -0
- {dao_scripts-1.5.3.dist-info → dao_scripts-1.5.4.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,13 @@
|
|
1
|
-
# file generated by
|
1
|
+
# file generated by setuptools-scm
|
2
2
|
# don't change, don't track in version control
|
3
|
+
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
5
|
+
|
3
6
|
TYPE_CHECKING = False
|
4
7
|
if TYPE_CHECKING:
|
5
|
-
from typing import Tuple
|
8
|
+
from typing import Tuple
|
9
|
+
from typing import Union
|
10
|
+
|
6
11
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
7
12
|
else:
|
8
13
|
VERSION_TUPLE = object
|
@@ -12,5 +17,5 @@ __version__: str
|
|
12
17
|
__version_tuple__: VERSION_TUPLE
|
13
18
|
version_tuple: VERSION_TUPLE
|
14
19
|
|
15
|
-
__version__ = version = '1.5.
|
16
|
-
__version_tuple__ = version_tuple = (1, 5,
|
20
|
+
__version__ = version = '1.5.4'
|
21
|
+
__version_tuple__ = version_tuple = (1, 5, 4)
|
@@ -138,6 +138,9 @@ class TheGraphCollector(NetworkCollector, UpdatableCollector, ABC):
|
|
138
138
|
return df
|
139
139
|
|
140
140
|
def check_deployment_health(self, deployment_id: str) -> bool:
|
141
|
+
# TODO(2025-05-04): Check again subgraph status
|
142
|
+
# Waiting for https://github.com/graphprotocol/graph-node/issues/5983
|
143
|
+
return True
|
141
144
|
_requester = GQLRequester(ENDPOINTS['_theGraph']['index-node'])
|
142
145
|
ds = _requester.get_schema()
|
143
146
|
q = ds.Query.indexingStatuses(subgraphs=[deployment_id]).select(
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: dao-scripts
|
3
|
-
Version: 1.5.
|
3
|
+
Version: 1.5.4
|
4
4
|
Summary: "A tool to download data to monitor DAO activity"
|
5
5
|
Home-page: https://github.com/Grasia/dao-scripts
|
6
6
|
Author: David Davó
|
@@ -23,27 +23,30 @@ Classifier: Topic :: Utilities
|
|
23
23
|
Requires-Python: >=3.9
|
24
24
|
Description-Content-Type: text/markdown
|
25
25
|
License-File: LICENSE
|
26
|
-
Requires-Dist: dynaconf
|
27
|
-
Requires-Dist: gql
|
28
|
-
Requires-Dist: numpy
|
29
|
-
Requires-Dist: pandas
|
30
|
-
Requires-Dist: portalocker
|
31
|
-
Requires-Dist: pyarrow
|
32
|
-
Requires-Dist: requests
|
33
|
-
Requires-Dist: requests-cache
|
34
|
-
Requires-Dist: requests-toolbelt
|
35
|
-
Requires-Dist: tenacity
|
36
|
-
Requires-Dist: tqdm
|
37
|
-
Provides-Extra: dev
|
38
|
-
Requires-Dist: build ; extra == 'dev'
|
39
|
-
Requires-Dist: pytest ; extra == 'dev'
|
40
|
-
Requires-Dist: hypothesis ; extra == 'dev'
|
41
|
-
Requires-Dist: flake8 ; extra == 'dev'
|
42
|
-
Requires-Dist: pandas-vet ; extra == 'dev'
|
43
|
-
Requires-Dist: twine ; extra == 'dev'
|
26
|
+
Requires-Dist: dynaconf>=3.0.0
|
27
|
+
Requires-Dist: gql>=3.0.0a1
|
28
|
+
Requires-Dist: numpy>=1.17.3
|
29
|
+
Requires-Dist: pandas>=1.3.4
|
30
|
+
Requires-Dist: portalocker>=2.3.2
|
31
|
+
Requires-Dist: pyarrow>=6.0.0
|
32
|
+
Requires-Dist: requests>=2.26.0
|
33
|
+
Requires-Dist: requests-cache>=0.8.1
|
34
|
+
Requires-Dist: requests-toolbelt>=0.9.1
|
35
|
+
Requires-Dist: tenacity>=8.0.0
|
36
|
+
Requires-Dist: tqdm>=4.62.3
|
44
37
|
Provides-Extra: upload
|
45
|
-
Requires-Dist: kaggle
|
46
|
-
Requires-Dist: zenodo-client
|
38
|
+
Requires-Dist: kaggle>=1.5.12; extra == "upload"
|
39
|
+
Requires-Dist: zenodo-client>=0.3.4; extra == "upload"
|
40
|
+
Provides-Extra: dev
|
41
|
+
Requires-Dist: build; extra == "dev"
|
42
|
+
Requires-Dist: pytest; extra == "dev"
|
43
|
+
Requires-Dist: hypothesis; extra == "dev"
|
44
|
+
Requires-Dist: flake8; extra == "dev"
|
45
|
+
Requires-Dist: pandas-vet; extra == "dev"
|
46
|
+
Requires-Dist: twine; extra == "dev"
|
47
|
+
Requires-Dist: hypothesis; extra == "dev"
|
48
|
+
Requires-Dist: pandas-vet; extra == "dev"
|
49
|
+
Dynamic: license-file
|
47
50
|
|
48
51
|
<p align="center">
|
49
52
|
<a href="https://pypi.org/project/dao-scripts/">
|
@@ -1,10 +1,10 @@
|
|
1
|
-
dao_scripts-1.5.
|
1
|
+
dao_scripts-1.5.4-py3.12-nspkg.pth,sha256=_0DzrHlnOxaQL5l1mMdHT1BtXZwXuB6MitMF5phpOhk,497
|
2
2
|
dao_analyzer/cache_scripts/__init__.py,sha256=Urg-J2hvyzGcgE2Z-ba71XpcHi1YlPZgex86OFSd_0A,116
|
3
3
|
dao_analyzer/cache_scripts/__main__.py,sha256=aNVhgUXjB4rzTefrX3d6dKeLOX3G_Ezs82pI8QCpwx0,61
|
4
|
-
dao_analyzer/cache_scripts/_version.py,sha256=
|
4
|
+
dao_analyzer/cache_scripts/_version.py,sha256=pR-Fw1IEfRgJNnN33Kvb-jCe2P4LaVDcddP3IJmTFLA,511
|
5
5
|
dao_analyzer/cache_scripts/argparser.py,sha256=uOBVdRxmgR8H0dZMu2AQyvro6WvkZFKUrf7vJ6Mvw48,3574
|
6
6
|
dao_analyzer/cache_scripts/config.py,sha256=6Ooh-SpTtNCHcl2sE637-XMCCCNZBmATJRyD_eguWr0,2180
|
7
|
-
dao_analyzer/cache_scripts/endpoints.json,sha256=
|
7
|
+
dao_analyzer/cache_scripts/endpoints.json,sha256=bteREUwdXgAwoOguVQn1iAjKA9PT0dwExXlSID1151Q,1184
|
8
8
|
dao_analyzer/cache_scripts/logging.py,sha256=9sAqZUk_Qnmlf9Ko60C4O__Ve7Tj4xefzQ7cV07aQ70,3196
|
9
9
|
dao_analyzer/cache_scripts/main.py,sha256=ZgNPI5szAFh-dVa6JEa2uw0eMZ_IWtCZX3yqF7jBJmw,5989
|
10
10
|
dao_analyzer/cache_scripts/metadata.py,sha256=YX6AA3dmrq6XpD88IY6lkYQgdYdwOejOuYqlf_XDhJM,4219
|
@@ -16,17 +16,17 @@ dao_analyzer/cache_scripts/common/api_requester.py,sha256=objbyqKVVEfNFmffds3BC2
|
|
16
16
|
dao_analyzer/cache_scripts/common/blockscout.py,sha256=kQ3GBzjZN5aRXG5ctN9D9CIgAK3X2zf5GNKe5wSsBWQ,5041
|
17
17
|
dao_analyzer/cache_scripts/common/common.py,sha256=Vj_UHqcCQRiKBwCV1skVTZoDl-eGOtclI8ps28BrD6A,10910
|
18
18
|
dao_analyzer/cache_scripts/common/cryptocompare.py,sha256=jaHdJ-X_AXEUdVRMVtyK6xwHNJdhTs2Ps44QMD0iuIY,2203
|
19
|
-
dao_analyzer/cache_scripts/common/thegraph.py,sha256=
|
19
|
+
dao_analyzer/cache_scripts/common/thegraph.py,sha256=jZVmFe6db4fBpZA7rpPFiaP5JUPalkvQz4z0BKgaAPI,8419
|
20
20
|
dao_analyzer/cache_scripts/daohaus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
21
|
dao_analyzer/cache_scripts/daohaus/runner.py,sha256=R1K4xhXy3jVOz52UaIqgvXd9mW71c0l4YanK62f1sNE,7561
|
22
22
|
dao_analyzer/cache_scripts/daostack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
23
|
dao_analyzer/cache_scripts/daostack/runner.py,sha256=emjzhZzGMTRGHKljll_lX-uMsGwaIsZBSi4jV1Lsh8Y,10144
|
24
24
|
dao_analyzer/cache_scripts/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
25
|
dao_analyzer/cache_scripts/utils/uploadDataWarehouse.py,sha256=dBI_XKCWqblhCh-w0-ewoP82zHZBLxAH8SH44y8nxoU,4698
|
26
|
-
dao_scripts-1.5.
|
27
|
-
dao_scripts-1.5.
|
28
|
-
dao_scripts-1.5.
|
29
|
-
dao_scripts-1.5.
|
30
|
-
dao_scripts-1.5.
|
31
|
-
dao_scripts-1.5.
|
32
|
-
dao_scripts-1.5.
|
26
|
+
dao_scripts-1.5.4.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
27
|
+
dao_scripts-1.5.4.dist-info/METADATA,sha256=1MTtgXGRvFkLT3d_32gUCqTltZupG6Jv6VQi8oyB6Mw,8259
|
28
|
+
dao_scripts-1.5.4.dist-info/WHEEL,sha256=GHB6lJx2juba1wDgXDNlMTyM13ckjBMKf-OnwgKOCtA,91
|
29
|
+
dao_scripts-1.5.4.dist-info/entry_points.txt,sha256=dHhgA8pcQ2YbIlMuqPPSh7fiQkfHE8ioFPUcbBvXWDc,207
|
30
|
+
dao_scripts-1.5.4.dist-info/namespace_packages.txt,sha256=gbsNupMgtHQXOyBinbeLMo06f278s8My_9N-CrZh3Bk,13
|
31
|
+
dao_scripts-1.5.4.dist-info/top_level.txt,sha256=gbsNupMgtHQXOyBinbeLMo06f278s8My_9N-CrZh3Bk,13
|
32
|
+
dao_scripts-1.5.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|