Skip to main content

Pysnow extension for Flask

Project description

https://coveralls.io/repos/github/rbw0/flask-snow/badge.svg?branch=master https://travis-ci.org/rbw0/flask-snow.svg?branch=master https://badge.fury.io/py/flask-snow.svg

flask-snow

Adds ServiceNow support to Flask.

Why?

Simplicity and responsiveness are two key ingredients to a successful UX, I believe the ServiceNow UI lacks both.

What can be done differently with flask-snow?

It lets you create a fully customizable Flask-powered platform on top of the ServiceNow REST API in a simple and seamless way with the help of the pysnow library.

Some usage examples:

  • Create your own software stack that integrates with ServiceNow.

  • Add ServiceNow support to your current Flask project.

  • Create a micro-service API relay, and perhaps use with a project written in another language.

Documentation

The documentation can be found here

Installation

$ pip install flask-snow

Usage

Minimal example.

Reads the config, sets up the snow extension and creates a route accessed at /incidents which returns a list of incidents.

from flask import Flask, request, jsonify
from flask_snow import Snow

app = Flask(__name__)
app.config.from_object('settings')

snow = Snow(app)


@app.route('/incidents')
def incident_list():
    limit = request.args.get('limit') or 10

    r = snow.resource(api_path='/table/incident')
    data = r.get(query={}, limit=limit).all()

    # Return a list of incidents
    return jsonify(list(data))


if __name__ == '__main__':
    app.run()

Name it server.py and run with python server.py

Check out the examples directory for more examples!

Compatibility

  • Python 2 and 3

  • Flask > 0.9

Author

Created by Robert Wikman <rbw@vault13.org> in 2018

JetBrains

Thank you Jetbrains for creating pycharm and for providing me with free licenses :thumbsup:

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

flask-snow-0.2.2.tar.gz (4.6 kB view hashes)

Uploaded Source

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