Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Mastering Social Media Mining with Python
Mastering Social Media Mining with Python

Mastering Social Media Mining with Python: Unearth deeper insight from your social media data with advanced Python techniques for acquisition and analysis

eBook
$35.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Mastering Social Media Mining with Python

Chapter 2.  #MiningTwitter – Hashtags, Topics, and Time Series

This chapter is about data mining on Twitter. The topics covered in this chapter include the following:

  • Interacting with the Twitter API using Tweepy
  • Twitter data - the anatomy of a tweet
  • Tokenization and frequency analysis
  • Hashtags and user mentions in tweets
  • Time series analysis

Getting started

Twitter is one of the most well-known online social networks that enjoy extreme popularity in the recent years. The service they provide is referred to as microblogging, which is a variant of blogging where the pieces of content are extremely short-in the case of Twitter, there is a limitation of 140 characters like an SMS for each tweet. Different from other social media platforms, such as Facebook, the Twitter network is not bidirectional, meaning that the connections don't have to be mutual: you can follow users who don't follow you back, and the other way round.

Traditional media is adopting social media as a way to reach a wider audience, and most celebrities have a Twitter account to keep in touch with their fans. Users discuss happening events in real time, including celebrations, TV shows, sport events, political elections, and so on.

Twitter is also responsible for popularizing the use of the term hashtag as a way to group conversations and allow users...

The Twitter API

Twitter offers a series of APIs to provide programmatic access to Twitter data, including reading tweets, accessing user profiles, and posting content on behalf of a user.

In order to set up our project to access Twitter data, there are two preliminary steps, as follows:

  • Registering our application
  • Choosing a Twitter API client

The registration step will take a few minutes. Assuming that we are already logged in to our Twitter account, all we need to do is point our browser to the Application Management page at http://apps.twitter.com and create the new app.

Once the app is registered, under the Keys and Access Tokens tab, we can find the information we need to authenticate our application. The Consumer Key and Consumer Secret (also called API Key and API Secret, respectively) are a setting of your application. The Access Token and Access Token Secret are instead a setting for your user account. Your application can potentially ask for access to several users through their...

Collecting data from Twitter

