Making a Stand Alone Executable from a Python Script Using PyInstaller
There are plenty of tools available for converting python script into executable. For example, checkout: (more…)
Read more »
There’s no two ways about it, Python is slow. I felt this in particular when exploring how to sanitize potentially malicious HTML content in the CTFd content editor. The two options for sanitizing/processing HTML in Python both have some tradeoffs: Poorl… Read more