Metadata-Version: 2.1
Name: pyopendota
Version: 0.2.6
Summary: A python interface for <OPENDOTA/> API
Home-page: https://github.com/hrishikeshrt/pyopendota
Author: Hrishikesh Terdalkar
Author-email: hrishikeshrt@linuxmail.org
License: MIT license
Keywords: opendota
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Games/Entertainment :: Real Time Strategy
Requires-Python: >=3.6
License-File: LICENSE
License-File: AUTHORS.rst

===============
<OPENDOTA/> API
===============


.. image:: https://img.shields.io/pypi/v/pyopendota?color=success
        :target: https://pypi.python.org/pypi/pyopendota

.. image:: https://readthedocs.org/projects/pyopendota/badge/?version=latest
        :target: https://pyopendota.readthedocs.io/en/latest/?version=latest
        :alt: Documentation Status

.. image:: https://img.shields.io/pypi/pyversions/pyopendota
        :target: https://pypi.python.org/pypi/pyopendota
        :alt: Python Version Support

.. image:: https://img.shields.io/github/issues/hrishikeshrt/pyopendota
        :target: https://github.com/hrishikeshrt/pyopendota/issues
        :alt: GitHub Issues

.. image:: https://img.shields.io/github/followers/hrishikeshrt?style=social
        :target: https://github.com/hrishikeshrt
        :alt: GitHub Followers

.. image:: https://img.shields.io/twitter/follow/hrishikeshrt?style=social
        :target: https://twitter.com/hrishikeshrt
        :alt: Twitter Followers

A python interface for <OPENDOTA/> API

The :code:`OpenDota` class provided with the package serves as a python
interface for the original OpenDota API in the form of a thin wrapper.
The class assumes some familiarity with the OpenDota API.

All method calls return serializable python objects, as return by the API,
in most cases a dict or a list. Response data is stored as JSON in a local
directory (Default: :code:`~/dota2`), to prevent the load on OpenDota API.


* Free software: MIT license
* Documentation: https://pyopendota.readthedocs.io.


Features
========

* Transparent wrapper for majority of the API calls
* Ability to authenticate using API key
* In-built and cusomizable limit to protect against frequent API calls
* Local file-based storage for frequent requests
* Basic CLI using :code:`fire`

Usage
=====

Use <OPENDOTA/> API in a project
--------------------------------

.. code-block:: python

    import opendota

    # Initialize the API-connection object
    client = opendota.OpenDota()

Get Common Entities
^^^^^^^^^^^^^^^^^^^

.. code-block:: python

    client.get_matches('match-id')
    client.get_player('player-id')
    client.get_team('team-id')

Search Functionality
^^^^^^^^^^^^^^^^^^^^

.. code-block:: python

    players = client.search_player('Dendi')
    teams = client.search_team('Alliance')
    heroes = client.search_hero('Crystal')
    leagues = client.search_league('International')

PostgreSQL Query
^^^^^^^^^^^^^^^^

OpenDota API supports arbitrary PostgreSQL query.

Check Database Schema:

.. code-block:: python

    client.get_schema()           # Lists all tables
    client.get_schema('matches')  # Lists schema for a specific table

Arbitrary PostgreSQL Query:

.. code-block:: python

    client.explorer("select * from matches where limit 1")


Use <OPENDOTA/> API Command Line Interface
------------------------------------------

Information about OpenDota class initialization:

.. code-block:: console

    opendota --help

Information about OpenDota methods:

.. code-block:: console

    opendota - --help

Run methods

.. code-block:: console

    opendota search_team Virtus
    opendota get_match 4080778303

*Powered by :code:`fire`*


About OpenDota API
==================

The OpenDota API provides Dota 2 related data including advanced match data
extracted from match replays.

OpenDota API Documentation: https://docs.opendota.com/


Credits
=======

* This package uses data provided by `The OpenDota API`_.

.. _`The OpenDota API`: https://docs.opendota.com/


History
=======

0.2.0 (2021-10-04)
------------------

* Improved Documentation
* League specific functions
* Basic CLI using `python-fire`
* Fantasy score calculation
* Bugfixes

0.1.0 (2021-07-20)
------------------

* First release on PyPI.


