Skip to main content

The official SDK for interacting with the Cherry Servers API

Project description

Cherry Servers Python SDK

codecov unit-test lint Documentation Status PyPI - Python Version

Cherry Servers Python library for resource management.

The documentation for this library is available at https://cherryservers-sdk-python.readthedocs.io. The documentation for the Cherry Servers API can be found at https://api.cherryservers.com/doc/.

Usage

The preferred way to install this package is with pip:

pip install cherryservers-sdk-python

A simple example of how to provision a server and print its information:

import cherryservers_sdk_python

facade = cherryservers_sdk_python.facade.CherryApiFacade(token="my-token")

# Create a server.
creation_req = cherryservers_sdk_python.servers.CreationRequest(
    region="eu_nord_1", plan="cloud_vps_1"
)
server = facade.servers.create(creation_req, project_id=220189)

print(server.get_model())

For more examples, check out the documentation.

Development

Requirements

  • Python version >= 3.10
  • poetry version >= 2.0.0

Setup

  1. Clone the repository with:
git clone git@github.com:caliban0/cherryservers-sdk-python.git
cd cherryservers-sdk-python
  1. Install package dependencies:
poetry install --with dev

If ran from inside a virtual environment, poetry should detect and use it. Otherwise, it will create a new one, which you can activate with:

eval $(poetry env activate)

I's also highly recommended to set up pre-commit:

pre-commit install

Testing

Run unit tests:

pytest tests/unit

Running integration tests requires the following environment variables to be set:

  1. CHERRY_TEST_API_KEY - your Cherry Servers API key.
  2. CHERRY_TEST_TEAM_ID - the team for which the resources will be provisioned.
  3. CHERRY_TEST_BAREMETAL_SERVER_ID - pre-existing baremetal server, for storage testing.

WARNING: running integration tests consumes real resources and will incur costs!

Run integration tests:

pytest tests/integration

Release

  1. Update version in pyproject.toml.
  2. Update version in cherryservers_sdk_python/_version.py.
  3. Run git cliff -o CHANGELOG.md --tag {version} to generate the changelog.
  4. Create a GitHub release.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page