Skip to main content

Python library for interacting with Axis device APIs

Project description

ax-devil-device-api

A Python library for interacting with Axis device APIs. Provides a type-safe interface with tools for device management, configuration, and integration.

Quick Start

Installation

pip install ax-devil-device-api

Environment Variables

For an easier experience, you can set the following environment variables:

export AX_DEVIL_TARGET_ADDR=<device-ip>
export AX_DEVIL_TARGET_USER=<username>
export AX_DEVIL_TARGET_PASS=<password>
export AX_DEVIL_USAGE_CLI="safe" # Set to "unsafe" to skip SSL certificate verification for CLI calls

Example Usage

import json
from ax_devil_device_api import Client, DeviceConfig

# Initialize client (recommended way using context manager)
config = DeviceConfig.https("192.168.1.81", "root", "fusion", verify_ssl=False)
with Client(config) as client:
    device_info = client.device.get_info()
    print(json.dumps(device_info, indent=4))

# Alternative: Manual resource management (not recommended)
client = Client(config)
try:
    device_info = client.mqtt_client.get_status()
    print(json.dumps(device_info, indent=4))
finally:
    client.close()  # Always close the client when done

CLI Usage Examples

Get device information

ax-devil-device-api-device-info --device-ip 192.168.1.10 --username admin --password secret info

Capture media

ax-devil-device-api-media --device-ip 192.168.1.10 --username admin --password secret --output image.jpg capture

Get SSH users

ax-devil-device-api-ssh --device-ip 192.168.1.10 --username admin --password secret list

Discover APIs

ax-devil-device-api-discovery --device-ip 192.168.1.10 --username admin --password secret list

And much more!

Disclaimer

This project is an independent, community-driven implementation and is not affiliated with or endorsed by Axis Communications AB. For official APIs and development resources, please refer to Axis Developer Community.

License

MIT License - See LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ax_devil_device_api-0.2.3.tar.gz (29.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ax_devil_device_api-0.2.3-py3-none-any.whl (44.0 kB view details)

Uploaded Python 3

File details

Details for the file ax_devil_device_api-0.2.3.tar.gz.

File metadata

  • Download URL: ax_devil_device_api-0.2.3.tar.gz
  • Upload date:
  • Size: 29.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for ax_devil_device_api-0.2.3.tar.gz
Algorithm Hash digest
SHA256 38809f2aaa2a782b16f7b886a43348723c4dcb1a590d6a77845ef612284d339d
MD5 ed014630e670f59856ce85c7168c9f8f
BLAKE2b-256 61a4e2e9a6398119e3fde9fe2af5bb63c35e68b30c687bd2642ea62d06c842a2

See more details on using hashes here.

File details

Details for the file ax_devil_device_api-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for ax_devil_device_api-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 dc33cd0970952adcc7188428ed9e798bfe60c5968ab01c9244e3848ac6235f29
MD5 c08aa6bf7906db8ec63d6104de14390a
BLAKE2b-256 ee2b6c86ff0f3f5c66ac2e2bafa192dd72a4e3106c56090d55831a16dee3179b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page