معرفی شرکت ها


dsw-sdk-3.8.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Software development kit for the Data Stewardship Wizard.
ویژگی مقدار
سیستم عامل -
نام فایل dsw-sdk-3.8.0
نام dsw-sdk
نسخه کتابخانه 3.8.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jakub Drahoš
ایمیل نویسنده jakubdrahosJD@gmail.com
آدرس صفحه اصلی https://github.com/ds-wizard/dsw-sdk
آدرس اینترنتی https://pypi.org/project/dsw-sdk/
مجوز -
[![PyPI](https://img.shields.io/pypi/v/dsw-sdk)](https://pypi.org/project/dsw-sdk/) [![Static analysis](https://github.com/ds-wizard/dsw-sdk/actions/workflows/static_analysis.yml/badge.svg?branch=master)](https://github.com/ds-wizard/dsw-sdk/actions/workflows/static_analysis.yml) [![Tests](https://github.com/ds-wizard/dsw-sdk/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/ds-wizard/dsw-sdk/actions/workflows/tests.yml) [![Documentation Status](https://readthedocs.org/projects/dsw-sdk/badge/?version=latest)](https://dsw-sdk.readthedocs.io/en/latest/?badge=latest) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) # DSW SDK ### Introduction This projects aims at providing unified and easy-to-use Python library for communicating with the Data Stewardship Wizard API. For more info about the DSW project itself, see [official webpage](https://ds-wizard.org/) or the [API documentation](https://api.demo.ds-wizard.org/swagger-ui/). ### Installation You can install this library via PyPI: ```commandline pip install dsw-sdk ``` ### Quickstart The only mandatory step need in order to get going is to initialize the whole SDK and tell it, where is the DSW API located and how to connect to it: ```python from dsw_sdk import DataStewardshipWizardSDK dsw_sdk = DataStewardshipWizardSDK( api_url='http://localhost:3000', email='albert.einstein@example.com', password='password', ) ``` Now you are ready to go. > Note that this is only *illustrative example* and we encourage you **not** to store secrets like passwords in the source code. There are better mechanisms (env variables) introduced in the docs. ### Basic usage Most actions should be done via the high-level interfaces provided on an instance of the `DataStewardshipWizardSDK` class. These interfaces operate with subclasses of `Model` class (e.g. `user.User`) -- these are the DSW data entities. Basically they are just data classes with bunch of attributes and methods for saving the entity (`save()`) on the server and deleting it (`delete()`). ```python import os user = dsw_sdk.users.create_user( first_name='John', last_name='Doe', email='john.doe@example.com', ) user.password = os.getenv('SECRET_PASSWORD') user.save() ... user.delete() ``` For more advanced usage, see the [docs](https://dsw-sdk.readthedocs.io/en/latest/). ## Contributing Want to fix a bug or help with implementing new features? Don't hesitate to contact [us](mailto:jakubdrahosJD@seznam.cz) and read the [contributing doc](https://github.com/ds-wizard/dsw-sdk/blob/develop/contributing.md).


نیازمندی

مقدار نام
- pyjwt
- pyyaml
- requests


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl dsw-sdk-3.8.0:

    pip install dsw-sdk-3.8.0.whl


نصب پکیج tar.gz dsw-sdk-3.8.0:

    pip install dsw-sdk-3.8.0.tar.gz