Skip to content

Releases: subzeroid/instagrapi

2.1.1

18 Mar 21:24
Compare
Choose a tag to compare
  • Fixed working with Story
  • Added BioLink type for User
  • Added parameter for_story for photo_rupload
  • Added rotation property for StoryLocation, StoryMedia, Media
  • Updated docs/exceptions.md

2.0.3

06 Feb 14:20
Compare
Choose a tag to compare

Many bugs fixed

1.19.7

18 Aug 00:19
Compare
Choose a tag to compare
Call inject_sessionid_to_public for ClientLoginRequired

Link Sticker

26 Dec 17:16
Compare
Choose a tag to compare

Photo:

>>> from instagrapi import Client
>>> from instagrapi.types import StoryLink

>>> cl = Client(proxy='http://123.123.123.123:40007')
>>> cl.load_settings('/tmp/dump.json')

>>> cl.photo_upload_to_story("/tmp/tmpg133wsw2.mp4.jpg", "", links=[StoryLink(webUri="http://adw0rd.com")])

Video:

>>> from instagrapi import Client
>>> from instagrapi.types import StoryLink
>>> from instagrapi.story import StoryBuilder

>>> cl = Client(proxy='http://123.123.123.123:40007')
>>> cl.load_settings('/tmp/dump.json')

>>> link = StoryLink(webUri="http://adw0rd.com")
>>> buildout = StoryBuilder("/tmp/tmptsktx_j6.mp4", "Test").video(5, link=link.webUri)
Moviepy - Building video /tmp/tmpxf3x57e8.mp4.
Moviepy - Writing video /tmp/tmpxf3x57e8.mp4

Moviepy - Done !
Moviepy - video ready /tmp/tmpxf3x57e8.mp4

>>>  cl.video_upload_to_story(buildout.path, "", stickers=buildout.stickers)
Analizing video file "/tmp/tmpxf3x57e8.mp4"
Generating thumbnail "/tmp/tmpxf3x57e8.mp4.jpg"...

Story(pk='2737326000305270904', id='2737326000305270904_29817608135', code='CX8736KovB4', ....

fix 2FA and reply to comment

02 Dec 17:13
Compare
Choose a tag to compare
No "response_to_comment" method [#365] Added replied_to_comment_id fo…

…r cl.media_comment

See Post

11 Oct 21:21
Compare
Choose a tag to compare

Added link to a post in story
#412

Highlights

28 Sep 19:23
Compare
Choose a tag to compare

Added HighlightMixin (highlight_info, highlight_pk_from_url, extract_highlight_v1), ClientHighlightTestCase and docs

Support TOTP 2FA

21 Aug 11:35
Compare
Choose a tag to compare

New authorization

08 Jul 20:56
Compare
Choose a tag to compare

Support login_by_sessionid and Authorization header

Authorization header

08 Jul 17:25
Compare
Choose a tag to compare

Switched to a new authorization mechanism (from cookies to Authorization header)