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()
|
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#login
|
2013-02-09 18:29:58 +00:00
|
|
|
m = mega.login(email, password)
|
2013-02-04 02:02:33 +00:00
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#get user details
|
2013-02-04 04:42:28 +00:00
|
|
|
details = m.get_user()
|
|
|
|
print(details)
|
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#get account files
|
2013-02-04 02:02:33 +00:00
|
|
|
files = m.get_files()
|
2013-02-23 15:06:02 +00:00
|
|
|
|
2013-02-06 15:55:29 +00:00
|
|
|
#example iterate over files
|
|
|
|
for file in files:
|
2013-02-23 15:08:36 +00:00
|
|
|
print(files[file])
|
2013-02-04 02:02:33 +00:00
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#upload file
|
2013-02-16 00:34:16 +00:00
|
|
|
print(m.upload('tests.py'))
|
2013-02-04 02:02:33 +00:00
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#search for a file in account
|
2013-02-16 00:34:16 +00:00
|
|
|
file = m.find('tests.py')
|
2013-02-04 21:15:18 +00:00
|
|
|
|
2013-02-07 19:44:57 +00:00
|
|
|
if file:
|
2013-02-23 15:06:02 +00:00
|
|
|
#get public link
|
|
|
|
link = m.get_link(file)
|
|
|
|
print(link)
|
2013-02-07 18:06:03 +00:00
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#download file. by file object or url
|
|
|
|
m.download(file, '/tmp')
|
|
|
|
#m.download_url(link)
|
|
|
|
|
|
|
|
#delete or destroy file. by id or url
|
2013-03-05 01:48:01 +00:00
|
|
|
print(m.delete(file[0]))
|
|
|
|
#print(m.destroy(file[0]))
|
2013-02-23 15:06:02 +00:00
|
|
|
#print(m.delete_url(link))
|
|
|
|
#print(m.destroy_url(link))
|
2013-02-09 18:29:58 +00:00
|
|
|
|
2013-02-23 15:06:02 +00:00
|
|
|
#empty trash
|
|
|
|
print(m.empty_trash())
|
2013-02-07 18:06:03 +00:00
|
|
|
|
2013-02-04 02:02:33 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
test()
|