init
This commit is contained in:
4
src/help.py
Normal file
4
src/help.py
Normal 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
14
src/main.py
Normal 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
9
src/template/index.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<img src="./img1.je">
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user