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.
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: watch-cli
3
- Version: 0.1.0
4
- Summary: watch CLI tool
3
+ Version: 1.0.0
4
+ Summary: watch CLI
5
+ Author-email: ebrhim ahmed <ebrhimahmed04@gmail.com>
5
6
  Requires-Python: >=3.10
6
7
  Requires-Dist: typer
7
8
  Requires-Dist: requests
@@ -11,6 +11,6 @@ pip install imdb
11
11
  ## Usage
12
12
 
13
13
  ```bash
14
- imdb movie "inception"
15
- imdb tv "breaking bad" --season 1 --episode 3
14
+ watch movie "inception"
15
+ watch tv "breaking bad" --season 1 --episode 3
16
16
  ```
@@ -1,8 +1,9 @@
1
1
 
2
2
  [project]
3
3
  name = "watch-cli"
4
- version = "0.1.0"
5
- description = "watch CLI tool"
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)
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: watch-cli
3
- Version: 0.1.0
4
- Summary: watch CLI tool
3
+ Version: 1.0.0
4
+ Summary: watch CLI
5
+ Author-email: ebrhim ahmed <ebrhimahmed04@gmail.com>
5
6
  Requires-Python: >=3.10
6
7
  Requires-Dist: typer
7
8
  Requires-Dist: requests
File without changes
File without changes