Metadata-Version: 2.0
Name: pubg-client
Version: 0.1.4
Summary: A python client for the PlayerUnknowns Battlegrounds API
Home-page: https://github.com/huntcsg/pubg-client
Author: Hunter Senft-Grupp
Author-email: huntcsg@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: pubg client webclient playerunknowns battlegrounds api
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 :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Games/Entertainment :: First Person Shooters
Requires-Dist: requests
Requires-Dist: pendulum
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest-html; extra == 'dev'
Requires-Dist: requests; extra == 'dev'
Requires-Dist: requests-mock; extra == 'dev'
Requires-Dist: jsonschema; extra == 'dev'
Requires-Dist: sphinx; extra == 'dev'
Requires-Dist: sphinx-rtd-theme; extra == 'dev'
Requires-Dist: isort; extra == 'dev'
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: ipython; extra == 'dev'
Requires-Dist: bumpversion; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Provides-Extra: testing
Requires-Dist: pytest; extra == 'testing'
Requires-Dist: pytest-cov; extra == 'testing'
Requires-Dist: pytest-html; extra == 'testing'
Requires-Dist: requests; extra == 'testing'
Requires-Dist: requests-mock; extra == 'testing'
Requires-Dist: jsonschema; extra == 'testing'

pubg-client
-----------

**A python client for the pubg API**

|travis| |pypi| |docs|

Features:

    * Versioned API Endpoint and response payloads
    * Pagination Support


    .. DANGER::

       This library is in alpha. I will try my utmost to not make backwards incompatible changes
       but it is possible that they will be necessary.

Installing
==========

   .. code-block:: shell

      $ pip install pubg-client

Development
===========

   .. code-block:: shell

      $ git clone https://github.com/huntcsg/pubg-client.git
      $ cd pubg-client
      $ ./utils/manage clean
      $ ./utils/manage test
      $ ./utils/manage docs


1. All pull requests must pass the travis-ci builds
2. All pull requests should include inline (docstring) documentation, updates to built documentation if applicable,
   and test coverage. This project aspires to be a 100% test coverage library.


.. |travis| image:: https://travis-ci.org/huntcsg/pubg-client.svg?branch=master
   :target: https://travis-ci.org/huntcsg/pubg-client
.. |pypi| image:: https://img.shields.io/pypi/v/pubg-client.svg
   :target: https://pypi.python.org/pypi/pubg-client
.. |docs| image:: https://readthedocs.org/projects/pubg-client/badge/?version=latest
   :target: http://pubg-client.readthedocs.io/en/latest/?badge=latest
Changes
=======

0.1.4
*****

- Initial Release

Authors
-------

Hunter Senft-Grupp

