Skip to content

Commit

Permalink
Update client-sdk-python -> python-sdks (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzhao authored Nov 12, 2023
1 parent e395c06 commit d9ea80a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<picture>
<source media="(prefers-color-scheme: dark)" srcset="/.github/banner_dark.png">
<source media="(prefers-color-scheme: light)" srcset="/.github/banner_light.png">
<img style="width:100%;" alt="The LiveKit icon, the name of the repository and some sample code in the background." src="https://raw.githubusercontent.com/livekit/client-sdk-python/main/.github/banner_light.png">
<img style="width:100%;" alt="The LiveKit icon, the name of the repository and some sample code in the background." src="https://raw.githubusercontent.com/livekit/python-sdks/main/.github/banner_light.png">
</picture>
<!--END_BANNER_IMAGE-->

Expand Down Expand Up @@ -113,11 +113,11 @@ async def main():

## Examples

- [Facelandmark](https://github.com/livekit/client-sdk-python/tree/main/examples/face_landmark): Use mediapipe to detect face landmarks (eyes, nose ...)
- [Whisper](https://github.com/livekit/client-sdk-python/tree/main/examples/whisper): Transcribe an audio track using OpenAI whisper
- [Basic room](https://github.com/livekit/client-sdk-python/blob/main/examples/basic_room.py): Connect to a room
- [Publish hue](https://github.com/livekit/client-sdk-python/blob/main/examples/publish_hue.py): Publish a rainbow video track
- [Publish wave](https://github.com/livekit/client-sdk-python/blob/main/examples/publish_hue.py): Publish a sine wave
- [Facelandmark](https://github.com/livekit/python-sdks/main/examples/face_landmark): Use mediapipe to detect face landmarks (eyes, nose ...)
- [Whisper](https://github.com/livekit/python-sdks/tree/main/examples/whisper): Transcribe an audio track using OpenAI whisper
- [Basic room](https://github.com/livekit/python-sdks/blob/main/examples/basic_room.py): Connect to a room
- [Publish hue](https://github.com/livekit/python-sdks/blob/main/examples/publish_hue.py): Publish a rainbow video track
- [Publish wave](https://github.com/livekit/python-sdks/blob/main/examples/publish_hue.py): Publish a sine wave

## Getting help / Contributing

Expand Down
4 changes: 2 additions & 2 deletions livekit-api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
setuptools.setup(
name="livekit-api",
version=about["__version__"],
description="Python Server SDK for LiveKit",
description="Python Server API for LiveKit",
long_description=(here / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/livekit/client-sdk-python",
url="https://github.com/livekit/python-sdks",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down
4 changes: 2 additions & 2 deletions livekit-rtc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ def run(self):
setuptools.setup(
name="livekit",
version=about["__version__"],
description="Python Client SDK for LiveKit",
description="Python Real-time SDK for LiveKit",
long_description=(here / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/livekit/client-sdk-python",
url="https://github.com/livekit/python-sdks",
cmdclass={
"bdist_wheel": bdist_wheel,
"build_py": BuildPyCommand,
Expand Down

0 comments on commit d9ea80a

Please sign in to comment.