├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── __init__.py ├── example_auth.py ├── example_build.py ├── example_change.py ├── example_const.py ├── example_project.py └── example_test.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── teamcity ├── __init__.py ├── teamcity.py └── teamcity_const.py └── tests └── __init__.py /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/example_auth.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/example_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/examples/example_build.py -------------------------------------------------------------------------------- /examples/example_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/examples/example_change.py -------------------------------------------------------------------------------- /examples/example_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/examples/example_const.py -------------------------------------------------------------------------------- /examples/example_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/examples/example_project.py -------------------------------------------------------------------------------- /examples/example_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/examples/example_test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/setup.py -------------------------------------------------------------------------------- /teamcity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/teamcity/__init__.py -------------------------------------------------------------------------------- /teamcity/teamcity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/teamcity/teamcity.py -------------------------------------------------------------------------------- /teamcity/teamcity_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbread2003/python-teamcity/HEAD/teamcity/teamcity_const.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------