awx-zipline-ai 0.0.32__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.
Files changed (96) hide show
  1. __init__.py +0 -0
  2. agent/__init__.py +1 -0
  3. agent/constants.py +15 -0
  4. agent/ttypes.py +1684 -0
  5. ai/__init__.py +0 -0
  6. ai/chronon/__init__.py +0 -0
  7. ai/chronon/airflow_helpers.py +248 -0
  8. ai/chronon/cli/__init__.py +0 -0
  9. ai/chronon/cli/compile/__init__.py +0 -0
  10. ai/chronon/cli/compile/column_hashing.py +336 -0
  11. ai/chronon/cli/compile/compile_context.py +173 -0
  12. ai/chronon/cli/compile/compiler.py +183 -0
  13. ai/chronon/cli/compile/conf_validator.py +742 -0
  14. ai/chronon/cli/compile/display/__init__.py +0 -0
  15. ai/chronon/cli/compile/display/class_tracker.py +102 -0
  16. ai/chronon/cli/compile/display/compile_status.py +95 -0
  17. ai/chronon/cli/compile/display/compiled_obj.py +12 -0
  18. ai/chronon/cli/compile/display/console.py +3 -0
  19. ai/chronon/cli/compile/display/diff_result.py +111 -0
  20. ai/chronon/cli/compile/fill_templates.py +35 -0
  21. ai/chronon/cli/compile/parse_configs.py +134 -0
  22. ai/chronon/cli/compile/parse_teams.py +242 -0
  23. ai/chronon/cli/compile/serializer.py +109 -0
  24. ai/chronon/cli/compile/version_utils.py +42 -0
  25. ai/chronon/cli/git_utils.py +145 -0
  26. ai/chronon/cli/logger.py +59 -0
  27. ai/chronon/constants.py +3 -0
  28. ai/chronon/group_by.py +692 -0
  29. ai/chronon/join.py +580 -0
  30. ai/chronon/logger.py +23 -0
  31. ai/chronon/model.py +40 -0
  32. ai/chronon/query.py +126 -0
  33. ai/chronon/repo/__init__.py +39 -0
  34. ai/chronon/repo/aws.py +284 -0
  35. ai/chronon/repo/cluster.py +136 -0
  36. ai/chronon/repo/compile.py +62 -0
  37. ai/chronon/repo/constants.py +164 -0
  38. ai/chronon/repo/default_runner.py +269 -0
  39. ai/chronon/repo/explore.py +418 -0
  40. ai/chronon/repo/extract_objects.py +134 -0
  41. ai/chronon/repo/gcp.py +586 -0
  42. ai/chronon/repo/gitpython_utils.py +15 -0
  43. ai/chronon/repo/hub_runner.py +261 -0
  44. ai/chronon/repo/hub_uploader.py +109 -0
  45. ai/chronon/repo/init.py +60 -0
  46. ai/chronon/repo/join_backfill.py +119 -0
  47. ai/chronon/repo/run.py +296 -0
  48. ai/chronon/repo/serializer.py +133 -0
  49. ai/chronon/repo/team_json_utils.py +46 -0
  50. ai/chronon/repo/utils.py +481 -0
  51. ai/chronon/repo/zipline.py +35 -0
  52. ai/chronon/repo/zipline_hub.py +277 -0
  53. ai/chronon/resources/__init__.py +0 -0
  54. ai/chronon/resources/gcp/__init__.py +0 -0
  55. ai/chronon/resources/gcp/group_bys/__init__.py +0 -0
  56. ai/chronon/resources/gcp/group_bys/test/__init__.py +0 -0
  57. ai/chronon/resources/gcp/group_bys/test/data.py +30 -0
  58. ai/chronon/resources/gcp/joins/__init__.py +0 -0
  59. ai/chronon/resources/gcp/joins/test/__init__.py +0 -0
  60. ai/chronon/resources/gcp/joins/test/data.py +26 -0
  61. ai/chronon/resources/gcp/sources/__init__.py +0 -0
  62. ai/chronon/resources/gcp/sources/test/__init__.py +0 -0
  63. ai/chronon/resources/gcp/sources/test/data.py +26 -0
  64. ai/chronon/resources/gcp/teams.py +58 -0
  65. ai/chronon/source.py +86 -0
  66. ai/chronon/staging_query.py +226 -0
  67. ai/chronon/types.py +58 -0
  68. ai/chronon/utils.py +510 -0
  69. ai/chronon/windows.py +48 -0
  70. awx_zipline_ai-0.0.32.dist-info/METADATA +197 -0
  71. awx_zipline_ai-0.0.32.dist-info/RECORD +96 -0
  72. awx_zipline_ai-0.0.32.dist-info/WHEEL +5 -0
  73. awx_zipline_ai-0.0.32.dist-info/entry_points.txt +2 -0
  74. awx_zipline_ai-0.0.32.dist-info/top_level.txt +4 -0
  75. gen_thrift/__init__.py +0 -0
  76. gen_thrift/api/__init__.py +1 -0
  77. gen_thrift/api/constants.py +15 -0
  78. gen_thrift/api/ttypes.py +3754 -0
  79. gen_thrift/common/__init__.py +1 -0
  80. gen_thrift/common/constants.py +15 -0
  81. gen_thrift/common/ttypes.py +1814 -0
  82. gen_thrift/eval/__init__.py +1 -0
  83. gen_thrift/eval/constants.py +15 -0
  84. gen_thrift/eval/ttypes.py +660 -0
  85. gen_thrift/fetcher/__init__.py +1 -0
  86. gen_thrift/fetcher/constants.py +15 -0
  87. gen_thrift/fetcher/ttypes.py +127 -0
  88. gen_thrift/hub/__init__.py +1 -0
  89. gen_thrift/hub/constants.py +15 -0
  90. gen_thrift/hub/ttypes.py +1109 -0
  91. gen_thrift/observability/__init__.py +1 -0
  92. gen_thrift/observability/constants.py +15 -0
  93. gen_thrift/observability/ttypes.py +2355 -0
  94. gen_thrift/planner/__init__.py +1 -0
  95. gen_thrift/planner/constants.py +15 -0
  96. gen_thrift/planner/ttypes.py +1967 -0
