Я пытаюсь сделать что-то вроде этого:
import pygsheets
from oauth2client.service_account import ServiceAccountCredentials
scope = [
'https://spreadsheets.google.com/feeds',
'https://www.googleapis.com/auth/drive'
]
credentials01 = ServiceAccountCredentials.from_json_keyfile_name('creds01.json', scope)
def make_connection():
global file01
file01 = pygsheets.client.Client(credentials01)
def fetch_data():
wb01 = file01.open('Database System 2')
make_connection()
fetch_data()
Но выдается ошибка имени, что «file01 не определен».Любой способ обойти?