├── .editorconfig ├── .gitattributes ├── .gitignore ├── 404.html ├── LICENSE ├── README.md ├── apple-touch-icon.png ├── applications ├── app-markdowns │ ├── community.md │ ├── core-python.md │ ├── database-access.md │ ├── devops.md │ ├── embedded-python.md │ ├── game-development.md │ ├── guis.md │ ├── network-programming.md │ ├── scientific-and-numeric.md │ ├── testing.md │ ├── tutorials.md │ └── web-development.md ├── community.html ├── core-python.html ├── database-access.html ├── devops.html ├── embedded-python.html ├── game-development.html ├── guis.html ├── network-programming.html ├── scientific-and-numeric.html ├── testing.html ├── tutorials.html └── web-development.html ├── browserconfig.xml ├── crossdomain.xml ├── css ├── app-custom.css ├── grid.css └── main.css ├── favicon.ico ├── humans.txt ├── img ├── fb_og.png ├── logo.PNG └── python-logo.png ├── index.html ├── js ├── find5.js ├── main.js └── plugins.js ├── robots.txt ├── sitemap.xml ├── tile-wide.png └── tile.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/404.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/README.md -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /applications/app-markdowns/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/community.md -------------------------------------------------------------------------------- /applications/app-markdowns/core-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/core-python.md -------------------------------------------------------------------------------- /applications/app-markdowns/database-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/database-access.md -------------------------------------------------------------------------------- /applications/app-markdowns/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/devops.md -------------------------------------------------------------------------------- /applications/app-markdowns/embedded-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/embedded-python.md -------------------------------------------------------------------------------- /applications/app-markdowns/game-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/game-development.md -------------------------------------------------------------------------------- /applications/app-markdowns/guis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/guis.md -------------------------------------------------------------------------------- /applications/app-markdowns/network-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/network-programming.md -------------------------------------------------------------------------------- /applications/app-markdowns/scientific-and-numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/scientific-and-numeric.md -------------------------------------------------------------------------------- /applications/app-markdowns/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/testing.md -------------------------------------------------------------------------------- /applications/app-markdowns/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/tutorials.md -------------------------------------------------------------------------------- /applications/app-markdowns/web-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/app-markdowns/web-development.md -------------------------------------------------------------------------------- /applications/community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/community.html -------------------------------------------------------------------------------- /applications/core-python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/core-python.html -------------------------------------------------------------------------------- /applications/database-access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/database-access.html -------------------------------------------------------------------------------- /applications/devops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/devops.html -------------------------------------------------------------------------------- /applications/embedded-python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/embedded-python.html -------------------------------------------------------------------------------- /applications/game-development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/game-development.html -------------------------------------------------------------------------------- /applications/guis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/guis.html -------------------------------------------------------------------------------- /applications/network-programming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/network-programming.html -------------------------------------------------------------------------------- /applications/scientific-and-numeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/scientific-and-numeric.html -------------------------------------------------------------------------------- /applications/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/testing.html -------------------------------------------------------------------------------- /applications/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/tutorials.html -------------------------------------------------------------------------------- /applications/web-development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/applications/web-development.html -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/browserconfig.xml -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/crossdomain.xml -------------------------------------------------------------------------------- /css/app-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/css/app-custom.css -------------------------------------------------------------------------------- /css/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/css/grid.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/css/main.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/favicon.ico -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/humans.txt -------------------------------------------------------------------------------- /img/fb_og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/img/fb_og.png -------------------------------------------------------------------------------- /img/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/img/logo.PNG -------------------------------------------------------------------------------- /img/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/img/python-logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/index.html -------------------------------------------------------------------------------- /js/find5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/js/find5.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/js/plugins.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/sitemap.xml -------------------------------------------------------------------------------- /tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/tile-wide.png -------------------------------------------------------------------------------- /tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parbhat/Python-Pedia/HEAD/tile.png --------------------------------------------------------------------------------