mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-25 06:05:24 +00:00
25 lines
662 B
Python
25 lines
662 B
Python
|
'''
|
||
|
Use this when you modified any css in the css/ folder.
|
||
|
'''
|
||
|
|
||
|
import os,sys
|
||
|
|
||
|
try:
|
||
|
from csscompressor import compress
|
||
|
except ModuleNotFoundError:
|
||
|
os.system("python -m pip install csscompressor")
|
||
|
os.execv(sys.argv[0], sys.argv)
|
||
|
|
||
|
def main():
|
||
|
not_minified = [f"./css/{f}" for f in os.listdir("./css") if not f.endswith(".min.css")]
|
||
|
|
||
|
for file in not_minified:
|
||
|
print(file)
|
||
|
with open(file, "r") as input_file:
|
||
|
css_minified = compress(input_file.read())
|
||
|
|
||
|
with open(f"{file.replace('.css', '')}.min.css", "w") as output_file:
|
||
|
output_file.write(css_minified)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|