RE: Design an encrypted time-limited API on Client/Server side

2016-06-09 Thread Joaquin Alzola
> I am planning design an encrypted time-limited API on both Client and Server > sides, If you want client/server communitation in an encypted way you can use the ssl module. This email is confidential and may be subject to privilege. If you are not the intended recipient, please do not copy or

Re: Design an encrypted time-limited API on Client/Server side

2016-06-09 Thread dieter
iMath writes: > ?I am planning design an encrypted time-limited API on both Client and Server > sides, the server side is written in Django, the client side is a GUI program > which call the API by > import requests > c = requests.post("http://127.0.0.1:8000/VideoParser/";, data={'videoUrl': >

Design an encrypted time-limited API on Client/Server side

2016-06-08 Thread iMath
​I am planning design an encrypted time-limited API on both Client and Server sides, the server side is written in Django, the client side is a GUI program which call the API by import requests c = requests.post("http://127.0.0.1:8000/VideoParser/";, data={'videoUrl': videoUrl }) The way it call