Coder Social home page Coder Social logo

python-openam's Introduction

python-openam

Documentation Status Build Status

This module is a python wrapper for the OpenAM API. With this module you can easy make use of the OpenAM API. The goal is to fully configure an OpenAM instance via the API.

Information:

OpenAM Versions

This python module should work with the following versions of OpenAM:

  • 12.0.0
  • 13.0.0

Tests will validate that the module works on these versions. There is no plan yet to update the module so it can also handle older "legacy" versions.

What is working in the current version of this module. The following (json/) endpoints work:

endpoint OpenAM 12 OpenAM 13
/authenticate V V
/users V V
/groups V V
/agents V V
/realms V V
/dashboard . .
/sessions V V
/serverinfo/* V V
/applications . .
/resourcetypes n.a. V
/policies . .
/applicationtypes . .
/conditiontypes . .
/subjecttypes . .
/subjectattributes . .
/decisioncombiners . .
/subjectattributes . .

V = Works

. = Not working (yet)

The following (xacml/) endpoints work:

endpoint OpenAM 12 OpenAM 13
/policies . .

The following (frrest/) endpoints work:

endpoint OpenAM 12 OpenAM 13
/token . .
/client . .

Installation

Installation is very simple, execute the following command:

pip install python-openam

Module is installed and can be used.

Example usage

The following is a basic example for authenticating and doing an logout on OpenAM:

import openam

am = openam.Openam(openam_url="http://openam.example.com:8080/openam/")
am.authenticate(username="amadmin", password="password_openam")
am.logout()

You'll have to update the 'openam_url' and both the 'username' and 'password' for your setup.

Creating an identity

import openam
am = openam.Openam(openam_url="http://openam.example.com:8080/openam/")
auth_data = am.authenticate(username="amadmin", password="password_openam")
user_data = {"username": "bjensen", "userpassword": "secret12", "mail": "[email protected]"}

am.create_identity(user=user_data)
{u'username': u'bjensen', u'dn': [u'uid=bjensen,ou=people,dc=openam,dc=forgerock,dc=org'], u'realm': u'/'..}
am.create_identity(user=user_data)
{u'reason': u'Conflict', u'code': 409, u'message': u'Resource already exists'}
am.logout()

Issues

Of course there are issues, please let me know. Also if you want to help me add functionality to the module, let me know and create a Pull Request.

All help is welcome. :-)

python-openam's People

Contributors

dj-wasabi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.