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 https://img.shields.io/badge/License-MIT-green.svg

flask-snow

Build apps on top of the ServiceNow REST API using the lightweight Flask microframework

  • Uses the pysnow library.

  • Supports OAuth for a seamless authentication / authorization experience.

Installation

$ pip install flask-snow

Documentation

The documentation can be found here

Usage

Minimal server. Does the following:

  1. Sets config

  2. Creates Snow instance

  3. Queries the incident table by number

  4. Returns JSON representation of the result

from flask import Flask, jsonify
from flask_snow import Snow

app = Flask(__name__)
app.config['SNOW_INSTANCE'] = '<instance name>'
app.config['SNOW_USER'] = '<user name>'
app.config['SNOW_PASSWORD'] = '<password>'

snow = Snow(app)

@app.route('/incidents/<number>')
def incident(number):
    incident = snow.resource(api_path='/table/incident')
    response = incident.get(query={'number': number}).one_or_none() or {}
    return jsonify(response)

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

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

Check out the examples for more!

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

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.8.tar.gz (4.2 kB view details)

Uploaded Source

File details

Details for the file flask-snow-0.2.8.tar.gz.

File metadata

  • Download URL: flask-snow-0.2.8.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for flask-snow-0.2.8.tar.gz
Algorithm Hash digest
SHA256 d677ad26742e0fd286af4ac51df1df5a00439c524d7382fee3591176b4da426f
MD5 fae612cb4cfc9c3423b5f5c9120aa90a
BLAKE2b-256 068337de2790a05faa6c06fa7733d6a0d3ba0d83365cec28e6bcaf607857fd31

See more details on using hashes here.

Supported by

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