Metadata-Version: 2.1
Name: eve-panel
Version: 0.3.1
Summary: Top-level package for Eve-Panel.
Home-page: https://jmosbacher.github.io//eve-panel
License: MIT
Author: Yossi Mosbacher
Author-email: joe.mosbacher@gmail.com
Requires-Python: >=3.7
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.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: eve (>=1.1.3,<2.0.0)
Requires-Dist: httpx (>=0.16.1,<0.17.0)
Requires-Dist: pandas (>=1.1.3,<2.0.0)
Requires-Dist: panel (>=0.10,<0.11)
Description-Content-Type: text/x-rst

=========
Eve-Panel
=========


.. image:: https://img.shields.io/pypi/v/eve_panel.svg
        :target: https://pypi.python.org/pypi/eve_panel

.. image:: https://img.shields.io/travis/jmosbacher/eve_panel.svg
        :target: https://travis-ci.com/jmosbacher/eve_panel

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



Dynamically create an httpx based client for any Eve api. Uses Param + Cerberus for type enforcement and Panel for GUIs.
This is just a prototype package,features will slowly be added as i need them for my own purposes.
The api is expected to change without warning based on my needs but feel free to fork or copy parts and adapt to your own needs.

To view the widgets in a notebook you will need to install the pyviz plugin. For details, see panel docs.

Basic usage::

        import eve
        from eve_panel import EveClient


        app = eve.Eve()

        client = eve_panel.EveClient.from_app(app)
        
        # optional
        client.auth.set_token("my-secret-token")

        api = client.db

        # show a resources gui
        api.resource_name 

        # get a specific item
        api.resource_name["item_id"]

        # get current page
        api.resource_name.current_page()

        # get next page
        api.resource_name.next_page()

        # get previous page
        api.resource_name.previous_page()


* Free software: MIT
* Documentation: https://eve-panel.readthedocs.io.


Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `briggySmalls/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`briggySmalls/cookiecutter-pypackage`: https://github.com/briggySmalls/cookiecutter-pypackage

