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.
- {consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework/__init__.py +5 -1
- {consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework.egg-info/PKG-INFO +1 -1
- {consoleframework-2.0.4 → consoleframework-2.0.5}/PKG-INFO +1 -1
- {consoleframework-2.0.4 → consoleframework-2.0.5}/setup.py +1 -1
- {consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework.egg-info/SOURCES.txt +0 -0
- {consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework.egg-info/dependency_links.txt +0 -0
- {consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework.egg-info/not-zip-safe +0 -0
- {consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework.egg-info/top_level.txt +0 -0
- {consoleframework-2.0.4 → consoleframework-2.0.5}/LICENSE +0 -0
- {consoleframework-2.0.4 → consoleframework-2.0.5}/setup.cfg +0 -0
|
@@ -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
|
-
|
|
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,
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="ConsoleFramework",
|
|
5
|
-
version="2.0.
|
|
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",
|
|
File without changes
|
{consoleframework-2.0.4 → consoleframework-2.0.5}/ConsoleFramework.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|