cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to fetch environmental variables saved in one notebook into another notebook in Databricks Repos and Notebooks

shubhamb
New Contributor III

I have this config.py file which is used to store environmental variables

PUSH_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("..")
 
from folder import config
 
 
 
# create header for  push API
headers = {
    'Account-Id': PUSH_API_ACCOUNT_ID,
    'Passcode': PUSH_API_PASSCODE,
    'Content-Type': 'application/json',
    }
#Push API url
url = "https://fetch.api.netscape.news.com/1/send/push.json"
#call  API
response = requests.request("POST", url, headers=headers, data = data)

How to do it in Repos and Workspace section

1 REPLY 1

Anonymous
Not applicable

Hey there @Shubham Biswas​ 

Hope all is well!

Just wanted to check in if you were able to resolve your issue and would you be happy to share the solution or mark an answer as best? Else please let us know if you need more help. 

We'd love to hear from you.

Thanks!

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group