Python Forum
How to check UUID format and verion - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How to check UUID format and verion (/thread-14823.html)



How to check UUID format and verion - swamyjrs - Dec-19-2018

I have to check version 4 UUID which is there as common name in a certificate. Is there any python in built function available to check whether UUID prsesnt in the certificate is correct or not and to check its version? If not how to compare version 4 UUID


RE: How to check UUID format and verion - Larz60+ - Dec-19-2018

to validate, see: https://pypi.org/search/?q=validate+uuid4
I am not familiar with the packages shown, look for one with recent activity

To create UUID see: https://docs.python.org/3/library/uuid.html