forked from vtemian/buffpy
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathprofiles.py
More file actions
35 lines (26 loc) · 870 Bytes
/
profiles.py
File metadata and controls
35 lines (26 loc) · 870 Bytes
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
35
from pprint import pprint as pp
from colorama import Fore
from buffpy.managers.profiles import Profiles
from buffpy.api import API
# check http://bufferapp.com/developers/apps to retrieve a token
# or generate one with the example
token = 'awesome_token'
# instantiate the api object
api = API(client_id='client_id',
client_secret='client_secret',
access_token=token)
# get all profiles
profiles = Profiles(api=api)
print profiles.all()
# filter profiles using some criteria
profile = Profiles(api=api).filter(service='twitter')[0]
print profile
# get schedules of my twitter profile
profile = Profiles(api=api).filter(service='twitter')[0]
print profile.schedules
# update schedules times for my twitter profile
profile = Profiles(api=api).filter(service='twitter')[0]
profile.schedules = {
'days': ['tue', 'thu'],
'times': ['13:45']
}