Generates an OGC application package from a Jupyter Notebook by parsing its it's papermill parameterized metadata.
Project description
OGC Application Package Generator
This repository contains a library for the generation an OGC complaint application package from a Jupyter Notebook by parsing its contents and metadata.
This library serves as a base upon which to build project specific application generation software. For example the Unity Project uses this libary for their Unity specific application genetation software.
unity-app-generator | unity-example-application
Features
- Extracts information from application Git repositorties for metadata reporting
- Creates an algorithm descriptor file that can be used by an OGC compliant ADES server
- Creates Common Workflow Language (CWL) files that expose the notebook's arguments
- Creates a Docker image called by the CWL file to execute parsed notebook applications
Install from PyPi
pip install app-pack-generator
Preparing Your repository
Any application repository used by this library must:
- Contain an valid Jupyter notebook which can be run using papermill
- Contain a valid configuration file for
repo2docker(generally anenvironment.ymlorrequirements.txt)
NOTE: papermill is required to listed as a dependencies in your configuration file.
By default repo2docker will a certain version of Python, currently Python 3.8. Be sure to provied a runtime.txt configuration file to specify a different version if your packages require it.
Preparing Your Notebook
In your Jupyter notebook file, the input parameters will be automatically determined from a code cell in the notebook annotated with the parameters tag. An attempt is made to automatically detect the type of the parameters. When that fails, type can be specified through a type hint in the form of a comment following the variable in the form # type: <type_name>. See below for examples:
example_argument_int = 1
example_argument_float = 1.0
example_argument_string = "string"
example_argument_bool = True
example_argument_empty = None # type: string Allow a null value or a string
Not that a comment can still be provided but it must be given after the type name. If a value is specified with the None it will be come an Any type inside of the generated CWL unless a type hint is provided. Parameters like the above are passed to the generated CWL through a parameters block in the CWL job input file. For example, the following YAML would be part of the job input file for the above parameters:
parameters:
example_argument_string: "string"
example_argument_int: 1
example_argument_float: 1.0
example_argument_empty: "Not null string"
example_argument_bool: True
If any of the values in the CWL job input file are given as null then the default value inside the notebook will be used.
Two special type hints are used to connect inputs and outputs into the generated CWL file from the ADES processing system. These hints are given by the stage-in and stage-out type hints:
input_stac_collection_file = 'test/stage_in/stage_in_results.json' # type: stage-in
output_stac_catalog_dir = 'process_results/' # type: stage-out
The stage-in variable will be passed a filename to either a STAC Collection file or a STAC Catalog file. The data staged for the application will be located in the same directory as the file. It is recommended to use the Unity-Py Collection.from_stac method as illustrated in the unity-example-application. This method will automatically detect the type of file being passed and handle them both seemlessly.
The stage-out variable will be passed path to the location where a STAC Catalog file should be written along with any output data. Application results must be located in this directory for them to be properly staged. Again, please follow the example in the unity-example-application archive for using Unity-Py to write such a catalog.
If either or both stage-in and stage-out variables are omitted from the notebook then the related CWL file will not be produced.
License
See our: LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file app_pack_generator-1.1.0.tar.gz.
File metadata
- Download URL: app_pack_generator-1.1.0.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
704a318f8b9ab2e88df91ece0b92466ff48b9a5891931c45f6cff96fa1ffbaa2
|
|
| MD5 |
b9d3fe64ff583ff61a6cc39c9ff28b9b
|
|
| BLAKE2b-256 |
bb98466b12b56d236c4bfa312cee317e9e86fa6afd631b9c491959f7f9b59223
|
File details
Details for the file app_pack_generator-1.1.0-py3-none-any.whl.
File metadata
- Download URL: app_pack_generator-1.1.0-py3-none-any.whl
- Upload date:
- Size: 36.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
589f6c05194a8abc6543bfa38e6dbb626d789db30b2bed8e72e36b30ea3266b5
|
|
| MD5 |
09b0838df8307e944e711d85e31c2cec
|
|
| BLAKE2b-256 |
47570d560a1d1731e9d08be905c97f2621b46e2b1986bdafd0eead74a898762a
|