quasarr 1.20.6__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 (72) hide show
  1. quasarr/__init__.py +460 -0
  2. quasarr/api/__init__.py +187 -0
  3. quasarr/api/arr/__init__.py +373 -0
  4. quasarr/api/captcha/__init__.py +1075 -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 +267 -0
  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 +467 -0
  14. quasarr/downloads/sources/__init__.py +0 -0
  15. quasarr/downloads/sources/al.py +697 -0
  16. quasarr/downloads/sources/by.py +106 -0
  17. quasarr/downloads/sources/dd.py +76 -0
  18. quasarr/downloads/sources/dj.py +7 -0
  19. quasarr/downloads/sources/dt.py +66 -0
  20. quasarr/downloads/sources/dw.py +65 -0
  21. quasarr/downloads/sources/he.py +112 -0
  22. quasarr/downloads/sources/mb.py +47 -0
  23. quasarr/downloads/sources/nk.py +51 -0
  24. quasarr/downloads/sources/nx.py +105 -0
  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/providers/__init__.py +0 -0
  30. quasarr/providers/cloudflare.py +204 -0
  31. quasarr/providers/html_images.py +20 -0
  32. quasarr/providers/html_templates.py +241 -0
  33. quasarr/providers/imdb_metadata.py +142 -0
  34. quasarr/providers/log.py +19 -0
  35. quasarr/providers/myjd_api.py +917 -0
  36. quasarr/providers/notifications.py +124 -0
  37. quasarr/providers/obfuscated.py +51 -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/nx.py +76 -0
  42. quasarr/providers/shared_state.py +826 -0
  43. quasarr/providers/statistics.py +154 -0
  44. quasarr/providers/version.py +118 -0
  45. quasarr/providers/web_server.py +49 -0
  46. quasarr/search/__init__.py +153 -0
  47. quasarr/search/sources/__init__.py +0 -0
  48. quasarr/search/sources/al.py +448 -0
  49. quasarr/search/sources/by.py +203 -0
  50. quasarr/search/sources/dd.py +135 -0
  51. quasarr/search/sources/dj.py +213 -0
  52. quasarr/search/sources/dt.py +265 -0
  53. quasarr/search/sources/dw.py +214 -0
  54. quasarr/search/sources/fx.py +223 -0
  55. quasarr/search/sources/he.py +196 -0
  56. quasarr/search/sources/mb.py +195 -0
  57. quasarr/search/sources/nk.py +188 -0
  58. quasarr/search/sources/nx.py +197 -0
  59. quasarr/search/sources/sf.py +374 -0
  60. quasarr/search/sources/sj.py +213 -0
  61. quasarr/search/sources/sl.py +246 -0
  62. quasarr/search/sources/wd.py +208 -0
  63. quasarr/storage/__init__.py +0 -0
  64. quasarr/storage/config.py +163 -0
  65. quasarr/storage/setup.py +458 -0
  66. quasarr/storage/sqlite_database.py +80 -0
  67. quasarr-1.20.6.dist-info/METADATA +304 -0
  68. quasarr-1.20.6.dist-info/RECORD +72 -0
  69. quasarr-1.20.6.dist-info/WHEEL +5 -0
  70. quasarr-1.20.6.dist-info/entry_points.txt +2 -0
  71. quasarr-1.20.6.dist-info/licenses/LICENSE +21 -0
  72. quasarr-1.20.6.dist-info/top_level.txt +1 -0
