├── Tool.py ├── Index.html ├── Tutorial.html ├── Privacy_Script.html └── Profile_Home.html /Tool.py: -------------------------------------------------------------------------------- 1 | def foo(): 2 | return 'bar' 3 | print(foo()) -------------------------------------------------------------------------------- /Index.html: -------------------------------------------------------------------------------- 1 |
This is a commit.
-------------------------------------------------------------------------------- /Profile_Home.html: -------------------------------------------------------------------------------- 1 |This is a commit.
--------------------------------------------------------------------------------