1e8a5eb54d
* Add "Documentation or code sample" in PR template "Type of change"
117 lines
2.2 KiB
Markdown
117 lines
2.2 KiB
Markdown
# Code samples
|
|
|
|
## From [@Quentame](https://github.com/Quentame)
|
|
|
|
pyicloud version: 0.9.6
|
|
|
|
### Configuration: 2SA + store cookie
|
|
|
|
https://github.com/home-assistant/core/blob/dev/homeassistant/components/icloud/config_flow.py
|
|
|
|
### Utilization: fetches
|
|
|
|
https://github.com/home-assistant/core/blob/dev/homeassistant/components/icloud/account.py
|
|
|
|
|
|
## From [@toothrobber](https://github.com/toothrobber)
|
|
|
|
pyicloud version: 0.9.1
|
|
|
|
```python
|
|
|
|
import os
|
|
import click
|
|
import calendar
|
|
import datetime
|
|
import pytz
|
|
import tzlocal
|
|
from pyicloud import PyiCloudService
|
|
|
|
|
|
print('Setup Time Zone')
|
|
time.strftime('%X %x %Z')
|
|
os.environ['TZ'] = 'America/New_York'
|
|
tz = tzlocal.get_localzone()
|
|
print(tz)
|
|
|
|
|
|
|
|
print('Py iCloud Services')
|
|
api = PyiCloudService('your@me.com', 'password')
|
|
|
|
if api.requires_2fa:
|
|
print "Two-factor authentication required. Your trusted devices are:"
|
|
|
|
devices = api.trusted_devices
|
|
for i, device in enumerate(devices):
|
|
print " %s: %s" % (i, device.get('deviceName', "SMS to %s" %
|
|
device.get('phoneNumber')))
|
|
|
|
device = click.prompt('Which device would you like to use?', default=0)
|
|
device = devices[device]
|
|
if not api.send_verification_code(device):
|
|
print "Failed to send verification code"
|
|
sys.exit(1)
|
|
|
|
code = click.prompt('Please enter validation code')
|
|
if not api.validate_verification_code(device, code):
|
|
print "Failed to verify verification code"
|
|
sys.exit(1)
|
|
|
|
#
|
|
# Devices
|
|
#
|
|
print('Devices')
|
|
print(api.devices)
|
|
print(api.devices[0])
|
|
print(api.iphone)
|
|
|
|
|
|
|
|
#
|
|
# Location
|
|
#
|
|
print('Location')
|
|
print(api.iphone.location())
|
|
|
|
|
|
|
|
#
|
|
# Status
|
|
#
|
|
print('Status')
|
|
print(api.iphone.status())
|
|
|
|
#
|
|
# Play Sound
|
|
#
|
|
# api.iphone.play_sound()
|
|
|
|
|
|
#
|
|
# Events
|
|
#
|
|
print('Events')
|
|
print(api.calendar.events())
|
|
from_dt = datetime.date(2018, 1, 1)
|
|
to_dt = datetime.date(2018, 1, 31)
|
|
print(api.calendar.events(from_dt, to_dt))
|
|
|
|
|
|
# ========
|
|
# Contacts
|
|
# ========
|
|
print('Contacts')
|
|
for c in api.contacts.all():
|
|
print c.get('firstName'), c.get('phones')
|
|
|
|
|
|
# =======================
|
|
# File Storage (Ubiquity)
|
|
# =======================
|
|
|
|
# You can access documents stored in your iCloud account by using the
|
|
# ``files`` property's ``dir`` method:
|
|
print('File Storage')
|
|
print(api.files.dir())
|
|
```
|