Releases: luciengaitskell/python-instagram
Releases · luciengaitskell/python-instagram
PEP8 and Styling Updates
v0.4.0 --> v0.4.1 Changes:
- The
.idea
andtmp
folders have been ignored, for development. - The test file
instagram_import_test
has been renamedtest_instagram_import
to follow the file naming standard. - The library files have been updated to follow PEP8 (more closely).
Improved 'User' Class Handling (in 'Client'), Error Messages, and Variable Access
v0.3.1 --> v0.4.0 Changes:
- A
token
property has been added to theUser
class, for easier access. - The
HTTPException
message format has been fixed by taking themeta
value (if it exists). - The
Client.users
property has been changed to a dictionary (from a list), where the key is the Instagram user id.
Add 'errors' Module Import to Instagram
v0.3.0 --> v0.3.1 Changes:
- The
errors
module has been imported in Instagram, to allow for easier external access.
Improve User Data Storage and Retrieval
v0.2.0 --> v0.3.0 Changes:
- The
Client.add_user()
method has been changed toClient.get_user()
.Client.add_user()
now implements this function. This allows for a user to be created, but not added to the ‘Client’ object’s user list. - The
HTTPClient.request()
method now filters out the 'data' key/value on responses that have them. User
objects now store the Instagram account id and username on login and run ofUser.update_user_info()
.User.get_user_data()
has been added to allow for a dictionary to be returned of theUser
object data.
New Login Method (Authorization Code)
v0.1.1 --> v0.2.0 Changes:
static_login()
has been changed toset_token()
for less ambiguous nameset_token_from_code()
has been added for generating access tokens from authorization codes.- The build status has been added to
README.md
Fixed Setup Utils Name
v0.1.0 --> v0.1.1 Changes:
- The setup utils name has been fixed (
instagram.py
has been changed topython-instagram
)
Initial Release
v0.1.0 Initial Release