46 lines
No EOL
1.2 KiB
Python
46 lines
No EOL
1.2 KiB
Python
from mega import Mega
|
|
|
|
def test():
|
|
#user details
|
|
email = 'your@email.com'
|
|
password = 'password'
|
|
|
|
mega = Mega()
|
|
|
|
##login
|
|
m = mega.login(email, password)
|
|
|
|
##get user details
|
|
details = m.get_user()
|
|
print(details)
|
|
|
|
##get account files
|
|
files = m.get_files()
|
|
#example iterate over files
|
|
for file in files:
|
|
if files[file]['a'] != False:
|
|
print files[file]
|
|
|
|
##upload file
|
|
print(m.upload('test.py'))
|
|
|
|
##trash a file, by id or url
|
|
#print(m.delete('f14U0JhD'))
|
|
#print(m.delete_url('https://mega.co.nz/#!f14U0JhD!S_2k-EvB5U1N3s0vm3I5C0JN2toHSGkVf0UxQsiKZ8A'))
|
|
|
|
##search for a file on mega
|
|
files = m.find('test.py')
|
|
if files:
|
|
#trash a file by it's id
|
|
#iterate to trash multiple results
|
|
print(m.delete(files[1]['k']))
|
|
|
|
##download file, by id+key or url
|
|
#m.download('6hBW0R4a','By7-Vjj5xal8K5w_IXH3PlGNyZ1VvIrjZkOmHGq1X00')
|
|
#m.download_url('https://mega.co.nz/#!6hBW0R4a!By7-Vjj5xal8K5w_IXH3PlGNyZ1VvIrjZkOmHGq1X00')
|
|
|
|
##get a public link for a file
|
|
print(m.get_link('6hBW0R4a','By7-Vjj5xal8K5w_IXH3PlGNyZ1VvIrjZkOmHGq1X00'))
|
|
|
|
if __name__ == '__main__':
|
|
test() |