Metadata-Version: 2.1
Name: enconnect
Version: 0.17.3
Summary: Enasis Network Remote Connect
License: MIT
Project-URL: Source, https://github.com/enasisnetwork/enconnect
Project-URL: Documentation, https://enasisnetwork.github.io/enconnect/sphinx
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: encommon >=0.20
Requires-Dist: httpx >=0.27
Requires-Dist: websockets >=13.0

# Enasis Network Remote Connect

> :warning: This project has not released its first major version.

Functions and classes for connecting to remote services and whatnot.

<a href="https://pypi.org/project/enconnect"><img src="https://enasisnetwork.github.io/enconnect/badges/pypi.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/flake8.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/flake8.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/pylint.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/pylint.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/ruff.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/ruff.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/mypy.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/mypy.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/yamllint.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/yamllint.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/pytest.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/pytest.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/coverage.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/coverage.png"></a><br>
<a href="https://enasisnetwork.github.io/enconnect/validate/sphinx.txt"><img src="https://enasisnetwork.github.io/enconnect/badges/sphinx.png"></a><br>

## Documentation
Read [project documentation](https://enasisnetwork.github.io/enconnect/sphinx)
built using the [Sphinx](https://www.sphinx-doc.org/) project.
Should you venture into the sections below you will be able to use the
`sphinx` recipe to build documention in the `sphinx/html` directory.

## Projects using library
- [Enasis Network Homie Automate](https://github.com/enasisnetwork/enhomie)
- [Enasis Network Chatting Robie](https://github.com/enasisnetwork/enrobie)

## Useful and related links
- [Instagram API](https://developers.facebook.com/docs/instagram-basic-display-api/reference/media)
- [YouTube API](https://developers.google.com/youtube/v3/docs)

## Installing the package
Installing stable from the PyPi repository
```
pip install enconnect
```
Installing latest from GitHub repository
```
pip install git+https://github.com/enasisnetwork/enconnect
```

## Quick start for local development
Start by cloning the repository to your local machine.
```
git clone https://github.com/enasisnetwork/enconnect.git
```
Set up the Python virtual environments expected by the Makefile.
```
make -s venv-create
```

### Execute the linters and tests
The comprehensive approach is to use the `check` recipe. This will stop on
any failure that is encountered.
```
make -s check
```
However you can run the linters in a non-blocking mode.
```
make -s linters-pass
```
And finally run the various tests to validate the code and produce coverage
information found in the `htmlcov` folder in the root of the project.
```
make -s pytest
```

## Version management
> :warning: Ensure that no changes are pending.

1. Rebuild the environment.
   ```
   make -s check-revenv
   ```

1. Update the [version.txt](enconnect/version.txt) file.

1. Push to the `main` branch.

1. Create [repository](https://github.com/enasisnetwork/enconnect) release.

1. Build the Python package.<br>Be sure no uncommited files in tree.
   ```
   make -s pypackage
   ```

1. Upload Python package to PyPi test.
   ```
   make -s pypi-upload-test
   ```

1. Upload Python package to PyPi prod.
   ```
   make -s pypi-upload-prod
   ```
