Skip to main content

A python wrapper for the Gitea API

Project description

py-gitea

A very simple API client for Gitea > 1.16.1

This has been somewhat tested (and used), so most things should work as expected.

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.

Originally forked from https://github.com/m301/py-gitea.

Usage

First get a gitea object wrapping access and authentication (via an api token) for your gitea instance:

from gitea import *

gitea = Gitea(URL, TOKEN)

Operations like requesting the Gitea version or authentication user can be requested directly from the gitea object:

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

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

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

All operations on entities in gitea 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 gitea instance.

other_user = User.request(gitea, "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 Gitea-API documentation for the fields names.

Fields that can not be altered via gitea-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 gitea instance.

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

An entity in gitea can be deleted by calling delete.

org.delete()

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

org = Organization.request(gitea, 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-gitea to install.

Tests

Tests can be run with:

python3 -m pytest test_api.py

Make sure to have a gitea-instance 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-gitea-0.2.8.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

py_gitea-0.2.8-py3-none-any.whl (15.7 kB view details)

Uploaded Python 3

File details

Details for the file py-gitea-0.2.8.tar.gz.

File metadata

  • Download URL: py-gitea-0.2.8.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for py-gitea-0.2.8.tar.gz
Algorithm Hash digest
SHA256 f7641ea0818529b59f3ca9c38b106a5c2ba06a0f662a022f76a62919f17e8379
MD5 dc0e4a8ecdf3564c74eb3cee9b9d176d
BLAKE2b-256 d192e88bea3c6f5a916a78267a90541380966711976987057d75d026b8a0e857

See more details on using hashes here.

File details

Details for the file py_gitea-0.2.8-py3-none-any.whl.

File metadata

  • Download URL: py_gitea-0.2.8-py3-none-any.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for py_gitea-0.2.8-py3-none-any.whl
Algorithm Hash digest
SHA256 aa9433cb83a528a8560de7affc0d85a838de17a7b28b43be5f0066341af4fda8
MD5 9e198b3444b0973d934300d439cd5191
BLAKE2b-256 0be6b609b2fa50becb63dc80ee75a7f631db8dec21b5548cb20b98bc9ef4b326

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