quasarr 2.4.6__py3-none-any.whl → 2.4.7__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.

quasarr/__init__.py CHANGED
@@ -212,7 +212,7 @@ def run():
212
212
 
213
213
  print('Setup instructions: "https://github.com/rix1337/Quasarr?tab=readme-ov-file#instructions"')
214
214
  print(f'URL: "{shared_state.values['internal_address']}"')
215
- print(f'API key: "{api_key}" (without quotes)')
215
+ print(f'API Key: "{api_key}" (without quotes)')
216
216
 
217
217
  if external_address != internal_address:
218
218
  print(f'External URL: "{shared_state.values["external_address"]}"')
quasarr/api/__init__.py CHANGED
@@ -175,7 +175,7 @@ def get_api(shared_state_dict, shared_state_lock):
175
175
  </div>
176
176
 
177
177
  <p style="margin-top: 15px;">
178
- {render_button("Regenerate API key", "secondary", {"onclick": "confirmRegenerateApiKey()"})}
178
+ {render_button("Regenerate API Key", "secondary", {"onclick": "confirmRegenerateApiKey()"})}
179
179
  </p>
180
180
  </div>
181
181
  </details>
@@ -440,7 +440,7 @@ def get_api(shared_state_dict, shared_state_lock):
440
440
  if (copyKeyBtn) {{
441
441
  copyKeyBtn.onclick = function() {{
442
442
  copyToClipboard(apiInput.value, copyKeyBtn, function() {{
443
- // Re-hide the API key after copying
443
+ // Re-hide the API Key after copying
444
444
  apiInput.type = 'password';
445
445
  toggleBtn.innerText = 'Show';
446
446
  }});
@@ -462,8 +462,8 @@ def get_api(shared_state_dict, shared_state_lock):
462
462
 
463
463
  function confirmRegenerateApiKey() {{
464
464
  showModal(
465
- 'Regenerate API key?',
466
- 'Are you sure you want to regenerate the API key? This will invalidate the current key.',
465
+ 'Regenerate API Key?',
466
+ 'Are you sure you want to regenerate the API Key? This will invalidate the current key.',
467
467
  `<button class="btn-secondary" onclick="closeModal()">Cancel</button>
468
468
  <button class="btn-primary" onclick="location.href='/regenerate-api-key'">Regenerate</button>`
469
469
  );
@@ -477,6 +477,6 @@ def get_api(shared_state_dict, shared_state_lock):
477
477
  @app.get('/regenerate-api-key')
478
478
  def regenerate_api_key():
479
479
  shared_state.generate_api_key()
480
- return render_success(f'API key replaced!', 5)
480
+ return render_success(f'API Key replaced!', 5)
481
481
 
482
482
  Server(app, listen='0.0.0.0', port=shared_state.values["port"]).serve_forever()
quasarr/providers/auth.py CHANGED
@@ -319,9 +319,9 @@ def require_api_key(func):
319
319
  def decorated(*args, **kwargs):
320
320
  api_key = Config('API').get('key')
321
321
  if not request.query.apikey:
322
- return abort(401, "Missing API key")
322
+ return abort(401, "Missing API Key")
323
323
  if request.query.apikey != api_key:
324
- return abort(403, "Invalid API key")
324
+ return abort(403, "Invalid API Key")
325
325
  return func(*args, **kwargs)
326
326
 
327
327
  return decorated
@@ -75,7 +75,7 @@ def set_files(config_path):
75
75
  def generate_api_key():
76
76
  api_key = os.urandom(32).hex()
77
77
  Config('API').save("key", api_key)
78
- info(f'API key replaced with: "{api_key}!"')
78
+ info(f'API Key replaced with: "{api_key}!"')
79
79
  return api_key
80
80
 
81
81
 
@@ -5,7 +5,7 @@
5
5
  import re
6
6
  import sys
7
7
 
8
- __version__ = "2.4.6"
8
+ __version__ = "2.4.7"
9
9
 
10
10
 
11
11
  def get_version():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quasarr
3
- Version: 2.4.6
3
+ Version: 2.4.7
4
4
  Summary: Quasarr connects JDownloader with Radarr, Sonarr and LazyLibrarian. It also decrypts links protected by CAPTCHAs.
5
5
  Author-email: rix1337 <rix1337@users.noreply.github.com>
6
6
  License-File: LICENSE
@@ -281,7 +281,7 @@ Image access is limited to [active monthly GitHub sponsors](https://github.com/u
281
281
  3. Copy the **API Key** value
282
282
  4. Use this value for the `QUASARR_API_KEY` environment variable
283
283
 
284
- > **Note:** The API key is required for SponsorsHelper to communicate securely with Quasarr. Without it, all requests
284
+ > **Note:** The API Key is required for SponsorsHelper to communicate securely with Quasarr. Without it, all requests
285
285
  > will be rejected with a 401/403 error.
286
286
 
287
287
  ---
@@ -320,7 +320,7 @@ docker run -d \
320
320
  | Parameter | Description |
321
321
  |---------------------------------|---------------------------------------------------------------------------------------|
322
322
  | `QUASARR_URL` | Local URL of Quasarr (e.g., `http://192.168.0.1:8080`) |
323
- | `QUASARR_API_KEY` | Your Quasarr API key (found in Quasarr web UI under "API Settings") |
323
+ | `QUASARR_API_KEY` | Your Quasarr API Key (found in Quasarr web UI under "API Settings") |
324
324
  | `DEATHBYCAPTCHA_TOKEN` | [DeathByCaptcha](https://deathbycaptcha.com/register?refid=6184288242b) account token |
325
325
  | `GITHUB_TOKEN` | Classic GitHub PAT with the scopes listed above |
326
326
  | `FLARESOLVERR_URL` | Local URL of [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) |
@@ -1,5 +1,5 @@
1
- quasarr/__init__.py,sha256=CU4S8Kb1RpzePtFoS2tpOj1S6wDaTZeg7TmkmwejA24,16108
2
- quasarr/api/__init__.py,sha256=kFePULH7xR--gAD73DS1J9V4q5s3On5da4NzupHgkaY,19743
1
+ quasarr/__init__.py,sha256=q_r-8vt1z7bQFok1h3ZIN_FYXuTxN_mxjqhYFFW9DOo,16108
2
+ quasarr/api/__init__.py,sha256=bo3YmAteYKTGBAfwuBusNG4YTDpNo2a9kfbyy1Le8Do,19743
3
3
  quasarr/api/arr/__init__.py,sha256=eEop8A5t936uT5azn4qz0bq1DMX84_Ja16wyleGFhyM,18495
4
4
  quasarr/api/captcha/__init__.py,sha256=GDuhmoAkwEqZdlpnf7LP_TdsBtPaV4MKnvJueo5ARaQ,73705
5
5
  quasarr/api/config/__init__.py,sha256=q-7vK5YULrSDgTicho--bNK8aAhcbzCdhhNwEwUEwWg,14173
@@ -30,7 +30,7 @@ quasarr/downloads/sources/sl.py,sha256=zhU3C172IwyfrVmFSwZ34PywERHJFk0ownT2gbpUA
30
30
  quasarr/downloads/sources/wd.py,sha256=pZrLnRvVFzsZTWTIcHLCnUlSz5Y6HmEJpqcZjDigx2E,4820
31
31
  quasarr/downloads/sources/wx.py,sha256=jk_RSKKPa8iDPXfXKERG_4NwRMkFV6_rJhJ-zZlNQuo,6855
32
32
  quasarr/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- quasarr/providers/auth.py,sha256=ve89PgDGmDCRvzE8XS29gcuGO2KgTdK0aX5627prnYI,10536
33
+ quasarr/providers/auth.py,sha256=hVvLUaj5Rk90wzAWM9ORIS9HuTEz0lAoaQ-xIxABQAU,10536
34
34
  quasarr/providers/cloudflare.py,sha256=oUDR7OQ8E-8vCtagZLnIS2ZZV3ERffhxmW0njKKbtf0,7867
35
35
  quasarr/providers/hostname_issues.py,sha256=9PJFIosLB-bMTmgWlR5-sYAmcyps7TDoSYjoL9cw9TE,1460
36
36
  quasarr/providers/html_images.py,sha256=G3tttyGbsV-IR8qIS9NUMX2J0-onxNUplcon70-YDWQ,19755
@@ -41,10 +41,10 @@ quasarr/providers/log.py,sha256=_g5RwtfuksARXnvryhsngzoJyFcNzj6suqd3ndqZM0Y,313
41
41
  quasarr/providers/myjd_api.py,sha256=Z3PEiO3c3UfDSr4Up5rgwTAnjloWHb-H1RkJ6BLKZv8,34140
42
42
  quasarr/providers/notifications.py,sha256=hMMAKKXTi_MCEJKaTWdTq7cGkY4z-wIFx_x1sH5P6hA,4811
43
43
  quasarr/providers/obfuscated.py,sha256=EYm_7SfdJd9ae_m4HZgY9ruDXC5J9hb4KEV_WAnk-ms,2275588
44
- quasarr/providers/shared_state.py,sha256=AVSLg8jgAwwW1d7q_dmvuODI3h40Bi6cjHHzf6y5uFY,30647
44
+ quasarr/providers/shared_state.py,sha256=1kCrwnYJ_D8ldXTn99CBqPsSzQH6hFJCkg_VVOsXz9c,30647
45
45
  quasarr/providers/statistics.py,sha256=ne8O3hLmIAsLvoOTczijqSV0uirUTS2KgcfYIsOXshQ,8021
46
46
  quasarr/providers/utils.py,sha256=mcUPbcXMsLmrYv0CTZO5a9aOt2-JLyL3SZxu6N8OyjU,12075
47
- quasarr/providers/version.py,sha256=43-z96H9QdDR-KncIhgQxVLxrE9HZmeE0hG_gIRK3d0,4196
47
+ quasarr/providers/version.py,sha256=IyI9L36WQw_sr3f6NlqskDf-_FwzO0jSjr99zfOgMbM,4196
48
48
  quasarr/providers/web_server.py,sha256=M1dGcEg_VuYpjcpGIrJS4WryCLiPQrCdtTUOlc9zlAI,1728
49
49
  quasarr/providers/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
50
  quasarr/providers/sessions/al.py,sha256=AQ59vVU7uQSuwZLNppNsZAFvpow3zcxQ29dirPbyYc4,13432
@@ -74,8 +74,8 @@ quasarr/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
74
  quasarr/storage/config.py,sha256=SSTgIce2FVYoVTK_6OCU3msknhxuLA3EC4Kcrrf_dxQ,6378
75
75
  quasarr/storage/setup.py,sha256=Vy8YEL85KrNZdrXIuXKUj2hLBNn_JQ9onC6oP06Xq1g,48613
76
76
  quasarr/storage/sqlite_database.py,sha256=yMqFQfKf0k7YS-6Z3_7pj4z1GwWSXJ8uvF4IydXsuTE,3554
77
- quasarr-2.4.6.dist-info/METADATA,sha256=jcSnYW01VsjT-_cx9tHhyBJoVxy-re2_fLy4WWgmYN4,14669
78
- quasarr-2.4.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
79
- quasarr-2.4.6.dist-info/entry_points.txt,sha256=gXi8mUKsIqKVvn-bOc8E5f04sK_KoMCC-ty6b2Hf-jc,40
80
- quasarr-2.4.6.dist-info/licenses/LICENSE,sha256=QQFCAfDgt7lSA8oSWDHIZ9aTjFbZaBJdjnGOHkuhK7k,1060
81
- quasarr-2.4.6.dist-info/RECORD,,
77
+ quasarr-2.4.7.dist-info/METADATA,sha256=A0t_-pSWHQYQbs_fCrkjGC0dsZZz2K6XTI4_c3GHHqI,14669
78
+ quasarr-2.4.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
79
+ quasarr-2.4.7.dist-info/entry_points.txt,sha256=gXi8mUKsIqKVvn-bOc8E5f04sK_KoMCC-ty6b2Hf-jc,40
80
+ quasarr-2.4.7.dist-info/licenses/LICENSE,sha256=QQFCAfDgt7lSA8oSWDHIZ9aTjFbZaBJdjnGOHkuhK7k,1060
81
+ quasarr-2.4.7.dist-info/RECORD,,