An open API service indexing awesome lists of open source software.

https://github.com/coatless-py-pkg/cloudyds

Python package to setup DS tools in cloud environment with port forwarding via ngrok
https://github.com/coatless-py-pkg/cloudyds

Last synced: 10 months ago
JSON representation

Python package to setup DS tools in cloud environment with port forwarding via ngrok

Awesome Lists containing this project

README

          

# cloudyds

[![PyPI](https://img.shields.io/pypi/v/cloudyds.svg)](https://pypi.org/project/cloudyds/)
[![Tests](https://github.com/coatless/cloudyds/actions/workflows/test.yml/badge.svg)](https://github.com/coatless/cloudyds/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/coatless/cloudyds?include_prereleases&label=changelog)](https://github.com/coatless/cloudyds/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/coatless/cloudyds/blob/main/LICENSE)

> [!IMPORTANT]
>
> This package is a WIP.

## Installation

Install this library using `pip`:

```bash
pip install cloudyds
```

## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

```bash
cd cloudyds
python -m venv venv
source venv/bin/activate
```

Now install the dependencies and test dependencies:

```bash
pip install -e '.[test]'
```

To run the tests:

```bash
pytest
```