├── .gitignore ├── README.md ├── dev-template ├── assets │ └── icon.svg └── dev │ ├── dev-env.toe │ ├── scripts │ └── extHelperMOD.py │ └── td-modules │ ├── base_template │ ├── base_template.tox │ ├── requirements.txt │ ├── templateEXT.py │ └── text_par_execute.py │ └── tools │ ├── collect_files.py │ ├── releaseFiles.json │ └── releaseVersions │ ├── base_save.tox │ └── base_save_for_release.tox ├── dominant-color ├── dom_color.toe └── modules │ └── base_dominant_color.tox ├── ext-python-finished ├── scripts │ ├── cmd_line_python.py │ ├── cmd_line_python_args.py │ ├── cmd_line_python_udp_msg.py │ └── cmd_line_python_udp_msg_args.py ├── td-modules │ ├── base_human_time │ │ ├── base_human_time.tox │ │ └── requirements.txt │ ├── base_our_first_pip_install │ │ ├── base_our_first_pip_install.tox │ │ └── requirements.txt │ ├── base_python_and_subprocess │ │ └── base_python_and_subprocess.tox │ ├── base_qr_codes │ │ ├── base_qr_codes.tox │ │ └── requirements.txt │ └── base_weather │ │ ├── base_weather.tox │ │ └── requirements.txt └── td-summit-2019-external-python-finished.toe └── ext-python └── td-summit-2019-external-python.toe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/README.md -------------------------------------------------------------------------------- /dev-template/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/assets/icon.svg -------------------------------------------------------------------------------- /dev-template/dev/dev-env.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/dev-env.toe -------------------------------------------------------------------------------- /dev-template/dev/scripts/extHelperMOD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/scripts/extHelperMOD.py -------------------------------------------------------------------------------- /dev-template/dev/td-modules/base_template/base_template.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/base_template/base_template.tox -------------------------------------------------------------------------------- /dev-template/dev/td-modules/base_template/requirements.txt: -------------------------------------------------------------------------------- 1 | phue -------------------------------------------------------------------------------- /dev-template/dev/td-modules/base_template/templateEXT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/base_template/templateEXT.py -------------------------------------------------------------------------------- /dev-template/dev/td-modules/base_template/text_par_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/base_template/text_par_execute.py -------------------------------------------------------------------------------- /dev-template/dev/td-modules/tools/collect_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/tools/collect_files.py -------------------------------------------------------------------------------- /dev-template/dev/td-modules/tools/releaseFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/tools/releaseFiles.json -------------------------------------------------------------------------------- /dev-template/dev/td-modules/tools/releaseVersions/base_save.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/tools/releaseVersions/base_save.tox -------------------------------------------------------------------------------- /dev-template/dev/td-modules/tools/releaseVersions/base_save_for_release.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dev-template/dev/td-modules/tools/releaseVersions/base_save_for_release.tox -------------------------------------------------------------------------------- /dominant-color/dom_color.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dominant-color/dom_color.toe -------------------------------------------------------------------------------- /dominant-color/modules/base_dominant_color.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/dominant-color/modules/base_dominant_color.tox -------------------------------------------------------------------------------- /ext-python-finished/scripts/cmd_line_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/scripts/cmd_line_python.py -------------------------------------------------------------------------------- /ext-python-finished/scripts/cmd_line_python_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/scripts/cmd_line_python_args.py -------------------------------------------------------------------------------- /ext-python-finished/scripts/cmd_line_python_udp_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/scripts/cmd_line_python_udp_msg.py -------------------------------------------------------------------------------- /ext-python-finished/scripts/cmd_line_python_udp_msg_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/scripts/cmd_line_python_udp_msg_args.py -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_human_time/base_human_time.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/td-modules/base_human_time/base_human_time.tox -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_human_time/requirements.txt: -------------------------------------------------------------------------------- 1 | chronyk -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_our_first_pip_install/base_our_first_pip_install.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/td-modules/base_our_first_pip_install/base_our_first_pip_install.tox -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_our_first_pip_install/requirements.txt: -------------------------------------------------------------------------------- 1 | svgwrite -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_python_and_subprocess/base_python_and_subprocess.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/td-modules/base_python_and_subprocess/base_python_and_subprocess.tox -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_qr_codes/base_qr_codes.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/td-modules/base_qr_codes/base_qr_codes.tox -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_qr_codes/requirements.txt: -------------------------------------------------------------------------------- 1 | qrcode[pil] -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_weather/base_weather.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/td-modules/base_weather/base_weather.tox -------------------------------------------------------------------------------- /ext-python-finished/td-modules/base_weather/requirements.txt: -------------------------------------------------------------------------------- 1 | pyowm 2 | pkg_resources -------------------------------------------------------------------------------- /ext-python-finished/td-summit-2019-external-python-finished.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python-finished/td-summit-2019-external-python-finished.toe -------------------------------------------------------------------------------- /ext-python/td-summit-2019-external-python.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-lab/touchdesigner-summit-2019-external-python/HEAD/ext-python/td-summit-2019-external-python.toe --------------------------------------------------------------------------------