Gitea.py/README.md

32 líneas
872 B
Markdown
Original Vista normal Històric

2022-08-12 12:57:09 +02:00
# Gitea.py
2022-08-16 20:28:07 +02:00
Python Wrapper for Gitea API (WIP)
2022-08-12 12:57:09 +02:00
2022-08-16 20:28:07 +02:00
# Sample usage.
2022-08-12 12:57:09 +02:00
2022-08-16 20:28:07 +02:00
from Gitea import Gitea
2022-08-12 12:57:09 +02:00
2022-08-16 20:28:07 +02:00
'''
gitea = Gitea()
'''
2022-08-12 12:57:09 +02:00
2022-08-16 20:28:07 +02:00
# It will ask you your Gitea instance url and your access token to it and save the config to config/gitea.txt
# Current implemented Gitea API endpoints you can call:
gitea.admin_users_create()
gitea.admin_users_list()
gitea.notifications_new()
gitea.repos_issues_search()
gitea.repos_owner_repo_issues()
gitea.repos_owner_repo_issues_comments()
Some of above methods will need required params that will be shown to you when running them. In ex.:
gitea.repos_issues_search()
*** TypeError: repos_issues_search() missing 1 required positional argument: 'owner'
Just pass the param to the object like this:
gitea.repos_issues_search("your_gitea_username")
2022-08-12 12:57:09 +02:00