Skip to content

Commit

Permalink
- 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EchterAlsFake committed Apr 1, 2024
1 parent bdd2b55 commit 1160799
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ print(video_object.title)
print(video_object.likes)
# Download the video

video_object.download(downloader=threaded, quality=Quality.BEST, output_path="your_output_path + filename")
video_object.download(downloader=threaded, quality=Quality.BEST, path="your_output_path + filename")

# SEE DOCUMENTATION FOR MORE
```
Expand Down
7 changes: 6 additions & 1 deletion README/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@
- implemented searching
- implemented search filters
- unit tests for searching
- updated documentation
- updated documentation

# 1.2
- code optimization
- added embed url to video objects
- added legacy downloading for low quality videos
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

setup(
name="xvideos_api",
version="1.1",
version="1.2",
packages=find_packages(),
install_requires=[
"requests", "bs4", "lxml", "ffmpeg-progress-yield"
"requests", "bs4", "lxml", "ffmpeg-progress-yield", "eaf_base_api"
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 1160799

Please sign in to comment.