Ejemplo n.º 1
0
def upload(item_path, upload_type, file_path):
    # Initialize the Graph Client.
    graph_client = MicrosoftGraphClient(
        client_id=client_id,
        client_secret=client_secret,
        redirect_uri=redirect_uri,
        scope=scopes,
        credentials='config/ms_graph_state.jsonc')

    # Login
    graph_client.login()

    # Grab the Drive Item services
    drive_item_services = graph_client.drive_item()

    # Create an upload session
    upload_session = drive_item_services.create_upload_session(
        item_path=item_path, item=upload_type)

    drive_item_services.upload_large_file(upload_session['uploadUrl'],
                                          file_path)
Ejemplo n.º 2
0
env_path = pathlib.Path('../../.env')
dotenv.load_dotenv(dotenv_path=env_path)

# Get the specified credentials.
client_id = os.environ['azure_client_id']
client_secret = os.environ['azure_client_secret']
redirect_uri = os.environ['azure_redirect_uri']

# Initialize the Client.
graph_client = MicrosoftGraphClient(client_id=client_id,
                                    client_secret=client_secret,
                                    redirect_uri=redirect_uri,
                                    scope=scopes,
                                    credentials='config/ms_graph_state.jsonc')

# Login to the Client.
graph_client.login()

# Grab the Drive Services.
drive_services = graph_client.drives()

# Grab the Drive Item Services.
drive_item_services = graph_client.drive_item()

# Create an upload session
upload_session = drive_item_services.create_upload_session(
    item_path='Documents/test.txt', item='rename')

drive_item_services.upload_large_file(upload_session['uploadUrl'],
                                      './upload.txt')