mega.py icon indicating copy to clipboard operation
mega.py copied to clipboard

Python library for the https://mega.nz/ API.

Results 85 mega.py issues
Sort by recently updated
recently updated
newest added

Hello ! I'm just trying to download a file of 10GB and I get the error: UnboundLocalError: local variable 'i' referenced before assignment with just this simple code: ``` from...

I propose to replace this will remove the error creating the file when compiling #if (file[1]['a'] and file[1]['t'] and file[1]['a']['n'] == foldername): by #if (isinstance (file[1]['a'], dict) and file[1]['t'] and...

File "e:\Code\Python\mega.py-master\src\mega\mega.py", line 20, in from .errors import ValidationError, RequestError ImportError: attempted relative import with no known parent package

When Downloading File state-home-water-alok-projects-enclol-work-dir_to_back.info having this issue ``` ('mbpS0SjS', {'h': 'mbpS0SjS', 'p': 'fKwVUDgB', 'u': 'KqPVDPk5RlM', 't': 0, 'a': {'n': 'state-home-water-alok-projects-enclol-work-dir_to_back.info'}, 'k': (3008924797, 1032499355, 1615942575, 308268957), 's': 0, 'ts': 1599594789, 'iv':...

I've seen that I can find a folder by using the following: `folder = mega.find("myfolder")` How can I download the entire folder?

here's the code from mega import Mega mega = Mega() m = mega.login() m.download_url('https://mega.co.nz/#!EBZCXCjZ!tCUNt4nempTV9PQi4Rq6RFuDIU8t_87gXdFxJmmqFKo') The error is: "PermissionError: [WinError 32] The process cannot access the file because it is being...

Fixes issue #18 caused by trying to move the temporary file that is still open

If the response was successful, no Exception will be raised While the usage on some servers, we got his error "mega.errors.RequestError: EARGS, You have passed invalid arguments to this command"...

While i did not find a way to to download a file from a public folder with one mega method, i had to do it using the code from StackOverflow:...

I have a link https://mega.nz/folder/XXXXXXXX#7sXQ0wW59-B_JJHyOU3a-A to a directory with files, how can I download through this library, if not, can you tell me a way that bypasses data transfer restrictions...