├── .github ├── ISSUE_TEMPLATE │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── Basic_Python └── README.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Competitive_Programming └── README.md ├── Cyber_Security └── README.md ├── DSA └── README.md ├── Data_Science └── README.md ├── Deep_Learning └── README.md ├── Django └── README.md ├── Flask └── README.md ├── GUI └── README.md ├── Game_development └── README.md ├── Intermediate └── README.md ├── LICENSE ├── Machine_Learning └── README.md ├── Miscellaneous └── README.md ├── Mobile_App └── README.md ├── README.md ├── Web_Others └── README.md └── Web_Scraping └── README.md /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Basic_Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/Basic_Python/README.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Competitive_Programming/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cyber_Security/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DSA/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data_Science/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Deep_Learning/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Django/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Flask/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GUI/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Game_development/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intermediate/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/LICENSE -------------------------------------------------------------------------------- /Machine_Learning/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mobile_App/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/Py-Resources/HEAD/README.md -------------------------------------------------------------------------------- /Web_Others/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Web_Scraping/README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------