├── .dockerignore ├── .github └── workflows │ ├── docs.yml │ ├── release.yml │ ├── style.yml │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docs ├── changelog.md ├── conf.py ├── contributing.md ├── index.md └── reference.rst ├── pyproject.toml ├── src └── pyforce │ ├── __init__.py │ ├── commands.py │ ├── exceptions.py │ ├── models.py │ ├── py.typed │ └── utils.py └── tests ├── conftest.py └── test_commands.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/README.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CONTRIBUTING.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pyforce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/src/pyforce/__init__.py -------------------------------------------------------------------------------- /src/pyforce/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/src/pyforce/commands.py -------------------------------------------------------------------------------- /src/pyforce/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/src/pyforce/exceptions.py -------------------------------------------------------------------------------- /src/pyforce/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/src/pyforce/models.py -------------------------------------------------------------------------------- /src/pyforce/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyforce/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/src/pyforce/utils.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahv/pyforce/HEAD/tests/test_commands.py --------------------------------------------------------------------------------