Skip to main content

A python wrapper for the AllSpice Hub API

Project description

py-allspice

A very simple API client for AllSpice Hub

Note that not the full Swagger-API is accessible. The whole implementation is focused on making access and working with Organizations, Teams, Repositories and Users as pain free as possible.

Forked from https://github.com/Langenfeld/py-gitea.

Usage

Examples

Check the examples directory for full, working example scripts that you can adapt or refer to for your own needs.

Quickstart

First get an allspice_client object wrapping access and authentication (via an api token) for your instance of AllSpice Hub.

from allspice import *

# By default, points to hub.allspice.io.
allspice_client = AllSpice(token_text=TOKEN)

# If you are self-hosting:
allspice_client = AllSpice(allspice_hub_url=URL, token_text=TOKEN)

Operations like requesting the AllSpice version or authentication user can be requested directly from the allspice_client object:

print("AllSpice Version: " + allspice_client.get_version())
print("API-Token belongs to user: " + allspice_client.get_user().username)

Adding entities like Users, Organizations, ... also is done via the allspice_client object.

user = allspice_client.create_user("Test Testson", "test@test.test", "password")

All operations on entities in allspice are then accomplished via the according wrapper objects for those entities. Each of those objects has a .request method that creates an entity according to your allspice_client instance.

other_user = User.request(allspice_client, "OtherUserName")
print(other_user.username)

Note that the fields of the User, Organization,... classes are dynamically created at runtime, and thus not visible during divelopment. Refer to the AllSpice API documentation for the fields names.

Fields that can not be altered via allspice-api, are read only. After altering a field, the .commit method of the according object must be called to synchronize the changed fields with your allspice_client instance.

org = Organization.request(allspice_client, test_org)
org.description = "some new description"
org.location = "some new location"
org.commit()

An entity in allspice can be deleted by calling delete.

org.delete()

All entity objects do have methods to execute some of the requests possible though the AllSpice api:

org = Organization.request(allspice_client, ORGNAME)
teams = org.get_teams()
for team in teams:
	repos = team.get_repos()
	for repo in repos:
		print(repo.name)

Installation

Use pip install py-allspice to install.

A Note on Versioning

This repository does not follow the same versioning policy as py-gitea. After v1.17.x, py-allspice switched to Semantic Versioning with v2.0.0. In general, versions of py-allspice do NOT conform to versions of AllSpice Hub, and the latest version of py-allspice should be compatible with the current version of AllSpice Hub.

Tests

Tests can be run with:

python3 -m pytest test_api.py

Make sure to have an instance of AllSpice Hub running on http://localhost:3000, and an admin-user token at .token. The admin user must be named test, with email secondarytest@test.org.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-allspice-2.0.0.tar.gz (20.5 kB view details)

Uploaded Source

Built Distribution

py_allspice-2.0.0-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file py-allspice-2.0.0.tar.gz.

File metadata

  • Download URL: py-allspice-2.0.0.tar.gz
  • Upload date:
  • Size: 20.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for py-allspice-2.0.0.tar.gz
Algorithm Hash digest
SHA256 dc879d23c384a944335a2facbea8fd6ea0a2a49b5b27cb63059f8d1dc1e8d72f
MD5 12ea98af043bb1efaf7154b259aec538
BLAKE2b-256 a631be9fec17fffdbff6d7c2d61c39f58aa22249cc5c7772fbbb793257a447e1

See more details on using hashes here.

File details

Details for the file py_allspice-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: py_allspice-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for py_allspice-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a0b53b444e8653431cf18ec82ef157058658763c6aaebd40ba2a45518d37bc41
MD5 0066325cac3bb2c39fb6b4cb356c51f0
BLAKE2b-256 ee818162b9188e53eee1ecb5751aa414ad6adb44f4f32ee0bd961f16c7a4c2f3

See more details on using hashes here.

Supported by

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