Code Monkey home page Code Monkey logo

zerionpy's Introduction

zerionPy

zerionPy is an easy-to-use API wrapper for Zerion Software's iFormBuilder. The goal of this project--along with its sister JavaScript-based library zerionJS--is to get you working with the iFormBuilder API in minutes instead of hours or days. The library takes care of all access token management; all you need to do is supply valid credentials and the library will request and renew access tokens for the duration of its execution.

Getting Started

To begin, install the module.

pip install zerionPy

After the module is installed, import it using the following command in your Python file:

from zerionPy import IFB

With the module imported, create an API connection with the following line:

api = IFB(SERVER, REGION, CLIENT_KEY, CLIENT_SECRET, VERSION)

The five parameters listed above are required for every API connection. Below are a list of accepted values for version and region.

Parameter Values
VERSION 6, 8, 8.1
REGION us, uk, au, hipaa, qa

In addition to these five required parameters, the following optional attributes may be configured in a params object. Below is a list of possible options.

Name Values Description
simple_response true/false when enabled, API calls will return only the response body
skip_rate_limit_retry true/false when enabled, 429 status codes will be returned instead of automatically retried

Making API Calls

This library is designed to make working with Zerion APIs as easy as possible. Each available command/resource combination is available as a distinct method. Methods are named with the following convention: commandResourceName. For example, a GET request to the profiles resource is named getProfiles().

Additionally, each method is defined to accept the necessary parameters to properly execute. For example, a GET request to the /records resource will require a profile id as well as page id. A corresponding function call may look like: api.getRecords(12345, 67890) where 12345 is the profile id and 67890 is the page id.

Querying a specific resource by ID will generally be done by the singular noun of the resource. For example, a GET request to the /records resource with id 1 would be named getRecord() and the function call could look something like: api.getRecord(12345, 67890, 1).

For a full list of API commands, refer to the official iForm API documentation here

How to Contribute

This library is a work in progress. As Zerion APIs are released, this library will be updated. Additionally, functionalities such as additional safeguards for erroneous function calls and improper parameter values may be added in the future. If you have a suggestion or run into any problems, please submit an Issue.

Change Log

  • February 1, 2023 (v1.1.3)
    • Added support for sandbox region
  • January 31, 2023 (v1.1.2)
    • added support for ZIM/User Management api apps
  • October 5, 2022 (v1.1.1)
    • fixed parameter list for copyPage()
  • July 15, 2022 (v1.1.0)
    • Added str, repr, and iter to ifbResponse class
  • June 18, 2022 (v1.0.0)
    • Initial Release

zerionpy's People

Contributors

jhsu98 avatar

Watchers

Jack 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.