├── WebDevelopment ├── OnlinePage │ ├── run.py │ └── main │ │ ├── __init__.py │ │ ├── templates │ │ ├── second.html │ │ ├── test.html │ │ ├── layout.html │ │ ├── home.html │ │ └── editor.html │ │ ├── static │ │ ├── pictures │ │ │ ├── logo.png │ │ │ ├── demo_app.png │ │ │ ├── github.png │ │ │ ├── instagram.png │ │ │ ├── dot-full.svg │ │ │ ├── dot.svg │ │ │ ├── big-eclipse.svg │ │ │ ├── mid-eclipse.svg │ │ │ ├── small-eclipse.svg │ │ │ ├── arrow-left.svg │ │ │ └── arrow-right.svg │ │ └── style.css │ │ ├── __pycache__ │ │ ├── routes.cpython-39.pyc │ │ └── __init__.cpython-39.pyc │ │ └── routes.py ├── templates │ ├── Test.html │ └── layout.html └── run.py ├── Modules ├── LoadingBar.py ├── Translator.py ├── Instagram_ProfilePic_Download.py ├── TurtleBasics.py ├── Terminal_Art.py ├── Screenshot.py ├── mp4ToMp3.py ├── play_song.py ├── tkinter_template.py ├── QR_Generator.py ├── windows_notification.py ├── ISO_Creator.py ├── WebcamActivation.py ├── BarCode.py ├── Geographical_Location.py ├── ZipCompression.py ├── MultiprocessingExample.py ├── matplotguide.py ├── MultiThreading.py ├── QrBarGenerator.py ├── PasswordHasher.py ├── HowdoiScript.py ├── SimAnalyzer.py ├── Email.py ├── web_scrape_guide.py ├── OpenCV-Basics.py └── Database.py ├── Syntax ├── StringSlicing.py ├── ExceptionHandling.py ├── print_date-Dictionaries.py ├── Recursion.py ├── ObjectOriented.py ├── RegularExpressions.py ├── List_comprehenssion-Generator_expressons.py └── Functions.py ├── ImageManipulation ├── ImageToIcon.py └── ImageToPDF.py ├── Meta-Programming ├── Custom_Context_Maneger.py ├── Factorial.py ├── CustomLoop.py ├── Time_Period.py ├── Cards.py └── VectorArithmetic.py ├── README.md ├── DesignPatterns └── Singleton.py ├── .gitignore ├── Graphical ├── PyQt5_Demo.py └── tkinter_demo.py ├── Algorithms └── sorting_algorithms.py └── LICENCE /WebDevelopment/OnlinePage/run.py: -------------------------------------------------------------------------------- 1 | from main import app 2 | 3 | if __name__ == '__main__': 4 | app.run(debug=True) -------------------------------------------------------------------------------- /WebDevelopment/OnlinePage/main/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | 5 | from main import routes -------------------------------------------------------------------------------- /WebDevelopment/OnlinePage/main/templates/second.html: -------------------------------------------------------------------------------- 1 | {% extends "layout.html" %} 2 | {% block content %} 3 |
Your Browser: {useragent}
" 22 | 23 | @app.route("/cookie") 24 | def cookie(): 25 | response = make_response("9 | This website is just a simple demo website 10 | for me to train my front-end development. 11 |
12 |
20 |