
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
.. 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.
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.
.. code-block:: python3
# Aeries Demo URL and API key
hostname = 'demo.aeries.net/aeries/api/'
api_key = '477abe9e7d27439681d62f4e0de1f5e1'
# In production the URL and API key should not be hardcoded.
# For example, they can be retrieved from an environment variable
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.
You must have access to the Security section in Aeries Web to obtain or create the API key.
FAQs
Aeries API Python Adapter
We found that aeripy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.