Is there a way in Pycharm (or elsewhere) to list all objects and variables defined at runtime of a Python program? My use case is learning a third-party Django app. I'd like to see a list of all objects instantiated, and variables defined when the server is running.
I do realize that most likely the list would be overwhelming. However, I believe it's a good way to start familiarizing oneself with a new project.