Link: https://pypi.org/project/GeoSocialPy

GeoSocialPy Documentation

Table of Contents

  1. Introduction
  2. Installation
  3. Usage
  4. Project Structure
  5. Contribution Guidelines
  6. Contact

Introduction

GeoSocialPy is a Python package that makes it easy to perform geospatial analysis on tweets. It simplifies the process of fetching tweets based on location, performing geospatial analysis on them, and visualizing the data on an interactive map.


Installation

To install GeoSocialPy, you need to have Python installed on your machine. Once you have Python set up, you can install GeoSocialPy via pip:

 
pip install GeoSocialPy

Usage

To use GeoSocialPy, start by importing the package and initializing the GeoSocialPy object with your Twitter API credentials:

pythonCopy code
from geosocialpy import GeoSocialPy

gsp = GeoSocialPy(
  api_key='your-api-key',
  api_key_secret='your-api-key-secret',
  access_token='your-access-token',
  access_token_secret='your-access-token-secret'
)