Metadata-Version: 2.1
Name: Pyrez
Version: 0.9.6.4
Summary: An open-source wrapper for Hi-Rez API (Paladins, Realm Royale, and Smite), written in Python
Home-page: https://github.com/luissilva1044894/PyRez
Author: LuÃ­s(Lugg) Gustavo
Author-email: luis.silva.1044894@sga.pucminas.br
License: MIT
Download-URL: https://pypi.org/project/pyrez/#files
Project-URL: Documentation, http://pyrez.readthedocs.io/en/latest/?badge=latest
Project-URL: Source, https://github.com/luissilva1044894/PyRez
Description: Pyrez: Easily way to connect to Hi-Rez API
        =========================
        
        .. image:: https://img.shields.io/pypi/v/pyrez.svg
            :target: https://pypi.org/project/pyrez
        
        .. image:: https://readthedocs.org/projects/pyrez/badge/?version=latest
            :target: http://pyrez.readthedocs.io/en/latest/?badge=latest
        
        .. image:: https://img.shields.io/badge/license-MIT-green.svg
            :target: https://github.com/luissilva1044894/Pyrez/blob/master/LICENSE
        
        .. image:: https://img.shields.io/pypi/pyversions/pyrez.svg
            :target: https://pypi.org/project/pyrez
        
        .. image:: https://img.shields.io/github/contributors/luissilva1044894/Pyrez.svg
            :target: https://github.com/luissilva1044894/Pyrez/graphs/contributors
        
        **PyRez** is an open-source Python-based wrapper for `Hi-Rez <http://www.hirezstudios.com>`_ API that supports `Paladins <https://www.paladins.com>`_, `Realm Royale <https://github.com/apugh/realm-api-proposal/wiki>`_ and `Smite <https://www.smitegame.com>`_.
        
        Requeriments
        ------------
        
        - `Python <http://python.org>`_ 3.5(or higher).
        - The following libraries are required: `Requests <https://pypi.org/project/requests>`_ and *requests-aeaweb*.
        - `Access <https://fs12.formsite.com/HiRez/form48/secure_index.html>`_ to Hi-Rez Studios API.
        
        Installation
        ------------
        
        The easiest way to install **Pyrez** is using *pip*, Python's package manager:
        
        .. code-block:: bash
        
            pip install -U pyrez
        
        The required dependencies will be installed automatically.
        After that, you can use the library using:
        
        .. code-block:: python
        
            import pyrez
        
        Example
        -------
        
        .. code-block:: python
        
            from pyrez.api import PaladinsAPI
        
            paladinsAPI = PaladinsAPI(devId=1004, authKey="23DF3C7E9BD14D84BF892AD206B6755C")
            championsRank = paladinsAPI.getGodRanks("FeyRazzle")
        
            if championsRank is not None:
                for championRank in championsRank:
                    print(championRank.getWinratio())
        
        This example will print the winrate with every `Champion <https://www.paladins.com/champions>`_ of player `FeyRazzle <https://twitch.tv/FeyRazzle>`_.
        
Keywords: hirez hi-rez smite paladins realmapi open-source api wrapper library python api-wrapper paladins-api smitegame smiteapi realm-api python3 python-3 python-3-6
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/x-rst
