watch-cli 0.1.0__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {watch_cli-0.1.0 → watch_cli-1.0.0}/PKG-INFO +3 -2
- {watch_cli-0.1.0 → watch_cli-1.0.0}/README.md +2 -2
- {watch_cli-0.1.0 → watch_cli-1.0.0}/pyproject.toml +3 -2
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch/main.py +2 -2
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch_cli.egg-info/PKG-INFO +3 -2
- {watch_cli-0.1.0 → watch_cli-1.0.0}/setup.cfg +0 -0
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch/__init__.py +0 -0
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch_cli.egg-info/SOURCES.txt +0 -0
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch_cli.egg-info/dependency_links.txt +0 -0
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch_cli.egg-info/entry_points.txt +0 -0
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch_cli.egg-info/requires.txt +0 -0
- {watch_cli-0.1.0 → watch_cli-1.0.0}/watch_cli.egg-info/top_level.txt +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
|
|
2
2
|
[project]
|
|
3
3
|
name = "watch-cli"
|
|
4
|
-
version = "
|
|
5
|
-
|
|
4
|
+
version = "1.0.0"
|
|
5
|
+
authors= [{name= "ebrhim ahmed",email="ebrhimahmed04@gmail.com"}]
|
|
6
|
+
description = "watch CLI "
|
|
6
7
|
requires-python = ">=3.10"
|
|
7
8
|
dependencies = [
|
|
8
9
|
"typer",
|
|
@@ -39,7 +39,7 @@ def open_web(name):
|
|
|
39
39
|
app = typer.Typer()
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
@app.command("tv")
|
|
42
|
+
@app.command("tv", help="watch a tv show")
|
|
43
43
|
def tv(
|
|
44
44
|
name: Annotated[str, typer.Argument(help="Enter the series name")],
|
|
45
45
|
season: Annotated[int, typer.Option("-s","--season",help="Select season")] = None,
|
|
@@ -53,7 +53,7 @@ def tv(
|
|
|
53
53
|
else:
|
|
54
54
|
webbrowser.open(f"https://vaplayer.ru/embed/tv/{imdb_id}")
|
|
55
55
|
|
|
56
|
-
@app.command("movie")
|
|
56
|
+
@app.command("movie", help="watch a movie")
|
|
57
57
|
def movie( name: Annotated[str, typer.Argument(help="Enter the movie name")],):
|
|
58
58
|
progress_bar()
|
|
59
59
|
data = get_data(name)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|