forked from jgorset/facepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
38 lines (28 loc) · 848 Bytes
/
CHANGELOG
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
36
37
38
CHANGELOG
v0.3.1
- Fixed a bug that prevented the 'page' argument to GraphAPI#get from working
correctly.
v0.3
- GraphAPI#get now has a new argument 'page', which returns a generator
that iterates over each page of results.
v0.2.3
- The GraphAPI class may now be initialized by signed request.
v0.2.2
- Fix a bug that caused non-JSON data (e.g. pictures) to raise a ValueError.
v0.2.1
- Fix a bug that caused a TypeError if the 'path' argument is an integer.
v0.2
- Exceptions have been refactored:
# Pre-v0.2.0
from facepy import GraphAPI
from facepy.exceptions import APIError
try:
GraphAPI().get('johannes.gorset')
except APIError:
[...]
# Post-v0.2.0
from facepy import GraphAPI
try:
GraphAPI().get('johannes.gorset)
except GraphAPI.Error:
[...]