twitter-scraper-selenium
twitter-scraper-selenium copied to clipboard
Install false
Please check . Some thinks wrong . Thanks for suppot
You're using Python 3.10?
You can clone this repository and try to install it from the source as well.
- Clone the repository
- Open Terminal in the repository directory
- Use the command
pip install .
Ok thanks for support . I will try . And feedback. So what is vesion of python requirement ?
After install it show "name "ex" not defined ." Please check on picture
Can you please share what code you're using that causes this error?. I just tried and it is working fine for me but might be something which is happening at your side
from twitter_scraper_selenium import scrap_profile scrap_profile(twitter_username="LauraHa51649745",output_format="csv",browser="chrome",tweets_count=10,filename="microsoft",directory="home\use\downloads") this is my code .
You're probably hitting the authentication page here. I got it too few times,
OK thanks . i got it . I have a question . i have a list of usenam id with txt file , and i would like to get the lastest tweet link and the lastest retweet link of all use on the list . Is posible ?
Yeah, it is possible
OH , I i happy to hear that. Can you give me some instruction
There are several ways I see,
- You can use twitter's API. But It often has a rate limit and is sometimes hard to deal with.
- You can use this library with the proxy of the country which might have loose internet laws. You're hitting auth wall frequently probably that's the reason. I tried the same username twice or thrice and it worked for me.
- You can even check this library https://github.com/JustAnotherArchivist/snscrape. Not sure if is still working but last year it was working though, it uses Twitter's API I assume.
If you're planning to create your own web crawler, you can't use simple HTTP requests to scrape because front-end code is injected via JavaScript. You must use a Web browser in an unofficial way but still, you'll have to deal with auth wall. Have a look at their API documentation, they've tweet id in their API response which they call the status
field, you can just use that single field to generate a tweet's URL. Tweet's URL can be generated just by simple string concatenation https://twitter.com/{twitter_username}/status/{status}
. I think they probably will have some similar mechanism for retweets as well. Your data for requirements are much simpler and can be resolved via API itself, if you need more data which is not present in their API then you should go with this library.
Thankyou so much. I will learn and try