Skip to content

Commit 5b532a8

Browse files
chore: removed PoW challenge
1 parent c014a65 commit 5b532a8

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

flix_cli/core/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__core__ = "1.7.11.6"
1+
__core__ = "1.7.11.7"

flix_cli/core/utils/__decryptor__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def solve_challenge(challenge_response):
3535

3636
def decrypt_stream_url(embed_link, quality=None, subs_language="english"):
3737
# Get challenge
38+
"""
3839
challenge_response = client.get(f"{API_URL}/challenge")
3940
4041
if not challenge_response.text:
@@ -44,12 +45,13 @@ def decrypt_stream_url(embed_link, quality=None, subs_language="english"):
4445
payload, signature, nonce = solve_challenge(challenge_response.text)
4546
4647
print(f"Challenge solved - nonce: {nonce}", file=sys.stderr)
47-
48+
"""
49+
4850
params = {
4951
"url": embed_link,
50-
"payload": payload,
51-
"signature": signature,
52-
"nonce": nonce
52+
#"payload": payload,
53+
#"signature": signature,
54+
#"nonce": nonce
5355
}
5456

5557
response = client.get(API_URL, params=params)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "flix-cli"
7-
version = "1.7.11.6"
7+
version = "1.7.11.7"
88
description = "A high efficient, powerful and fast movie scraper."
99
authors = ["DemonKingSwarn <rockingswarn@gmail.com>"]
1010
license = "GPLv3"

0 commit comments

Comments
 (0)