remotion-lambda 4.0.139__tar.gz → 4.0.141__tar.gz

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 (18) hide show
  1. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/PKG-INFO +2 -4
  2. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda/models.py +1 -1
  3. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda/remotionclient.py +2 -2
  4. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda/version.py +1 -1
  5. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda.egg-info/PKG-INFO +2 -4
  6. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/LICENSE +0 -0
  7. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/README.md +0 -0
  8. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda/__init__.py +0 -0
  9. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda.egg-info/SOURCES.txt +0 -0
  10. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda.egg-info/dependency_links.txt +0 -0
  11. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda.egg-info/requires.txt +0 -0
  12. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/remotion_lambda.egg-info/top_level.txt +0 -0
  13. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/setup.cfg +0 -0
  14. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/setup.py +0 -0
  15. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/tests/__init__.py +0 -0
  16. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/tests/test_get_render_progress_client.py +0 -0
  17. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/tests/test_render_client_render_media.py +0 -0
  18. {remotion_lambda-4.0.139 → remotion_lambda-4.0.141}/tests/test_render_client_render_still.py +0 -0
@@ -1,15 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion_lambda
3
- Version: 4.0.139
3
+ Version: 4.0.141
4
4
  Summary: Remotion Lambda client
5
5
  Home-page: https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python
6
6
  Author: Jonny Burger
7
7
  Author-email: jonny@remotion.dev
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
8
  Requires-Python: >=3.6
11
9
  Description-Content-Type: text/markdown
12
10
  License-File: LICENSE
11
+ Requires-Dist: boto3<1.35.0,>=1.34.23
13
12
 
14
13
  Remotion is a framework for creating videos programmatically using React.
15
-
@@ -453,7 +453,7 @@ class RenderStillResponse:
453
453
  size_in_bytes: int
454
454
  bucket_name: str
455
455
  render_id: str
456
- cloud_watch_logs: Optional[str] = None
456
+ outKey: str
457
457
 
458
458
 
459
459
  class RenderMediaProgress:
@@ -217,10 +217,10 @@ class RemotionClient:
217
217
  disclaimer=body_object['estimatedPrice']['disclaimer']
218
218
  ),
219
219
  url=body_object['output'],
220
- size_in_bytes=body_object['size'],
220
+ size_in_bytes=body_object['sizeInBytes'],
221
221
  bucket_name=body_object['bucketName'],
222
222
  render_id=body_object['renderId'],
223
- # cloud_watch_logs=body_object['cloud_watch_logs']
223
+ outKey=body_object['outKey'],
224
224
  )
225
225
 
226
226
  return None
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring, missing-final-newline
2
- VERSION = "4.0.139"
2
+ VERSION = "4.0.141"
@@ -1,15 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion-lambda
3
- Version: 4.0.139
3
+ Version: 4.0.141
4
4
  Summary: Remotion Lambda client
5
5
  Home-page: https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python
6
6
  Author: Jonny Burger
7
7
  Author-email: jonny@remotion.dev
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
8
  Requires-Python: >=3.6
11
9
  Description-Content-Type: text/markdown
12
10
  License-File: LICENSE
11
+ Requires-Dist: boto3<1.35.0,>=1.34.23
13
12
 
14
13
  Remotion is a framework for creating videos programmatically using React.
15
-