Skip to content
This repository has been archived by the owner on Oct 1, 2023. It is now read-only.

Releases: Danie1/threads-api

v1.2.0 (Pydantic Typing for API)

20 Jul 22:13
ffd0e6a
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Supporting Pydantic typing for API responses, so you no longer have to guess. New examples have been updated at examples directory.
  • ✅Improved README.

v1.1.14

19 Jul 22:04
6b64f68
Compare
Choose a tag to compare

Threads API

Changelog

v1.1.13 (Stability + Improvements)

18 Jul 22:30
52ec412
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Improved error handling, and added more messages. It may advise to open an issue at times, including the response from Threads.
  • ✅Implemented private-api functionality of get_post() with pagination (similar to NPM version of threads-api) -> Solves #31
  • ✅Implemented repost/delete-repost functionality
  • ✅Implemented post that quotes another post
  • ✅Fixed this issue: #50
  • ✅Fixed this issue: #42
  • ✅Fixed this issue: #49
  • ✅Addressed these issues, so at the very least it will be easier to troubleshoot (they may have been solved entirely): #43 , #51 , #40 , #32 , #27 -> Please re-open if they have not been fixed by this (include the additional info printed).

v1.1.12

17 Jul 22:50
ddae429
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅A .session.json file will be created by-default to save default settings (to reduce risk of being flagged). You can disable it by passing ThreadsAPI(settings_path=None) / or customize its path in a similar way.
  • ✅ Fixed this issue: #47

v1.1.11

17 Jul 05:30
9360339
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Fixed minor issue: the http_sessions directory did not have an init.py file so it wasn't possible to import its modules.
  • ✅ Added the await api.close_gracefully() to the README.md.

v1.1.10 (Choose between aiohttp to requests)

16 Jul 21:49
e60a078
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Added functionality to choose the HTTP client. Choose between aiohttp (default), requests (the more common http requests library), the instagrapi session directly or implement your own.

This version allows you to configure HTTP_PROXY/HTTPS_PROXY, and additional configurations which are more complex with aiohttp.

v1.1.9

15 Jul 22:04
b50054b
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Revamped logger, to print in color and style. Set "LOG_LEVEL" to "DEBUG" and see for yourself ;)
  • ✅Enhanced the get_timeline() example to include a better implementation for pagination, to print at least a certain number of posts recursively.
  • ✅Refactored private requests code, to one focal place

v1.1.8

14 Jul 16:38
b50054b
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Fixed bug where some requests, such as like/unlike, returned "'NoneType' object is not subscriptable"
  • ✅ Implemented a get_timeline function for reading your feed, that supports pagination.

v1.1.6

13 Jul 22:11
c9222a8
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Fixed README to read we support Python 3.9, 3.10 and 3.11 (not just 3.9!)

v1.1.5

13 Jul 21:57
1c1a4d2
Compare
Choose a tag to compare

Threads API

Changelog

  • ✅Logging, includes setting logging-levels to ease troubleshooting
  • ✅Mute, Unmute, Restrict, Unrestrict, Block, Unblock Functionality
  • ✅Added documentation for contributing to Danie1/threads-api + added requirements.txt for those who like the old fashioned package management instead of python poetry.