In order to interact with the Twitter APIs, we need a Python client that implements the different calls to the API itself. There are several options as we can see from the official documentation (https://dev.twitter.com/overview/api/twitter-libraries). None of them are officially maintained by Twitter and they are backed by the open source community. While there are several options to choose from, some of them almost equivalent, so we will choose to use Tweepy here as it offers a wider support for different features and is actively maintained.

The library can be installed via pip:

$ pip install tweepy==3.3.0 

Tip

Python 3 compatibility

We're specifically installing version 3.3 of Tweepy, because of an issue with the latest version of Tweepy and Python 3, which prevents running the examples in our Python 3.4 environment. The issue was still unresolved at the time of writing, but it's likely to be fixed soon.

The first part of the interaction with the...

Analyzing tweets - entity analysis

This section is all about analyzing entities in tweets. We're going to perform some frequency analysis using the data collected in the previous section. Slicing and dicing this data will allow users to produce some interesting statistics that can be used to get some insights on the data and answer some questions.

Analyzing entities such as hashtags is interesting as these annotations are an explicit way for the author to label the topic of the tweet.

We start with the analysis of the tweets by Packt Publishing. As Packt Publishing supports and promotes open source software, we are interested in finding what kind of technologies are mentioned often by Packt Publishing.

The following script extracts the hashtags from a user timeline, producing a list of the most common ones:

# Chap02-03/twitter_hashtag_frequency.py 
import sys 
from collections import Counter 
import json 
 
def get_hashtags(tweet): 
  entities = tweet.get('entities', {}) 
  hashtags...

Analyzing tweets - text analysis

The previous section analyzed the entity field of a tweet. This provides useful knowledge on the tweet, because these entities are explicitly curated by the author of the tweet. This section will focus on unstructured data instead, that is, the raw text of the tweet. We'll discuss aspects of text analytics such as text preprocessing and normalization and we'll perform some statistical analysis on the tweets. Before digging the details, we'll introduce some terminology.

Tokenization is one of the important steps in the preprocessing phase. Given a stream of text (such as a tweet status), tokenization is the process of breaking this text down into individual units called tokens. In the simplest form, these units are words, but we could also work on a more complex tokenization that deals with phrases, symbols, and so on.

Tokenization sounds like a trivial task, and it's been widely studied by the natural language processing community. Chapter...

Getting started


Twitter is one of the most well-known online social networks that enjoy extreme popularity in the recent years. The service they provide is referred to as microblogging, which is a variant of blogging where the pieces of content are extremely short-in the case of Twitter, there is a limitation of 140 characters like an SMS for each tweet. Different from other social media platforms, such as Facebook, the Twitter network is not bidirectional, meaning that the connections don't have to be mutual: you can follow users who don't follow you back, and the other way round.

Traditional media is adopting social media as a way to reach a wider audience, and most celebrities have a Twitter account to keep in touch with their fans. Users discuss happening events in real time, including celebrations, TV shows, sport events, political elections, and so on.

Twitter is also responsible for popularizing the use of the term hashtag as a way to group conversations and allow users to follow a...

The Twitter API


Twitter offers a series of APIs to provide programmatic access to Twitter data, including reading tweets, accessing user profiles, and posting content on behalf of a user.

In order to set up our project to access Twitter data, there are two preliminary steps, as follows:

  • Registering our application
  • Choosing a Twitter API client

The registration step will take a few minutes. Assuming that we are already logged in to our Twitter account, all we need to do is point our browser to the Application Management page at http://apps.twitter.com and create the new app.

Once the app is registered, under the Keys and Access Tokens tab, we can find the information we need to authenticate our application. The Consumer Key and Consumer Secret (also called API Key and API Secret, respectively) are a setting of your application. The Access Token and Access Token Secret are instead a setting for your user account. Your application can potentially ask for access to several users through their access...

Left arrow icon Right arrow icon

Key benefits

  • Make sense of highly unstructured social media data with the help of the insightful use cases provided in this guide
  • Use this easy-to-follow, step-by-step guide to apply analytics to complicated and messy social data
  • This is your one-stop solution to fetching, storing, analyzing, and visualizing social media data

Description

Your social media is filled with a wealth of hidden data – unlock it with the power of Python. Transform your understanding of your clients and customers when you use Python to solve the problems of understanding consumer behavior and turning raw data into actionable customer insights. This book will help you acquire and analyze data from leading social media sites. It will show you how to employ scientific Python tools to mine popular social websites such as Facebook, Twitter, Quora, and more. Explore the Python libraries used for social media mining, and get the tips, tricks, and insider insight you need to make the most of them. Discover how to develop data mining tools that use a social media API, and how to create your own data analysis projects using Python for clear insight from your social data.

Who is this book for?

This book is for intermediate Python developers who want to engage with the use of public APIs to collect data from social media platforms and perform statistical analysis in order to produce useful insights from data. The book assumes a basic understanding of the Python Standard Library and provides practical examples to guide you toward the creation of your data analysis project based on social data.

What you will learn

  • * Interact with a social media platform via their public API with Python
  • * Store social data in a convenient format for data analysis
  • * Slice and dice social data using Python tools for data science
  • * Apply text analytics techniques to understand what people are talking about on social media
  • * Apply advanced statistical and analytical techniques to produce useful insights from data
  • * Build beautiful visualizations with web technologies to explore data and present data products

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 29, 2016
Length: 338 pages
Edition : 1st
Language : English
ISBN-13 : 9781783552016
Category :
Languages :
Concepts :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jul 29, 2016
Length: 338 pages
Edition : 1st
Language : English
ISBN-13 : 9781783552016
Category :
Languages :
Concepts :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 152.97
Mastering Social Media Mining with Python
$48.99
Machine Learning for the Web
$54.99
Advanced Machine Learning with Python
$48.99
Total $ 152.97 Stars icon

Table of Contents

9 Chapters
1. Social Media, Social Data, and Python Chevron down icon Chevron up icon
2. #MiningTwitter – Hashtags, Topics, and Time Series Chevron down icon Chevron up icon
3. Users, Followers, and Communities on Twitter Chevron down icon Chevron up icon
4. Posts, Pages, and User Interactions on Facebook Chevron down icon Chevron up icon
5. Topic Analysis on Google+ Chevron down icon Chevron up icon
6. Questions and Answers on Stack Exchange Chevron down icon Chevron up icon
7. Blogs, RSS, Wikipedia, and Natural Language Processing Chevron down icon Chevron up icon
8. Mining All the Data! Chevron down icon Chevron up icon
9. Linked Data and the Semantic Web Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.7
(6 Ratings)
5 star 66.7%
4 star 33.3%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Abdulhakim Haliru Dec 15, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great book. I ordered it all the way from Nigeria, it arrived and have been very resourceful for me.
Amazon Verified review Amazon
Brian Jun 10, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Used this book for one of my graduate degree classes. Very well written and its code works flawlessly.
Amazon Verified review Amazon
blastkat Apr 24, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Purchasing the right gift for the someone you care about on their birthday can be difficult. The second of my three daughters is in the IT field like me. She's very ambitious and an over-achiever. The week before her birthday we were talking on the phone about a business she owns. She was programming an API. She mentioned really wanting a Python book. We bounced ideas around and just talked. Afterward I took her offhand comment and purchased this for her birthday. I had it delivered to her office. She said her co-workers didn't understand why she was so excited over a book. I'm very happy with this purchase.
Amazon Verified review Amazon
777iam Mar 10, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I would like to state first that, I am a seasoned Java/C# software engineer with no experience in Python. I have been reading this book for last 3 days and now I feel really confidence how to apply data mining on social media API. The author provides different options and approaches and tell you which one is better. You will be able to understand how to retrieve real time post or archive ones with efficient code that will boost your productivity.Another important thing to mention, is that the source code provided is updated with current trends of API design and performance. I was able to port my old Java Twitter/Facebook mining engine into Python in just 3 hours. Man, I just feel that I have discovered the holy grail.Just reading the introduction and the chapter you want to master (Twitter, Facebook, Google+, etc), you will have the right arsenal to develop a solid social media mining framework.
Amazon Verified review Amazon
Amazon Customer Oct 20, 2016
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Nice bookIt is very helpful in getting insights of social media through Python programming.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.

Modal Close icon
Modal Close icon