DKCloudCommand 1.5.29__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- DKCloudCommand/__init__.py +10 -0
- DKCloudCommand/cli/__init__.py +5 -0
- DKCloudCommand/cli/__main__.py +3232 -0
- DKCloudCommand/hooks/DKHooks.py +86 -0
- DKCloudCommand/hooks/__init__.py +0 -0
- DKCloudCommand/logging_cfg.py +35 -0
- DKCloudCommand/modules/DKActiveServingWatcher.py +265 -0
- DKCloudCommand/modules/DKCCUserTracking.py +14 -0
- DKCloudCommand/modules/DKCLIRecipeChecker.py +308 -0
- DKCloudCommand/modules/DKCloudAPI.py +1252 -0
- DKCloudCommand/modules/DKCloudCommandConfig.py +351 -0
- DKCloudCommand/modules/DKCloudCommandRunner.py +3254 -0
- DKCloudCommand/modules/DKDateHelper.py +33 -0
- DKCloudCommand/modules/DKFileHelper.py +89 -0
- DKCloudCommand/modules/DKIgnore.py +35 -0
- DKCloudCommand/modules/DKKitchenDisk.py +160 -0
- DKCloudCommand/modules/DKRecipeDisk.py +725 -0
- DKCloudCommand/modules/DKReturnCode.py +94 -0
- DKCloudCommand/modules/DKZipHelper.py +18 -0
- DKCloudCommand/modules/__init__.py +5 -0
- DKCloudCommand/modules/githash.py +43 -0
- DKCloudCommand/version.py +12 -0
- DKCommon/Constants.py +11 -0
- DKCommon/DKFileEncode.py +97 -0
- DKCommon/DKJSONUtils.py +193 -0
- DKCommon/DKMongoUtils.py +11 -0
- DKCommon/DKPathUtils.py +139 -0
- DKCommon/DKUserTracking.py +53 -0
- DKCommon/Exceptions.py +18 -0
- DKCommon/OAuthConstants.py +13 -0
- DKCommon/RequestInfo.py +75 -0
- DKCommon/__init__.py +6 -0
- DKCommon/api_utils/DKApiHelper.py +544 -0
- DKCommon/api_utils/DKErrors.py +196 -0
- DKCommon/api_utils/DKReturnCode.py +38 -0
- DKCommon/api_utils/__init__.py +0 -0
- DKCommon/api_utils/api_utils.py +121 -0
- DKCommon/constants/__init__.py +0 -0
- DKCommon/constants/api/__init__.py +0 -0
- DKCommon/constants/api/environment.py +2 -0
- DKCommon/constants/api/errors.py +245 -0
- DKCommon/constants/api/query_params.py +19 -0
- DKCommon/constants/authentication.py +8 -0
- DKCommon/constants/entities.py +39 -0
- DKCommon/dt_utils.py +15 -0
- DKCommon/email_templates/DKKitchenMergeTemplate.py +441 -0
- DKCommon/email_templates/DKPasswordResetTemplate.py +193 -0
- DKCommon/email_templates/DKUserInviteTemplate.py +178 -0
- DKCommon/email_templates/__init__.py +0 -0
- DKCommon/jsonparse/JSONLexer.py +135 -0
- DKCommon/jsonparse/JSONListener.py +46 -0
- DKCommon/jsonparse/JSONParser.py +458 -0
- DKCommon/jsonparse/__init__.py +0 -0
- DKCommon/log_utils.py +308 -0
- DKCommon/request_extensions/__init__.py +113 -0
- DKCommon/request_extensions/auth_adapter.py +92 -0
- DKCommon/request_extensions/hooks.py +35 -0
- DKCommon/request_extensions/http_adapter.py +40 -0
- DKCommon/request_extensions/http_adapter.pyi +18 -0
- DKCommon/request_extensions/retry.py +86 -0
- DKCommon/request_extensions/session.py +103 -0
- DKCommon/request_extensions/session.pyi +70 -0
- DKCommon/request_extensions/settings.py +75 -0
- DKCommon/request_extensions/utils.py +33 -0
- DKCommon/str_utils.py +42 -0
- DKCommon/typing.py +12 -0
- DKCommon/validators/Validator.py +35 -0
- DKCommon/validators/__init__.py +0 -0
- DKCommon/validators/signatures.py +36 -0
- dkcloudcommand-1.5.29.dist-info/METADATA +46 -0
- dkcloudcommand-1.5.29.dist-info/RECORD +76 -0
- dkcloudcommand-1.5.29.dist-info/WHEEL +5 -0
- dkcloudcommand-1.5.29.dist-info/entry_points.txt +2 -0
- dkcloudcommand-1.5.29.dist-info/licenses/LICENSE +661 -0
- dkcloudcommand-1.5.29.dist-info/licenses/LICENSE.txt +661 -0
- dkcloudcommand-1.5.29.dist-info/top_level.txt +2 -0