Skip to content
This repository has been archived by the owner on Aug 21, 2019. It is now read-only.

JasperServer Library in Python, use to intreface OpenERP, Django and other python framework

Notifications You must be signed in to change notification settings

kryskool/JasperServer-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JasperServer

The goal of this project is to create a JasperServer REST client for Python.

Exemple

import sys
from jasperserver import Client
from jasperserver.admin import User
from jasperserver.exceptions import JsException

try:
    client = Client('http://localhost:8080/jasperserver/', 'jasperadmin', 'jasperadmin')
except JsException:
    print 'Error Authentification FAIL!'
    sys.exit(1)

try:
    # Must return a list with one record
    print User(client).get('joe')
except JsException:
    print 'Error when send user query'
    sys.exit(2)

About

JasperServer Library in Python, use to intreface OpenERP, Django and other python framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages