Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f99047c
Test quickstart using local compile.py
chewy-zlai Dec 19, 2024
10f3c71
comment out chronon-ai requirement
chewy-zlai Dec 23, 2024
f390818
Rename repo to zipline-ai, and rename commands to 'compile', 'explore…
chewy-zlai Dec 23, 2024
ce2f019
unstage changes to docker files
chewy-zlai Dec 23, 2024
a913efd
Revert docker changes, and revert version override
chewy-zlai Dec 23, 2024
bd4ee10
Revert version override
chewy-zlai Dec 23, 2024
93322e2
revert change to quickstart/requirements
chewy-zlai Dec 23, 2024
0741118
Add blank spaces
chewy-zlai Dec 23, 2024
f1ca3d1
Refactor run.py to use click and setup zipline command
chewy-zlai Jan 3, 2025
01ac2aa
format files
chewy-zlai Jan 3, 2025
f35985d
fix multi-line comment
chewy-zlai Jan 3, 2025
fef3186
intellij format code
chewy-zlai Jan 3, 2025
ba5bcc9
fix formatting
chewy-zlai Jan 3, 2025
80384d9
Merge branch 'main' of https://github.com/zipline-ai/chronon into che…
chewy-zlai Jan 3, 2025
7679303
Update test_run to use click instead of argparse and get the tests pa…
chewy-zlai Jan 5, 2025
1d52e11
fix lint
chewy-zlai Jan 5, 2025
294a6e9
revert changes to explore.py, leaving it out for now
chewy-zlai Jan 5, 2025
b51f94a
Merge branch 'main' of https://github.com/zipline-ai/chronon into che…
chewy-zlai Jan 6, 2025
190cc52
Remove defaults before processing, and add support for spark 3.5.1
chewy-zlai Jan 6, 2025
d539acf
Merge branch 'main' into chewys/setup_python_build
tchow-zlai Jan 7, 2025
83d6bf9
Merge branch 'main' into chewys/setup_python_build
chewy-zlai Jan 9, 2025
9e015ee
Move google-cloud-storage to base requirements from dev for building …
chewy-zlai Jan 10, 2025
a2cb521
Include dataproc flag
chewy-zlai Jan 10, 2025
cc331be
Set default for dataproc flag
chewy-zlai Jan 10, 2025
96a2154
Add dataproc flag to main
chewy-zlai Jan 10, 2025
8e23f46
lint
chewy-zlai Jan 10, 2025
8c47670
Don't import certifi as it causes snyk to complain
chewy-zlai Jan 10, 2025
20bbf1e
update scala_version_for_spark
chewy-zlai Jan 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/py/ai/chronon/repo/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def get_folder_name_from_class_name(class_name):
return {v.__name__: k for k, v in FOLDER_NAME_TO_CLASS.items()}[class_name]


@click.command()
@click.command(name='compile')
@click.option(
'--chronon_root',
envvar='CHRONON_ROOT',
Expand Down
7 changes: 6 additions & 1 deletion api/py/ai/chronon/repo/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ def load_team_data(path):
"_events_without_topics": events_without_topics
}

if __name__ == "__main__":

def main():
parser = argparse.ArgumentParser(description="Explore tool for chronon")
parser.add_argument("keyword", help="Keyword to look up keys")
parser.add_argument("--conf-root", help="Conf root for the configs", default=CWD)
Expand Down Expand Up @@ -413,3 +414,7 @@ def load_team_data(path):
else:
group_bys = find_in_index(gb_index, args.keyword)
display_entries(group_bys, args.keyword, root=root, trim_paths=True)


if __name__ == "__main__":
main()
Loading
Loading