RSA Archer Client Library

https://img.shields.io/pypi/v/pyarcher.svg https://img.shields.io/travis/kylecribbs/pyarcher.svg Documentation Status Updates

Python client library for interfacing with RSA Archer.

Features

  • TODO

Install

ArcherDB requires pyodbc for connecting to mssql so you may need to install additional packages.

Ubuntu: Required packages are unixodbc-dev g++ freetds-dev freetds-bin tdsodbc Centos: Required packages are gcc-c++ python-devel unixODBC-devel freetds Note: In the future we will have pyarcher.ArcherDB separated from pyarcher.Archer.

You may also need to configure your ODBC ini. For example in /etc/odbcinst.ini you may need the following configure

[FreeTDS]
Description=FreeTDS Driver
Driver=/usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so
Setup=/usr/lib/x86_64-linux-gnu/odbc/libtdsS.so
tds_version=8.0

FreeTDS python example

from pyarcher import ArcherDB
archer = ArcherDB("user", "password", "host", "database", query={"driver": "FreeTDS", "TDS_VERSION": "8.0"})
table = archer.get_table("tblAsyncJobQueue")
select = table.select()
data = archer.engine.execute(select)