Metadata-Version: 2.1
Name: individous-wrapper
Version: 0.0.3b1
Summary: Get data from youtube with individous
Home-page: UNKNOWN
Author-email: <jonathan@mag-roboter.de>
License: UNKNOWN
Keywords: python,youtube,individous,wrapper
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# Individous-Wrapper
Examples:

Get all video Data:
```
>>> import individous_wrapper
>>> individous_wrapper.video.get_all(YOUR_VIDEO_ID)
```
Output (for example):
```
{'views': 1153480, 'likes': 74310, 'title': 'Die dunkle Wahrheit hinter “.tv” Domains', 'channel': 'Simplicissimus'}
```

Get only views:
```
>>> import individous_wrapper
>>> page = individous_wrapper.video.page(YOUR_VIDEO_ID)
>>> individous_wrapper.video.views(page)
```
Output (for example):
```
1153480
```