@@ -0,0 +1,304 @@
1
+ Metadata-Version: 2.4
2
+ Name: quasarr
3
+ Version: 1.20.6
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
+ ghcr.io/rix1337/quasarr:latest
155
+ ```
156
+
157
+ * `INTERNAL_ADDRESS` is required so Radarr/Sonarr/LazyLibrarian can reach Quasarr. **Must** include port!
158
+ * `EXTERNAL_ADDRESS` is optional and helpful if using a reverse proxy. Always protect external access with basic auth!
159
+ * `DISCORD` is optional and must be a valid Discord webhook URL.
160
+ * `HOSTNAMES` is optional and allows skipping the manual hostname step during setup.
161
+ * Must be a publicly available `HTTP` or `HTTPs` link
162
+ * Must be a raw `.ini` / text file (not HTML or JSON)
163
+ * Must contain at least one valid Hostname per line `ab = xyz`
164
+ * `SILENT` is optional and silences all discord notifications except for error messages from SponsorsHelper if `True`.
165
+ * `DEBUG` is optional and enables debug logging if `True`.
166
+
167
+ # Manual setup
168
+
169
+ Use this only in case you can't run the docker image.
170
+
171
+ `pip install quasarr`
172
+
173
+ * Requires Python 3.12 or later
174
+ * Requires [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr)
175
+ * Requires [JDownloader 2](https://jdownloader.org/download/index) with [My JDownloader](https://my.jdownloader.org/)
176
+
177
+ ```
178
+ --port=8080
179
+ --discord=https://discord.com/api/webhooks/1234567890/ABCDEFGHIJKLMN
180
+ --external_address=https://foo.bar/
181
+ --hostnames=https://pastebin.com/raw/eX4Mpl3
182
+ ```
183
+
184
+ * `--discord` see `DISCORD`docker variable
185
+ * `--external_address` see `EXTERNAL_ADDRESS`docker variable
186
+ * `--hostnames` see `HOSTNAMES`docker variable
187
+
188
+ # Philosophy
189
+
190
+ Complexity is the killer of small projects like this one. It must be fought at all cost!
191
+
192
+ We will not waste precious time on features that will slow future development cycles down.
193
+ Most feature requests can be satisfied by:
194
+
195
+ - Existing settings in Radarr/Sonarr/LazyLibrarian
196
+ - Existing settings in JDownloader
197
+ - Existing tools from the *arr ecosystem that integrate directly with Radarr/Sonarr/LazyLibrarian
198
+
199
+ # Roadmap
200
+
201
+ - Assume there are zero known
202
+ issues [unless you find one or more open issues in this repository](https://github.com/rix1337/Quasarr/issues).
203
+ - Still having an issue? Provide a detailed report [here](https://github.com/rix1337/Quasarr/issues/new/choose)!
204
+ - There are no hostname integrations in active development unless you see an open pull request
205
+ [here](https://github.com/rix1337/Quasarr/pulls).
206
+ - Pull requests are welcome. Especially for popular hostnames.
207
+ - Always reach out on Discord before starting work on a new feature to prevent waste of time.
208
+ - Please follow the existing code style and project structure.
209
+ - Anti-bot measures must be circumvented fully by Quasarr. Thus you will need to provide a working solution for new
210
+ CAPTCHA types by integrating it in the Quasarr Web UI.
211
+ - Please provide proof of functionality (screenshots/examples) when submitting your pull request.
212
+
213
+ # SponsorsHelper
214
+
215
+ <img src="https://imgur.com/iHBqLwT.png" width="64" height="64" />
216
+
217
+ SponsorsHelper is a Docker image that solves CAPTCHAs and decrypts links for Quasarr.
218
+ Image access is limited to [active monthly GitHub sponsors](https://github.com/users/rix1337/sponsorship).
219
+
220
+ [![Github Sponsorship](https://img.shields.io/badge/support-me-red.svg)](https://github.com/users/rix1337/sponsorship)
221
+
222
+ ---
223
+
224
+ ## 🔑 GitHub Token Setup
225
+
226
+ 1. Start your [sponsorship](https://github.com/users/rix1337/sponsorship) first.
227
+ 2. Open [GitHub Classic Token Settings](https://github.com/settings/tokens/new?type=classic)
228
+ 3. Name it (e.g., `SponsorsHelper`) and choose unlimited expiration
229
+ 4. Enable these scopes:
230
+ - `read:packages`
231
+ - `read:user`
232
+ - `read:org`
233
+ 5. Click **Generate token** and copy it for the next steps
234
+
235
+ ---
236
+
237
+ ## 🐋 Docker Login
238
+
239
+ ```bash
240
+ echo "GITHUB_TOKEN" | docker login ghcr.io -u USERNAME --password-stdin
241
+ ````
242
+
243
+ * `USERNAME` → your GitHub username
244
+ * `GITHUB_TOKEN` → the token you just created
245
+
246
+ ---
247
+
248
+ ⚠️ **Before logging in, the image will not download.**
249
+
250
+ ---
251
+
252
+ ## ▶️ Run SponsorsHelper
253
+
254
+ ```bash
255
+ docker run -d \
256
+ --name='SponsorsHelper' \
257
+ -e 'QUASARR_URL'='http://192.168.0.1:8080' \
258
+ -e 'DEATHBYCAPTCHA_TOKEN'='2FMum5zuDBxMmbXDIsADnllEFl73bomydIpzo7...' \
259
+ -e 'GITHUB_TOKEN'='ghp_123.....456789' \
260
+ -e 'FLARESOLVERR_URL'='http://10.10.0.1:8191/v1' \
261
+ -e 'NX_USER'='your_nx_username' \
262
+ -e 'NX_PASS'='your_nx_password' \
263
+ -e 'JUNKIES_USER'='your_junkies_username' \
264
+ -e 'JUNKIES_PASS'='your_junkies_password' \
265
+ -e 'JUNKIES_HOSTER'='your_desired_hoster' \
266
+ ghcr.io/rix1337-sponsors/docker/helper:latest
267
+ ```
268
+
269
+ ### Required Parameters
270
+
271
+ * `QUASARR_URL` → Local URL of Quasarr
272
+ * `DEATHBYCAPTCHA_TOKEN` → [DeathByCaptcha](https://deathbycaptcha.com/register?refid=6184288242b) account token
273
+ * `GITHUB_TOKEN` → Classic GitHub PAT with the scopes listed above
274
+ * `FLARESOLVERR_URL` → Local URL of [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) - required!
275
+ * `NX_USER` / `NX_PASS` → NX account credentials
276
+ * `JUNKIES_USER` / `JUNKIES_PASS` → Junkies account credentials
277
+ * `JUNKIES_HOSTER` → Preferred hoster for Junkies links
278
+ ---
279
+
280
+ ⚠️ **Without a valid GitHub token linked to an active sponsorship, the image will not run.**
281
+
282
+ ---
283
+
284
+ # Development Setup for Pull Requests
285
+
286
+ To test your changes before submitting a pull request:
287
+
288
+ **Run Quasarr with the `--internal_address` parameter:**
289
+
290
+ ```bash
291
+ python Quasarr.py --internal_address=http://<host-ip>:<port>
292
+ ```
293
+
294
+ Replace `<host-ip>` and `<port>` with the scheme, IP, and port of your host machine.
295
+ The `--internal_address` parameter is **mandatory**.
296
+
297
+ **Start the required services using the `dev-services-compose.yml` file:**
298
+
299
+ ```bash
300
+ CONFIG_VOLUMES=/path/to/config docker-compose -f docker/dev-services-compose.yml up
301
+ ```
302
+
303
+ Replace `/path/to/config` with your desired configuration location.
304
+ The `CONFIG_VOLUMES` environment variable is **mandatory**.
@@ -0,0 +1,72 @@
1
+ quasarr/__init__.py,sha256=_WoDFvqXXilQynsiPrY-SXyADy1OwhAjQkdaJFqqHo0,17873
2
+ quasarr/api/__init__.py,sha256=9Y_DTNYsHeimrXL3mAli8OUg0zqo7QGLF2ft40d3R-c,6822
3
+ quasarr/api/arr/__init__.py,sha256=HrzyavxsCmQkdV2SMqQSoJq3KgrsPBnQJdo5iyovmG8,16626
4
+ quasarr/api/captcha/__init__.py,sha256=2qlcJn_Kp_PWP8-_MJvIlPkRlZitH4B58QbdcFZ6xqU,49765
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=2jveOXh165lb-W1CesdS_CVDlrtDV66Gx11OMGTHPXI,11254
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=Y2I1msa_1FeOc5cdFojx49-GtP68wuX8ud1R3hgYLwQ,17833
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/dt.py,sha256=fzAyJy8nmqTAFRObvaRbvsXdBkCo5JuojCJYQMYuPOs,2108
20
+ quasarr/downloads/sources/dw.py,sha256=15UH-kBZt06GS5CDi-TTJGV_H59mQO0Nl-y3nYA5kOk,2504
21
+ quasarr/downloads/sources/he.py,sha256=EZ42WIHE8rwvpvwesaWeG__1dUBq75OQzJ1n7Lgrx1g,3450
22
+ quasarr/downloads/sources/mb.py,sha256=IS5_RdACD3yterFEAj_N7RIH4TVK-VEauZqfya23hmA,1411
23
+ quasarr/downloads/sources/nk.py,sha256=rFdAf9ewfl5ELIFtlZWQ8Z3VjyCSxGwLX92szzwjvz0,1429
24
+ quasarr/downloads/sources/nx.py,sha256=nI0c-oM1g_EyW06_o2wFgn_jm_Zh1XMy3kbRCN0hw1E,3211
25
+ quasarr/downloads/sources/sf.py,sha256=PDBuWgJmEYmD1b-5blS3YWgrqIhJjfwz91IuiMy6rX8,6224
26
+ quasarr/downloads/sources/sj.py,sha256=d2HC52SFYXUXAr7AIaipthVvL-WpvJaD-8AuN-5Z-I8,214
27
+ quasarr/downloads/sources/sl.py,sha256=w6Mo1dphrZRlXfhBfAhFV8KcPfHINuTiFSNu3BYd46k,2851
28
+ quasarr/downloads/sources/wd.py,sha256=NOilEZIF9rumU2LMtfRfXyet3Mzn2shCs8NFCEC3CHY,3747
29
+ quasarr/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ quasarr/providers/cloudflare.py,sha256=mJxTYM7JjwIjdO6U_GyVj-dyug6XdD0-ObkYTaPtFVg,7028
31
+ quasarr/providers/html_images.py,sha256=ZvSzG5Mbjol1I_exFHcb4BZ2eUQ3CqquY_MwRBlr-HU,45609
32
+ quasarr/providers/html_templates.py,sha256=90O9RGwlpJB7jC8NZ0ggh9aD6LNM34IRSVsHCa9vSls,7825
33
+ quasarr/providers/imdb_metadata.py,sha256=10L4kZkt6Fg0HGdNcc6KCtIQHRYEqdarLyaMVN6mT8w,4843
34
+ quasarr/providers/log.py,sha256=_g5RwtfuksARXnvryhsngzoJyFcNzj6suqd3ndqZM0Y,313
35
+ quasarr/providers/myjd_api.py,sha256=vPiX-kOQk19ugciefw9wm_hw8djbT4o-Gk9w2XEBeI4,32707
36
+ quasarr/providers/notifications.py,sha256=bohT-6yudmFnmZMc3BwCGX0n1HdzSVgQG_LDZm_38dI,4630
37
+ quasarr/providers/obfuscated.py,sha256=YydQJHrZ485pHaXK0DHHRW3eLZygGr6c0xnUKD6mcCE,236502
38
+ quasarr/providers/shared_state.py,sha256=4nswf5AuA4c1DWqSXsX0HXwlDt5e-UUUvQSy-vryCRE,28987
39
+ quasarr/providers/statistics.py,sha256=cEQixYnDMDqtm5wWe40E_2ucyo4mD0n3SrfelhQi1L8,6452
40
+ quasarr/providers/version.py,sha256=s7OycnwHJBVjgzHA8VIL2rEnfGl3qysb3Ybeq-XhQFs,4004
41
+ quasarr/providers/web_server.py,sha256=XPj98T-axxgotovuB-rVw1IPCkJiNdXBlEeFvM_zSlM,1432
42
+ quasarr/providers/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ quasarr/providers/sessions/al.py,sha256=mlP6SWfCY2HyOSV40uyotQ5T4eSBNYG9A5GWOEAdz-c,9589
44
+ quasarr/providers/sessions/dd.py,sha256=JdXjqmjuyY32w0cIlwphRm8Sy43EK8nEEFwyXUkEGb4,2596
45
+ quasarr/providers/sessions/nx.py,sha256=qfW12AB_0nNsAoKOaSF4z0T9DCxMQleWCYf3fqJtF2A,2688
46
+ quasarr/search/__init__.py,sha256=yDk_Mx4QEBLODqfFZaRBfbiOGlntuVb22VN63EJdRrk,5367
47
+ quasarr/search/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ quasarr/search/sources/al.py,sha256=yr6wx-VcSOFYK_o3N1bepC4t6Gvt9eDvcG9fQBFg0bg,17203
49
+ quasarr/search/sources/by.py,sha256=OPoAqS5kSSNrRVsPlALhX59h3lEZWGA7LlFfL4vH2-o,7914
50
+ quasarr/search/sources/dd.py,sha256=pVpdHLZlw2CYklBf_YLkeDWbCNsDLR2iecccR2c2RyI,4889
51
+ quasarr/search/sources/dj.py,sha256=2HIdg5ddXP4DtjHlyXmuQ8QVhOPt3Hh2kL4uxhFJK-8,7074
52
+ quasarr/search/sources/dt.py,sha256=m1kQ7mC43QlWZyVIkw-OXJGjWiT9IbQuFtHWiR8CjhA,9580
53
+ quasarr/search/sources/dw.py,sha256=-daUTBTA5izeatrE7TITVlnzNCQ5HfovYMMZ8UTM-2o,7636
54
+ quasarr/search/sources/fx.py,sha256=JAyD727yDAFIP14bzfi2SkX9paysXGkQdIybShYtdko,8596
55
+ quasarr/search/sources/he.py,sha256=ieBVlpd4nRonZyocV1kDlxIjgfWspspbspLS04PDQkQ,6503
56
+ quasarr/search/sources/mb.py,sha256=owwH5T0Yh7dwYRqMVQ0ecAdDlQ5CwLwWkTcig2ePggI,7749
57
+ quasarr/search/sources/nk.py,sha256=x84zckK8eG64X3oaPHYhNbK0aoSuVW8xp_n_mlE__NI,6427
58
+ quasarr/search/sources/nx.py,sha256=JdRLA2pWS05m5_ARU-RxAoaBW-8YWEoUN2RebyD2ejo,6981
59
+ quasarr/search/sources/sf.py,sha256=3z_fvcafOh7U4D_vgq9yC8ktKeazI9fiAi96hCeXb5Q,14869
60
+ quasarr/search/sources/sj.py,sha256=JRzoCDohClmGH7aXOz82KVUt6pZsZoBDBXvwvQrAijM,7074
61
+ quasarr/search/sources/sl.py,sha256=5e5S7JvdbNOc2EthyOkfC4aTpG8O7fn4WS2O3_EXjnM,9463
62
+ quasarr/search/sources/wd.py,sha256=O02j3irSlVw2qES82g_qHuavAk-njjSRH1dHSCnOUas,7540
63
+ quasarr/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ quasarr/storage/config.py,sha256=a0JAeiSqMQYBvfZTyYtOxDZvuLGP5lZhMHb7nX9azPc,6130
65
+ quasarr/storage/setup.py,sha256=gpHOsc5qtt-M72saZoMJFLE2YlCrjv7FWZknh-iVKsk,17766
66
+ quasarr/storage/sqlite_database.py,sha256=yMqFQfKf0k7YS-6Z3_7pj4z1GwWSXJ8uvF4IydXsuTE,3554
67
+ quasarr-1.20.6.dist-info/licenses/LICENSE,sha256=QQFCAfDgt7lSA8oSWDHIZ9aTjFbZaBJdjnGOHkuhK7k,1060
68
+ quasarr-1.20.6.dist-info/METADATA,sha256=KM8CX4K4GWZVaWO_tpnv094gIERHHBHt4Tka55TDFKs,12653
69
+ quasarr-1.20.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
70
+ quasarr-1.20.6.dist-info/entry_points.txt,sha256=gXi8mUKsIqKVvn-bOc8E5f04sK_KoMCC-ty6b2Hf-jc,40
71
+ quasarr-1.20.6.dist-info/top_level.txt,sha256=dipJdaRda5ruTZkoGfZU60bY4l9dtPlmOWwxK_oGSF0,8
72
+ quasarr-1.20.6.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ quasarr = quasarr:run
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 RiX
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ quasarr