Hi,
I've cloned and installed the dependencies for python-mega but I've got the following error when executing this script with both python 2 and python 3
from mega import Mega
email = 'my-email'
password = 'my-password'
m = Mega.from_credentials(email, password)
files = m.get_files()
for file in files:
print(file)
Here's the error I get :
ImportError: cannot import name 'Mega'