@@ -0,0 +1,197 @@
1
+ Metadata-Version: 2.4
2
+ Name: awx-zipline-ai
3
+ Version: 0.0.32
4
+ Summary: CLI tool for the Zipline AI platform
5
+ Author-email: Zipline AI <hello@zipline.ai>
6
+ License: Apache License 2.0
7
+ Project-URL: homepage, https://zipline.ai
8
+ Project-URL: documentation, https://docs.zipline.ai
9
+ Project-URL: github, https://github.com/zipline-ai/chronon/
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: boto3==1.40.26
13
+ Requires-Dist: botocore==1.40.26
14
+ Requires-Dist: cachetools==5.5.2
15
+ Requires-Dist: certifi==2025.8.3
16
+ Requires-Dist: charset-normalizer==3.4.3
17
+ Requires-Dist: click==8.2.1
18
+ Requires-Dist: crcmod==1.7
19
+ Requires-Dist: gitdb==4.0.12
20
+ Requires-Dist: gitpython==3.1.45
21
+ Requires-Dist: google-api-core[grpc]==2.25.1
22
+ Requires-Dist: google-auth==2.40.3
23
+ Requires-Dist: google-cloud-bigquery-storage==2.33.0
24
+ Requires-Dist: google-cloud-core==2.4.3
25
+ Requires-Dist: google-cloud-iam==2.19.1
26
+ Requires-Dist: google-cloud-storage==2.19.0
27
+ Requires-Dist: google-crc32c==1.7.1
28
+ Requires-Dist: google-resumable-media==2.7.2
29
+ Requires-Dist: googleapis-common-protos[grpc]==1.70.0
30
+ Requires-Dist: grpc-google-iam-v1==0.14.2
31
+ Requires-Dist: grpcio<=1.74.0,>=1.66.2
32
+ Requires-Dist: grpcio-status<=1.74.0,>=1.62.3
33
+ Requires-Dist: idna==3.10
34
+ Requires-Dist: importlib-resources==6.5.2
35
+ Requires-Dist: jmespath==1.0.1
36
+ Requires-Dist: markdown-it-py==4.0.0
37
+ Requires-Dist: mdurl==0.1.2
38
+ Requires-Dist: proto-plus==1.26.1
39
+ Requires-Dist: protobuf<=6.32.0,>=4.25.5
40
+ Requires-Dist: py4j==0.10.9.7
41
+ Requires-Dist: pyasn1==0.6.1
42
+ Requires-Dist: pyasn1-modules==0.4.2
43
+ Requires-Dist: pygments==2.19.2
44
+ Requires-Dist: pyspark==3.5.4
45
+ Requires-Dist: python-dateutil==2.9.0.post0
46
+ Requires-Dist: requests==2.32.5
47
+ Requires-Dist: rich==14.1.0
48
+ Requires-Dist: rsa==4.9.1
49
+ Requires-Dist: s3transfer==0.13.1
50
+ Requires-Dist: six==1.17.0
51
+ Requires-Dist: smmap==5.0.2
52
+ Requires-Dist: thrift==0.20.0
53
+ Requires-Dist: urllib3==2.5.0
54
+ Requires-Dist: python-dotenv>=1.0.1
55
+
56
+ ### Chronon Python API
57
+
58
+
59
+ #### Overview
60
+
61
+ Chronon Python API for materializing configs to be run by the Chronon Engine. Contains python helpers to help managed a repo of feature and join definitions to be executed by the chronon scala engine.
62
+
63
+
64
+ #### User API Overview
65
+
66
+ ##### Sources
67
+
68
+ Most fields are self explanatory. Time columns are expected to be in milliseconds (unixtime).
69
+
70
+ ```python
71
+ # File <repo>/sources/test_sources.py
72
+ from ai.chronon.query import (
73
+ Query,
74
+ select,
75
+ )
76
+ from ai.chronon.api.ttypes import Source, EventSource, EntitySource
77
+
78
+ # Sample query
79
+ Query(
80
+ selects=select(
81
+ user="user_id",
82
+ created_at="created_at",
83
+ ),
84
+ wheres=["has_availability = 1"],
85
+ start_partition="2021-01-01", # Defines the beginning of time for computations related to the source.
86
+ setups=["...UDF..."],
87
+ time_column="ts",
88
+ end_partition=None,
89
+ mutation_time_column="mutation_timestamp",
90
+ reversal_column="CASE WHEN mutation_type IN ('DELETE', 'UPDATE_BEFORE') THEN true ELSE false END"
91
+ )
92
+
93
+ user_activity = Source(entities=EntitySource(
94
+ snapshotTable="db_exports.table",
95
+ mutationTable="mutations_namespace.table_mutations",
96
+ mutationTopic="mutationsKafkaTopic",
97
+ query=Query(...)
98
+ )
99
+
100
+ website__views = Source(events=EventSource(
101
+ table="namespace.table",
102
+ topic="kafkaTopicForEvents",
103
+ )
104
+ ```
105
+
106
+
107
+ ##### Group By (Features)
108
+
109
+ Group Bys are aggregations over sources that define features. For example:
110
+
111
+ ```python
112
+ # File <repo>/group_bys/example_team/example_group_by.py
113
+ from ai.chronon.group_by import (
114
+ GroupBy,
115
+ Window,
116
+ TimeUnit,
117
+ Accuracy,
118
+ Operation,
119
+ Aggregations,
120
+ Aggregation,
121
+ DefaultAggregation,
122
+ )
123
+ from sources import test_sources
124
+
125
+ sum_cols = [f"active_{x}_days" for x in [30, 90, 120]]
126
+
127
+
128
+ v0 = GroupBy(
129
+ sources=test_source.user_activity,
130
+ keys=["user"],
131
+ aggregations=Aggregations(
132
+ user_active_1_day=Aggregation(operation=Operation.LAST),
133
+ second_feature=Aggregation(
134
+ input_column="active_7_days",
135
+ operation=Operation.SUM,
136
+ windows=[
137
+ Window(n, TimeUnit.DAYS) for n in [3, 5, 9]
138
+ ]
139
+ ),
140
+ ) + [
141
+ Aggregation(
142
+ input_column=col,
143
+ operation=Operation.SUM
144
+ ) for col in sum_columns # Alternative syntax for defining aggregations.
145
+ ] + [
146
+ Aggregation(
147
+ input_column="device",
148
+ operation=LAST_K(10)
149
+ )
150
+ ],
151
+ dependencies=[
152
+ "db_exports.table/ds={{ ds }}" # If not defined will be derived from the Source info.
153
+ ],
154
+ accuracy=Accuracy.SNAPSHOT, # This could be TEMPORAL for point in time correctness.
155
+ env={
156
+ "backfill": { # Execution environment variables for each of the modes for `run.py`
157
+ "EXECUTOR_MEMORY": "4G"
158
+ },
159
+ },
160
+ online=True, # True if this group by needs to be uploaded to a KV Store.
161
+ production=False # True if this group by is production level.
162
+ )
163
+ ```
164
+
165
+ ##### Join
166
+
167
+ A Join is a collection of feature values for the keys and (times if applicable) defined on the left (source). Example:
168
+
169
+ ```python
170
+ # File <repo>/joins/example_team/example_join.py
171
+ from ai.chronon.join import Join, JoinPart
172
+ from sources import test_sources
173
+ from group_bys.example_team import example_group_by
174
+
175
+ v1 = Join(
176
+ left=test_sources.website__views,
177
+ right_parts=[
178
+ JoinPart(group_by=example_group_by.v0),
179
+ ],
180
+ online=True, # True if this join will be fetched in production.
181
+ production=False, # True if this join should not use non-production group bys.
182
+ env={"backfill": {"PARALLELISM": "10"}, "streaming": {"STREAMING_ENV_VAR": "VALUE"}},
183
+ )
184
+ ```
185
+
186
+ ##### Pre-commit Setup
187
+
188
+ 1. Install pre-commit and other dev libraries:
189
+ ```
190
+ pip install -r requirements/dev.txt
191
+ ```
192
+ 2. Run the following command under `api/python` to install the git hook scripts:
193
+ ```
194
+ pre-commit install
195
+ ```
196
+
197
+ To support more pre-commit hooks, add them to the `.pre-commit-config.yaml` file.
@@ -0,0 +1,96 @@
1
+ __init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ agent/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
3
+ agent/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
4
+ agent/ttypes.py,sha256=264pSOgpRPm6XMjdwxdi9W7ciTYElPby7smK7z18RBQ,64304
5
+ ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ ai/chronon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ ai/chronon/airflow_helpers.py,sha256=MVkSIrpBMx3XqvAORxcuiwaLdQDijV1yFT5j1PSkNWw,8760
8
+ ai/chronon/constants.py,sha256=74zhArZB-h9jWcNe41kQr2GEC5qgcSw_V9yIwwW0O_E,165
9
+ ai/chronon/group_by.py,sha256=ubrbJrKyYqZsJY2O4UMKXpHanNgcD789lHl-S3XXnjU,27735
10
+ ai/chronon/join.py,sha256=VM8qG1_IDwXprBtLjm3zSZJjQ57MZPlpXue5dJdjOjs,25817
11
+ ai/chronon/logger.py,sha256=rPyeV8uAFvJRY57vJg9KFyEjE4XMl8nVYEoHN1y2dmY,861
12
+ ai/chronon/model.py,sha256=UVF0_-NF2Zdy5zLHXDibFzKMfuMfmYCcOK80cnT7vzA,1115
13
+ ai/chronon/query.py,sha256=AUgUwVeGWH2DKldMa2gt34DiZI3GUM3PtnY26DYgeNs,5417
14
+ ai/chronon/source.py,sha256=xl3Gb925893nSEFuFkWXpuk10kQySyR3XePMNpf8WMs,4016
15
+ ai/chronon/staging_query.py,sha256=Fv4BLEhYjx-YYZbMmBhwlQBTPfEXgUNLBZpTkj9qBvU,8519
16
+ ai/chronon/types.py,sha256=ppH8i3PYVicOQE3h5DWsvtEFTTVnoEAcW8tn7Htc89E,1501
17
+ ai/chronon/utils.py,sha256=D1idc9Y2YYb3Qf2K-CQhh4kGm5Glc0vRSe141y89DPs,15701
18
+ ai/chronon/windows.py,sha256=gvtp1-XHu9yp9xkOy4oDaTGDn7GfIa0JhFXb_RBm12Q,1333
19
+ ai/chronon/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ ai/chronon/cli/git_utils.py,sha256=6uez-TOvuz9rsUcyq9JYTITvwJy9I-JVZAyX2CNdki8,4255
21
+ ai/chronon/cli/logger.py,sha256=2VVleE_tt4E9ysLHRR3bckfSWEhFugjwOIVB6KYFWDE,1437
22
+ ai/chronon/cli/compile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ ai/chronon/cli/compile/column_hashing.py,sha256=9aMCJo0ITt4GUNStajo4evkU2zGmH8XtDOJJuLqGvjg,13760
24
+ ai/chronon/cli/compile/compile_context.py,sha256=DFINBU2l5ISenPlP2rSme1-tRd5svYVM8l0iOEv1nQ0,6648
25
+ ai/chronon/cli/compile/compiler.py,sha256=GUQblOz-fMCZ4b-VAiS1FGocjnlBH7nexw7X_Py2TXY,6913
26
+ ai/chronon/cli/compile/conf_validator.py,sha256=ezzvKeJykvFTzCWoMZF8E4qUUFRkGLCgTBW_ofXGYgY,29058
27
+ ai/chronon/cli/compile/fill_templates.py,sha256=LHZ6xZMyplm1rqr56ziiZpyu5RJOhNtsbLrKC-kyPg4,1204
28
+ ai/chronon/cli/compile/parse_configs.py,sha256=xiaM4fX3Ubxpjya6MphMHd045bMu8fyjZ8zbeTo2DWk,4292
29
+ ai/chronon/cli/compile/parse_teams.py,sha256=x8LyHJGcbv_iDSqyvev-ll4mo96KXpfoOfb8ND7rmDY,7962
30
+ ai/chronon/cli/compile/serializer.py,sha256=Qky6AhrRTxhyNSKXD5_Jp6VecNUdmGy32tCL8BtKBY4,4272
31
+ ai/chronon/cli/compile/version_utils.py,sha256=1T6HamqMkfk-zel4E0-0BIn5I82mumC98FimFu_zjgs,1220
32
+ ai/chronon/cli/compile/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ ai/chronon/cli/compile/display/class_tracker.py,sha256=QEn2pySXDMaNTFfigZW2aPRyYLF38vrru9yZ1QohlW4,3671
34
+ ai/chronon/cli/compile/display/compile_status.py,sha256=rvQ3CecKbIx_3VabFcJnwZyhLK_Bo5GEoSDXGSe1Ca4,3094
35
+ ai/chronon/cli/compile/display/compiled_obj.py,sha256=hsstubchqQDBcFmarRLd4DgMt_sUvTmDlwmNBP01-VI,217
36
+ ai/chronon/cli/compile/display/console.py,sha256=UpMqeJ0C8i0pkue1AHnnyyX0bFJ9zZeJ7HBR6yhuA8A,54
37
+ ai/chronon/cli/compile/display/diff_result.py,sha256=VOkCqImR2TrhUmuWea4GDo3VqkMnVHmbmoLmR-6uS6U,4120
38
+ ai/chronon/repo/__init__.py,sha256=HQ60TFAvCI9uO164uBggIOMs99KPWd_1gae_mMJIfgQ,1413
39
+ ai/chronon/repo/aws.py,sha256=iaFaE-J31Du4hNzx9vknOX5j-A-1OfzeGBhstO2FogE,11745
40
+ ai/chronon/repo/cluster.py,sha256=_dUFMPmjgzRQSSKJVP2qwyGfQLPw0BiUnlUNRPqJY1c,4972
41
+ ai/chronon/repo/compile.py,sha256=bJCDe0Ubv74eOkVDfSeJ3BMcb6yI03Wy4jvzQBivQH4,1820
42
+ ai/chronon/repo/constants.py,sha256=JRDjvV2ZOSIxWJfXmnBngvtRIDBiU8A7869yTzZDiJc,5075
43
+ ai/chronon/repo/default_runner.py,sha256=u2mJrw1xZc8ECK_v9gQSshcVrJDmBb8L9oo7UnuoMAQ,11180
44
+ ai/chronon/repo/explore.py,sha256=rmpUwODc69Gdvx9rYj8vx-Xg5UWD9k1TvBDrs716oUE,14584
45
+ ai/chronon/repo/extract_objects.py,sha256=cyXX07icGTHUzrw__SeQpO76rPMt7jHFnEW08lz56io,4761
46
+ ai/chronon/repo/gcp.py,sha256=z4fTxe0D8z22O52888XvooL-yxMGhNq8aBcTw5Jr1-A,25117
47
+ ai/chronon/repo/gitpython_utils.py,sha256=HIcQNFMf68G0qHvIbk7HSwkcqFA97YrcMsgXw5qw-ow,435
48
+ ai/chronon/repo/hub_runner.py,sha256=jU3x3cwbsClWvmg2eyOMCDLOV6RhbIedKs89IAgP5Wc,8920
49
+ ai/chronon/repo/hub_uploader.py,sha256=2oAAnIru1d7mDq5xAYRt7KWlZ0o_YhQujfGpsL5ph9E,3995
50
+ ai/chronon/repo/init.py,sha256=9Xhf4oeKuDtxpiS6kNf6rOju8-u7VyQDy3BTiMoSaS4,1740
51
+ ai/chronon/repo/join_backfill.py,sha256=WLN9TY6bpupd5T5BFcrTH6qSqpy39P8O9ZvrEhs9vzQ,4024
52
+ ai/chronon/repo/run.py,sha256=Kex79ebLH0bDdq1k1dBK1EC7Y8691trMsvzrTYRQtVs,10780
53
+ ai/chronon/repo/serializer.py,sha256=-nLxTIT-YR7evDCCTAsL_8NusrRz-wFwn-AcBFF7Ocw,4979
54
+ ai/chronon/repo/team_json_utils.py,sha256=JsUc_KwTFn4VMn1ZYwJAPTIeSOfUsDoywzTsBr9Oi70,1472
55
+ ai/chronon/repo/utils.py,sha256=iKJt-qzV3GNLo8yTnc-X7NzKIpweozpS777NddCA74Q,19148
56
+ ai/chronon/repo/zipline.py,sha256=ktWaSbvto3FK5LmB5lsbztOlhcYEbNeVGmznPMk8R3w,1050
57
+ ai/chronon/repo/zipline_hub.py,sha256=laNoRdu_WrAbwE62YMCb7S2pxV4J5JZ0laKW4Za7mTs,12889
58
+ ai/chronon/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ ai/chronon/resources/gcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ ai/chronon/resources/gcp/teams.py,sha256=UBSSZjvSYf4MnujqJgyxmDUbjX8KZS8HBoPyn29SH9o,2505
61
+ ai/chronon/resources/gcp/group_bys/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ ai/chronon/resources/gcp/group_bys/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ ai/chronon/resources/gcp/group_bys/test/data.py,sha256=UG6_q9aKXiGFX2P4BOSIL6UIQjT-4wHpWXl96UaQcnk,1089
64
+ ai/chronon/resources/gcp/joins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ ai/chronon/resources/gcp/joins/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ ai/chronon/resources/gcp/joins/test/data.py,sha256=mhDpA_zKHiHNwpsku8AqsNL-WDA_LH81CO405tIZ9Og,784
67
+ ai/chronon/resources/gcp/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ ai/chronon/resources/gcp/sources/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ ai/chronon/resources/gcp/sources/test/data.py,sha256=Im-tN2ReJ_K1syRX6IXKoICNwv45tvynBgqTL0qkluQ,1092
70
+ gen_thrift/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ gen_thrift/api/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
72
+ gen_thrift/api/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
73
+ gen_thrift/api/ttypes.py,sha256=1AGnaSImuXHAVdL6IldrQmBfBW-5Or-D64BgIT7EfHU,147829
74
+ gen_thrift/common/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
75
+ gen_thrift/common/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
76
+ gen_thrift/common/ttypes.py,sha256=zvxBcnY6OPaioA3LepUgQIxaHCsNTuPUuxbtxwjR9u8,58939
77
+ gen_thrift/eval/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
78
+ gen_thrift/eval/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
79
+ gen_thrift/eval/ttypes.py,sha256=uky--UKz-2vuN6Z7QN7ctEqoyPx69GsfOBZAtIdN79M,28560
80
+ gen_thrift/fetcher/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
81
+ gen_thrift/fetcher/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
82
+ gen_thrift/fetcher/ttypes.py,sha256=XdTAL7ql_bQQT4M_eJqs9yOecE6gqa6gO5RoCwsRGWE,4553
83
+ gen_thrift/hub/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
84
+ gen_thrift/hub/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
85
+ gen_thrift/hub/ttypes.py,sha256=tn1VJ3y-sS3NN_gRttTHWmnNhdbSGb4rypApT4NCdBQ,39453
86
+ gen_thrift/observability/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
87
+ gen_thrift/observability/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
88
+ gen_thrift/observability/ttypes.py,sha256=QTKvQ9zqgbj4UcujIs8LuvDXvuyONWTrtsoiQB6ULxE,82254
89
+ gen_thrift/planner/__init__.py,sha256=YFcZTT8Cm-6Y4oTiCaqq0DT1lw2W09WqoEc5_pTAwW0,34
90
+ gen_thrift/planner/constants.py,sha256=Z7iGhv-3ePR_U5Z70F0Cqycz6WBJbGvMaJ80bwMaIjc,388
91
+ gen_thrift/planner/ttypes.py,sha256=EXfaw3bPwax8Bl4EfF9b-5KwQW0-9kby4NCiZnIIZZ8,67348
92
+ awx_zipline_ai-0.0.32.dist-info/METADATA,sha256=98q1QZCGm-OjXIHGXhu85sieN8XUBNpCaCkZIV3mDf4,5790
93
+ awx_zipline_ai-0.0.32.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
94
+ awx_zipline_ai-0.0.32.dist-info/entry_points.txt,sha256=EZGwU6w_Ve4BZ2z8zYrIJW0zMMon0IK2FIvIhoSzeqE,60
95
+ awx_zipline_ai-0.0.32.dist-info/top_level.txt,sha256=PY-p-EGZt3eyJqEK5pzRx38U921A1_aRWyCS0a0blvQ,29
96
+ awx_zipline_ai-0.0.32.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ zipline = ai.chronon.repo.zipline:zipline
@@ -0,0 +1,4 @@
1
+ __init__
2
+ agent
3
+ ai
4
+ gen_thrift
gen_thrift/__init__.py ADDED
File without changes
@@ -0,0 +1 @@
1
+ __all__ = ['ttypes', 'constants']
@@ -0,0 +1,15 @@
1
+ #
2
+ # Autogenerated by Thrift Compiler (0.22.0)
3
+ #
4
+ # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
5
+ #
6
+ # options string: py
7
+ #
8
+
9
+ from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException
10
+ from thrift.protocol.TProtocol import TProtocolException
11
+ from thrift.TRecursive import fix_spec
12
+ from uuid import UUID
13
+
14
+ import sys
15
+ from .ttypes import *