I need to write a python code which enables me to verify whether the received SSL certificate from a website is valid or not. the code snippet is gonna be executed in windows platform. I've been using Editra to code python recently which is equipped with PyStudio plugin. I got confused if it's a possible idea or not. Does anyone have any idea how to make it work?
-
3So... what's your question again?Ignacio Vazquez-Abrams– Ignacio Vazquez-Abrams2012-07-20 07:35:58 +00:00Commented Jul 20, 2012 at 7:35
-
What is the better way to implement a snippet of code in windows to parse, extract and check validity of SSL certificates provided by websites? Does this make sense at all?mehdix_– mehdix_2012-07-20 07:42:55 +00:00Commented Jul 20, 2012 at 7:42
-
May I suggest you edit your question to be more like your comment, and your question title to mention SSL and websites... It'll get picked up more easily and would be less ambiguousJon Clements– Jon Clements2012-07-20 07:44:39 +00:00Commented Jul 20, 2012 at 7:44
Add a comment
|
3 Answers
If you want to distribute a Python script on Windows, (which doesn't have Python installed by default), you can use py2exe. py2exe converts your Python script into an executable that Windows users can run without them needing to install Python.
1 Comment
Jakob S.
Cool - I didn't know this one.
Consider Python XY if you are concerned about a good Python installation under windows including a lot of helpful, preconfigured packages.