Git Product home page Git Product logo

Comments (3)

fatih-yavuz avatar fatih-yavuz commented on September 18, 2024 1

@rbnali @dkillion,
for temporary solution you can go to corresponding twitter_scraper.py file and wrap problematic lines with try catch

Exmaple twitter_scraper.py path: /Users/username/.local/share/virtualenvs/project-name/lib/python3.7/site-packages/twitter_scraper.py

Replace the lines:

replies = int(interactions[0].split(" ")[0].replace(comma, "").replace(dot,""))
retweets = int(interactions[1].split(" ")[0].replace(comma, "").replace(dot,""))

with

try:
    replies = int(interactions[0].split(" ")[0].replace(comma, "").replace(dot, ""))
except ValueError:
    replies = 0

try:
    retweets = int(interactions[1].split(" ")[0].replace(comma, "").replace(dot, ""))
except ValueError:
    retweets = 0

if you are having problem, you can do the same thing for likes.

from twitter-scraper.

dkillion avatar dkillion commented on September 18, 2024

Just installed via pipenv today and getting this error doing the example code:

from twitter_scraper import get_tweets
for tweet in get_tweets('kennethreitz', pages=1):
... print(tweet['text'])
...
Traceback (most recent call last):
File "", line 1, in
File "/home/dkillion/.local/share/virtualenvs/dkillion-HGOF7GqZ/lib/python3.6/site-packages/twitter_scraper.py", line 78, in get_tweets
yield from gen_tweets(pages)
File "/home/dkillion/.local/share/virtualenvs/dkillion-HGOF7GqZ/lib/python3.6/site-packages/twitter_scraper.py", line 42, in gen_tweets
replies = int(interactions[0].split(" ")[0].replace(comma, "").replace(dot,""))
ValueError: invalid literal for int() with base 10: '\n'

from twitter-scraper.

fatih-yavuz avatar fatih-yavuz commented on September 18, 2024

image
Same issue here

from twitter-scraper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.