Skip to content

Commit 4a1e438

Browse files
authored
docs: Add fetching only manually created transcripts section for readme
1 parent 97a9dc7 commit 4a1e438

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ A python tool for fetching thousands of videos fast from a Youtube channel along
1818
- [Basic Usage (Python API)](#basic-usage-python-api)
1919
- [Using Different Fetchers](#using-different-fetchers)
2020
- [Retreive Different Languages](#retreive-different-languages)
21+
- [Fetching Only Manually Created Transcripts](#fetching-only-manually-created-transcripts)
2122
- [Exporting](#exporting)
2223
- [Other Methods](#other-methods)
2324
- [Proxy Configuration](#proxy-configuration)
@@ -193,6 +194,20 @@ ytfetcher from_channel -c TheOffice -m 50 -f csv --print --languages tr en
193194

194195
---
195196

197+
## Fetching Only Manually Created Transcripts
198+
199+
`ytfethcer` allows you to fetch **only manually created transcripts** from a channel which allows you to get more precise transcripts.
200+
201+
```python
202+
fetcher = YTFetcher.from_channel(channel_handle="TEDx", manually_created=True) # Set manually_created flag to True
203+
```
204+
205+
You can also easily enable this feature with `--manually-created` argument in CLI.
206+
207+
```bash
208+
ytfetcher from_channel -c TEDx -f csv --manually-created
209+
```
210+
196211
## Exporting
197212

198213
Use the `Exporter` class to export `ChannelData` in **csv**, **json**, or **txt**:

0 commit comments

Comments
 (0)