Let's say I run this command:
from pyspark.sql.types import *
How can I check all the names that have been imported into my namespace? For instance, IntegerType()
is now available, but is there a programmatic way of seeing all the names that have been imported with the *?
Note that I am not just looking for functions, but all names (including attributes) etc.
Thanks