Skip to main content

Python wrapper for Auth0's Webtask API.

Project description

https://img.shields.io/pypi/v/pywebtasks.svg https://img.shields.io/pypi/dm/pywebtasks.svg http://img.shields.io/travis/ssebastianj/pywebtasks.png

Installation

To install PyWebtasks, simply:

$ pip install pywebtasks

Usage

Create a new webtask token:

>>> from pywebtasks import tokens
>>> wt_token = tokens.create('your_auth_webtask_token')

To view your user’s auth webtask token go to the webtask.io token section.

To revoke a webtask token:

>>> tokens.revoke(wt_token)

Run a webtask from a string:

>>> import pywebtasks
>>> js_code = '''return function (context, cb) {
                   cb(null, "Hello, JS world!");
                 };
              '''
>>> req = pywebtasks.run(js_code,
                         'a_wt_container_name-0',
                         'a_webtask_token')
>>> req.content
'Hello, JS world!'

If you want to run the content of a source code file (for example, javascript.js), you can use the run_file function:

>>> req = pywebtasks.run_file('/path/to/a/file.js',
                              'a_wt_container_name-0',
                              'a_webtask_token')
>>> req.content
'Hello, JS world!'

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

pywebtasks-0.1.3.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

pywebtasks-0.1.3-py2.py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 2 Python 3

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