Metadata-Version: 2.1
Name: youtube-scraping-api
Version: 0.0.2
Summary: A scraper for everything on YouTube
Home-page: https://github.com/melvinchia3636/YouTube-API
Author: The Silly Coder
Author-email: melvinchia623600@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/melvinchia3636/YouTube-API/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# YouTube-Scraping-API
An easy-to-use YouTube API, without any kind of quota. I'm still working on it, so stay tuned for the updates to come.

## Documentation

### Importing The API
```python
from YouTubeAPI import YouTubeAPI
api = YouTubeAPI()
```

### Search
Returns a collection of search results that match the query parameters specified in the API request.
```python
api.search(query=None, continuation_token=None)
```
**query**: The query string of your search <br />
**continuation_token**: a token for continuing the search. You will find it at the very end of every search result JSON.

### Playlist
Returns a collection of items and metadata of playlists that match the API request parameters.
```python
api.playlist(playlistId=None, continuation_token=None, parseAll=True)
```
**playlistId**: The ID of playlist you want. You can find it at the url of the playlist page. <br />
**continuation_token**: a token for continuing the search. You will find it at the very end of search result JSON if ```parseAll=False.``` <br />
***parseAll***: Parse all items in the playlist. Default set to True.

### Channel (working)
Returns a collection data of channel resources that match the request criteria.
```python
api.channel(channelId=None, username=None)
```
**channelId**: The ID of channel. <br />
**username**: The username of channel user. <br />


