Questions tagged [twitter]
Twitter is an online social networking service and microblogging service that enables its users to send and read text-based messages of up to 140 characters, known as "tweets". Use this tag for questions which may arise when developing FOR Twitter. This tag is NOT for support questions about using the Twitter website or the official Twitter app.
80 questions
5 votes
1 answer
109 views
Twitter contact scraper with Tweepy & Django
I created a project for academic purposes that works on Twitter data. It should: Get all friends and follows of the user Store them in MongoDB Display them in a table I'm using django + plain HTML, ...
4 votes
0 answers
296 views
Python server that performs sentiment analysis on Twitter data
I have a fully working Python server that utilizes Tornado, asyncio, websockets and tweepy(Twitter's Streaming api). The main point of this server is to receive a query from the user, call upon tweepy ...
3 votes
2 answers
101 views
Utility functions for processing tweets or texts
I have 4 functions that process texts or tweepy.models.Status object (this object stores text information, author information, retweets & likes information of a ...
1 vote
1 answer
176 views
Models for analysing Twitter data (*which based on tweepy package)
I have three modules here models.py, functionals.py, and adjustment.py. These three may be ...
2 votes
0 answers
43 views
collecting.py module for working with Tweepy
I have a module collection.py that functions as a tool to collect tweets using tweepy. It has two classes : ...
4 votes
1 answer
898 views
Twitter data mining project
I've written this simple code, that is possible to find on my github profile (it simply downloads some twitter data and store in an excel file). It is one of my first experiments of using OOP in ...
2 votes
1 answer
1k views
how to classify tweets in python based on handful of domains [closed]
I am currently working on a project that classifies tweets based on certain categories of information they belong to (7 given categories for his project). For example, a tweet with the keywords "I ...
3 votes
1 answer
97 views
Interpreting tweets about football
I am trying to process the football tweets and extract information like goals, cards, corners, player name, team name. I write the code which works, but I may be missing some better python ...