Skip to content

Tag: python

Python. Calling openssl.exe in Windows

I have a Python script that needs to call openssl.exe in Windows. Here’s the script: If I uncomment the “os.startfile” line, I get a file not found error. That makes sense. os.startfile can’t handle arguments (is that correct?) If I uncomment the subprocess.Popen line, openssl starts, …

FastAPI – How to get app instance inside a router?

I want to get the app instance in my router file, what should I do ? My main.py is as follows: Now I want to use app.machine_learning_model in some_router’s file , what should I do ? Answer You should store the model on the app instance using the generic app.state attribute, as described in the document…

PyQt5 very simple button input dialog

I thought I’ll try pyqt(5) for a change and wanted to create a simple dialog on startup of a script that let’s the user choose one of three options. My goal is a popup like this (on startup of a script) that will close on pushing one of the buttons and returns the value of the button that was pres…