├── .github └── workflows │ └── pypa-publish.yml ├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── monday-api-python-sdk.iml └── vcs.xml ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── pylintrc ├── pyproject.toml ├── setup.cfg ├── setup.py └── src └── monday_sdk ├── __init__.py ├── client.py ├── constants.py ├── exceptions.py ├── graphql_handler.py ├── modules ├── __init__.py ├── activity_logs.py ├── boards.py ├── custom.py ├── docs.py ├── items.py └── updates.py ├── query_templates.py ├── types ├── __init__.py ├── api_response_types.py └── monday_enums.py └── utils.py /.github/workflows/pypa-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.github/workflows/pypa-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/monday-api-python-sdk.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.idea/monday-api-python-sdk.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /src/monday_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/__init__.py -------------------------------------------------------------------------------- /src/monday_sdk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/client.py -------------------------------------------------------------------------------- /src/monday_sdk/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/constants.py -------------------------------------------------------------------------------- /src/monday_sdk/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/exceptions.py -------------------------------------------------------------------------------- /src/monday_sdk/graphql_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/graphql_handler.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/__init__.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/activity_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/activity_logs.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/boards.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/custom.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/docs.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/items.py -------------------------------------------------------------------------------- /src/monday_sdk/modules/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/modules/updates.py -------------------------------------------------------------------------------- /src/monday_sdk/query_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/query_templates.py -------------------------------------------------------------------------------- /src/monday_sdk/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/types/__init__.py -------------------------------------------------------------------------------- /src/monday_sdk/types/api_response_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/types/api_response_types.py -------------------------------------------------------------------------------- /src/monday_sdk/types/monday_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/types/monday_enums.py -------------------------------------------------------------------------------- /src/monday_sdk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-api-python-sdk/HEAD/src/monday_sdk/utils.py --------------------------------------------------------------------------------