Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,14 @@ Execute the CLI script using the video ids as parameters and the results will be
youtube_transcript_api <first_video_id> <second_video_id> ...
```

You can also run the CLI without installing it using [uvx](https://docs.astral.sh/uv/guides/tools/) or [pipx](https://pipx.pypa.io/):

```
uvx youtube-transcript-api <first_video_id> <second_video_id> ...
```



The CLI also gives you the option to provide a list of preferred languages:

```
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ classifiers = [

[tool.poetry.scripts]
youtube_transcript_api = "youtube_transcript_api.__main__:main"
youtube-transcript-api = "youtube_transcript_api.__main__:main"

[tool.poe.tasks]
test = "pytest youtube_transcript_api"
Expand Down