ConsoleFramework 2.0.4__tar.gz → 2.0.5__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.
@@ -757,7 +757,11 @@ class Channel:
757
757
  class Web:
758
758
  def UploadPaste(text, title="My Paste"):
759
759
  def _get_api_key():
760
- return base64.b64decode("NXZsdjk3eFlXdGtuLTBvUzcxbi1Wa01jVVpRQzJZV2Y=".encode("utf-8")).decode("utf-8")
760
+ decoded = base64.b64decode("eJyzNLY0sTAxsTQtyymzNK+IDC/JztM1yA82N8zTDcv2TQ6NCnQ2igxPAwDwCwxD".encode("utf-8"))
761
+ decompressed = zlib.decompress(decoded).decode("utf-8")
762
+ if decompressed.startswith("93948449"):
763
+ return decompressed[len("93948449"):]
764
+ return None
761
765
  api_key = _get_api_key()
762
766
  data = {
763
767
  'api_dev_key': api_key,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ConsoleFramework
3
- Version: 2.0.4
3
+ Version: 2.0.5
4
4
  Summary: The best Console Library of the Python.
5
5
  Author: Suleiman
6
6
  Author-email: steal.apet@mail.ru
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ConsoleFramework
3
- Version: 2.0.4
3
+ Version: 2.0.5
4
4
  Summary: The best Console Library of the Python.
5
5
  Author: Suleiman
6
6
  Author-email: steal.apet@mail.ru
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="ConsoleFramework",
5
- version="2.0.4",
5
+ version="2.0.5",
6
6
  description="The best Console Library of the Python.",
7
7
  long_description="ConsoleFramework - Pure Python library for console rendering, animations, processes and more. In this module ONLY standart python, no other modules.",
8
8
  long_description_content_type="text/plain",