megapy/tests.py

62 lines
1.3 KiB
Python
Raw Normal View History

2013-02-04 02:02:33 +00:00
from mega import Mega
2013-04-19 18:38:45 +00:00
2013-02-04 02:02:33 +00:00
def test():
2013-04-23 18:58:18 +00:00
"""
Enter your account details to begin
comment/uncomment lines to test various parts of the API
see readme.md for more information
"""
2013-02-04 02:02:33 +00:00
#user details
2013-03-10 03:39:06 +00:00
email = 'your@email.com'
password = 'password'
2013-02-04 02:02:33 +00:00
mega = Mega()
#mega = Mega({'verbose': True}) # verbose option for print output
2013-02-04 02:02:33 +00:00
2013-04-28 15:56:17 +00:00
# login
m = mega.login(email, password)
2013-02-04 02:02:33 +00:00
2013-04-28 15:56:17 +00:00
# get user details
2013-02-04 04:42:28 +00:00
details = m.get_user()
print(details)
2013-04-28 15:56:17 +00:00
# get account files
2013-02-04 02:02:33 +00:00
files = m.get_files()
2013-04-28 15:56:17 +00:00
# get account disk quota in MB
2013-03-10 03:38:22 +00:00
print(m.get_quota())
2013-04-28 15:56:17 +00:00
# get account storage space
print(m.get_storage_space())
2013-03-10 03:38:22 +00:00
2013-04-28 15:56:17 +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-04-28 15:56:17 +00:00
# upload file
print(m.upload('tests.py'))
2013-02-04 02:02:33 +00:00
2013-04-28 15:56:17 +00:00
# search for a file in account
file = m.find('tests.py')
if file:
2013-04-28 15:56:17 +00:00
# get public link
link = m.get_link(file)
print(link)
2013-04-28 15:56:17 +00:00
# download file. by file object or url
print m.download(file, '/tmp')
#m.download_url(link)
#delete or destroy file. by id or url
print(m.delete(file[0]))
#print(m.destroy(file[0]))
#print(m.delete_url(link))
#print(m.destroy_url(link))
2013-04-28 15:56:17 +00:00
# empty trash
print(m.empty_trash())
2013-02-04 02:02:33 +00:00
if __name__ == '__main__':
test()