-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJskPy.py
189 lines (172 loc) · 5.11 KB
/
JskPy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
from os import rename
from os import system as shell_execute
from sys import platform, executable
__name__ = "\x4a\x73\x6b\x50\x79\x2e\x70\x79"
__description__ = "Jsk Troll's Python toolkit to handle both Python and system packages + additional helpful functions ;) "
if not __name__ in __file__:
rename(__file__, __name__)
message = "Try again."
raise Exception(message)
def shell_response(command):
from os import popen
output = popen(command).read()
error = not output
if error: # if output gives error message
from sys import stdout
stdout.write("\033[F\033[K") # clear error message
stdout.flush() # makes sure error message is cleared
return output
if "linux" in platform:
isTermux = shell_response("termux-info")
if isTermux:
platform = "termux"
def encodeUrl(url):
encodingDict = {
"%": "%25",
" ": "%20",
"!": "%21",
'"': "%22",
"#": "%23",
"$": "%24",
"&": "%26",
"'": "%27",
"(": "%28",
")": "%29",
"*": "%2A",
"+": "%2B",
",": "%2C",
"-": "%2D",
".": "%2E",
"/": "%2F",
":": "%3A",
";": "%3B",
"<": "%3C",
"=": "%3D",
">": "%3E",
"?": "%3F",
"@": "%40",
"[": "%5B",
"\\": "%5C",
"]": "%5D",
"^": "%5E",
"_": "%5F",
"{": "%7B",
"|": "%7C",
"}": "%7D",
"~": "%7E"
}
for char in encodingDict:
url = url.replace(char, encodingDict[char])
return url
def best_match(keyword, data):
# checking arguments
if type(keyword)!=str:
message = "<keyword> argument should be string. Passed :", type(keyword)
raise TypeError(message)
if not type(data) in [list, set, tuple]:
message = "<data> argument should be an iterable type. Passed :", type(data)
raise TypeError(message)
#####
keywords = keyword.split()
matches = dict()
title_index = 0
for title in data:
checker = 0
for word in keywords:
if word.casefold() in title.casefold():
checker += 1
if len(keywords)==checker:
matches[title_index] = len(title)
title_index += 1
if len(matches)==0:
return None
filtered = {k: v for k, v in sorted(matches.items(), key=lambda item: item[1])}
for index in filtered:
return index
break
class yella:
# a class that contains static methods used to check if a variable/module/package is installed/exists
# system packages manager
if platform=="win32" :
package_manager = False
elif shell_response("apt-get")=="":
package_manager = False
else:
package_manager = True
@staticmethod
def module(name):
# Usage Example : print(yella.module("colorama"))
# checks if module is installed
try:
exec(f"import {name}")
exec(f"del {name}")
isInstalled = True
except:
isInstalled = False
return isInstalled
# -- #
@staticmethod
def package(pkgName):
# checks if package is installed
# Usage Example : print(yella.package("apache2"))
if not yella.package_manager: raise Exception("Your OS has no package manager.")
pkgInfo = shell_response(f"dpkg -s {pkgName}")
if "ok" in pkgInfo:
return True
else:
return False
# -- #
def install_modules(*Modules, **kwargs):
# installs module
# Usage Example : install_modules("colorama", check=False)
# <check> is an optional argument used to check if Modules are successfully installed. Possible values : (True, False). Default Value is False
# You can also enter multiple arguments like :
# install_modules("git", "kivy", "os")
if "check" not in kwargs:
kwargs["check"] = False
global executable
if ' ' in executable:
executable = '"' + executable + '"'
for Module in Modules:
installer = shell_response("{} -m pip install {}".format(executable, Module))
if kwargs["check"]:
if not yella.module(Module):
raise Exception(f"[!] - PIP Could not install {Module} correctly.\n\n{installer}")
def importf(*libs):
"""
This function force-imports modules
(imports already installed modules and installs+imports uninstalled ones)
How to use :
from JskPy import *
importf(modules)
from JskPy import * # THIS LINE IS NECESSARY AFTER CALLING THE <importf> FUNCTION
Examples : importf("math") (One argument)
importf("re", "sys") (Multiple arguments)
IMPORTANT NOTES : Module names should be strings
It only works if you write again from JskPy import *
"""
for lib in libs:
if type(lib)!=str:
raise TypeError("[!] - Pass modules as strings, not variables.")
if not yella.module(lib):
print(f"{lib} module not found.")
print(f"Installing {lib} module...\n")
install_modules(lib)
globals()[lib] = __import__(lib)
if len(libs) != 1:
print(f"\nModules {libs} imported successfully !")
else:
print(f"\nModule {libs[0]} imported successfully !")
def pkg_install(*pkgArray):
# installs packages
# Usage Example : JskPy.pkg_install("git")
# This function allows multiple arguments
if not yella.package_manager(): raise Exception("Your OS has no package manager.")
print("Checking for updates...")
shell_execute("apt-get upgrade")
for pkgName in pkgArray:
if not package(pkgName):
shell_execute(f"apt-get install {pkgName}")
print(f"{pkgName} installed successfully.")
else:
print(f"{pkgName} is already installed.")