Book Image

Mastering Social Media Mining with Python

By : Marco Bonzanini
Book Image

Mastering Social Media Mining with Python

By: Marco Bonzanini

Overview of this book

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.
Table of Contents (15 chapters)
Mastering Social Media Mining with Python
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface

Mining open source software on GitHub


GitHub (https://github.com) is a hosting service for Git repositories. While private repositories are one of the key features for paying plans, the service is well known for hosting many open source services. On top of the source control management functionalities of Git, GitHub offers a bunch of features that make the management of an open source project easier (for example, bug tracking, wikis, feature requests, and so on).

Tip

Source control management software

A source control system (also known as version control or revision control) is one of the most important tools in software management as it keeps track of how the software under development is evolving. This aspect is often neglected by novice or solo developers, but it is crucial when working on complex projects, either in a team or independently. Among the advantages, there's the possibility of rolling back an undesirable change (for example, storing and restoring different versions of the...