cancel
Showing results for 
Search instead for 
Did you mean: 
shubhamb
New Contributor III
since ‎06-01-2022
‎06-26-2023

User Stats

  • 3 Posts
  • 0 Solutions
  • 5 Kudos given
  • 3 Kudos received

User Activity

I have this config.py file which is used to store environmental variablesPUSH_API_ACCOUNT_ID = '*******' PUSH_API_PASSCODE = '***********************'I am using this to fetch the variables and use it in my file.py import sys   sys.path.append("..") ...
My function in func.pydef lower_events(df): return df.withColumn("event",f.lower(f.col("event")))My main notebook import pyspark.sql.functions as f from pyspark.sql.functions import udf, col, lower import sys   sys.path.append("..") from folder.func...
Kudos given to