I want to send data using ssl for data network Security when sending data ,
but how to make a ssl Secure Connection using django ,
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SSL is not a django question.
SSL for a website is done on the web server, not your application, so you’d be setting up SSL in Apache or Nginx. Is that what you’re looking to do?
If you mean you want to send data to some server via an SSL from within django, then it’s a Python question about making SSL connections and stuff I’m not very familiar with : )
https://docs.python.org/library/socket.html
https://docs.python.org/library/ssl.html