66 This module implements the functionality described here
77 https://github.com/justintv/Twitch-API/blob/master/v3_resources/follows.md
88
9- .. autofunction:: by_channel(name, limit=25, offset=0, direction=Direction.DESC)
10- .. autofunction:: by_user(name, limit=25, offset=0, direction=Direction.DESC, sort_by=SortBy.CREATED_AT)
9+ .. autofunction:: by_channel(name, limit=25, offset=0,\
10+ direction=Direction.DESC)
11+ .. autofunction:: by_user(name, limit=25, offset=0,\
12+ direction=Direction.DESC, sort_by=SortBy.CREATED_AT)
1113 .. autofunction:: status(user, target)
1214"""
1315
@@ -22,9 +24,12 @@ def by_channel(name, limit=25, offset=0, direction=Direction.DESC):
2224 """Get channel's list of following users
2325
2426 :param name: Name of the channel
25- :param limit: Maximum number of objects in array. Default is 25. Maximum is 100.
26- :param offset: Object offset for pagination. Default is 0.
27- :param direction: Creation date sorting direction. Default is desc. Valid values are asc and desc.
27+ :param limit: Maximum number of objects in array.
28+ Default is 25. Maximum is 100.
29+ :param offset: Object offset for pagination.
30+ Default is 0.
31+ :param direction: Creation date sorting direction.
32+ Default is 'desc'. Valid values are 'asc' and 'desc'.
2833 :returns: JSON List of Follow objects
2934 """
3035 q = Qry ('channels/{channel}/follows' )
0 commit comments