Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions pythia-gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def render_cookbook(name: str):
try:
print(f"Rendering {name}", file=sys.stderr, flush=True)
raw_base_url = (
f"https://raw.githubusercontent.com/ProjectPythia-MystMD/{name}/main"
f"https://raw.githubusercontent.com/projectpythia/{name}/main"
)
config_url = f"{raw_base_url}/myst.yml"
book_url = f"https://projectpythia-mystmd.github.io/{name}"
book_url = f"https://projectpythia.org/{name}"

# Load JB data
config = fetch_yaml(config_url)
Expand Down
2 changes: 0 additions & 2 deletions root.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Cookbooks Gallery

*Only includes Cookbooks from ProjectPythia-MystMD*

Pythia Cookbooks provide example workflows on more advanced and domain-specific problems developed by the Pythia community. Cookbooks build on top of skills you learn in [Pythia Foundations](https://foundations.projectpythia.org/landing-page.html).

Cookbooks are created from Jupyter Notebooks that we strive to binderize so each Cookbook can be [executed in the cloud with a single click from your browser](https://foundations.projectpythia.org/preamble/how-to-use.html#interacting-with-jupyter-notebooks-in-the-cloud-via-binder), but in some instances executing a Cookbook will require [running the notebooks locally](https://foundations.projectpythia.org/preamble/how-to-use.html#interacting-with-jupyter-books-locally).
Expand Down