Metadata-Version: 2.1
Name: skillsnetwork
Version: 0.19.0.dev0
Summary: Library for working with Skills Network
License: MIT
Author: Bradley Steinfeld
Author-email: bs@ibm.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Provides-Extra: regular
Requires-Dist: ibm-cos-sdk (>=2.11,<3.0); extra == "regular"
Requires-Dist: ipython (>=8.4.0,<9.0.0)
Requires-Dist: ipywidgets (>=7.7.0,<8.0.0)
Requires-Dist: requests (>=2.28.0,<3.0.0)
Requires-Dist: tqdm (>=4.64.0,<5.0.0)
Project-URL: Bug Tracker, https://github.ibm.com/skills-network/labs/issues/new?assignees=&labels=bug%2C+labs&template=bug.md&title=Short+explanation+of+how+the+user+sees+the+bug+manifest
Project-URL: Repository, https://github.com/ibm-skills-network/skillsnetwork-python-library
Project-URL: Skills Network Labs, https://skills.network/lab-tools
Description-Content-Type: text/markdown

# Skills Network Python Library

## Installation
### JupyterLite Installation
pip install skillsnetwork

### Regular Installation
pip install skillsnetwork[regular]

## Usage

TODO
## cvstudio

### Environment Variables
- `CV_STUDIO_TOKEN`
- `CV_STUDIO_BASE_URL`
- `IBMCLOUD_API_KEY`

### Python Code example
```
from datetime import datetime
import skillsnetwork.cvstudio
cvstudio = skillsnetwork.cvstudio.CVStudio('token')

cvstudio.report(started=datetime.now(), completed=datetime.now())

cvstudio.report(url="http://vision.skills.network")
```

### CLI example
```
# export CV_STUDIO_TOKEN="<token>"
# export CV_STUDIO_BASE_URL="<baseurl>"

cvstudio_report exampleTrainingRun.json
```

## Contributing
Please see [CONTRIBUTING.md](./CONTRIBUTING.md)

## Publishing
### From local
```bash
poetry publish
```
### From CI
TODO

