quasarr 0.1.6__py3-none-any.whl → 1.23.0__py3-none-any.whl

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.

Potentially problematic release.


This version of quasarr might be problematic. Click here for more details.

Files changed (77) hide show
  1. quasarr/__init__.py +316 -42
  2. quasarr/api/__init__.py +187 -0
  3. quasarr/api/arr/__init__.py +387 -0
  4. quasarr/api/captcha/__init__.py +1189 -0
  5. quasarr/api/config/__init__.py +23 -0
  6. quasarr/api/sponsors_helper/__init__.py +166 -0
  7. quasarr/api/statistics/__init__.py +196 -0
  8. quasarr/downloads/__init__.py +319 -256
  9. quasarr/downloads/linkcrypters/__init__.py +0 -0
  10. quasarr/downloads/linkcrypters/al.py +237 -0
  11. quasarr/downloads/linkcrypters/filecrypt.py +444 -0
  12. quasarr/downloads/linkcrypters/hide.py +123 -0
  13. quasarr/downloads/packages/__init__.py +476 -0
  14. quasarr/downloads/sources/al.py +697 -0
  15. quasarr/downloads/sources/by.py +106 -0
  16. quasarr/downloads/sources/dd.py +76 -0
  17. quasarr/downloads/sources/dj.py +7 -0
  18. quasarr/downloads/sources/dl.py +199 -0
  19. quasarr/downloads/sources/dt.py +66 -0
  20. quasarr/downloads/sources/dw.py +14 -7
  21. quasarr/downloads/sources/he.py +112 -0
  22. quasarr/downloads/sources/mb.py +47 -0
  23. quasarr/downloads/sources/nk.py +54 -0
  24. quasarr/downloads/sources/nx.py +42 -83
  25. quasarr/downloads/sources/sf.py +159 -0
  26. quasarr/downloads/sources/sj.py +7 -0
  27. quasarr/downloads/sources/sl.py +90 -0
  28. quasarr/downloads/sources/wd.py +110 -0
  29. quasarr/downloads/sources/wx.py +127 -0
  30. quasarr/providers/cloudflare.py +204 -0
  31. quasarr/providers/html_images.py +22 -0
  32. quasarr/providers/html_templates.py +211 -104
  33. quasarr/providers/imdb_metadata.py +108 -3
  34. quasarr/providers/log.py +19 -0
  35. quasarr/providers/myjd_api.py +201 -40
  36. quasarr/providers/notifications.py +99 -11
  37. quasarr/providers/obfuscated.py +65 -0
  38. quasarr/providers/sessions/__init__.py +0 -0
  39. quasarr/providers/sessions/al.py +286 -0
  40. quasarr/providers/sessions/dd.py +78 -0
  41. quasarr/providers/sessions/dl.py +175 -0
  42. quasarr/providers/sessions/nx.py +76 -0
  43. quasarr/providers/shared_state.py +656 -79
  44. quasarr/providers/statistics.py +154 -0
  45. quasarr/providers/version.py +60 -1
  46. quasarr/providers/web_server.py +1 -1
  47. quasarr/search/__init__.py +144 -15
  48. quasarr/search/sources/al.py +448 -0
  49. quasarr/search/sources/by.py +204 -0
  50. quasarr/search/sources/dd.py +135 -0
  51. quasarr/search/sources/dj.py +213 -0
  52. quasarr/search/sources/dl.py +354 -0
  53. quasarr/search/sources/dt.py +265 -0
  54. quasarr/search/sources/dw.py +94 -67
  55. quasarr/search/sources/fx.py +89 -33
  56. quasarr/search/sources/he.py +196 -0
  57. quasarr/search/sources/mb.py +195 -0
  58. quasarr/search/sources/nk.py +188 -0
  59. quasarr/search/sources/nx.py +75 -21
  60. quasarr/search/sources/sf.py +374 -0
  61. quasarr/search/sources/sj.py +213 -0
  62. quasarr/search/sources/sl.py +246 -0
  63. quasarr/search/sources/wd.py +208 -0
  64. quasarr/search/sources/wx.py +337 -0
  65. quasarr/storage/config.py +39 -10
  66. quasarr/storage/setup.py +269 -97
  67. quasarr/storage/sqlite_database.py +6 -1
  68. quasarr-1.23.0.dist-info/METADATA +306 -0
  69. quasarr-1.23.0.dist-info/RECORD +77 -0
  70. {quasarr-0.1.6.dist-info → quasarr-1.23.0.dist-info}/WHEEL +1 -1
  71. quasarr/arr/__init__.py +0 -423
  72. quasarr/captcha_solver/__init__.py +0 -284
  73. quasarr-0.1.6.dist-info/METADATA +0 -81
  74. quasarr-0.1.6.dist-info/RECORD +0 -31
  75. {quasarr-0.1.6.dist-info → quasarr-1.23.0.dist-info}/entry_points.txt +0 -0
  76. {quasarr-0.1.6.dist-info → quasarr-1.23.0.dist-info/licenses}/LICENSE +0 -0
  77. {quasarr-0.1.6.dist-info → quasarr-1.23.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,306 @@
1
+ Metadata-Version: 2.4
2
+ Name: quasarr
3
+ Version: 1.23.0
4
+ Summary: Quasarr connects JDownloader with Radarr, Sonarr and LazyLibrarian. It also decrypts links protected by CAPTCHAs.
5
+ Home-page: https://github.com/rix1337/Quasarr
6
+ Author: rix1337
7
+ Author-email:
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: beautifulsoup4>=4.14.2
14
+ Requires-Dist: bottle>=0.13.4
15
+ Requires-Dist: dukpy>=0.5.0
16
+ Requires-Dist: pillow>=12.0.0
17
+ Requires-Dist: pycryptodomex>=3.23.0
18
+ Requires-Dist: requests>=2.32.5
19
+ Dynamic: author
20
+ Dynamic: classifier
21
+ Dynamic: description
22
+ Dynamic: description-content-type
23
+ Dynamic: home-page
24
+ Dynamic: license-file
25
+ Dynamic: requires-dist
26
+ Dynamic: summary
27
+
28
+ #
29
+
30
+ <img src="https://raw.githubusercontent.com/rix1337/Quasarr/main/Quasarr.png" data-canonical-src="https://raw.githubusercontent.com/rix1337/Quasarr/main/Quasarr.png" width="64" height="64" />
31
+
32
+ Quasarr connects JDownloader with Radarr, Sonarr and LazyLibrarian. It also decrypts links protected by CAPTCHAs.
33
+
34
+ [![PyPI version](https://badge.fury.io/py/quasarr.svg)](https://badge.fury.io/py/quasarr)
35
+ [![Discord](https://img.shields.io/discord/1075348594225315891)](https://discord.gg/eM4zA2wWQb)
36
+ [![GitHub Sponsorship](https://img.shields.io/badge/support-me-red.svg)](https://github.com/users/rix1337/sponsorship)
37
+
38
+ Quasarr pretends to be both `Newznab Indexer` and `SABnzbd client`. Therefore, do not try to use it with real usenet
39
+ indexers or download clients. It simply does not know what NZB or torrent files are.
40
+
41
+ Quasarr includes a solution to quickly and easily decrypt protected links.
42
+ [Active monthly Sponsors get access to SponsorsHelper to do so automatically.](https://github.com/rix1337/Quasarr?tab=readme-ov-file#sponsorshelper)
43
+ Alternatively, follow the link from the console output (or discord notification) to solve CAPTCHAs manually.
44
+ Quasarr will confidently handle the rest.
45
+
46
+ # Instructions
47
+ 1. Set up and run [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) 3.4.4 or later.
48
+ 2. Set up and run [JDownloader 2](https://jdownloader.org/download/index).
49
+ 3. Follow the next steps.
50
+
51
+ ---
52
+
53
+ ## FlareSolverr
54
+ 1. Ensure your running FlareSolverr is reachable by Quasarr.
55
+ 2. Provide your FlareSolverr URL to Quasarr during the setup process.
56
+ 3. The full URL must include the version path, e.g., `http://192.168.1.1:8191/v1`.
57
+
58
+ ---
59
+
60
+ ## Quasarr
61
+
62
+ Tell Quasarr which sites to search for releases. It requires at least one valid source to start up.
63
+
64
+ > - By default, Quasarr does **not** know which sites to scrape for download links.
65
+ > - The setup will guide you through the process of providing valid hostnames for Quasarr to scrape.
66
+ > - Do **not** ask for help here if you do not know which hostnames to use. Picking them is solely your responsibility.
67
+ > - You may check sites like [Pastebin](https://pastebin.com/search?q=hostnames+quasarr) for user‑submitted suggestions.
68
+
69
+ ---
70
+
71
+ ## JDownloader
72
+
73
+ 1. Ensure your running JDownloader is connected to the My JDownloader service.
74
+ 2. Provide your [My‑JDownloader‑Credentials](https://my.jdownloader.org) to Quasarr during the setup process.
75
+
76
+ > - Consider setting up a fresh JDownloader before you begin.
77
+ > - JDownloader must be running and available to Quasarr.
78
+ > - Quasarr will modify JDownloader’s settings so downloads can be handled by Radarr/Sonarr/LazyLibrarian.
79
+ > - If using Docker, ensure that JDownloader’s download path is available to Radarr/Sonarr/LazyLibrarian with **exactly the same** internal and external path mapping (matching only the external path is not enough).
80
+
81
+ ---
82
+
83
+ ## Radarr / Sonarr
84
+
85
+ Set up Quasarr as a **Newznab Indexer** and **SABnzbd Download Client**:
86
+
87
+ 1. **URL**: Use the `URL` from the **API Information** section of the console output (or copy it from the Quasarr web UI).
88
+ 2. **API Key**: Use the `API Key` from the **API Information** section of the console output (or copy it from the Quasarr web UI).
89
+ 3. Leave all other settings at their defaults.
90
+
91
+ > **Important notice for Sonarr**
92
+ > - Ensure all shows (including anime) are set to the **Standard** series type.
93
+ > - Quasarr will never find releases for shows set to **Anime / Absolute**.
94
+
95
+ ---
96
+
97
+ ## LazyLibrarian
98
+
99
+ > **Important notice**
100
+ > - This feature is experimental and may not work as expected.
101
+ > - Quasarr cannot help you with metadata issues, missing covers, or other LazyLibrarian problems.
102
+ > - Please report issues when one of your hostnames yields results through their website, but not in LazyLibrarian.
103
+
104
+ Set up Quasarr as a **SABnzbd+ Downloader**
105
+
106
+ 1. **SABnzbd URL/Port**: Use port and host parts from `URL` found in the **API Information** section of the console output (or copy it from the Quasarr web UI).
107
+ 2. **SABnzbd API Key**: Use the `API Key` from the **API Information** section of the console output (or copy it from the Quasarr web UI).
108
+ 3. **SABnzbd Category**: Use `docs` to ensure LazyLibrarian does not interfere with Radarr/Sonarr.
109
+ 4. Press `Test SABnzbd` to verify the connection, then `Save changes`.
110
+
111
+ Set up Quasarr as a **Newznab Provider**:
112
+ 1. **Newznab URL**: Use the `URL` from the **API Information** section of the console output (or copy it from the Quasarr web UI).
113
+ 2. **Newznab API** Use the `API Key` from the **API Information** section of the console output (or copy it from the Quasarr web UI).
114
+ 3. Press `Test` to verify the connection, then `Save changes`.
115
+
116
+ Fix the `Importing` settings:
117
+ 1. Check `Enable OpenLibrary api for book/author information`
118
+ 2. Select `OpenLibrary` below `Primary Information Source`
119
+ 2. Under `Import languages` add `, Unknown` (and for German users: `, de, ger, de-DE`).
120
+
121
+ Fix the `Processing` settings:
122
+ 1. Under `Folders` add the full Quasarr download path, typically `/downloads/Quasarr/`
123
+ 2. If you do not do this, processing after the download will fail.
124
+
125
+
126
+
127
+ ---
128
+
129
+ ## Advanced Settings
130
+
131
+ To restrict results to a specific mirror, add the mirror name to the Newznab/indexer URL.
132
+ > **Example:** Appending `/api/dropbox/` will only return releases where `dropbox` is explicitly mentioned in a link.
133
+ > **Caution:** If a mirror is not available at a hostname, the release will be ignored or the download will fail. Use this option carefully.
134
+
135
+ To see download status information in Radarr/Sonarr
136
+ 1. Open `Activity` → `Queue` → `Options`
137
+ 2. Enable `Release Title`
138
+
139
+ # Docker
140
+
141
+ It is highly recommended to run the latest docker image with all optional variables set.
142
+
143
+ ```
144
+ docker run -d \
145
+ --name="Quasarr" \
146
+ -p port:8080 \
147
+ -v /path/to/config/:/config:rw \
148
+ -e 'INTERNAL_ADDRESS'='http://192.168.0.1:8080' \
149
+ -e 'EXTERNAL_ADDRESS'='https://foo.bar/' \
150
+ -e 'DISCORD'='https://discord.com/api/webhooks/1234567890/ABCDEFGHIJKLMN' \
151
+ -e 'HOSTNAMES'='https://pastebin.com/raw/eX4Mpl3'
152
+ -e 'SILENT'='True' \
153
+ -e 'DEBUG'='' \
154
+ -e 'TZ'='Europe/Berlin' \
155
+ ghcr.io/rix1337/quasarr:latest
156
+ ```
157
+
158
+ * `INTERNAL_ADDRESS` is required so Radarr/Sonarr/LazyLibrarian can reach Quasarr. **Must** include port!
159
+ * `EXTERNAL_ADDRESS` is optional and helpful if using a reverse proxy. Always protect external access with basic auth!
160
+ * `DISCORD` is optional and must be a valid Discord webhook URL.
161
+ * `HOSTNAMES` is optional and allows skipping the manual hostname step during setup.
162
+ * Must be a publicly available `HTTP` or `HTTPs` link
163
+ * Must be a raw `.ini` / text file (not HTML or JSON)
164
+ * Must contain at least one valid Hostname per line `ab = xyz`
165
+ * `SILENT` is optional and silences all discord notifications except for error messages from SponsorsHelper if `True`.
166
+ * `DEBUG` is optional and enables debug logging if `True`.
167
+ * `TZ` is optional, wrong timezone can cause HTTPS/SSL issues
168
+
169
+ # Manual setup
170
+
171
+ Use this only in case you can't run the docker image.
172
+
173
+ `pip install quasarr`
174
+
175
+ * Requires Python 3.12 or later
176
+ * Requires [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr)
177
+ * Requires [JDownloader 2](https://jdownloader.org/download/index) with [My JDownloader](https://my.jdownloader.org/)
178
+
179
+ ```
180
+ --port=8080
181
+ --discord=https://discord.com/api/webhooks/1234567890/ABCDEFGHIJKLMN
182
+ --external_address=https://foo.bar/
183
+ --hostnames=https://pastebin.com/raw/eX4Mpl3
184
+ ```
185
+
186
+ * `--discord` see `DISCORD`docker variable
187
+ * `--external_address` see `EXTERNAL_ADDRESS`docker variable
188
+ * `--hostnames` see `HOSTNAMES`docker variable
189
+
190
+ # Philosophy
191
+
192
+ Complexity is the killer of small projects like this one. It must be fought at all cost!
193
+
194
+ We will not waste precious time on features that will slow future development cycles down.
195
+ Most feature requests can be satisfied by:
196
+
197
+ - Existing settings in Radarr/Sonarr/LazyLibrarian
198
+ - Existing settings in JDownloader
199
+ - Existing tools from the *arr ecosystem that integrate directly with Radarr/Sonarr/LazyLibrarian
200
+
201
+ # Roadmap
202
+
203
+ - Assume there are zero known
204
+ issues [unless you find one or more open issues in this repository](https://github.com/rix1337/Quasarr/issues).
205
+ - Still having an issue? Provide a detailed report [here](https://github.com/rix1337/Quasarr/issues/new/choose)!
206
+ - There are no hostname integrations in active development unless you see an open pull request
207
+ [here](https://github.com/rix1337/Quasarr/pulls).
208
+ - Pull requests are welcome. Especially for popular hostnames.
209
+ - Always reach out on Discord before starting work on a new feature to prevent waste of time.
210
+ - Please follow the existing code style and project structure.
211
+ - Anti-bot measures must be circumvented fully by Quasarr. Thus you will need to provide a working solution for new
212
+ CAPTCHA types by integrating it in the Quasarr Web UI.
213
+ - Please provide proof of functionality (screenshots/examples) when submitting your pull request.
214
+
215
+ # SponsorsHelper
216
+
217
+ <img src="https://imgur.com/iHBqLwT.png" width="64" height="64" />
218
+
219
+ SponsorsHelper is a Docker image that solves CAPTCHAs and decrypts links for Quasarr.
220
+ Image access is limited to [active monthly GitHub sponsors](https://github.com/users/rix1337/sponsorship).
221
+
222
+ [![Github Sponsorship](https://img.shields.io/badge/support-me-red.svg)](https://github.com/users/rix1337/sponsorship)
223
+
224
+ ---
225
+
226
+ ## 🔑 GitHub Token Setup
227
+
228
+ 1. Start your [sponsorship](https://github.com/users/rix1337/sponsorship) first.
229
+ 2. Open [GitHub Classic Token Settings](https://github.com/settings/tokens/new?type=classic)
230
+ 3. Name it (e.g., `SponsorsHelper`) and choose unlimited expiration
231
+ 4. Enable these scopes:
232
+ - `read:packages`
233
+ - `read:user`
234
+ - `read:org`
235
+ 5. Click **Generate token** and copy it for the next steps
236
+
237
+ ---
238
+
239
+ ## 🐋 Docker Login
240
+
241
+ ```bash
242
+ echo "GITHUB_TOKEN" | docker login ghcr.io -u USERNAME --password-stdin
243
+ ````
244
+
245
+ * `USERNAME` → your GitHub username
246
+ * `GITHUB_TOKEN` → the token you just created
247
+
248
+ ---
249
+
250
+ ⚠️ **Before logging in, the image will not download.**
251
+
252
+ ---
253
+
254
+ ## ▶️ Run SponsorsHelper
255
+
256
+ ```bash
257
+ docker run -d \
258
+ --name='SponsorsHelper' \
259
+ -e 'QUASARR_URL'='http://192.168.0.1:8080' \
260
+ -e 'DEATHBYCAPTCHA_TOKEN'='2FMum5zuDBxMmbXDIsADnllEFl73bomydIpzo7...' \
261
+ -e 'GITHUB_TOKEN'='ghp_123.....456789' \
262
+ -e 'FLARESOLVERR_URL'='http://10.10.0.1:8191/v1' \
263
+ -e 'NX_USER'='your_nx_username' \
264
+ -e 'NX_PASS'='your_nx_password' \
265
+ -e 'JUNKIES_USER'='your_junkies_username' \
266
+ -e 'JUNKIES_PASS'='your_junkies_password' \
267
+ -e 'JUNKIES_HOSTER'='your_desired_hoster' \
268
+ ghcr.io/rix1337-sponsors/docker/helper:latest
269
+ ```
270
+
271
+ ### Required Parameters
272
+
273
+ * `QUASARR_URL` → Local URL of Quasarr
274
+ * `DEATHBYCAPTCHA_TOKEN` → [DeathByCaptcha](https://deathbycaptcha.com/register?refid=6184288242b) account token
275
+ * `GITHUB_TOKEN` → Classic GitHub PAT with the scopes listed above
276
+ * `FLARESOLVERR_URL` → Local URL of [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) - required!
277
+ * `NX_USER` / `NX_PASS` → NX account credentials
278
+ * `JUNKIES_USER` / `JUNKIES_PASS` → Junkies account credentials
279
+ * `JUNKIES_HOSTER` → Preferred hoster for Junkies links
280
+ ---
281
+
282
+ ⚠️ **Without a valid GitHub token linked to an active sponsorship, the image will not run.**
283
+
284
+ ---
285
+
286
+ # Development Setup for Pull Requests
287
+
288
+ To test your changes before submitting a pull request:
289
+
290
+ **Run Quasarr with the `--internal_address` parameter:**
291
+
292
+ ```bash
293
+ python Quasarr.py --internal_address=http://<host-ip>:<port>
294
+ ```
295
+
296
+ Replace `<host-ip>` and `<port>` with the scheme, IP, and port of your host machine.
297
+ The `--internal_address` parameter is **mandatory**.
298
+
299
+ **Start the required services using the `dev-services-compose.yml` file:**
300
+
301
+ ```bash
302
+ CONFIG_VOLUMES=/path/to/config docker-compose -f docker/dev-services-compose.yml up
303
+ ```
304
+
305
+ Replace `/path/to/config` with your desired configuration location.
306
+ The `CONFIG_VOLUMES` environment variable is **mandatory**.
@@ -0,0 +1,77 @@
1
+ quasarr/__init__.py,sha256=4-EVvIdDjMqidqp3xpXfcDl-fSe0J_B415ueZDAKBss,18137
2
+ quasarr/api/__init__.py,sha256=9Y_DTNYsHeimrXL3mAli8OUg0zqo7QGLF2ft40d3R-c,6822
3
+ quasarr/api/arr/__init__.py,sha256=-e7Sge8mzQCtxlixY2pEJ2p2wQ06TckaczFPUZWCz3c,17361
4
+ quasarr/api/captcha/__init__.py,sha256=oVZ6Fy7Avg5F15t1apZxljK3nFF7Wv5b5FOXQvDcON4,54492
5
+ quasarr/api/config/__init__.py,sha256=0K7zqC9dt39Ul1RIJt0zNVdh1b9ARnfC6QFPa2D9FCw,819
6
+ quasarr/api/sponsors_helper/__init__.py,sha256=kAZabPlplPYRG6Uw7ZHTk5uypualwvhs-NoTOjQhhhA,6369
7
+ quasarr/api/statistics/__init__.py,sha256=NrBAjjHkIUE95HhPUGIfNqh2IqBqJ_zm00S90Y-Qnus,7038
8
+ quasarr/downloads/__init__.py,sha256=AGZcafQG7ZKLadYaWmR0HR3lljt-l00llWw3G39Y9vA,13345
9
+ quasarr/downloads/linkcrypters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ quasarr/downloads/linkcrypters/al.py,sha256=pM3NDan8x0WU8OS1GV3HuuV4B6Nm0a-ATrVORvLHt9M,8487
11
+ quasarr/downloads/linkcrypters/filecrypt.py,sha256=GT51x_MG_hW4IpOF6OvL5r-2mTnMijI8K7_1D5Bfn4U,18884
12
+ quasarr/downloads/linkcrypters/hide.py,sha256=kMxjsYZJpC1V3jwYv9b0h4HKBIectLlgglwOmexvFXs,4107
13
+ quasarr/downloads/packages/__init__.py,sha256=Cub3ztyFYBm30HprvZl7qvfYnjaOH9FsRWDLEyCPHkE,18305
14
+ quasarr/downloads/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ quasarr/downloads/sources/al.py,sha256=Ulc4fTuX8_gOHeTJzZYEAgUCiFPoyczIdbZh6qA3jzM,26180
16
+ quasarr/downloads/sources/by.py,sha256=VzytGYyy81vjsvNJabohoK8PkjYTKCwXM1TjeD3Ker0,3695
17
+ quasarr/downloads/sources/dd.py,sha256=EQ823wrVusVCVJhh9Rdf67-Yae9XYio8Uj_HW_y5qO0,2841
18
+ quasarr/downloads/sources/dj.py,sha256=b_RR_dqd4Zc9lbZbZbwZijDkXCb42OaU7eOAI4lX9EE,214
19
+ quasarr/downloads/sources/dl.py,sha256=6EfUo3uruMabcbbwfotBAX6yX0m_xQ8_IKbPwCRFefY,7641
20
+ quasarr/downloads/sources/dt.py,sha256=fzAyJy8nmqTAFRObvaRbvsXdBkCo5JuojCJYQMYuPOs,2108
21
+ quasarr/downloads/sources/dw.py,sha256=15UH-kBZt06GS5CDi-TTJGV_H59mQO0Nl-y3nYA5kOk,2504
22
+ quasarr/downloads/sources/he.py,sha256=EZ42WIHE8rwvpvwesaWeG__1dUBq75OQzJ1n7Lgrx1g,3450
23
+ quasarr/downloads/sources/mb.py,sha256=IS5_RdACD3yterFEAj_N7RIH4TVK-VEauZqfya23hmA,1411
24
+ quasarr/downloads/sources/nk.py,sha256=qA1qIOthu-Jt93ykPzE-gvSFEfA5YSIMNDymIWD98Tc,1538
25
+ quasarr/downloads/sources/nx.py,sha256=nI0c-oM1g_EyW06_o2wFgn_jm_Zh1XMy3kbRCN0hw1E,3211
26
+ quasarr/downloads/sources/sf.py,sha256=PDBuWgJmEYmD1b-5blS3YWgrqIhJjfwz91IuiMy6rX8,6224
27
+ quasarr/downloads/sources/sj.py,sha256=d2HC52SFYXUXAr7AIaipthVvL-WpvJaD-8AuN-5Z-I8,214
28
+ quasarr/downloads/sources/sl.py,sha256=w6Mo1dphrZRlXfhBfAhFV8KcPfHINuTiFSNu3BYd46k,2851
29
+ quasarr/downloads/sources/wd.py,sha256=NOilEZIF9rumU2LMtfRfXyet3Mzn2shCs8NFCEC3CHY,3747
30
+ quasarr/downloads/sources/wx.py,sha256=lufMZYNniKWj2x2mfYsEkGw_Qqi3TWg66EgU3uP9TiI,4769
31
+ quasarr/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
+ quasarr/providers/cloudflare.py,sha256=mJxTYM7JjwIjdO6U_GyVj-dyug6XdD0-ObkYTaPtFVg,7028
33
+ quasarr/providers/html_images.py,sha256=CvJgBs_M5ziTI-ccSQheI7FC1pZWY52R9Elq5WuBwfY,46481
34
+ quasarr/providers/html_templates.py,sha256=90O9RGwlpJB7jC8NZ0ggh9aD6LNM34IRSVsHCa9vSls,7825
35
+ quasarr/providers/imdb_metadata.py,sha256=10L4kZkt6Fg0HGdNcc6KCtIQHRYEqdarLyaMVN6mT8w,4843
36
+ quasarr/providers/log.py,sha256=_g5RwtfuksARXnvryhsngzoJyFcNzj6suqd3ndqZM0Y,313
37
+ quasarr/providers/myjd_api.py,sha256=Z3PEiO3c3UfDSr4Up5rgwTAnjloWHb-H1RkJ6BLKZv8,34140
38
+ quasarr/providers/notifications.py,sha256=bohT-6yudmFnmZMc3BwCGX0n1HdzSVgQG_LDZm_38dI,4630
39
+ quasarr/providers/obfuscated.py,sha256=yJYD7fHg0_NAt38WCYwF7n2-aDwOmdECOnbByEGo0i4,270834
40
+ quasarr/providers/shared_state.py,sha256=1NUKtm9YXWPvN64By2O2OYH5ke5TmBkJSbSxiNczgtU,29849
41
+ quasarr/providers/statistics.py,sha256=cEQixYnDMDqtm5wWe40E_2ucyo4mD0n3SrfelhQi1L8,6452
42
+ quasarr/providers/version.py,sha256=f2tvL1-FUEKrswJAWmsTImJNtpXq1OcWUrNZzgOGmiE,4004
43
+ quasarr/providers/web_server.py,sha256=XPj98T-axxgotovuB-rVw1IPCkJiNdXBlEeFvM_zSlM,1432
44
+ quasarr/providers/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ quasarr/providers/sessions/al.py,sha256=mlP6SWfCY2HyOSV40uyotQ5T4eSBNYG9A5GWOEAdz-c,9589
46
+ quasarr/providers/sessions/dd.py,sha256=JdXjqmjuyY32w0cIlwphRm8Sy43EK8nEEFwyXUkEGb4,2596
47
+ quasarr/providers/sessions/dl.py,sha256=8toAHn5C9FbjHuhjfQEeKR1Fz5tRENrIgFxdjUuXCIU,5381
48
+ quasarr/providers/sessions/nx.py,sha256=qfW12AB_0nNsAoKOaSF4z0T9DCxMQleWCYf3fqJtF2A,2688
49
+ quasarr/search/__init__.py,sha256=V59LIiC75mQvasDdTjiWZRbPD1jXO1lhXlKeNVX0iOc,5726
50
+ quasarr/search/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ quasarr/search/sources/al.py,sha256=yr6wx-VcSOFYK_o3N1bepC4t6Gvt9eDvcG9fQBFg0bg,17203
52
+ quasarr/search/sources/by.py,sha256=vnE3L43V8suPhPHcn6LVxKO1e3mJaDRqIIMg2BGxr_g,7915
53
+ quasarr/search/sources/dd.py,sha256=pVpdHLZlw2CYklBf_YLkeDWbCNsDLR2iecccR2c2RyI,4889
54
+ quasarr/search/sources/dj.py,sha256=2HIdg5ddXP4DtjHlyXmuQ8QVhOPt3Hh2kL4uxhFJK-8,7074
55
+ quasarr/search/sources/dl.py,sha256=n7WYKWLLftbNL3uBcGM0n2VaTKspNLfFOTJK3YfkVXw,12375
56
+ quasarr/search/sources/dt.py,sha256=m1kQ7mC43QlWZyVIkw-OXJGjWiT9IbQuFtHWiR8CjhA,9580
57
+ quasarr/search/sources/dw.py,sha256=-daUTBTA5izeatrE7TITVlnzNCQ5HfovYMMZ8UTM-2o,7636
58
+ quasarr/search/sources/fx.py,sha256=JAyD727yDAFIP14bzfi2SkX9paysXGkQdIybShYtdko,8596
59
+ quasarr/search/sources/he.py,sha256=ieBVlpd4nRonZyocV1kDlxIjgfWspspbspLS04PDQkQ,6503
60
+ quasarr/search/sources/mb.py,sha256=owwH5T0Yh7dwYRqMVQ0ecAdDlQ5CwLwWkTcig2ePggI,7749
61
+ quasarr/search/sources/nk.py,sha256=x84zckK8eG64X3oaPHYhNbK0aoSuVW8xp_n_mlE__NI,6427
62
+ quasarr/search/sources/nx.py,sha256=JdRLA2pWS05m5_ARU-RxAoaBW-8YWEoUN2RebyD2ejo,6981
63
+ quasarr/search/sources/sf.py,sha256=3z_fvcafOh7U4D_vgq9yC8ktKeazI9fiAi96hCeXb5Q,14869
64
+ quasarr/search/sources/sj.py,sha256=JRzoCDohClmGH7aXOz82KVUt6pZsZoBDBXvwvQrAijM,7074
65
+ quasarr/search/sources/sl.py,sha256=5e5S7JvdbNOc2EthyOkfC4aTpG8O7fn4WS2O3_EXjnM,9463
66
+ quasarr/search/sources/wd.py,sha256=O02j3irSlVw2qES82g_qHuavAk-njjSRH1dHSCnOUas,7540
67
+ quasarr/search/sources/wx.py,sha256=HIGElGKoBkxBdgoYiaC70T4Y22xRUmgMzzbJpFq1cxw,12897
68
+ quasarr/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ quasarr/storage/config.py,sha256=hOI7vvIo1YaML3dtAkTmp0HSedWF6brVhRk3d8pJtXI,6300
70
+ quasarr/storage/setup.py,sha256=Gf7e125KlHsyu-hhq3uFfH7N6i7-8DDONGcYJX0haLs,18261
71
+ quasarr/storage/sqlite_database.py,sha256=yMqFQfKf0k7YS-6Z3_7pj4z1GwWSXJ8uvF4IydXsuTE,3554
72
+ quasarr-1.23.0.dist-info/licenses/LICENSE,sha256=QQFCAfDgt7lSA8oSWDHIZ9aTjFbZaBJdjnGOHkuhK7k,1060
73
+ quasarr-1.23.0.dist-info/METADATA,sha256=GKotgKKHwPXpqTHbqOyX6J0dYL36cf34DPQ5rDnWkHU,12743
74
+ quasarr-1.23.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
75
+ quasarr-1.23.0.dist-info/entry_points.txt,sha256=gXi8mUKsIqKVvn-bOc8E5f04sK_KoMCC-ty6b2Hf-jc,40
76
+ quasarr-1.23.0.dist-info/top_level.txt,sha256=dipJdaRda5ruTZkoGfZU60bY4l9dtPlmOWwxK_oGSF0,8
77
+ quasarr-1.23.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (73.0.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5