-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
34 lines (25 loc) · 946 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
iCloud-API
==========
iClould Non Public API Implementation
Based on https://www.icloud.com requests
Made by Vladimir Smirnov ([email protected])
http://www.mindcollapse.com/
WARNING!
This code could be used for educational purposes only.
I.e. you should not use this code in any testing or production environments,
otherwise you may violate Apple iCloud Terms and Condition and the Exodus 20:15 "Thou shalt not steal".
The author is not responsible for any violation of this simple and clear rules.
def getContactsList(self)
def getNotesList(self)
def getActiveRemindersList(self)
def getCompletedRemindersList(self)
def findMyIphone(self, refresh=False)
def refreshWebAuth(self)
def logout(self)
def authenticate(self, rememberMe=False)
def __init__(self, login, password):
USAGE EXAMPLE:
testCloud = iCloud(login="[email protected]", password="123456")
testCloud.authenticate()
print (testCloud.getContactsList())
testCloud.logout()