This commit is contained in:
2025-03-07 18:12:52 +01:00
commit 683d152491
13 changed files with 984 additions and 0 deletions

4
src/help.py Normal file
View File

@ -0,0 +1,4 @@
def display(executable: str):
print(f"{executable} {{Path of your pictures}} {{Path of the site}}")

14
src/main.py Normal file
View File

@ -0,0 +1,14 @@
import sys
import help
import PIL
def main():
if len(sys.argv) != 2:
help.display(sys.argv[0])
return
if (__name__ == "__main__"):
main()

9
src/template/index.html Normal file
View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<img src="./img1.je">
</body>
</html>