showtime-cli 0.3.24__tar.gz → 0.3.25__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.
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/PKG-INFO +2 -2
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/pyproject.toml +2 -2
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/api.py +0 -1
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime_cli.egg-info/PKG-INFO +2 -2
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime_cli.egg-info/requires.txt +1 -1
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/LICENSE +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/README.md +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/setup.cfg +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/__init__.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/command.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/config.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/database.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/output.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/showtime.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime/types.py +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime_cli.egg-info/SOURCES.txt +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime_cli.egg-info/dependency_links.txt +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime_cli.egg-info/entry_points.txt +0 -0
- {showtime_cli-0.3.24 → showtime_cli-0.3.25}/showtime_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: showtime-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.25
|
|
4
4
|
Summary: Command line show tracker using the TVMaze public API
|
|
5
5
|
Author-email: Evgeniy Vasilev <aquilax@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Utilities
|
|
|
18
18
|
Requires-Python: >=3.12
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: cmd2==4.2.
|
|
21
|
+
Requires-Dist: cmd2==4.2.2
|
|
22
22
|
Requires-Dist: ratelimit==2.2.1
|
|
23
23
|
Requires-Dist: tinydb==4.9.0
|
|
24
24
|
Requires-Dist: terminaltables==3.1.10
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "showtime-cli"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.25"
|
|
8
8
|
description = "Command line show tracker using the TVMaze public API"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.12"
|
|
@@ -22,7 +22,7 @@ classifiers = [
|
|
|
22
22
|
"Topic :: Utilities",
|
|
23
23
|
]
|
|
24
24
|
dependencies = [
|
|
25
|
-
"cmd2==4.2.
|
|
25
|
+
"cmd2==4.2.2",
|
|
26
26
|
"ratelimit==2.2.1",
|
|
27
27
|
"tinydb==4.9.0",
|
|
28
28
|
"terminaltables==3.1.10",
|
|
@@ -54,7 +54,6 @@ class HTTPClient():
|
|
|
54
54
|
url_parts = list(urlparse(url))
|
|
55
55
|
url_parts[4] = urlencode(fields)
|
|
56
56
|
final_url = urlunparse(url_parts)
|
|
57
|
-
print(final_url)
|
|
58
57
|
request = urllib.request.Request(final_url, headers=headers)
|
|
59
58
|
with urllib.request.urlopen(request) as response:
|
|
60
59
|
return HTTPResponse(data=response.read())
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: showtime-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.25
|
|
4
4
|
Summary: Command line show tracker using the TVMaze public API
|
|
5
5
|
Author-email: Evgeniy Vasilev <aquilax@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Utilities
|
|
|
18
18
|
Requires-Python: >=3.12
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: cmd2==4.2.
|
|
21
|
+
Requires-Dist: cmd2==4.2.2
|
|
22
22
|
Requires-Dist: ratelimit==2.2.1
|
|
23
23
|
Requires-Dist: tinydb==4.9.0
|
|
24
24
|
Requires-Dist: terminaltables==3.1.10
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|