- OOP in python.
- Relations between files, each one is as same important as the other one when we use the project.
- Two ways to implement and run the program
- Using intrepting method, by runing "intrept.py" file.
- Store the code in variables, then using the function run (as you see in previews).
With intrepting method : | With variables : |
---|---|
from oop import HTMLTags as t | from oop import HTMLTags as t from oop import FileHandling as hf |
#start < your code > (seperate between functions -that represent tags in html- with ';' ) #end | < variable name > = < PyHTML code > |
In console : python intrept.py => write the FileName (without extension) you wanna extension. => enter '$stop$' to exit the console of PyHTMl. | In The end of file : hf.run(VarNAme,"< file name >") |
- Good way to create webpages using python for those who hate html :)
- In second way, you can use programming basics like conditions and loops to create the pages.
- Create many files in the same python file (see it in previews folder).
- Trying to edit on the code is good way that help you think better to solve problems and understand more the basics.
Note : the project isn't ideal, there is many changes should be done on it, so I'll be so happy to see your pull requests on this GitHub repository.