import osfrom scale_gp import SGPClientclient = SGPClient( api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted)response = client.beta.files.content( "file_id",)print(response)content = response.read()print(content)
import osfrom scale_gp import SGPClientclient = SGPClient( api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted)response = client.beta.files.content( "file_id",)print(response)content = response.read()print(content)