Metadata-Version: 2.1
Name: aeripy
Version: 0.2.8
Summary: Aeries API Python Adapter
Home-page: https://aeripy.readthedocs.io/
Author: Ryan Aguilar
Author-email: ryanaguilar323@gmail.com
License: Simplified BSD License
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
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: Operating System :: OS Independent
Description-Content-Type: text/x-rst
License-File: LICENSE

Aeripy
======
.. image:: https://img.shields.io/pypi/v/aeripy.svg
   :target: https://pypi.org/project/aeripy/

.. image:: https://img.shields.io/pypi/pyversions/aeripy.svg
   :target: https://pypi.org/project/aeripy/

Aeripy is a Python adapter for the Aeries Student Information System API.  It's goal is to simplify interaction with your district's Aeries database.

This library is mostly a wrapper for the popular `requests <https://github.com/psf/requests>`_ library.

Note: Aeripy is in no way affiliated with Aeries Software, Inc. This module is based on their publicly available documentation.

Installation
-------------

Aeripy is supported on Python 3.8+. The recommended way to install Aeripy is via pip.

.. code-block::

    pip install aeripy

Quickstart
___________

The following example uses the Aeries demo database URL and API key.
Both are found in their `documentation <https://support.aeries.com/support/solutions/articles/14000113681-aeries-api-building-a-request>`_.

To use this module with your own Aeries database, you will need your district's URL and API key.  See the `URL and API Key`_ section for details.

Load the demo url and api key from the .env.example file (in production you will create and use your own .env file).

.. code-block:: python3

    from dotenv import load_dotenv
    load_dotenv('./.env.example')

    hostname = os.getenv('AERIES_URL')
    api_key = os.getenv('API_KEY')

Create an Aeripy instance and use that to interact with the API.

.. code-block:: python3

    from aeripy import Aeripy

    aeries = Aeripy(hostname=hostname, api_key=api_key)

    # Get all staff
    staff_list = aeries.get_staff()

    # Print the last name of the 55th staff member
    print(staff_list[55].last_Name)

    # Output:
    # Barrows

    # Print the first name of the 55th staff member
    print(staff_list[55].last_Name)

    # Output:
    # James

    # Print the ID of the 55th staff member
    print(staff_list[55].id)

    # Output:
    # 994748

Check out the `full documentation <https://aeripy.readthedocs.io>`_ for a list of currently supported methods and more examples.

URL and API Key
------------------------

You must have access to the Security section in Aeries Web to obtain or create the API key.


