wherobots-python-sdk 0.2.0__py3-none-any.whl → 0.3.0__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.
wherobots/__init__.py CHANGED
@@ -1,6 +1,7 @@
1
1
  """Wherobots Python SDK (Jobs API surface)."""
2
2
 
3
3
  from wherobots.__version__ import __version__
4
+ from wherobots.api.files import FilesAPI
4
5
  from wherobots.client import WherobotsJob
5
6
  from wherobots.config import WherobotsConfig
6
7
  from wherobots.enums import (
@@ -39,6 +40,8 @@ from wherobots.models import (
39
40
  RunPythonPayload,
40
41
  RunView,
41
42
  StorageIntegration,
43
+ TemporaryAwsCredentials,
44
+ UtilizationStats,
42
45
  )
43
46
 
44
47
  # Convenience alias
@@ -49,6 +52,7 @@ __all__ = [
49
52
  # Client
50
53
  "WherobotsJob",
51
54
  "Job",
55
+ "FilesAPI",
52
56
  "WherobotsConfig",
53
57
  # Enums
54
58
  "Runtime",
@@ -84,4 +88,6 @@ __all__ = [
84
88
  "PyPiDependency",
85
89
  "FileDependency",
86
90
  "StorageIntegration",
91
+ "TemporaryAwsCredentials",
92
+ "UtilizationStats",
87
93
  ]
wherobots/__version__.py CHANGED
@@ -1,5 +1,5 @@
1
1
  """Version information."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.3.0"
4
4
  __author__ = "Wherobots"
5
5
  __email__ = "support@wherobots.com"