Skip to content

Commit

Permalink
1.9.0 Released
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanBindez committed Nov 20, 2023
1 parent f22c370 commit 2a7ede1
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 4 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,19 @@ print(f'Downloading videos by: {c.channel_name}')
for video in c.videos:
download = video.streams.get_highest_resolution().download()

```


#### to get a list of live streams:

```python

from pytubefix import Channel

url_channel = input("url > ")

c = Channel(url_channel)

print("live streams :", c.livestreams_urls)

```
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ of pytubefix.
user/install
user/quickstart
user/streams
user/livestreams
user/auth
user/mp3
user/captions
Expand Down
14 changes: 14 additions & 0 deletions docs/user/livestreams.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.. _livestreams:

Using Live Streams
=============================

**to get a list of live streams**::

from pytubefix import Channel

url_channel = input("url channel > ")

c = Channel(url_channel)

print("live streams :", c.livestreams_urls)
2 changes: 1 addition & 1 deletion push.Makeline
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
git add .
git commit -m 'update 1.9-rc2'
git commit -m '1.9.0 Released'
git push -u origin main
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pytubefix"
version = "1.9-rc2"
version = "1.9.0"
authors = [
{ name="Juan Bindez", email="[email protected]" },
]
Expand Down
4 changes: 2 additions & 2 deletions pytubefix/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.9-rc2"
__version__ = "1.9.0"

if __name__ == "__main__":
print(__version__)
print(__version__)

0 comments on commit 2a7ede1

Please sign in to comment.