Package Details: twint 2.1.20-1

Git Clone URL: https://aur.archlinux.org/twint.git (read-only, click to copy)
Package Base: twint
Description: An advanced Twitter scraping & OSINT tool.
Upstream URL: https://github.com/twintproject/twint
Licenses: MIT
Submitter: marquicus
Maintainer: marquicus
Last Packager: marquicus
Votes: 2
Popularity: 0.000000
First Submitted: 2020-04-27 00:57 (UTC)
Last Updated: 2021-08-11 15:23 (UTC)

Latest Comments

theguy147 commented on 2022-10-04 12:49 (UTC) (edited on 2022-10-04 12:50 (UTC) by theguy147)

While I'm aware that twint has been archived upstream and is therefore not anymore maintained, it is still a useful tool.

Currently, twint does not work with python versions above 3.10.0 due to a version parsing error which can be fixed with this patch (for file ./twint/cli.py), created with diff:

334,335c334
<     version = ".".join(str(v) for v in sys.version_info[:2])
<     if float(version) < 3.6:
---
>     if sys.version_info[:2] < (3,6):

it would be nice, if this patch could be included in this package so we all can still profit of this nice program :)