Skip to content

Commit 414cc06

Browse files
committed
Release 0.0.147
1 parent 1e7a88d commit 414cc06

File tree

80 files changed

+38
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+38
-38
lines changed

README.md

Lines changed: 5 additions & 5 deletions

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "speechify-api"
33

44
[tool.poetry]
55
name = "speechify-api"
6-
version = "0.0.146"
6+
version = "0.0.147"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -27,7 +27,7 @@ classifiers = [
2727
"Typing :: Typed"
2828
]
2929
packages = [
30-
{ include = "speechifyinc", from = "src"}
30+
{ include = "speechify", from = "src"}
3131
]
3232

3333
[project.urls]

reference.md

Lines changed: 10 additions & 10 deletions
File renamed without changes.
File renamed without changes.

src/speechifyinc/client.py renamed to src/speechify/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Speechify:
4141
4242
Examples
4343
--------
44-
from speechifyinc import Speechify
44+
from speechify import Speechify
4545
4646
client = Speechify(
4747
token="YOUR_TOKEN",
@@ -106,7 +106,7 @@ class AsyncSpeechify:
106106
107107
Examples
108108
--------
109-
from speechifyinc import AsyncSpeechify
109+
from speechify import AsyncSpeechify
110110
111111
client = AsyncSpeechify(
112112
token="YOUR_TOKEN",
File renamed without changes.
File renamed without changes.

src/speechifyinc/core/client_wrapper.py renamed to src/speechify/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
2323
"X-Fern-Language": "Python",
2424
"X-Fern-SDK-Name": "speechify-api",
25-
"X-Fern-SDK-Version": "0.0.146",
25+
"X-Fern-SDK-Version": "0.0.147",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_token()}"
2828
return headers
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/speechifyinc/tts/audio/client.py renamed to src/speechify/tts/audio/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def speech(
7878
7979
Examples
8080
--------
81-
from speechifyinc import Speechify
81+
from speechify import Speechify
8282
8383
client = Speechify(
8484
token="YOUR_TOKEN",
@@ -336,7 +336,7 @@ async def speech(
336336
--------
337337
import asyncio
338338
339-
from speechifyinc import AsyncSpeechify
339+
from speechify import AsyncSpeechify
340340
341341
client = AsyncSpeechify(
342342
token="YOUR_TOKEN",

src/speechifyinc/tts/auth/client.py renamed to src/speechify/tts/auth/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def create_access_token(
4444
4545
Examples
4646
--------
47-
from speechifyinc import Speechify
47+
from speechify import Speechify
4848
4949
client = Speechify(
5050
token="YOUR_TOKEN",
@@ -120,7 +120,7 @@ async def create_access_token(
120120
--------
121121
import asyncio
122122
123-
from speechifyinc import AsyncSpeechify
123+
from speechify import AsyncSpeechify
124124
125125
client = AsyncSpeechify(
126126
token="YOUR_TOKEN",
File renamed without changes.

src/speechifyinc/tts/voices/client.py renamed to src/speechify/tts/voices/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> ty
4141
4242
Examples
4343
--------
44-
from speechifyinc import Speechify
44+
from speechify import Speechify
4545
4646
client = Speechify(
4747
token="YOUR_TOKEN",
@@ -136,7 +136,7 @@ def create(
136136
137137
Examples
138138
--------
139-
from speechifyinc import Speechify
139+
from speechify import Speechify
140140
141141
client = Speechify(
142142
token="YOUR_TOKEN",
@@ -225,7 +225,7 @@ def delete(self, id: str, *, request_options: typing.Optional[RequestOptions] =
225225
226226
Examples
227227
--------
228-
from speechifyinc import Speechify
228+
from speechify import Speechify
229229
230230
client = Speechify(
231231
token="YOUR_TOKEN",
@@ -300,7 +300,7 @@ async def list(self, *, request_options: typing.Optional[RequestOptions] = None)
300300
--------
301301
import asyncio
302302
303-
from speechifyinc import AsyncSpeechify
303+
from speechify import AsyncSpeechify
304304
305305
client = AsyncSpeechify(
306306
token="YOUR_TOKEN",
@@ -403,7 +403,7 @@ async def create(
403403
--------
404404
import asyncio
405405
406-
from speechifyinc import AsyncSpeechify
406+
from speechify import AsyncSpeechify
407407
408408
client = AsyncSpeechify(
409409
token="YOUR_TOKEN",
@@ -500,7 +500,7 @@ async def delete(self, id: str, *, request_options: typing.Optional[RequestOptio
500500
--------
501501
import asyncio
502502
503-
from speechifyinc import AsyncSpeechify
503+
from speechify import AsyncSpeechify
504504
505505
client = AsyncSpeechify(
506506
token="YOUR_TOKEN",
File renamed without changes.

tests/utils/assets/models/circle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import typing_extensions
66
import typing_extensions
7-
from speechifyinc.core.serialization import FieldMetadata
7+
from speechify.core.serialization import FieldMetadata
88

99

1010
class CircleParams(typing_extensions.TypedDict):

tests/utils/assets/models/object_with_optional_field.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import typing_extensions
66
import typing
77
import typing_extensions
8-
from speechifyinc.core.serialization import FieldMetadata
8+
from speechify.core.serialization import FieldMetadata
99
import datetime as dt
1010
import uuid
1111
from .color import Color

tests/utils/assets/models/shape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import typing_extensions
77
import typing_extensions
88
import typing
9-
from speechifyinc.core.serialization import FieldMetadata
9+
from speechify.core.serialization import FieldMetadata
1010

1111

1212
class Base(typing_extensions.TypedDict):

tests/utils/assets/models/square.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import typing_extensions
66
import typing_extensions
7-
from speechifyinc.core.serialization import FieldMetadata
7+
from speechify.core.serialization import FieldMetadata
88

99

1010
class SquareParams(typing_extensions.TypedDict):

tests/utils/test_http_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file was auto-generated by Fern from our API Definition.
22

3-
from speechifyinc.core.http_client import get_request_body
4-
from speechifyinc.core.request_options import RequestOptions
3+
from speechify.core.http_client import get_request_body
4+
from speechify.core.request_options import RequestOptions
55

66

77
def get_request_options() -> RequestOptions:

tests/utils/test_query_encoding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file was auto-generated by Fern from our API Definition.
22

33

4-
from speechifyinc.core.query_encoder import encode_query
4+
from speechify.core.query_encoder import encode_query
55

66

77
def test_query_encoding_deep_objects() -> None:

tests/utils/test_serialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from typing import List, Any
44

5-
from speechifyinc.core.serialization import convert_and_respect_annotation_metadata
5+
from speechify.core.serialization import convert_and_respect_annotation_metadata
66
from .assets.models import ShapeParams, ObjectWithOptionalFieldParams
77

88

0 commit comments

Comments
 (0)