I wonder how i can transform Spark dataframe to Polars dataframe.
Let's say i have this code on PySpark:
df = spark.sql('''select * from tmp''')
I can easily transform it to pandas dataframe using .toPandas.
Is there something similar in polars, as I need to get a polars dataframe for further processing?