origamiimaster / smash-data

Python code to query smash.gg database and process matchups

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Smash Data

Python code to query smash.gg database and process matchups.
Integrated with Elasticsearch for easy kibana visualizations.

Setup:

  1. Install Elasticsearch: Follow these instructions.
  2. Create an index labeled event-data:
PUT event-data
{
  "mappings": {
    "properties": {
      "timestamp": {
        "type": "date"
      }
    }
  }
}
  1. Initialize an index for games:
PUT game-data
{
}
  1. Install the Elasticsearch python API with pip install elasticsearch
  2. Run the main.py file to begin indexing

About

Python code to query smash.gg database and process matchups

License:MIT License


Languages

Language:Python 100.0%