diff --git a/InstagramAPI/InstagramAPI.py b/InstagramAPI/InstagramAPI.py
index 71e5efe..7b077e9 100644
--- a/InstagramAPI/InstagramAPI.py
+++ b/InstagramAPI/InstagramAPI.py
@@ -586,6 +586,9 @@ def getUsernameInfo(self, usernameId):
def getSelfUsernameInfo(self):
return self.getUsernameInfo(self.username_id)
+ def getSelfSavedMedia(self):
+ return self.SendRequest('feed/saved')
+
def getRecentActivity(self):
activity = self.SendRequest('news/inbox/?')
return activity
diff --git a/README.md b/README.md
index e3ac21b..f9f5104 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,4 @@
# Instagram-API-python
-
-
@@ -51,139 +49,3 @@ The new fake Instagram account with an unverifird phone number after ~ 1-24 hour
2. Import InstagramAPI from a python command prompt
`from InstagramAPI import InstagramAPI`
-
-
-
-### Now InstagramAPI.py can:
-
-1) login;
-
-2) tagFeed (TODO);
-
-3) like;
-
-4) comment;
-
-5) deleteComment;
-
-6) expose;
-
-7) logout;
-
-8) editMedia;
-
-9) removeSelftag;
-
-10) mediaInfo;
-
-11) deleteMedia;
-
-12) getv2Inbox (TODO);
-
-13) getRecentActivity (TODO);
-
-14) megaphoneLog;
-
-15) timelineFeed;
-
-16) autoCompleteUserList;
-
-17) syncFeatures;
-
-18) removeProfilePicture;
-
-19) setPrivateAccount;
-
-20) setPublicAccount;
-
-21) getProfileData;
-
-22) editProfile;
-
-23) getUsernameInfo;
-
-24) getSelfUsernameInfo;
-
-25) getFollowingRecentActivity (TODO);
-
-26) getUserTags (TODO);
-
-27) getSelfUserTags;
-
-28) getMediaLikers (TODO);
-
-29) getGeoMedia (TODO);
-
-30) getSelfGeoMedia;
-
-31) fbUserSearch (TODO);
-
-32) searchUsers (TODO);
-
-33) searchUsername (TODO);
-
-34) syncFromAdressBook;
-
-35) searchTags (TODO);
-
-36) getTimeline (TODO);
-
-37) searchLocation (TODO);
-
-38) getSelfUserFeed;
-
-39) getPopularFeed (TODO);
-
-40) getUserFollowings;
-
-41) getUserFollowers;
-
-42) getSelfUserFollowers;
-
-43) getSelfUsersFollowing;
-
-44) unlike;
-
-45) getMediaComments;
-
-46) setNameAndPhone;
-
-47) getDirectShare;
-
-48) follow;
-
-49) unfollow;
-
-50) block;
-
-51) unblock;
-
-52) userFriendship;
-
-53) getLikedMedia;
-
-54) uploadPhoto;
-
-### TODO:
-
-1) changeProfilePicture;
-
-3) uploadVideo;
-
-4) direct_share;
-
-5) configureVideo;
-
-6) configure;
-
-7) getUserFeed;
-
-8) getHashtagFeed;
-
-9) getLocationFeed;
-
-10) backup;
-
-11) buildBody;
-
-If you want to help - write what you want to do. In other cases, you can do the exact same work with another assistant or me.