megapy/tests/test.py

49 lines
1.2 KiB
Python
Raw Normal View History

2013-02-04 02:02:33 +00:00
from mega import Mega
def test():
#user details
2013-02-08 12:23:28 +00:00
email = 'your@email.com'
password = 'password'
2013-02-04 02:02:33 +00:00
mega = Mega()
##login
2013-02-04 02:02:33 +00:00
m = mega.login(email, password)
##get user details
2013-02-04 04:42:28 +00:00
details = m.get_user()
print(details)
##get account files
2013-02-04 02:02:33 +00:00
files = m.get_files()
#example iterate over files
for file in files:
if files[file]['a'] != False:
print files[file]
2013-02-04 02:02:33 +00:00
##upload file
2013-02-04 03:06:54 +00:00
print(m.upload('test.py'))
2013-02-04 02:02:33 +00:00
2013-02-07 23:30:37 +00:00
##get file's public link
#NOTE: if passing upload() function response use get_upload_link()
file = m.find('test.py')
#print(m.get_upload_link(file))
print(m.get_link(file))
2013-02-07 23:30:37 +00:00
##trash a file, by id or url
2013-02-05 07:45:03 +00:00
#print(m.delete('f14U0JhD'))
#print(m.delete_url('https://mega.co.nz/#!f14U0JhD!S_2k-EvB5U1N3s0vm3I5C0JN2toHSGkVf0UxQsiKZ8A'))
##search for a file in account
file = m.find('somefile.doc')
if file:
#trash a file by it's id
print(m.delete(file[1]['k']))
##download file, by id+key or url
#file = m.find('myfile.doc')
#m.download(file)
#m.download_url('https://mega.co.nz/#!6hBW0R4a!By7-Vjj5xal8K5w_IXH3PlGNyZ1VvIrjZkOmHGq1X00')
2013-02-04 02:02:33 +00:00
if __name__ == '__main__':
test()