magic_hour 0.40.0__py3-none-any.whl → 0.41.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.
Potentially problematic release.
This version of magic_hour might be problematic. Click here for more details.
- magic_hour/environment.py +1 -1
- magic_hour/resources/v1/ai_clothes_changer/README.md +1 -0
- magic_hour/resources/v1/ai_face_editor/README.md +1 -0
- magic_hour/resources/v1/ai_gif_generator/README.md +1 -0
- magic_hour/resources/v1/ai_headshot_generator/README.md +1 -0
- magic_hour/resources/v1/ai_image_editor/README.md +1 -0
- magic_hour/resources/v1/ai_image_generator/README.md +1 -0
- magic_hour/resources/v1/ai_image_upscaler/README.md +1 -0
- magic_hour/resources/v1/ai_meme_generator/README.md +1 -0
- magic_hour/resources/v1/ai_photo_editor/README.md +1 -0
- magic_hour/resources/v1/ai_qr_code_generator/README.md +1 -0
- magic_hour/resources/v1/ai_talking_photo/README.md +3 -2
- magic_hour/resources/v1/animation/README.md +1 -0
- magic_hour/resources/v1/auto_subtitle_generator/README.md +1 -0
- magic_hour/resources/v1/face_detection/README.md +1 -0
- magic_hour/resources/v1/face_swap/README.md +1 -0
- magic_hour/resources/v1/face_swap_photo/README.md +1 -0
- magic_hour/resources/v1/files/README.md +1 -0
- magic_hour/resources/v1/image_background_remover/README.md +1 -0
- magic_hour/resources/v1/image_projects/README.md +1 -0
- magic_hour/resources/v1/image_to_video/README.md +1 -0
- magic_hour/resources/v1/lip_sync/README.md +3 -0
- magic_hour/resources/v1/lip_sync/client.py +10 -0
- magic_hour/resources/v1/photo_colorizer/README.md +1 -0
- magic_hour/resources/v1/text_to_video/README.md +1 -0
- magic_hour/resources/v1/video_projects/README.md +1 -0
- magic_hour/resources/v1/video_to_video/README.md +1 -0
- magic_hour/types/models/v1_audio_projects_get_response.py +1 -1
- magic_hour/types/params/__init__.py +6 -0
- magic_hour/types/params/v1_ai_talking_photo_create_body_style.py +6 -4
- magic_hour/types/params/v1_lip_sync_create_body.py +12 -0
- magic_hour/types/params/v1_lip_sync_create_body_style.py +37 -0
- {magic_hour-0.40.0.dist-info → magic_hour-0.41.0.dist-info}/METADATA +1 -1
- {magic_hour-0.40.0.dist-info → magic_hour-0.41.0.dist-info}/RECORD +36 -35
- {magic_hour-0.40.0.dist-info → magic_hour-0.41.0.dist-info}/LICENSE +0 -0
- {magic_hour-0.40.0.dist-info → magic_hour-0.41.0.dist-info}/WHEEL +0 -0
magic_hour/environment.py
CHANGED
|
@@ -6,7 +6,7 @@ class Environment(enum.Enum):
|
|
|
6
6
|
"""Pre-defined base URLs for the API"""
|
|
7
7
|
|
|
8
8
|
ENVIRONMENT = "https://api.magichour.ai"
|
|
9
|
-
MOCK_SERVER = "https://api.sideko.dev/v1/mock/magichour/magic-hour/0.
|
|
9
|
+
MOCK_SERVER = "https://api.sideko.dev/v1/mock/magichour/magic-hour/0.41.0"
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
def _get_base_url(
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
|
|
7
8
|
<!-- CUSTOM DOCS START -->
|
|
8
9
|
|
|
9
10
|
### Ai Talking Photo Generate Workflow <a name="generate"></a>
|
|
@@ -85,8 +86,8 @@ Create a talking photo from an image and audio or text input.
|
|
|
85
86
|
| `end_seconds` | ✓ | The end time of the input audio in seconds. The maximum duration allowed is 60 seconds. | `15.0` |
|
|
86
87
|
| `start_seconds` | ✓ | The start time of the input audio in seconds. The maximum duration allowed is 60 seconds. | `0.0` |
|
|
87
88
|
| `name` | ✗ | The name of image. This value is mainly used for your own identification of the image. | `"Talking Photo image"` |
|
|
88
|
-
| `style` | ✗ | Attributes used to dictate the style of the output | `{"generation_mode": "
|
|
89
|
-
| `└─ generation_mode` | ✗ | Controls overall motion style. * `pro` -
|
|
89
|
+
| `style` | ✗ | Attributes used to dictate the style of the output | `{"generation_mode": "pro", "intensity": 1.5}` |
|
|
90
|
+
| `└─ generation_mode` | ✗ | Controls overall motion style. * `pro` - Higher fidelity, realistic detail, accurate lip sync, and faster generation. * `standard` - More expressive motion, but lower visual fidelity. * `expressive` - More motion and facial expressiveness; may introduce visual artifacts. (Deprecated: passing this value will be treated as `standard`) * `stable` - Reduced motion for cleaner output; may result in minimal animation. (Deprecated: passing this value will be treated as `pro`) | `"pro"` |
|
|
90
91
|
| `└─ intensity` | ✗ | Note: this value is only applicable when generation_mode is `expressive`. The value can include up to 2 decimal places. * Lower values yield more stability but can suppress mouth movement. * Higher values increase motion and expressiveness, with a higher risk of distortion. | `1.5` |
|
|
91
92
|
|
|
92
93
|
#### Synchronous Client
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
|
|
7
8
|
<!-- CUSTOM DOCS START -->
|
|
8
9
|
|
|
9
10
|
### Lip Sync Generate Workflow <a name="generate"></a>
|
|
@@ -96,6 +97,8 @@ Get more information about this mode at our [product page](https://magichour.ai/
|
|
|
96
97
|
| `height` | ✗ | ✓ | `height` is deprecated and no longer influences the output video's resolution. Output resolution is determined by the **minimum** of: - The resolution of the input video - The maximum resolution allowed by your subscription tier. See our [pricing page](https://magichour.ai/pricing) for more details. This field is retained only for backward compatibility and will be removed in a future release. | `123` |
|
|
97
98
|
| `max_fps_limit` | ✗ | ✗ | Defines the maximum FPS (frames per second) for the output video. If the input video's FPS is lower than this limit, the output video will retain the input FPS. This is useful for reducing unnecessary frame usage in scenarios where high FPS is not required. | `12.0` |
|
|
98
99
|
| `name` | ✗ | ✗ | The name of video. This value is mainly used for your own identification of the video. | `"Lip Sync video"` |
|
|
100
|
+
| `style` | ✗ | ✗ | Attributes used to dictate the style of the output | `{"generation_mode": "lite"}` |
|
|
101
|
+
| `└─ generation_mode` | ✗ | — | A specific version of our lip sync system, optimized for different needs. * `lite` - Fast and affordable lip sync - best for simple videos. Costs 1 credit per frame of video. * `standard` - Natural, accurate lip sync - best for most creators. Costs 1 credit per frame of video. * `pro` - Premium fidelity with enhanced detail - best for professionals. Costs 2 credits per frame of video. Note: `standard` and `pro` are only available for users on Creator, Pro, and Business tiers. | `"lite"` |
|
|
99
102
|
| `width` | ✗ | ✓ | `width` is deprecated and no longer influences the output video's resolution. Output resolution is determined by the **minimum** of: - The resolution of the input video - The maximum resolution allowed by your subscription tier. See our [pricing page](https://magichour.ai/pricing) for more details. This field is retained only for backward compatibility and will be removed in a future release. | `123` |
|
|
100
103
|
|
|
101
104
|
#### Synchronous Client
|
|
@@ -138,6 +138,9 @@ class LipSyncClient:
|
|
|
138
138
|
name: typing.Union[
|
|
139
139
|
typing.Optional[str], type_utils.NotGiven
|
|
140
140
|
] = type_utils.NOT_GIVEN,
|
|
141
|
+
style: typing.Union[
|
|
142
|
+
typing.Optional[params.V1LipSyncCreateBodyStyle], type_utils.NotGiven
|
|
143
|
+
] = type_utils.NOT_GIVEN,
|
|
141
144
|
width: typing.Union[
|
|
142
145
|
typing.Optional[int], type_utils.NotGiven
|
|
143
146
|
] = type_utils.NOT_GIVEN,
|
|
@@ -163,6 +166,7 @@ class LipSyncClient:
|
|
|
163
166
|
This field is retained only for backward compatibility and will be removed in a future release.
|
|
164
167
|
max_fps_limit: Defines the maximum FPS (frames per second) for the output video. If the input video's FPS is lower than this limit, the output video will retain the input FPS. This is useful for reducing unnecessary frame usage in scenarios where high FPS is not required.
|
|
165
168
|
name: The name of video. This value is mainly used for your own identification of the video.
|
|
169
|
+
style: Attributes used to dictate the style of the output
|
|
166
170
|
width: `width` is deprecated and no longer influences the output video's resolution.
|
|
167
171
|
|
|
168
172
|
Output resolution is determined by the **minimum** of:
|
|
@@ -202,6 +206,7 @@ class LipSyncClient:
|
|
|
202
206
|
"height": height,
|
|
203
207
|
"max_fps_limit": max_fps_limit,
|
|
204
208
|
"name": name,
|
|
209
|
+
"style": style,
|
|
205
210
|
"width": width,
|
|
206
211
|
"assets": assets,
|
|
207
212
|
"end_seconds": end_seconds,
|
|
@@ -339,6 +344,9 @@ class AsyncLipSyncClient:
|
|
|
339
344
|
name: typing.Union[
|
|
340
345
|
typing.Optional[str], type_utils.NotGiven
|
|
341
346
|
] = type_utils.NOT_GIVEN,
|
|
347
|
+
style: typing.Union[
|
|
348
|
+
typing.Optional[params.V1LipSyncCreateBodyStyle], type_utils.NotGiven
|
|
349
|
+
] = type_utils.NOT_GIVEN,
|
|
342
350
|
width: typing.Union[
|
|
343
351
|
typing.Optional[int], type_utils.NotGiven
|
|
344
352
|
] = type_utils.NOT_GIVEN,
|
|
@@ -364,6 +372,7 @@ class AsyncLipSyncClient:
|
|
|
364
372
|
This field is retained only for backward compatibility and will be removed in a future release.
|
|
365
373
|
max_fps_limit: Defines the maximum FPS (frames per second) for the output video. If the input video's FPS is lower than this limit, the output video will retain the input FPS. This is useful for reducing unnecessary frame usage in scenarios where high FPS is not required.
|
|
366
374
|
name: The name of video. This value is mainly used for your own identification of the video.
|
|
375
|
+
style: Attributes used to dictate the style of the output
|
|
367
376
|
width: `width` is deprecated and no longer influences the output video's resolution.
|
|
368
377
|
|
|
369
378
|
Output resolution is determined by the **minimum** of:
|
|
@@ -403,6 +412,7 @@ class AsyncLipSyncClient:
|
|
|
403
412
|
"height": height,
|
|
404
413
|
"max_fps_limit": max_fps_limit,
|
|
405
414
|
"name": name,
|
|
415
|
+
"style": style,
|
|
406
416
|
"width": width,
|
|
407
417
|
"assets": assets,
|
|
408
418
|
"end_seconds": end_seconds,
|
|
@@ -245,6 +245,10 @@ from .v1_lip_sync_create_body_assets import (
|
|
|
245
245
|
V1LipSyncCreateBodyAssets,
|
|
246
246
|
_SerializerV1LipSyncCreateBodyAssets,
|
|
247
247
|
)
|
|
248
|
+
from .v1_lip_sync_create_body_style import (
|
|
249
|
+
V1LipSyncCreateBodyStyle,
|
|
250
|
+
_SerializerV1LipSyncCreateBodyStyle,
|
|
251
|
+
)
|
|
248
252
|
from .v1_lip_sync_generate_body_assets import V1LipSyncGenerateBodyAssets
|
|
249
253
|
from .v1_photo_colorizer_create_body import (
|
|
250
254
|
V1PhotoColorizerCreateBody,
|
|
@@ -350,6 +354,7 @@ __all__ = [
|
|
|
350
354
|
"V1ImageToVideoGenerateBodyAssets",
|
|
351
355
|
"V1LipSyncCreateBody",
|
|
352
356
|
"V1LipSyncCreateBodyAssets",
|
|
357
|
+
"V1LipSyncCreateBodyStyle",
|
|
353
358
|
"V1LipSyncGenerateBodyAssets",
|
|
354
359
|
"V1PhotoColorizerCreateBody",
|
|
355
360
|
"V1PhotoColorizerCreateBodyAssets",
|
|
@@ -415,6 +420,7 @@ __all__ = [
|
|
|
415
420
|
"_SerializerV1ImageToVideoCreateBodyStyle",
|
|
416
421
|
"_SerializerV1LipSyncCreateBody",
|
|
417
422
|
"_SerializerV1LipSyncCreateBodyAssets",
|
|
423
|
+
"_SerializerV1LipSyncCreateBodyStyle",
|
|
418
424
|
"_SerializerV1PhotoColorizerCreateBody",
|
|
419
425
|
"_SerializerV1PhotoColorizerCreateBodyAssets",
|
|
420
426
|
"_SerializerV1TextToVideoCreateBody",
|
|
@@ -9,12 +9,14 @@ class V1AiTalkingPhotoCreateBodyStyle(typing_extensions.TypedDict):
|
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
11
|
generation_mode: typing_extensions.NotRequired[
|
|
12
|
-
typing_extensions.Literal["expressive", "pro", "stable"]
|
|
12
|
+
typing_extensions.Literal["expressive", "pro", "stable", "standard"]
|
|
13
13
|
]
|
|
14
14
|
"""
|
|
15
15
|
Controls overall motion style.
|
|
16
|
-
* `pro` -
|
|
17
|
-
* `
|
|
16
|
+
* `pro` - Higher fidelity, realistic detail, accurate lip sync, and faster generation.
|
|
17
|
+
* `standard` - More expressive motion, but lower visual fidelity.
|
|
18
|
+
|
|
19
|
+
* `expressive` - More motion and facial expressiveness; may introduce visual artifacts. (Deprecated: passing this value will be treated as `standard`)
|
|
18
20
|
* `stable` - Reduced motion for cleaner output; may result in minimal animation. (Deprecated: passing this value will be treated as `pro`)
|
|
19
21
|
"""
|
|
20
22
|
|
|
@@ -37,6 +39,6 @@ class _SerializerV1AiTalkingPhotoCreateBodyStyle(pydantic.BaseModel):
|
|
|
37
39
|
)
|
|
38
40
|
|
|
39
41
|
generation_mode: typing.Optional[
|
|
40
|
-
typing_extensions.Literal["expressive", "pro", "stable"]
|
|
42
|
+
typing_extensions.Literal["expressive", "pro", "stable", "standard"]
|
|
41
43
|
] = pydantic.Field(alias="generation_mode", default=None)
|
|
42
44
|
intensity: typing.Optional[float] = pydantic.Field(alias="intensity", default=None)
|
|
@@ -6,6 +6,10 @@ from .v1_lip_sync_create_body_assets import (
|
|
|
6
6
|
V1LipSyncCreateBodyAssets,
|
|
7
7
|
_SerializerV1LipSyncCreateBodyAssets,
|
|
8
8
|
)
|
|
9
|
+
from .v1_lip_sync_create_body_style import (
|
|
10
|
+
V1LipSyncCreateBodyStyle,
|
|
11
|
+
_SerializerV1LipSyncCreateBodyStyle,
|
|
12
|
+
)
|
|
9
13
|
|
|
10
14
|
|
|
11
15
|
class V1LipSyncCreateBody(typing_extensions.TypedDict):
|
|
@@ -49,6 +53,11 @@ class V1LipSyncCreateBody(typing_extensions.TypedDict):
|
|
|
49
53
|
The start time of the input video in seconds. This value is used to trim the input video. The value must be greater than 0.
|
|
50
54
|
"""
|
|
51
55
|
|
|
56
|
+
style: typing_extensions.NotRequired[V1LipSyncCreateBodyStyle]
|
|
57
|
+
"""
|
|
58
|
+
Attributes used to dictate the style of the output
|
|
59
|
+
"""
|
|
60
|
+
|
|
52
61
|
width: typing_extensions.NotRequired[typing.Optional[int]]
|
|
53
62
|
"""
|
|
54
63
|
`width` is deprecated and no longer influences the output video's resolution.
|
|
@@ -85,4 +94,7 @@ class _SerializerV1LipSyncCreateBody(pydantic.BaseModel):
|
|
|
85
94
|
start_seconds: float = pydantic.Field(
|
|
86
95
|
alias="start_seconds",
|
|
87
96
|
)
|
|
97
|
+
style: typing.Optional[_SerializerV1LipSyncCreateBodyStyle] = pydantic.Field(
|
|
98
|
+
alias="style", default=None
|
|
99
|
+
)
|
|
88
100
|
width: typing.Optional[int] = pydantic.Field(alias="width", default=None)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
import typing
|
|
3
|
+
import typing_extensions
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class V1LipSyncCreateBodyStyle(typing_extensions.TypedDict):
|
|
7
|
+
"""
|
|
8
|
+
Attributes used to dictate the style of the output
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
generation_mode: typing_extensions.NotRequired[
|
|
12
|
+
typing_extensions.Literal["lite", "pro", "standard"]
|
|
13
|
+
]
|
|
14
|
+
"""
|
|
15
|
+
A specific version of our lip sync system, optimized for different needs.
|
|
16
|
+
* `lite` - Fast and affordable lip sync - best for simple videos. Costs 1 credit per frame of video.
|
|
17
|
+
* `standard` - Natural, accurate lip sync - best for most creators. Costs 1 credit per frame of video.
|
|
18
|
+
* `pro` - Premium fidelity with enhanced detail - best for professionals. Costs 2 credits per frame of video.
|
|
19
|
+
|
|
20
|
+
Note: `standard` and `pro` are only available for users on Creator, Pro, and Business tiers.
|
|
21
|
+
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class _SerializerV1LipSyncCreateBodyStyle(pydantic.BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
Serializer for V1LipSyncCreateBodyStyle handling case conversions
|
|
28
|
+
and file omissions as dictated by the API
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
model_config = pydantic.ConfigDict(
|
|
32
|
+
populate_by_name=True,
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
generation_mode: typing.Optional[
|
|
36
|
+
typing_extensions.Literal["lite", "pro", "standard"]
|
|
37
|
+
] = pydantic.Field(alias="generation_mode", default=None)
|
|
@@ -1,98 +1,98 @@
|
|
|
1
1
|
magic_hour/README.md,sha256=15rozv0wAc_s4ptTaEHUCNcZKYo8LAim9HTfKOeKTNQ,2261
|
|
2
2
|
magic_hour/__init__.py,sha256=ypWA4msPy3T-U2PAyRSAXIQc0m2J9aY8wXnfmIupAEc,214
|
|
3
3
|
magic_hour/client.py,sha256=oHuz0FRKuedtwwPSkFLaSjoEWt_0N57hJ0rEDKbNcFw,1712
|
|
4
|
-
magic_hour/environment.py,sha256=
|
|
4
|
+
magic_hour/environment.py,sha256=tAHxEiK1_4L0_MZntbQuQA1Np-kDHZ8M6QbpON1uwsY,535
|
|
5
5
|
magic_hour/helpers/__init__.py,sha256=pO6sgb41iVe_IN2dApfl2l3BXOWIb4i5pHl_if-oo_E,176
|
|
6
6
|
magic_hour/helpers/download.py,sha256=wZR-gddqU2rWzltHN2zqqaHaShHG33yx7BIlUn1jXG8,2212
|
|
7
7
|
magic_hour/helpers/logger.py,sha256=Z8ljney670Kc8DaSzlHdH9N8RXmj2_qWPovLUoC0tNY,210
|
|
8
8
|
magic_hour/resources/v1/README.md,sha256=P5Y3atMFloJotSgJWt5Wtz2z9YnV3B5bcWBu-vppzP8,1793
|
|
9
9
|
magic_hour/resources/v1/__init__.py,sha256=Aj0sjVcoijjQyieNBxv2_uewPYC2vO2UG-ehoBgCz5E,86
|
|
10
|
-
magic_hour/resources/v1/ai_clothes_changer/README.md,sha256=
|
|
10
|
+
magic_hour/resources/v1/ai_clothes_changer/README.md,sha256=Rqd3znIWj_rZgQbOvo_k1mz6qPsoSowrOTHMQciIlGo,4576
|
|
11
11
|
magic_hour/resources/v1/ai_clothes_changer/__init__.py,sha256=6W_Y2HxG2sDOBiJyzngK3Q2S3xfQgpK-j8xFRmBAhbQ,142
|
|
12
12
|
magic_hour/resources/v1/ai_clothes_changer/client.py,sha256=CdSE1ZiygLFusVpgCCFoqgIu1z8geN2XVUMxxgsSkAA,9963
|
|
13
|
-
magic_hour/resources/v1/ai_face_editor/README.md,sha256=
|
|
13
|
+
magic_hour/resources/v1/ai_face_editor/README.md,sha256=Xaan8wPbb9KubUGmqqq99gGAobJnqgfOeOC7d4Lv99U,7274
|
|
14
14
|
magic_hour/resources/v1/ai_face_editor/__init__.py,sha256=RY8GBMQcqsDFbFcUuK-4LPvablq-U9XmSSlQk4HLKmM,126
|
|
15
15
|
magic_hour/resources/v1/ai_face_editor/client.py,sha256=qo8Lj7s0a9vanOMzWb5lw0FyrrcstQ-kUvfBkiBipGY,12313
|
|
16
|
-
magic_hour/resources/v1/ai_gif_generator/README.md,sha256=
|
|
16
|
+
magic_hour/resources/v1/ai_gif_generator/README.md,sha256=q37PSbSehVTOKIIs4n1L0nIKlfZm9I67EEJZMS307lQ,3164
|
|
17
17
|
magic_hour/resources/v1/ai_gif_generator/__init__.py,sha256=SG_WmxUnpQWlfNQoHfdXPEGQEPC0WZPgom8ATaR9jiY,134
|
|
18
18
|
magic_hour/resources/v1/ai_gif_generator/client.py,sha256=IqRoCAkVzPge6lx5UEZc_XrVUts4yKXItU9W-SA02GM,9156
|
|
19
|
-
magic_hour/resources/v1/ai_headshot_generator/README.md,sha256=
|
|
19
|
+
magic_hour/resources/v1/ai_headshot_generator/README.md,sha256=ruXm-vWNGTWIArMzlxMXF1f1DY58L3F9iD8klE14yow,3862
|
|
20
20
|
magic_hour/resources/v1/ai_headshot_generator/__init__.py,sha256=4WZ3jfrL2yPhQaPalMJrUEykwUoF3KBtop2VJEij-0s,154
|
|
21
21
|
magic_hour/resources/v1/ai_headshot_generator/client.py,sha256=Ts_aLrp6M825opYZsJ66g1Ma4XOzvKwNdVFmUC4KSkQ,9979
|
|
22
|
-
magic_hour/resources/v1/ai_image_editor/README.md,sha256=
|
|
22
|
+
magic_hour/resources/v1/ai_image_editor/README.md,sha256=NVK1D8W4vbsZ9eauwNzIvX4LhgtswU4-HNp8W7bWnME,3750
|
|
23
23
|
magic_hour/resources/v1/ai_image_editor/__init__.py,sha256=VvGqS2j_VQ7iz8TueD2R2L0YLlRsqRyGBSP4Tf-Uml8,130
|
|
24
24
|
magic_hour/resources/v1/ai_image_editor/client.py,sha256=77prh_ckyXxfEhIENrDAVcQRqTiAJ9ruDJO6UWpyRlU,9483
|
|
25
|
-
magic_hour/resources/v1/ai_image_generator/README.md,sha256=
|
|
25
|
+
magic_hour/resources/v1/ai_image_generator/README.md,sha256=n9haQDibSsvI4UgsE-1U7n5jiUL9q5W4F1VuEOV9AiA,3583
|
|
26
26
|
magic_hour/resources/v1/ai_image_generator/__init__.py,sha256=qZws7N5CALYAbnIUc2ERV8Cy-QJmHcJ9tU7W-epEnaQ,142
|
|
27
27
|
magic_hour/resources/v1/ai_image_generator/client.py,sha256=FQmoaq1pgnbs02Y6lzhaTyIYEUUGeTbxA1DWTl2ttJc,10102
|
|
28
|
-
magic_hour/resources/v1/ai_image_upscaler/README.md,sha256=
|
|
28
|
+
magic_hour/resources/v1/ai_image_upscaler/README.md,sha256=dH_QL7FPHR3xsOImuKEHkHNxi8be8-E4FkshWZD2W58,4131
|
|
29
29
|
magic_hour/resources/v1/ai_image_upscaler/__init__.py,sha256=9b1-2XfnAVa4qE3S-4WL8vN3wuqLkUuHKjdl_km8hUc,138
|
|
30
30
|
magic_hour/resources/v1/ai_image_upscaler/client.py,sha256=WPqVMzN1-O1IVxkAMx0O1M4VRZ1cl7QPi94Ej2E5sBM,10713
|
|
31
|
-
magic_hour/resources/v1/ai_meme_generator/README.md,sha256=
|
|
31
|
+
magic_hour/resources/v1/ai_meme_generator/README.md,sha256=A9R-dOz9zUAEnklVFNrP_m3zcbiCnc5Y6i0IwKQTKtQ,3547
|
|
32
32
|
magic_hour/resources/v1/ai_meme_generator/__init__.py,sha256=x4vtin1KKvoA-va7vhaQ91c__M2z3PmDySLX7yJpRDA,138
|
|
33
33
|
magic_hour/resources/v1/ai_meme_generator/client.py,sha256=jtWQj_k_MZhoyT1nhXkg8YIeVTIPHw66G-tmGcZlOa4,8679
|
|
34
|
-
magic_hour/resources/v1/ai_photo_editor/README.md,sha256=
|
|
34
|
+
magic_hour/resources/v1/ai_photo_editor/README.md,sha256=wmm6sC8QMBSDNMxcDCyxsEcN2v7yYkS_qzaXyaIQ_A8,7213
|
|
35
35
|
magic_hour/resources/v1/ai_photo_editor/__init__.py,sha256=RPG6WaL2KN_DmgrtxImA_jNnEDMm-Ku2o2m2EnNwxts,130
|
|
36
36
|
magic_hour/resources/v1/ai_photo_editor/client.py,sha256=xdNR8PX2C0VHVETTjFIpcMZygOMnFKrIQSYr6AF5uVk,13221
|
|
37
|
-
magic_hour/resources/v1/ai_qr_code_generator/README.md,sha256=
|
|
37
|
+
magic_hour/resources/v1/ai_qr_code_generator/README.md,sha256=qDsnXWSXxDBB5mnRqJ04rjBbdJ09gBx2WtdsC3DqzxY,3383
|
|
38
38
|
magic_hour/resources/v1/ai_qr_code_generator/__init__.py,sha256=HnSTg7tB8M5LibZoCDRdE5Q71efmiqZIkNEve5SO1Mg,146
|
|
39
39
|
magic_hour/resources/v1/ai_qr_code_generator/client.py,sha256=rLw0V6cE2AncqM9Bz_mRXWkmkdVasS44BBWLLX4GQSc,8771
|
|
40
|
-
magic_hour/resources/v1/ai_talking_photo/README.md,sha256=
|
|
40
|
+
magic_hour/resources/v1/ai_talking_photo/README.md,sha256=M33SsFSeGhOVlDKy14qR7ClUD-6qrrMghnwOxgq7vBU,5609
|
|
41
41
|
magic_hour/resources/v1/ai_talking_photo/__init__.py,sha256=ZTDD_IRBoR7GSdGWCVEK2-LOEsKUdGEHZZvDHa9MOnA,134
|
|
42
42
|
magic_hour/resources/v1/ai_talking_photo/client.py,sha256=kbFM3peM5NEzUle1miup7Xe2q_HwL7u7kzuD1DkcEBc,12529
|
|
43
43
|
magic_hour/resources/v1/ai_voice_generator/README.md,sha256=A8K356cP6Q2Q83OP--qdjpTmCo_TcehvHUBQEkPChXE,1837
|
|
44
44
|
magic_hour/resources/v1/ai_voice_generator/__init__.py,sha256=Zl1HuxfafN3hzJCCCD_YyCX_y2v4uAihSDAC8GCcE8U,142
|
|
45
45
|
magic_hour/resources/v1/ai_voice_generator/client.py,sha256=6XV4PRkRZqqLe3q8OVNO-tGEpsR59QsaNTMlQE3yGGQ,3922
|
|
46
|
-
magic_hour/resources/v1/animation/README.md,sha256=
|
|
46
|
+
magic_hour/resources/v1/animation/README.md,sha256=ZRyrlI2qh2aYJ-sHF7_8vFMLcQlmDcQEsu78LGVu958,7602
|
|
47
47
|
magic_hour/resources/v1/animation/__init__.py,sha256=M6KUe6TEZl_DAdyn1HFQ2kHYanZo6xy3mvUdCN264hQ,114
|
|
48
48
|
magic_hour/resources/v1/animation/client.py,sha256=vVoYF6P-OU83kAXwZyRJngv6C_zoArXXuM6nTPy-Jvw,15447
|
|
49
49
|
magic_hour/resources/v1/audio_projects/README.md,sha256=8OXRVddZNw27p9OyHyq-2OEgDdiUZ7gTGILIlrs7QSA,2596
|
|
50
50
|
magic_hour/resources/v1/audio_projects/__init__.py,sha256=zPN8qohWZr3d1TXpCLQHfj7jK8blNDOEx7_9K63MG68,130
|
|
51
51
|
magic_hour/resources/v1/audio_projects/client.py,sha256=yeOk77fv9YXnk6h1kZJFZE0cMYqsw462IWq8YwcNR7w,5784
|
|
52
|
-
magic_hour/resources/v1/auto_subtitle_generator/README.md,sha256=
|
|
52
|
+
magic_hour/resources/v1/auto_subtitle_generator/README.md,sha256=IGi0wXf4T_iBI6fFXVr7enTDKYNCwN3HorDOjQuRyJA,5309
|
|
53
53
|
magic_hour/resources/v1/auto_subtitle_generator/__init__.py,sha256=dnWFEiSdIl3AwFVprqWHSMzqpeHgZz9wPEMxm7c3Xnc,162
|
|
54
54
|
magic_hour/resources/v1/auto_subtitle_generator/client.py,sha256=QZREuGcgIVc3hNaBvTfDuBRj0pvnr_uu0YzFkFhsd_s,14803
|
|
55
55
|
magic_hour/resources/v1/client.py,sha256=VL5IrdvpP6WxuJdmTjEwSXeA8M04zyyHxWsJmyLfxU4,8164
|
|
56
|
-
magic_hour/resources/v1/face_detection/README.md,sha256=
|
|
56
|
+
magic_hour/resources/v1/face_detection/README.md,sha256=5Kp9nQ9-YYQlp3PsTcyyyRFp78EoE0wqA7wkTZTHgP0,5249
|
|
57
57
|
magic_hour/resources/v1/face_detection/__init__.py,sha256=gGsbucNf0ibSUORv4FBlzTmMHAKEnPZuIqmhh7Qjxfk,246
|
|
58
58
|
magic_hour/resources/v1/face_detection/client.py,sha256=v35yArONM6OuQ0Ze_fwpHt_eSHdYcs4teR0gRMjcGdA,14831
|
|
59
|
-
magic_hour/resources/v1/face_swap/README.md,sha256=
|
|
59
|
+
magic_hour/resources/v1/face_swap/README.md,sha256=kwCD-OJsP04xvqNxfkwhQlS2gym-UDfwnd8S-ADXqXI,8578
|
|
60
60
|
magic_hour/resources/v1/face_swap/__init__.py,sha256=lyg5uAHyYHEUVAiAZtP3zwjGCEGqq8IWbQKexVdhr00,110
|
|
61
61
|
magic_hour/resources/v1/face_swap/client.py,sha256=AYkOAoCGrGvhMeuQe9yTad4krx81S9S5e8l5wNIn3RI,19783
|
|
62
|
-
magic_hour/resources/v1/face_swap_photo/README.md,sha256=
|
|
62
|
+
magic_hour/resources/v1/face_swap_photo/README.md,sha256=fGWFYO5pK-A-zF3_V5M661Dzy2hQ6hW63iKlAxfX8qE,5947
|
|
63
63
|
magic_hour/resources/v1/face_swap_photo/__init__.py,sha256=NZEplYX5kDPL_0qY0Q5tuxhDevipN0otByTYKMmF_1k,130
|
|
64
64
|
magic_hour/resources/v1/face_swap_photo/client.py,sha256=dXolLVvto4h13QcEYd2gQ1E-aNn5EAAi5QwUl1durOU,11739
|
|
65
|
-
magic_hour/resources/v1/files/README.md,sha256=
|
|
65
|
+
magic_hour/resources/v1/files/README.md,sha256=dV_yhA-lUmo3bKl6-TYvHbyXMLP1sjqUPzFSVqo6guQ,1071
|
|
66
66
|
magic_hour/resources/v1/files/__init__.py,sha256=ucXmaXDdZqXfRhnnioJeQAXeRLzBDb44gTfWijrub28,98
|
|
67
67
|
magic_hour/resources/v1/files/client.py,sha256=wVIKaz7NzKsdASbKyhQzcaHrFkluEAQBtZ5fynebUSY,13281
|
|
68
68
|
magic_hour/resources/v1/files/client_test.py,sha256=4mUFWuxr9R0YmeZ468KPvt8p4zUvZBhPcbszHBtLE4s,13970
|
|
69
69
|
magic_hour/resources/v1/files/upload_urls/README.md,sha256=gXDVub5CeAeVE7uX-26_ghvqwsxr-29gz_x5Zlw82J4,2354
|
|
70
70
|
magic_hour/resources/v1/files/upload_urls/__init__.py,sha256=hRp0s_emx-wib7z42V4L9VzYR9MQ3hnmS5bNv4QtfFM,118
|
|
71
71
|
magic_hour/resources/v1/files/upload_urls/client.py,sha256=ZosQgveds46TZJQzZO5qWT6qINEVrKcLiYjRmk3evKs,5218
|
|
72
|
-
magic_hour/resources/v1/image_background_remover/README.md,sha256=
|
|
72
|
+
magic_hour/resources/v1/image_background_remover/README.md,sha256=C6s7xE_E8pi4BSU4XCp7oZ16w4UdZUh1Y9nXb1L1IvI,4529
|
|
73
73
|
magic_hour/resources/v1/image_background_remover/__init__.py,sha256=Vb_e8zKEh7bdrq0q1175DqyOd1ptPBUIfSKSLFPBVU4,166
|
|
74
74
|
magic_hour/resources/v1/image_background_remover/client.py,sha256=SPRZjRJPTu2zpRRq3BRna9Rl0fywOBfo5DgNhn3gqdM,9367
|
|
75
|
-
magic_hour/resources/v1/image_projects/README.md,sha256=
|
|
75
|
+
magic_hour/resources/v1/image_projects/README.md,sha256=mFJj0-c0FrMjmDTmfq0VxYcqS9Iwi9Kx-f9saa2yrS0,4407
|
|
76
76
|
magic_hour/resources/v1/image_projects/__init__.py,sha256=FtA1OC8s-CCOwQ0AaUqlkt9IC0CIZ4_p65E97m3ZcGE,246
|
|
77
77
|
magic_hour/resources/v1/image_projects/client.py,sha256=gDhND6b2KkIHEbAHJgYUjQeCsxLFGi2P7zTjg2CDyjc,10993
|
|
78
78
|
magic_hour/resources/v1/image_projects/client_test.py,sha256=5KH4s0vG13SEUkB6pAa9m7M2dqBUoqIERPhAu1DgPfA,16015
|
|
79
|
-
magic_hour/resources/v1/image_to_video/README.md,sha256=
|
|
79
|
+
magic_hour/resources/v1/image_to_video/README.md,sha256=3_wM8ZtJfZrWMLQnq092v2uIycFvIIjm8tPz7T0A3OY,6273
|
|
80
80
|
magic_hour/resources/v1/image_to_video/__init__.py,sha256=tY_ABo6evwKQBRSq-M84lNX-pXqmxoozukmrO6NhCgA,126
|
|
81
81
|
magic_hour/resources/v1/image_to_video/client.py,sha256=fUajB5-kKzT3WC5u7EAeY8_N4k1_r36JmwML4GquQwc,17392
|
|
82
|
-
magic_hour/resources/v1/lip_sync/README.md,sha256=
|
|
82
|
+
magic_hour/resources/v1/lip_sync/README.md,sha256=2qkWaodE4Au4Z1CU11r7TxxuZdbU1tpeKUr066msmx8,7389
|
|
83
83
|
magic_hour/resources/v1/lip_sync/__init__.py,sha256=MlKUAoHNSKcuNzVyqNfLnLtD_PsqEn3l1TtVpPC1JqQ,106
|
|
84
|
-
magic_hour/resources/v1/lip_sync/client.py,sha256=
|
|
85
|
-
magic_hour/resources/v1/photo_colorizer/README.md,sha256=
|
|
84
|
+
magic_hour/resources/v1/lip_sync/client.py,sha256=NbyMKOZ0mUTNODxnWjaBU6y3zRPf772s4rzGnpC1jKE,19529
|
|
85
|
+
magic_hour/resources/v1/photo_colorizer/README.md,sha256=wql3I3PNIwMZkiCWaQCbMujrtIHW1y4vJ5ce5HX7q0k,3430
|
|
86
86
|
magic_hour/resources/v1/photo_colorizer/__init__.py,sha256=7rDjkeUzWG5GXw_4RD1XH7Ygy-_0_OUFX99IgE_RVbE,134
|
|
87
87
|
magic_hour/resources/v1/photo_colorizer/client.py,sha256=mW5VYDmsvU9phtkiY008zarM1CCaWTMTeOTY4zaWDfI,8861
|
|
88
|
-
magic_hour/resources/v1/text_to_video/README.md,sha256=
|
|
88
|
+
magic_hour/resources/v1/text_to_video/README.md,sha256=Y_zZBamlIdnhf_1WRFZPaNUh8dMx8THlduAs7nYtmxQ,4711
|
|
89
89
|
magic_hour/resources/v1/text_to_video/__init__.py,sha256=F18iHSi9tuYSdgpatznBzb7lbSySNpK-82w96-Om_k4,122
|
|
90
90
|
magic_hour/resources/v1/text_to_video/client.py,sha256=Cx7NjpcWv_5Ucl42K09jYGUzJ9l04bvBQUlBf9Fk7dI,13620
|
|
91
|
-
magic_hour/resources/v1/video_projects/README.md,sha256=
|
|
91
|
+
magic_hour/resources/v1/video_projects/README.md,sha256=wqK9rYe--8c_FJzL4f5SFZLd14KSoUpBDlz2ORoHhXw,4582
|
|
92
92
|
magic_hour/resources/v1/video_projects/__init__.py,sha256=Pm2S3V2tVycoR5x5zPiFCZSoeY15s5WJaR0pLkJq-Pg,246
|
|
93
93
|
magic_hour/resources/v1/video_projects/client.py,sha256=-cB6zYCKNHldfIS0LwapvhjPi9UoUKaPGrXqMXdYlGU,10955
|
|
94
94
|
magic_hour/resources/v1/video_projects/client_test.py,sha256=iOJWM0cFg4QmFOYNVRRvMPX7nCg-1rCnSUh_1aDq96A,15967
|
|
95
|
-
magic_hour/resources/v1/video_to_video/README.md,sha256=
|
|
95
|
+
magic_hour/resources/v1/video_to_video/README.md,sha256=i1ErUSufBVK2lPdRN_Qn0fjuthckd_6sQ4I75VY_wD4,8105
|
|
96
96
|
magic_hour/resources/v1/video_to_video/__init__.py,sha256=1SHaRLlsrlBkdxxKBYgdbHrGATlRvqlXc22RpjjHaOA,126
|
|
97
97
|
magic_hour/resources/v1/video_to_video/client.py,sha256=WwdTRgfmHGQRfQy-Hhu3W-ERDkIjo3GEt6i4tIA9Eiw,19988
|
|
98
98
|
magic_hour/types/models/__init__.py,sha256=moeibrMK2jaQV6WVBYxDCUeLSxa50nNTvV1t_xkbnq4,4553
|
|
@@ -109,7 +109,7 @@ magic_hour/types/models/v1_ai_qr_code_generator_create_response.py,sha256=dwTaT_
|
|
|
109
109
|
magic_hour/types/models/v1_ai_talking_photo_create_response.py,sha256=4dnMUHVcVAVxywGPj_2wcH_BOCjS6qh_loyMszJVzBY,1348
|
|
110
110
|
magic_hour/types/models/v1_ai_voice_generator_create_response.py,sha256=o65cf7AV04klVSulX60G4SevyLPIURlLBAO_GojGMRI,856
|
|
111
111
|
magic_hour/types/models/v1_animation_create_response.py,sha256=EXgZ-7dGPSKgGDyG72r_273vxXYsOkKHbvmujmmCE-c,1343
|
|
112
|
-
magic_hour/types/models/v1_audio_projects_get_response.py,sha256=-
|
|
112
|
+
magic_hour/types/models/v1_audio_projects_get_response.py,sha256=-pc6nUSgZ-1x3zqhfu7LuXWdKmvDH4m_ObSLXbJljT4,2112
|
|
113
113
|
magic_hour/types/models/v1_audio_projects_get_response_downloads_item.py,sha256=Yd9qkIWLzKMvSlOmJSBjPJA27qE6WjGiRsTHtu2QSeA,410
|
|
114
114
|
magic_hour/types/models/v1_audio_projects_get_response_error.py,sha256=I_YZDOB53EETagPyV71VfCNyaYGJzHfkOS3bPRNqlog,568
|
|
115
115
|
magic_hour/types/models/v1_auto_subtitle_generator_create_response.py,sha256=HGwpgKkYBToPRhbGX7SfjP1HwaAQF-mMszxGNsP_Yhg,1355
|
|
@@ -133,7 +133,7 @@ magic_hour/types/models/v1_video_projects_get_response_download.py,sha256=nudDCN
|
|
|
133
133
|
magic_hour/types/models/v1_video_projects_get_response_downloads_item.py,sha256=DlUuLBSGa7jWoozxferkaOsGc4jASItcjjWbBXGu620,410
|
|
134
134
|
magic_hour/types/models/v1_video_projects_get_response_error.py,sha256=49QxnXAmYHcvSWuuhbQZeGlUfqVcO4YwZ414GczQnvA,568
|
|
135
135
|
magic_hour/types/models/v1_video_to_video_create_response.py,sha256=HCquU2Dciu6jCvhlpce8sGg1CypZngvtrvkwyCWOkSY,1346
|
|
136
|
-
magic_hour/types/params/__init__.py,sha256=
|
|
136
|
+
magic_hour/types/params/__init__.py,sha256=G1L0dWx-YTMoNSqs9eR_czGTm1inRbBv0VcH83u-Zk4,16691
|
|
137
137
|
magic_hour/types/params/v1_ai_clothes_changer_create_body.py,sha256=dicJkS-1OJs28UlogAExFJTZ5ysb-cUnimL6rbHsRzo,1075
|
|
138
138
|
magic_hour/types/params/v1_ai_clothes_changer_create_body_assets.py,sha256=Ej1YLJgiJCJ9wBldfiSzORivv02cWGlyIThPOXn1YM0,1895
|
|
139
139
|
magic_hour/types/params/v1_ai_clothes_changer_generate_body_assets.py,sha256=iu6Dxx8WD12uINYp20Y7YPc2zRF8HJLxfBgzp6V7-gY,1018
|
|
@@ -167,7 +167,7 @@ magic_hour/types/params/v1_ai_qr_code_generator_create_body.py,sha256=k3HgloxyGC
|
|
|
167
167
|
magic_hour/types/params/v1_ai_qr_code_generator_create_body_style.py,sha256=i3ldwmoQPEnrw654PNIARmpsX-kUHZqaT8wjcc22JoA,839
|
|
168
168
|
magic_hour/types/params/v1_ai_talking_photo_create_body.py,sha256=2UjXVz2uKL3M6qVD3V7eLjj8RFyAeFwFYK2od2tdZxs,1984
|
|
169
169
|
magic_hour/types/params/v1_ai_talking_photo_create_body_assets.py,sha256=PI3lZWCidt1wJtuHeNwV8R2V10ZK6rif5LYraKqtqko,1574
|
|
170
|
-
magic_hour/types/params/v1_ai_talking_photo_create_body_style.py,sha256=
|
|
170
|
+
magic_hour/types/params/v1_ai_talking_photo_create_body_style.py,sha256=0rgj6SFL882f1PNG-3CdfQRZmVFlRFLZ092131WNTxc,1761
|
|
171
171
|
magic_hour/types/params/v1_ai_talking_photo_generate_body_assets.py,sha256=08gLlPEQ2RH9DxrTyEAMFMKAbig85a2NXRwV2jBG9gM,868
|
|
172
172
|
magic_hour/types/params/v1_ai_voice_generator_create_body.py,sha256=4UAia0k1Jkt1weBWgGTBXB9hGjawik5GlbOSFgIJA8Y,1065
|
|
173
173
|
magic_hour/types/params/v1_ai_voice_generator_create_body_style.py,sha256=rGXzEPQfel9pzza4ZGa39cP3kn9SJMTB1MkXvE9lP2A,1645
|
|
@@ -203,8 +203,9 @@ magic_hour/types/params/v1_image_to_video_create_body.py,sha256=t5UkwOA1t4vo1x3O
|
|
|
203
203
|
magic_hour/types/params/v1_image_to_video_create_body_assets.py,sha256=ncvcmcPa7tDLTjmuPg_kyve8pfZKVOEIEN4yBvAiK_w,1002
|
|
204
204
|
magic_hour/types/params/v1_image_to_video_create_body_style.py,sha256=fBrqT9sLY7ljMpNjUUaD03fRPSt4FzQTvgOp0auL0wI,1669
|
|
205
205
|
magic_hour/types/params/v1_image_to_video_generate_body_assets.py,sha256=G5POTBk4n_2RLvaUqdDapz_8Q6onOb6l-cL4RtH5kBo,508
|
|
206
|
-
magic_hour/types/params/v1_lip_sync_create_body.py,sha256=
|
|
206
|
+
magic_hour/types/params/v1_lip_sync_create_body.py,sha256=YFuc9wJtHZpnYC4NPyFKgqZmMJP_IZAf4YuKaL9VE3k,3672
|
|
207
207
|
magic_hour/types/params/v1_lip_sync_create_body_assets.py,sha256=BBoXpLfLth0eqvWNm55cSb956691NovMEBjnESaP-mI,2184
|
|
208
|
+
magic_hour/types/params/v1_lip_sync_create_body_style.py,sha256=XvrausslCCOzo4nQ0VaQTgUj5cljGJQaGo3rfraaFQ8,1290
|
|
208
209
|
magic_hour/types/params/v1_lip_sync_generate_body_assets.py,sha256=alL9I4Wjoc482yJ8DtLv5tBJl7YIIrafxV1MCIOE2BY,1241
|
|
209
210
|
magic_hour/types/params/v1_photo_colorizer_create_body.py,sha256=htPHOJnoUypzhtvShcVDTPrADcHFc7tdXrZc4onzQuE,1059
|
|
210
211
|
magic_hour/types/params/v1_photo_colorizer_create_body_assets.py,sha256=ZagjM8tondNTcNZT2zBKG_JrHm3WgWh00BVyDANEje8,1031
|
|
@@ -215,7 +216,7 @@ magic_hour/types/params/v1_video_to_video_create_body.py,sha256=BV52jJcXnOsKaw-M
|
|
|
215
216
|
magic_hour/types/params/v1_video_to_video_create_body_assets.py,sha256=XwdoqT1x5ElcWb6qUfmtabNsyaatEsOygB4gJ154y-M,1660
|
|
216
217
|
magic_hour/types/params/v1_video_to_video_create_body_style.py,sha256=cYiwKRRSJpwHwL_00wxXcXHvym8q1VsT2VBFOPfJNQM,6000
|
|
217
218
|
magic_hour/types/params/v1_video_to_video_generate_body_assets.py,sha256=j06Y1RKZKwEXW9Zdfhr3Lntx7eDAKpH-k1N1XkKuqPM,915
|
|
218
|
-
magic_hour-0.
|
|
219
|
-
magic_hour-0.
|
|
220
|
-
magic_hour-0.
|
|
221
|
-
magic_hour-0.
|
|
219
|
+
magic_hour-0.41.0.dist-info/LICENSE,sha256=F3fxj7JXPgB2K0uj8YXRsVss4u-Dgt_-U3V4VXsivNI,1070
|
|
220
|
+
magic_hour-0.41.0.dist-info/METADATA,sha256=jGmEEuPpFVOnSSQWc1bGfavWmJ-zc_5tcla3U5rX1Ho,12978
|
|
221
|
+
magic_hour-0.41.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
222
|
+
magic_hour-0.41.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|