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.
Files changed (76) hide show
  1. DKCloudCommand/__init__.py +10 -0
  2. DKCloudCommand/cli/__init__.py +5 -0
  3. DKCloudCommand/cli/__main__.py +3232 -0
  4. DKCloudCommand/hooks/DKHooks.py +86 -0
  5. DKCloudCommand/hooks/__init__.py +0 -0
  6. DKCloudCommand/logging_cfg.py +35 -0
  7. DKCloudCommand/modules/DKActiveServingWatcher.py +265 -0
  8. DKCloudCommand/modules/DKCCUserTracking.py +14 -0
  9. DKCloudCommand/modules/DKCLIRecipeChecker.py +308 -0
  10. DKCloudCommand/modules/DKCloudAPI.py +1252 -0
  11. DKCloudCommand/modules/DKCloudCommandConfig.py +351 -0
  12. DKCloudCommand/modules/DKCloudCommandRunner.py +3254 -0
  13. DKCloudCommand/modules/DKDateHelper.py +33 -0
  14. DKCloudCommand/modules/DKFileHelper.py +89 -0
  15. DKCloudCommand/modules/DKIgnore.py +35 -0
  16. DKCloudCommand/modules/DKKitchenDisk.py +160 -0
  17. DKCloudCommand/modules/DKRecipeDisk.py +725 -0
  18. DKCloudCommand/modules/DKReturnCode.py +94 -0
  19. DKCloudCommand/modules/DKZipHelper.py +18 -0
  20. DKCloudCommand/modules/__init__.py +5 -0
  21. DKCloudCommand/modules/githash.py +43 -0
  22. DKCloudCommand/version.py +12 -0
  23. DKCommon/Constants.py +11 -0
  24. DKCommon/DKFileEncode.py +97 -0
  25. DKCommon/DKJSONUtils.py +193 -0
  26. DKCommon/DKMongoUtils.py +11 -0
  27. DKCommon/DKPathUtils.py +139 -0
  28. DKCommon/DKUserTracking.py +53 -0
  29. DKCommon/Exceptions.py +18 -0
  30. DKCommon/OAuthConstants.py +13 -0
  31. DKCommon/RequestInfo.py +75 -0
  32. DKCommon/__init__.py +6 -0
  33. DKCommon/api_utils/DKApiHelper.py +544 -0
  34. DKCommon/api_utils/DKErrors.py +196 -0
  35. DKCommon/api_utils/DKReturnCode.py +38 -0
  36. DKCommon/api_utils/__init__.py +0 -0
  37. DKCommon/api_utils/api_utils.py +121 -0
  38. DKCommon/constants/__init__.py +0 -0
  39. DKCommon/constants/api/__init__.py +0 -0
  40. DKCommon/constants/api/environment.py +2 -0
  41. DKCommon/constants/api/errors.py +245 -0
  42. DKCommon/constants/api/query_params.py +19 -0
  43. DKCommon/constants/authentication.py +8 -0
  44. DKCommon/constants/entities.py +39 -0
  45. DKCommon/dt_utils.py +15 -0
  46. DKCommon/email_templates/DKKitchenMergeTemplate.py +441 -0
  47. DKCommon/email_templates/DKPasswordResetTemplate.py +193 -0
  48. DKCommon/email_templates/DKUserInviteTemplate.py +178 -0
  49. DKCommon/email_templates/__init__.py +0 -0
  50. DKCommon/jsonparse/JSONLexer.py +135 -0
  51. DKCommon/jsonparse/JSONListener.py +46 -0
  52. DKCommon/jsonparse/JSONParser.py +458 -0
  53. DKCommon/jsonparse/__init__.py +0 -0
  54. DKCommon/log_utils.py +308 -0
  55. DKCommon/request_extensions/__init__.py +113 -0
  56. DKCommon/request_extensions/auth_adapter.py +92 -0
  57. DKCommon/request_extensions/hooks.py +35 -0
  58. DKCommon/request_extensions/http_adapter.py +40 -0
  59. DKCommon/request_extensions/http_adapter.pyi +18 -0
  60. DKCommon/request_extensions/retry.py +86 -0
  61. DKCommon/request_extensions/session.py +103 -0
  62. DKCommon/request_extensions/session.pyi +70 -0
  63. DKCommon/request_extensions/settings.py +75 -0
  64. DKCommon/request_extensions/utils.py +33 -0
  65. DKCommon/str_utils.py +42 -0
  66. DKCommon/typing.py +12 -0
  67. DKCommon/validators/Validator.py +35 -0
  68. DKCommon/validators/__init__.py +0 -0
  69. DKCommon/validators/signatures.py +36 -0
  70. dkcloudcommand-1.5.29.dist-info/METADATA +46 -0
  71. dkcloudcommand-1.5.29.dist-info/RECORD +76 -0
  72. dkcloudcommand-1.5.29.dist-info/WHEEL +5 -0
  73. dkcloudcommand-1.5.29.dist-info/entry_points.txt +2 -0
  74. dkcloudcommand-1.5.29.dist-info/licenses/LICENSE +661 -0
  75. dkcloudcommand-1.5.29.dist-info/licenses/LICENSE.txt +661 -0
  76. dkcloudcommand-1.5.29.dist-info/top_level.txt +2 -0
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ __author__ = "DataKitchen, Inc."
5
+ __email__ = "info@datakitchen.io"
6
+
7
+
8
+ from .logging_cfg import configure_logging
9
+
10
+ configure_logging()
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ __author__ = "DataKitchen, Inc."
5
+ __email__ = "info@datakitchen.io"