Skip to main content

The token and service implementation of sciebo RDS

Project description

MaintainabilityTest CoveragePyPI version

Research Data Services Common Package

This package make the most common modules in Sciebo RDS available in one place, so we do not have to maintain them in several places. In the RDS project, we use OAuth2 for authentication between numerious services, so we need a datastructure with methods, which supports this.

So this package implement 3 basic classes (User, Service, Token), which handles standard user-password authentication. If you need this classes with oauth2-support, you have to use the corresponding version (e.g. Service => Oauth2Service). (Notice: User does not have an oauth2-version, because token takes care of password or token and service takes care of everything else for oauth2.)

Usage

You can find some examples to use this package below. If you need more, please take a look into the tests or sciebo RDS (e.g. Token Storage).

from RDS import User
user1 = User("Max Mustermann")

Installation

pip install research-data-services-common

Optional dependencies

If you want to work with flask, you can use some additional features, when it is installed.

pip install "research-data-services-common[flask]"

JSONEncoder

With flask installed, you can use the JSONEncoder for flask.

from flask import Flask, jsonify
from RDS import Util

app = Flask(__name__)
app.json_encoder = Util.get_encoder(func_name="to_dict")

class Storage():
    def to_dict(self):
        return {"foo": "bar"}

@app.route("/")
def hello():
    return jsonify(Storage())

If you want to use builtin json, you do not need flask. Then you can use monkeypatch-method.

from RDS import Util
import json

class Storage():
    def to_dict(self):
        return {"foo": "bar"}

Util.monkeypatch(func_name="to_dict")

print(json.dumps(Storage())) # expects: '{"foo":"bar"}'

Notice: func_name defaults to to_json.

Monkeypatch JSONEncoder in Flask

If you want to monkeypatch json and flask, you can use the helper function monkeypatch from RDS.

from RDS import Util
Util.monkeypatch()

If it runs in a flask app context, it patches the app by itself. Otherwise you have to set the app-argument.

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World!'

from RDS import Util
Util.monkeypatch("getDict", app=app)

The first argument in the previous example, you can see how to set the method, which should be used for json encoding from your object. The monkeypatch-method patches JSONEncoder in your python installation and your app flask.

RO-Crate Parser

This helps you to work with ro-crate-metadata files. Take a look in the tests to see, how this can be used.

Available Modules

  • User
  • Service (Oauth2Service)
  • Token (Oauth2Token)
  • ROParser

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

research-data-services-common-0.54.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

research_data_services_common-0.54-py2.py3-none-any.whl (17.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file research-data-services-common-0.54.tar.gz.

File metadata

File hashes

Hashes for research-data-services-common-0.54.tar.gz
Algorithm Hash digest
SHA256 d27ec77f8db9524cc3ca59d76dcb52ce05aaf375e87167770d667bd6d40b799f
MD5 1c8886f2c08fe9cf7bc9440f7a5f579b
BLAKE2b-256 0743a5bd7ec1221fb9cb7ecaa8be191f0595148dd6abc7c2eeb14cf01ae50f1a

See more details on using hashes here.

File details

Details for the file research_data_services_common-0.54-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for research_data_services_common-0.54-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 078b01748922e6b001fef091174b9593a653f1aa9add97b128f25da776399a66
MD5 14fb071103a6c58c3171ba6d95bfe793
BLAKE2b-256 4c86a03fedc726a57b62654ba88d29b9fd20b537586727ab244f97a0fef1903e

See more details on using hashes here.

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