Description
We don't have a keys method for pyspark dataframe, even though we support df['column name']
And when we want to get a suggestion for df[|], we can't get anything. So this could be an improvement for autocomplete engine that uses keys() to generate autocomplete suggestions (e.g. IPython kernel, Databricks Notebooks) will suggest column names on the completion df[|]
However, for those using IPython, they don't check keys, or say it only support keys for pandas & numpy & dict type. So we need to add ipython_key_completions to our object to make it work.