Skip to main content

Python client for Check Point R80 management server web APIs

Project description

cpauto

Build Status

cpauto is a client library, written in Python, for the web APIs exposed via Check Point R80 management server software. The Check Point R80 management APIs provide automation and integration capabilities that were not available in previous versions of Check Point management server software.

https://sc1.checkpoint.com/documents/R80/APIs/#introduction

Behold, the power of cpauto:

>>> import cpauto
>>> cc = cpauto.CoreClient('admin', 'vpn123', '10.6.9.81', verify=False)
>>> r = cc.login()
>>> print(r.status_code)
200
>>> print(r.json())
{u'last-login-was-at': {u'posix': 1478636363481, u'iso-8601': u'2016-11-08T15:19-0500'}, u'uid': ...}
>>> n = cpauto.Network(cc)
>>> r = n.add('net_mgmt', { 'subnet': '10.6.9.0', 'subnet-mask': '255.255.255.0' })
>>> print(r.status_code)
200
>>> print(r.json())
{u'domain': {u'domain-type': u'domain', u'name': u'SMC User', u'uid': u'41e821a0-3720-11e3-aa6e-0800200c9fde'}, ...}
>>> r = cc.publish()
>>> print(r.status_code)
200
>>> print(r.json())
{u'task-id': u'01234567-89ab-cdef-8b0a-92e9635a47d3'}
>>> r = cc.logout()
>>> print(r.status_code)
200
>>> print(r.json())
{u'message': u'OK'}

Installation

To install cpauto, simply:

$ pip install cpauto

Enjoy.

Release History

0.0.1 (2016-11-15)

Features

  • Full support for policy package, simple gateway, host, group and network objects.

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

cpauto-0.0.1.tar.gz (12.8 kB view hashes)

Uploaded Source

Built Distribution

cpauto-0.0.1-py2.py3-none-any.whl (18.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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