tbr-deal-finder 0.1.0__tar.gz → 0.1.2__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.
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/PKG-INFO +2 -2
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/pyproject.toml +4 -4
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/uv.lock +32 -16
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/.github/workflows/publish-to-pypi.yaml +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/.gitignore +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/.python-version +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/LICENSE +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/README.md +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/__init__.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/book.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/config.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/library_exports.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/main.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/migrations.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/queries/get_active_deals.sql +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/queries/get_deals_found_at.sql +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/queries/latest_deal_last_ran_most_recent_success.sql +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/retailer/__init__.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/retailer/audible.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/retailer/chirp.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/retailer/librofm.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/retailer/models.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/retailer_deal.py +0 -0
- {tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/utils.py +0 -0
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: tbr-deal-finder
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Track price drops and find deals on books in your TBR list across audiobook and ebook formats.
|
5
5
|
License: MIT
|
6
6
|
License-File: LICENSE
|
7
7
|
Requires-Python: >=3.13
|
8
8
|
Requires-Dist: aiohttp>=3.12.14
|
9
|
-
Requires-Dist: audible
|
9
|
+
Requires-Dist: audible==0.8.2
|
10
10
|
Requires-Dist: click>=8.2.1
|
11
11
|
Requires-Dist: duckdb>=1.3.2
|
12
12
|
Requires-Dist: pandas>=2.3.1
|
@@ -1,13 +1,13 @@
|
|
1
1
|
[project]
|
2
2
|
name = "tbr-deal-finder"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.2"
|
4
4
|
description = "Track price drops and find deals on books in your TBR list across audiobook and ebook formats."
|
5
5
|
readme = "README.md"
|
6
6
|
requires-python = ">=3.13"
|
7
7
|
license = {text = "MIT"}
|
8
8
|
dependencies = [
|
9
9
|
"aiohttp>=3.12.14",
|
10
|
-
"audible
|
10
|
+
"audible==0.8.2",
|
11
11
|
"click>=8.2.1",
|
12
12
|
"duckdb>=1.3.2",
|
13
13
|
"pandas>=2.3.1",
|
@@ -17,10 +17,10 @@ dependencies = [
|
|
17
17
|
]
|
18
18
|
|
19
19
|
[project.scripts]
|
20
|
-
|
20
|
+
tbr-deal-finder = "tbr-deal-finder.main:cli"
|
21
21
|
|
22
22
|
[tool.setuptools.package-data]
|
23
|
-
"
|
23
|
+
"tbr-deal-finder" = [
|
24
24
|
"queries/**/*.sql",
|
25
25
|
"reports/*.j2",
|
26
26
|
"data/*.json"
|
@@ -80,7 +80,7 @@ wheels = [
|
|
80
80
|
|
81
81
|
[[package]]
|
82
82
|
name = "audible"
|
83
|
-
version = "0.
|
83
|
+
version = "0.8.2"
|
84
84
|
source = { registry = "https://pypi.org/simple" }
|
85
85
|
dependencies = [
|
86
86
|
{ name = "beautifulsoup4" },
|
@@ -90,9 +90,9 @@ dependencies = [
|
|
90
90
|
{ name = "pyaes" },
|
91
91
|
{ name = "rsa" },
|
92
92
|
]
|
93
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
93
|
+
sdist = { url = "https://files.pythonhosted.org/packages/80/bf/9f1a6a1bfcac2ab2d5872955307ddd61ec3e9241e4b682dd1ba15fd357f6/audible-0.8.2.tar.gz", hash = "sha256:e7bb81868533016644010643d2c515e49e2334a0fb39d06aa0d82e5f7e58d0b8", size = 41043 }
|
94
94
|
wheels = [
|
95
|
-
{ url = "https://files.pythonhosted.org/packages/
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/21/c3/b3cdc374bb3c76a592deed04188feebac991b9c9e1fb6ad2794f5f15415d/audible-0.8.2-py2.py3-none-any.whl", hash = "sha256:c9b75134e31ed6a9b11b93eae5156d3913a4dc4b2c5edd28b3a3de849985a493", size = 44337 },
|
96
96
|
]
|
97
97
|
|
98
98
|
[[package]]
|
@@ -198,39 +198,41 @@ wheels = [
|
|
198
198
|
|
199
199
|
[[package]]
|
200
200
|
name = "h11"
|
201
|
-
version = "0.
|
201
|
+
version = "0.14.0"
|
202
202
|
source = { registry = "https://pypi.org/simple" }
|
203
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
203
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", size = 100418 }
|
204
204
|
wheels = [
|
205
|
-
{ url = "https://files.pythonhosted.org/packages/04/
|
205
|
+
{ url = "https://files.pythonhosted.org/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761", size = 58259 },
|
206
206
|
]
|
207
207
|
|
208
208
|
[[package]]
|
209
209
|
name = "httpcore"
|
210
|
-
version = "
|
210
|
+
version = "0.16.3"
|
211
211
|
source = { registry = "https://pypi.org/simple" }
|
212
212
|
dependencies = [
|
213
|
+
{ name = "anyio" },
|
213
214
|
{ name = "certifi" },
|
214
215
|
{ name = "h11" },
|
216
|
+
{ name = "sniffio" },
|
215
217
|
]
|
216
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
218
|
+
sdist = { url = "https://files.pythonhosted.org/packages/61/42/5c456b02816845d163fab0f32936b6a5b649f3f915beff6f819f4f6c90b2/httpcore-0.16.3.tar.gz", hash = "sha256:c5d6f04e2fc530f39e0c077e6a30caa53f1451096120f1f38b954afd0b17c0cb", size = 54929 }
|
217
219
|
wheels = [
|
218
|
-
{ url = "https://files.pythonhosted.org/packages/7e/
|
220
|
+
{ url = "https://files.pythonhosted.org/packages/04/7e/ef97af4623024e8159993b3114ce208de4f677098ae058ec5882a1bf7605/httpcore-0.16.3-py3-none-any.whl", hash = "sha256:da1fb708784a938aa084bde4feb8317056c55037247c787bd7e19eb2c2949dc0", size = 69561 },
|
219
221
|
]
|
220
222
|
|
221
223
|
[[package]]
|
222
224
|
name = "httpx"
|
223
|
-
version = "0.
|
225
|
+
version = "0.23.3"
|
224
226
|
source = { registry = "https://pypi.org/simple" }
|
225
227
|
dependencies = [
|
226
|
-
{ name = "anyio" },
|
227
228
|
{ name = "certifi" },
|
228
229
|
{ name = "httpcore" },
|
229
|
-
{ name = "
|
230
|
+
{ name = "rfc3986", extra = ["idna2008"] },
|
231
|
+
{ name = "sniffio" },
|
230
232
|
]
|
231
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
233
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f5/50/04d5e8ee398a10c767a341a25f59ff8711ae3adf0143c7f8b45fc560d72d/httpx-0.23.3.tar.gz", hash = "sha256:9818458eb565bb54898ccb9b8b251a28785dd4a55afbc23d0eb410754fe7d0f9", size = 77527 }
|
232
234
|
wheels = [
|
233
|
-
{ url = "https://files.pythonhosted.org/packages/
|
235
|
+
{ url = "https://files.pythonhosted.org/packages/ac/a2/0260c0f5d73bdf06e8d3fc1013a82b9f0633dc21750c9e3f3cb1dba7bb8c/httpx-0.23.3-py3-none-any.whl", hash = "sha256:a211fcce9b1254ea24f0cd6af9869b3d29aba40154e947d2a07bb499b3e310d6", size = 71472 },
|
234
236
|
]
|
235
237
|
|
236
238
|
[[package]]
|
@@ -506,6 +508,20 @@ wheels = [
|
|
506
508
|
{ url = "https://files.pythonhosted.org/packages/ad/3f/11dd4cd4f39e05128bfd20138faea57bec56f9ffba6185d276e3107ba5b2/questionary-2.1.0-py3-none-any.whl", hash = "sha256:44174d237b68bc828e4878c763a9ad6790ee61990e0ae72927694ead57bab8ec", size = 36747 },
|
507
509
|
]
|
508
510
|
|
511
|
+
[[package]]
|
512
|
+
name = "rfc3986"
|
513
|
+
version = "1.5.0"
|
514
|
+
source = { registry = "https://pypi.org/simple" }
|
515
|
+
sdist = { url = "https://files.pythonhosted.org/packages/79/30/5b1b6c28c105629cc12b33bdcbb0b11b5bb1880c6cfbd955f9e792921aa8/rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835", size = 49378 }
|
516
|
+
wheels = [
|
517
|
+
{ url = "https://files.pythonhosted.org/packages/c4/e5/63ca2c4edf4e00657584608bee1001302bbf8c5f569340b78304f2f446cb/rfc3986-1.5.0-py2.py3-none-any.whl", hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97", size = 31976 },
|
518
|
+
]
|
519
|
+
|
520
|
+
[package.optional-dependencies]
|
521
|
+
idna2008 = [
|
522
|
+
{ name = "idna" },
|
523
|
+
]
|
524
|
+
|
509
525
|
[[package]]
|
510
526
|
name = "rsa"
|
511
527
|
version = "4.9.1"
|
@@ -547,7 +563,7 @@ wheels = [
|
|
547
563
|
|
548
564
|
[[package]]
|
549
565
|
name = "tbr-deal-finder"
|
550
|
-
version = "0.1.
|
566
|
+
version = "0.1.2"
|
551
567
|
source = { editable = "." }
|
552
568
|
dependencies = [
|
553
569
|
{ name = "aiohttp" },
|
@@ -563,7 +579,7 @@ dependencies = [
|
|
563
579
|
[package.metadata]
|
564
580
|
requires-dist = [
|
565
581
|
{ name = "aiohttp", specifier = ">=3.12.14" },
|
566
|
-
{ name = "audible", specifier = "
|
582
|
+
{ name = "audible", specifier = "==0.8.2" },
|
567
583
|
{ name = "click", specifier = ">=8.2.1" },
|
568
584
|
{ name = "duckdb", specifier = ">=1.3.2" },
|
569
585
|
{ name = "pandas", specifier = ">=2.3.1" },
|
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
|
{tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/queries/get_active_deals.sql
RENAMED
File without changes
|
{tbr_deal_finder-0.1.0 → tbr_deal_finder-0.1.2}/tbr_deal_finder/queries/get_deals_found_at.sql
RENAMED
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
|