0

I have tried the following syntax:

c>lang = 'en'

But it still fetches non-english tweets as well.

Alessandro Togni
  • 680
  • 1
  • 9
  • 24
  • 2
    You haven't provided enough information to answer the question. Please read "How do I ask a good question?" https://stackoverflow.com/help/how-to-ask – Captain Caveman Mar 09 '22 at 13:13
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Mar 10 '22 at 15:43

1 Answers1

0

Try to include lang:en in the Search object.

c = twint.Config()
c.Search = " lang:en vegetables"
twint.run.Search(c)
Marina
  • 11
  • 1