This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Union, Dict | |
from io import BytesIO, StringIO | |
import json | |
import pandas as pd | |
import requests | |
from pydrive2.auth import GoogleAuth | |
from pydrive2.drive import GoogleDrive | |
def read_private_file_from_gdrive( | |
file_url: str, file_format: str, google_auth: GoogleAuth, **kwargs |
OlderNewer