| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This directory contains complete, runnable examples demonstrating various features and use cases of Zarr Python.
Each example is organized in its own subdirectory with the following structure:
examples/ ├── example_name/ │ ├── README.md # Documentation for the example │ └── example_name.py # Python source code └── ...
To add a new example:
Create a new subdirectory: examples/my_example/
Add your Python code: examples/my_example/my_example.py
Create documentation: examples/my_example/README.md
Create a documentation page at docs/user-guide/examples/my_example.md. The documentation page should simply link to the README.md and the source code, e.g.:
# docs/user-guide/examples/my_example.md --8<-- "examples/my_example/README.md" ## Source Code ```python --8<-- "examples/my_example/my_example.py" ```
Update mkdocs.yml to include the new example in the navigation.
Your README.md should include:
| Back | FazBrowse Home | New Git URL |