sapiopylib


Namesapiopylib JSON
Version 2023.12.13.174 PyPI version JSON
download
home_page
SummaryOfficial Sapio Informatics Platform Python API
upload_time2023-12-13 22:55:49
maintainer
docs_urlNone
author
requires_python>=3.10
license
keywords eln lims rest sapio
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# sapiopylib: Official Sapio Informatics Platform Python API

<div align="center"><a href="https://www.sapiosciences.com" target="_blank">
  <img src="https://s3.amazonaws.com/public.exemplareln.com/sapio-pylib/sapio-sciencesofficial-python-api-library.png" alt="Sapio Sciences"><br>
</a></div>

-----------------
[![PyPI Latest Release](https://img.shields.io/pypi/v/sapiopylib.svg)](https://pypi.org/project/sapiopylib/) [![License](https://img.shields.io/pypi/l/sapiopylib.svg)](https://github.com/sapiosciences/sapio-py-tutorials/blob/master/LICENSE) [![Issues](https://img.shields.io/github/issues/sapiosciences/sapio-py-tutorials)](https://github.com/sapiosciences/sapio-py-tutorials/issues)

## What is it?
sapiopylib is a powerful Python package, developed and maintained by Sapio Sciences, that provides the ability to create endpoints to manipulate data and make configuration changes within the Sapio lab informatics platform in a quick and straightforward manner.

The package makes it easy to automate changes to and queries of different types of data in the system, ranging from records to notebooks and the entries within them. Intuitive datatypes, such as record models that allow for simple manipulation of data records and their fields, within the package help to make development nearly as straightforward as performing the same tasks in the application.

As well as serving as the most direct way to programmatically alter data in the application, sapiopylib makes it possible to create endpoints to alter and query configurations in the system. Configurations for system data types, lists used by the system, and more can be easily accessed using this package.

## Main Features
Here is a list of major features in this library:
- Support all Sapio REST API functions.
- Manipulate data records with record models using client-based caching. This allows you to batch requests easily for performance. Making your changes in mini-batch is also provides transactional commits outside of a webhook context for data record changes.
- Create new temporary data types easily with FormBuilder utility.
- Provides Protocol-Step API as we have defined in Sapio Java API.
- Supports creation of a Flask-based webhook server. Implement additional toolbar buttons, rules, validation logic to customize your ELN experiment, workflows, and user interface.

## Where to get it?
Installation is simple:
```sh
pip install sapiopylib
```
However, you may need to pay attention to the library version to ensure it is compatible with your Sapio Informatics Platform.

The correct versions for each platform can be found under the tutorial github. The github will create a branch under 'prior_releases' folder when a specific sapiopylib is made against a platform release. The installation manual inside the tutorial, with the correct branch checked out, will make a reference to the exact version you should install for that platform.

Pre-releases will reference the bleeding-edge non-GA Sapio Platform.

The latest release of sapiopylib marked with final status will reference the latest GA Sapio Platform. 

## Licenses
sapiopylib along with its tutorials in the github are licensed under MPL 2.0.
pypi.org is granted the right to distribute sapiopylib forever.

This license does not provide any rights to use any other copyrighted artifacts from Sapio Sciences. (And they are typically written in another programming language with no linkages to this library.)

## Dependencies
The following dependencies are required for this package:
- [requests - Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.](https://pypi.org/project/requests/2.7.0/)
- [pandas - pandasis a fast, powerful, flexible and easy to use open source data analysis and manipulation tool,  
  built on top of the Python programming language.](https://pandas.pydata.org/)
- [Flask - A simple framework for building complex web applications.](https://pypi.org/project/Flask/)
- [buslane - A simple implementation of event-bus system with proper type hinting](https://pypi.org/project/buslane/)
- [plotly.py - An open-source, interactive data visualization library for Python](https://pypi.org/project/plotly/)
- [kaleido - Static image export for web-based visualization libraries with zero dependencies](https://pypi.org/project/kaleido/)

## Documentation
All documentations, including code examples and installation guide, are provided at [our sapiopylib tutorial github](https://github.com/sapiosciences/sapio-py-tutorials).

## Getting Help
If you have support contract with Sapio Sciences, please use our [technical support channels](https://sapio-sciences.atlassian.net/servicedesk/customer/portals).

If you have any questions about how to use sapiopylib, please visit our tutorial page.

If you would like to report an issue on sapiopylib, or its tutorial content, please feel free to create a issue ticket at the tutorial github.

## About Us
Sapio is at the forefront of the Digital Lab with its science-aware platform for managing all your life science data with its integrated Electronic Lab Notebook, LIMS Software and Scientific Data Management System.

Visit us at <a href="https://www.sapiosciences.com">Sapio Sciences</a>

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "sapiopylib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "eln,lims,rest,sapio",
    "author": "",
    "author_email": "Yechen Qiao <yqiao@sapiosciences.com>",
    "download_url": "https://files.pythonhosted.org/packages/a5/f8/555c52f16067b315835cb6d8dcf1e6de61b1dd045d7f7accb7065709e13c/sapiopylib-2023.12.13.174.tar.gz",
    "platform": null,
    "description": "\n# sapiopylib: Official Sapio Informatics Platform Python API\n\n<div align=\"center\"><a href=\"https://www.sapiosciences.com\" target=\"_blank\">\n  <img src=\"https://s3.amazonaws.com/public.exemplareln.com/sapio-pylib/sapio-sciencesofficial-python-api-library.png\" alt=\"Sapio Sciences\"><br>\n</a></div>\n\n-----------------\n[![PyPI Latest Release](https://img.shields.io/pypi/v/sapiopylib.svg)](https://pypi.org/project/sapiopylib/) [![License](https://img.shields.io/pypi/l/sapiopylib.svg)](https://github.com/sapiosciences/sapio-py-tutorials/blob/master/LICENSE) [![Issues](https://img.shields.io/github/issues/sapiosciences/sapio-py-tutorials)](https://github.com/sapiosciences/sapio-py-tutorials/issues)\n\n## What is it?\nsapiopylib is a powerful Python package, developed and maintained by Sapio Sciences, that provides the ability to create endpoints to manipulate data and make configuration changes within the Sapio lab informatics platform in a quick and straightforward manner.\n\nThe package makes it easy to automate changes to and queries of different types of data in the system, ranging from records to notebooks and the entries within them. Intuitive datatypes, such as record models that allow for simple manipulation of data records and their fields, within the package help to make development nearly as straightforward as performing the same tasks in the application.\n\nAs well as serving as the most direct way to programmatically alter data in the application, sapiopylib makes it possible to create endpoints to alter and query configurations in the system. Configurations for system data types, lists used by the system, and more can be easily accessed using this package.\n\n## Main Features\nHere is a list of major features in this library:\n- Support all Sapio REST API functions.\n- Manipulate data records with record models using client-based caching. This allows you to batch requests easily for performance. Making your changes in mini-batch is also provides transactional commits outside of a webhook context for data record changes.\n- Create new temporary data types easily with FormBuilder utility.\n- Provides Protocol-Step API as we have defined in Sapio Java API.\n- Supports creation of a Flask-based webhook server. Implement additional toolbar buttons, rules, validation logic to customize your ELN experiment, workflows, and user interface.\n\n## Where to get it?\nInstallation is simple:\n```sh\npip install sapiopylib\n```\nHowever, you may need to pay attention to the library version to ensure it is compatible with your Sapio Informatics Platform.\n\nThe correct versions for each platform can be found under the tutorial github. The github will create a branch under 'prior_releases' folder when a specific sapiopylib is made against a platform release. The installation manual inside the tutorial, with the correct branch checked out, will make a reference to the exact version you should install for that platform.\n\nPre-releases will reference the bleeding-edge non-GA Sapio Platform.\n\nThe latest release of sapiopylib marked with final status will reference the latest GA Sapio Platform. \n\n## Licenses\nsapiopylib along with its tutorials in the github are licensed under MPL 2.0.\npypi.org is granted the right to distribute sapiopylib forever.\n\nThis license does not provide any rights to use any other copyrighted artifacts from Sapio Sciences. (And they are typically written in another programming language with no linkages to this library.)\n\n## Dependencies\nThe following dependencies are required for this package:\n- [requests - Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.](https://pypi.org/project/requests/2.7.0/)\n- [pandas - pandasis a fast, powerful, flexible and easy to use open source data analysis and manipulation tool,  \n  built on top of the Python programming language.](https://pandas.pydata.org/)\n- [Flask - A simple framework for building complex web applications.](https://pypi.org/project/Flask/)\n- [buslane - A simple implementation of event-bus system with proper type hinting](https://pypi.org/project/buslane/)\n- [plotly.py - An open-source, interactive data visualization library for Python](https://pypi.org/project/plotly/)\n- [kaleido - Static image export for web-based visualization libraries with zero dependencies](https://pypi.org/project/kaleido/)\n\n## Documentation\nAll documentations, including code examples and installation guide, are provided at [our sapiopylib tutorial github](https://github.com/sapiosciences/sapio-py-tutorials).\n\n## Getting Help\nIf you have support contract with Sapio Sciences, please use our [technical support channels](https://sapio-sciences.atlassian.net/servicedesk/customer/portals).\n\nIf you have any questions about how to use sapiopylib, please visit our tutorial page.\n\nIf you would like to report an issue on sapiopylib, or its tutorial content, please feel free to create a issue ticket at the tutorial github.\n\n## About Us\nSapio is at the forefront of the Digital Lab with its science-aware platform for managing all your life science data with its integrated Electronic Lab Notebook, LIMS Software and Scientific Data Management System.\n\nVisit us at <a href=\"https://www.sapiosciences.com\">Sapio Sciences</a>\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Official Sapio Informatics Platform Python API",
    "version": "2023.12.13.174",
    "project_urls": {
        "Bug Tracker": "https://github.com/sapiosciences/sapio-py-tutorials/issues",
        "Homepage": "https://github.com/sapiosciences"
    },
    "split_keywords": [
        "eln",
        "lims",
        "rest",
        "sapio"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "276071622a79b05b1fd39ae651bbffc0de52a936363b7ee171b1cbe1d085ff99",
                "md5": "f61cd55b38b2af51f267c578cb57639a",
                "sha256": "1ae9c3e3076a57d1369d4af640d18c4fb4efc0b873f020eebecd50b8d04a5c94"
            },
            "downloads": -1,
            "filename": "sapiopylib-2023.12.13.174-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f61cd55b38b2af51f267c578cb57639a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 199809,
            "upload_time": "2023-12-13T22:55:46",
            "upload_time_iso_8601": "2023-12-13T22:55:46.861438Z",
            "url": "https://files.pythonhosted.org/packages/27/60/71622a79b05b1fd39ae651bbffc0de52a936363b7ee171b1cbe1d085ff99/sapiopylib-2023.12.13.174-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5f8555c52f16067b315835cb6d8dcf1e6de61b1dd045d7f7accb7065709e13c",
                "md5": "441f1492efcc1b0a053b1ff43a4a208c",
                "sha256": "940467e46af07dae084d7a879efc7ac1f5554e2b02374f92a7942eb1c6740751"
            },
            "downloads": -1,
            "filename": "sapiopylib-2023.12.13.174.tar.gz",
            "has_sig": false,
            "md5_digest": "441f1492efcc1b0a053b1ff43a4a208c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 276662,
            "upload_time": "2023-12-13T22:55:49",
            "upload_time_iso_8601": "2023-12-13T22:55:49.040692Z",
            "url": "https://files.pythonhosted.org/packages/a5/f8/555c52f16067b315835cb6d8dcf1e6de61b1dd045d7f7accb7065709e13c/sapiopylib-2023.12.13.174.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-13 22:55:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sapiosciences",
    "github_project": "sapio-py-tutorials",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "sapiopylib"
}
        
Elapsed time: 0.19024s