├── .flake8 ├── .github └── workflows │ ├── pr.yaml │ └── release-pypi.yaml ├── .gitignore ├── LICENSE ├── README.md ├── pbiapi ├── __init__.py ├── pbiapi.py └── utils.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── setup.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/release-pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/.github/workflows/release-pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/README.md -------------------------------------------------------------------------------- /pbiapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/pbiapi/__init__.py -------------------------------------------------------------------------------- /pbiapi/pbiapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/pbiapi/pbiapi.py -------------------------------------------------------------------------------- /pbiapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/pbiapi/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.20.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottmelhop/PowerBI-API-Python/HEAD/setup.py --------------------------------------------------------------------------------