🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

aiqpy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiqpy

Python bindings for connecting to a AIQ8 server

0.9.2
PyPI
Maintainers
1

aiqpy

aiqpy is a wrapper library that allows you to interact with an AppearIQ 8 <https://appeariq.com>_ platform using Python.

The library connects to the REST APIs of the platform and takes care of authentication and session management so you can focus on funnier things.

Example: Changing the password of a user

.. code-block:: pycon

>>> platform = aiqpy.Connection(profile='dev')
>>> user = platform.get(['admin', 'users'], username='stephen.falken')[0]
>>> user['password'] = 'joshua'
>>> updated = platform.put(['admin', 'users'], user)

Dependencies

aiqpy uses Requests <http://python-requests.org>_ for performing HTTP requests.

License

aiqpy is licensed under GNU GPL v3.0.

Keywords

aiq8

FAQs

Did you know?

Socket

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.

Install

Related posts