Multipart encoding and posting video

Hey guys,
I am hoping to output a video file from touchdesigner and then upload it to wistia using their api:
wistia.com/doc/upload-api

I am trying to determine the best way of doing this. I am working on a photobooth type installation that will output a short < 1 min video, and I want to upload it. This seems pretty easy in python 2.7 but it’s a bit harder in 3( I got python 3.35 up and running in windows.)

I have 2 questions:
Since I don’t want to block the app from working/recording move video while it’s uploading, would it be better to work on an external python process (maybe in 2.7) and call it?

If not, then how would I do it in 3.3 and from within touchdesigner?

Seems like that would be the best bet, calling the external python process to upload files once you’re done with the recording in Touch. You’d have to thread otherwise I imagine

Thanks again, @elburz.

I’ll try that and let you know