Coder Social home page Coder Social logo

Comments (5)

omarryhan avatar omarryhan commented on June 12, 2024

Hi, thanks for reporting the issue, and I'm glad you're finding the lib useful!

I'll be happy to accept a PR with a fix, thanks

from aiogoogle.

AdeelK93 avatar AdeelK93 commented on June 12, 2024

Since everything is dynamically generated, I don't know how to fix this for one specific method.

Also ideally the fix works for pipe_to as well, but I'm not quite sure what that looks like.

Basically there's probably a better fix that me trying to patch one specific method the way I'm doing right now in my code

from aiogoogle.

omarryhan avatar omarryhan commented on June 12, 2024

Can you share with me a full for reproduction please?

Also, the expected result so that I can compare it to the corrupted multipart file.

from aiogoogle.

omarryhan avatar omarryhan commented on June 12, 2024

Also I just noticed that you're passing a file object instead of a path as the upload_file argument. I don't think this is correct.

from aiogoogle.

AdeelK93 avatar AdeelK93 commented on June 12, 2024

Sure here's a more complete example. I'll let you fill in your own aiogoogle and parent_id. I'm using a file object because that works for both creates and updates, but pipe_from only works for creates. The multipart workaround does not work for pipe_from.

from io import BytesIO
import pandas as pd

df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})

data = BytesIO()
df.to_csv(data, index=False)
data.seek(0)

# Create that works (16 byte file)
async with aiogoogle:
    drive = await aiogoogle.discover('drive', 'v3')
    req = drive.files.create(upload_file=data.read(), supportsAllDrives=True, fields='id', json={ # type: ignore
        'name': 'test.csv',
        'parents': [parent_id]
    })
    res = await aiogoogle.as_service_account(req)

new_file_id = res['id']

# Update that doesn't work (229 byte file)
async with aiogoogle:
    drive = await aiogoogle.discover('drive', 'v3')
    req = drive.files.update(fileId=new_file_id, upload_file=data.read(), supportsAllDrives=True, fields='id')
    # req.media_upload.multipart = False
    await aiogoogle.as_service_account(req)

# Update that works (16 byte file)
async with aiogoogle:
    drive = await aiogoogle.discover('drive', 'v3')
    req = drive.files.update(fileId=new_file_id, upload_file=data.read(), supportsAllDrives=True, fields='id')
    req.media_upload.multipart = False
    await aiogoogle.as_service_account(req)

from aiogoogle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.