├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml └── workflows │ ├── add_to_project.yml │ └── python-app.yml ├── .gitignore ├── LICENSE ├── README.md ├── go_back.py ├── jetbrains-variant-2.png └── upgrade.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: cp2004 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/add_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/.github/workflows/add_to_project.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/README.md -------------------------------------------------------------------------------- /go_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/go_back.py -------------------------------------------------------------------------------- /jetbrains-variant-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/jetbrains-variant-2.png -------------------------------------------------------------------------------- /upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp2004/Octoprint-Upgrade-To-Py3/HEAD/upgrade.py --------------------------------------------------------------------------------