https://github.com/nok/openml-cli
Use the command line tool `openml` to interact with the official API of OpenML.
https://github.com/nok/openml-cli
cli datasets openml openscience
Last synced: 11 months ago
JSON representation
Use the command line tool `openml` to interact with the official API of OpenML.
- Host: GitHub
- URL: https://github.com/nok/openml-cli
- Owner: nok
- License: mit
- Created: 2018-12-08T12:30:42.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-23T23:58:07.000Z (about 7 years ago)
- Last Synced: 2025-03-18T11:48:24.474Z (11 months ago)
- Topics: cli, datasets, openml, openscience
- Language: Python
- Homepage:
- Size: 46.9 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license.txt
Awesome Lists containing this project
README
# openml-cli
[](https://pypi.python.org/pypi/openml-cli)
[](https://pypi.python.org/pypi/openml-cli)
[](https://raw.githubusercontent.com/nok/openml-cli/master/license.txt)
[](https://twitter.com/darius_morawiec)
Use the command line tool `oml` or `openml` to interact with the official [API](https://openml.github.io/OpenML/REST-API/) of [OpenML](https://www.openml.org).
## Installation
```bash
pip install openml-cli
```
## Usage
oml config {view, set, unset}
Description: View or change your configuration.
Subcommands:
```bash
oml config view
oml config set
oml config unset
```
Examples:
```bash
oml config set apikey
```
oml dataset {search, show, download, list}
Description: Search, filter or download datasets.
Subcommands:
```bash
oml dataset search
oml dataset show
oml dataset show --json
oml dataset show --browser
oml dataset download
oml dataset list
oml dataset list --limit --offset
oml dataset list --limit --offset --json
```
Search and download a specific dataset:
```bash
oml dataset search mnist
oml dataset show 40996
oml dataset download 40996 --to ~/Downloads
```
## Example
```bash
oml config set apikey
oml dataset search mnist
oml dataset show 40996
oml dataset download 40996 --to ~/Downloads
```
## License
The module is Open Source Software released under the [MIT](license.txt) license.