Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/catdevnull/twitter-bots-milei-rebord-analisis
analisis de potenciales bots en tweets de Milei y Rebord
https://github.com/catdevnull/twitter-bots-milei-rebord-analisis
Last synced: 2 months ago
JSON representation
analisis de potenciales bots en tweets de Milei y Rebord
- Host: GitHub
- URL: https://github.com/catdevnull/twitter-bots-milei-rebord-analisis
- Owner: catdevnull
- Created: 2024-03-17T17:07:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-21T00:17:36.000Z (9 months ago)
- Last Synced: 2024-03-21T01:28:11.923Z (9 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## pedir datos con twscrape
```
#!/usr/bin/fish
cd rebord # o milei/
# --db ~/proy/milei-twitter/scraper-py/accounts.db
for id in (cat tweets.txt)
twscrape tweet_details $id > $id.json
end
for id in (cat tweets.txt)
twscrape favoriters $id > $id.likers.jsonl
end
for id in (cat tweets.txt)
twscrape retweeters $id > $id.retweeters.jsonl
end
```