ContributionsMost RecentMost LikesSolutionsRe: Google sheet account authorization Thankyou the solution worked Google sheet account authorization Hi Team, I have created Googlesheet account but every time it needs to be authorized even if I selected autorefresh. It is working for another account on other server and the only change I see is on OAuth2 Token which is not default but https://www.googleapis.com/oauth2/v3/token Can you please help how can I fix this with the new account so that I can schedule the task. Regards, Sanam Using Python script with Unix snap Hi Team, I want to run python scripts as it is running on external editor and read about unix snap can call the Python Script. Can you please let me know the steps and how can it is used to call the script. Can we upload it manually on server or do I need admin to upload it on server and is any requirement for calling external libraries? Re: Remote Python Snap Account Thankyou for the quick response Re: How to call python script in SnapLogic igormicev: other python connectors to t Hi, Thanks for the reply I have got RPS installed but I am not able to use external lib import pyodbc from pylab import title, figure, xlabel, ylabel, xticks, bar, legend, axis, savefig from IPython.display import Math Python script error: ModuleNotFoundError(“No module named ‘pylab’”,) I need to conncet to SQL and read the data for further processing what is required to use them in the remote python script? Re: How to call python script in SnapLogic How Can I get the The hostname of Remote Python Executor. Remote Python Snap Account Hi Team, How Can I get The hostname for Remote Python Executor. Thanks. Re: How to call python script in SnapLogic any inputs? How to call python script in SnapLogic Hi Team, I need to call below sample python script from snaplogic. or is there a way to call .py file in snaplogic import pandas as pd ################Can be snap logic pipeline###############333333 import pyodbc conn = pyodbc.connect(‘DRIVER={ODBC Driver 13 for SQL Server}; SERVER=ps-sql; database=test; trusted_connection=yes’) sql = ‘’’ select * from temp ‘’’ df = pd.read_sql(sql, conn) ######################################################33 #######################Feed SQL into python######################3 import pandas as pd longform = pd.DataFrame(columns=[‘assets__c’, ‘id’]) for idx, songs, name in df.itertuples(): name_words = (i.lower() for i in name.split()) longform = longform.append( [{‘assets__c’: nw, ‘id’: songs} for nw in name_words], ignore_index=True ) longform[‘refreshdate_unpack’] = pd.to_datetime(‘today’) longform ##############Write longform into a sql table###################### Re: Snap sql server execute it will be great if I could put two sqls in one execute and handle the errors. for simple steps it really make my pipeline long. Thankyou for the prompt reply.