Metadata-Version: 2.1
Name: pygeoweaver
Version: 0.6.4
Summary: This is a wrapper package of the Geoweaver app.
Author-email: Geoweaver team <geoweaver.app@gmail.com>
Project-URL: Homepage, https://github.com/ESIPFed/pygeoweaver
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

## PyGeoWeaver

### Description

This package is a Python wrapper of the GeoWeaver app which was written in Java. This package is designed for Jupyter users to be able to directly use Geoweaver in Jupyter notebook or JupyterLab (JupyterHub).

### Installation

`pip install pygeoweaver`

### Usage

1. To show Geoweaver graphic user interface, please create a new cell and type:

```
import geoweaver
geoweaver.start()
```

The command will first check if Geoweaver has been downloaded and installed. If no, it will automatically download and install Geoweaver in the local environment. Then it will open Geoweaver in the cell output in a iframe. Users can use all the functions provided in Geoweaver.

2. To stop Geoweaver, please run:

```
geoweaver.stop()
```

3. To list the existing objects, please run:

```
geoweaver.list_hosts()
geoweaver.list_processes()
geoweaver.list_workflows()
```

4. To run a workflow, please run:
```
geoweaver.run_workflow("workflow_id", "host_id_list", "password_list", "environment_list")
```

or

```
geoweaver.run_workflow("workflow_zip_file_path", "host_id_list", "password_list", "environment_list")
```

or 

```
geoweaver.run_workflow("workflow_local_folder_path", "host_id_list", "password_list", "environment_list")
```

5. To export a workflow:

```
geoweaver.export_workflow("workflow_id", "workflow_zip_save_path")
```

6. To import a workflow:

```
geoweaver.import_workflow("<workflow_zip_file_path>")
```

or

```
geoweaver.import_workflow("<workflow_folder_path>")
```

7. To get history of a workflow run:

```
geoweaver.history("<workflow_history_id>")
```

8. To get history of a process run:

```
geoweaver.history("<process_history_id>")
```

9. To check the source code of a process

```
geoweaver.detail_processs("<process_id>")
```

10. To check the configuration of a workflow

```
geoweaver.detail_workflow("<workflow_id>")
```

11. To check the details of a host:

```
geoweaver.detail_host("<host_id>")
```
