├── .github └── workflows │ ├── fulltest.yml │ └── publish_pypi.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── gitea ├── __init__.py ├── apiobject.py ├── baseapiobject.py ├── exceptions.py └── gitea.py ├── pyproject.toml ├── requirements.txt └── tests ├── conftest.py ├── test_api.py ├── test_api_longtests.py └── test_public_api.py /.github/workflows/fulltest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/.github/workflows/fulltest.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/.github/workflows/publish_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/__init__.py -------------------------------------------------------------------------------- /gitea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/gitea/__init__.py -------------------------------------------------------------------------------- /gitea/apiobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/gitea/apiobject.py -------------------------------------------------------------------------------- /gitea/baseapiobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/gitea/baseapiobject.py -------------------------------------------------------------------------------- /gitea/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/gitea/exceptions.py -------------------------------------------------------------------------------- /gitea/gitea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/gitea/gitea.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests[socks] 2 | pytest 3 | immutabledict -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_api_longtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/tests/test_api_longtests.py -------------------------------------------------------------------------------- /tests/test_public_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Langenfeld/py-gitea/HEAD/tests/test_public_api.py --------------------------------------------------------------------------------