Metadata-Version: 2.1
Name: watchful
Version: 1.1.0
Summary: Watchful API for Interacting with Watchful Environment
Home-page: https://github.com/Watchfulio/watchful-py
Author: Watchful, Inc.
Author-email: engineering@watchful.io
License: MIT License
Project-URL: Bug Tracker, https://github.com/Watchfulio/watchful-py/issues
Keywords: watchful
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

# Watchful Python Package for Interacting with Watchful Environment

## Overview
The current Watchful features include the following:
- Watchful API
<!---
- Data Enrichment
--->

## Steps

### Create Python Enviroment
Create a Python virtual environment and activate it. The following are a few ways to do it:
- [`pyenv`](https://github.com/pyenv/pyenv)
- [`conda`](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html)
- [`venv`](https://docs.python.org/3/library/venv.html)
- [`virtualenv`](https://virtualenv.pypa.io/en/latest/)

For more steps on creating Python environments, refer to [Watchful SDK repository](https://github.com/Watchfulio/watchful-py/blob/main/README_PY_ENV.md) or `README_PY_ENV.md` in the package directory.

### Install Watchful Package
Install the built package. Add `--force-reinstall` to guarantee a (re)installation if you had installed Watchful previously.
```command
pip3 install watchful[==your.desired.version] [--force-reinstall]
```
Show the installed Watchful package.
```command
pip3 show watchful
```

### Run Tests
After you've done the preceding steps correctly, you will be able to see the following:
```command
python3 -c 'import watchful; print(watchful.__version__);'
```
The version for Watchful Package is printed on screen.

### Documentation
Stay in tune for our upcoming documentation pages! These are currently inline within the source code.
