Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waikato-datamining/pyadams
Python library for using ADAMS from Python (via JPype).
https://github.com/waikato-datamining/pyadams
Last synced: 5 days ago
JSON representation
Python library for using ADAMS from Python (via JPype).
- Host: GitHub
- URL: https://github.com/waikato-datamining/pyadams
- Owner: waikato-datamining
- License: gpl-3.0
- Created: 2024-07-16T03:47:19.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T02:11:41.000Z (4 months ago)
- Last Synced: 2024-07-23T04:58:29.585Z (4 months ago)
- Language: Python
- Homepage: https://adams.cms.waikato.ac.nz/
- Size: 41 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
README
# pyadams
Python library for using [ADAMS](https://adams.cms.waikato.ac.nz/) from Python (via JPype).## Installation
From PyPI:
```bash
pip install pyadams
```Or directly from Github:
```bash
pip install git+https://github.com/waikato-datamining/pyadams.git
```## Tools
### Download
```
usage: pa-download [-h] -a {update,list,download} [-v VERSION] [-n NAME]
[-o OUTPUT_DIR] [-x]
[-l {DEBUG,INFO,WARNING,ERROR,CRITICAL}]Tool for downloading ADAMS releases and snapshots.
optional arguments:
-h, --help show this help message and exit
-a {update,list,download}, --action {update,list,download}
The action to perform. (default: None)
-v VERSION, --version VERSION
The version to download, e.g., 'snapshot'. (default:
None)
-n NAME, --name NAME The name of the download, e.g., 'adams-ml-app'.
(default: None)
-o OUTPUT_DIR, --output_dir OUTPUT_DIR
The directory to download ADAMS to. (default: None)
-x, --extract Whether to automatically extract the downloaded ADAMS
archive. (default: False)
-l {DEBUG,INFO,WARNING,ERROR,CRITICAL}, --logging_level {DEBUG,INFO,WARNING,ERROR,CRITICAL}
The logging level to use. (default: WARN)
```