taipy-rest


Nametaipy-rest JSON
Version 3.1.1 PyPI version JSON
download
home_pageNone
SummaryLibrary to expose taipy-core REST APIs.
upload_time2024-04-08 13:43:33
maintainerNone
docs_urlNone
authorAvaiga
requires_python>=3.8
licenseApache License 2.0
keywords taipy-rest
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Taipy-REST

## License
Copyright 2021-2024 Avaiga Private Limited

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
[http://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt)

Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.

## Usage
  - [Taipy-REST](#taipy-rest)
  - [License](#license)
  - [Usage](#usage)
  - [What is Taipy REST](#what-is-taipy-rest)
  - [Installation](#installation)
  - [Contributing](#contributing)
  - [Code of conduct](#code-of-conduct)
  - [Directory Structure](#directory-structure)


## What is Taipy REST

Taipy is a Python library for creating Business Applications. More information on our
[website](https://www.taipy.io). Taipy is split into multiple repositories including
_taipy-core_ and _taipy-rest_ to let users install the minimum they need.

Taipy Core mostly includes business-oriented
features. It helps users create and manage business applications and improve analyses
capability through time, conditions and hypothesis.

Taipy REST is a set of APIs built on top of the
_taipy-core_ library developed by Avaiga. This project is meant to be used as a complement
for **taipy** and its goal is to enable automation through rest APIs of processes built
on taipy.

The project comes with rest APIs that provide interaction with all of taipy modules:
 - DataNodes
 - Tasks
 - Jobs
 - Sequences
 - Scenarios
 - Cycles

A more in depth documentation of taipy can be found [here](https://docs.taipy.io).

## Installation

Want to install and try _Taipy REST_? Check out our [`INSTALLATION.md`](INSTALLATION.md) file.

## Contributing

Want to help build _Taipy REST_? Check out our [`CONTRIBUTING.md`](CONTRIBUTING.md) file.

## Code of conduct

Want to be part of the _Taipy REST_ community? Check out our
[`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) file.

## Directory Structure

- `taipy/`:
  - `rest/`:
    - `api/`: Endpoints and schema definitions.
      - `resources/`: Implementation of all endpoints related to taipy.
      - `schemas/`: Schemas related to taipy objects. Used for marshalling and unmarshalling data.
      - `views.py`: Mapping of resources to urls
    - `commons/`: Common files shared throughout the application
      - `templates/`: Swagger and redoc templates for generating the documentation
    - `app.py`: Flask app configuration and creation
    - `extensions.py`: Singletons used on the application factory
    - `rest.py`: Main python entrypoint for running _taipy-rest_ application.
    - `CODE_OF_CONDUCT.md`: Code of conduct for members and contributors of _taipy-rest_.
    - `CONTRIBUTING.md`: Instructions to contribute to _taipy-rest_.
    - `INSTALLATION.md`: Instructions to install _taipy-rest_.
    - `LICENSE`: The Apache 2.0 License.
    - `README.md`: Current file.
    - `setup.py`: The setup script managing building, distributing, and installing _taipy-rest_.
- `tests/`:
  - `rest/`: Unit tests following the `taipy/rest/` structure.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "taipy-rest",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "taipy-rest",
    "author": "Avaiga",
    "author_email": "dev@taipy.io",
    "download_url": "https://files.pythonhosted.org/packages/86/2f/0113d171b5cad8b3e08b576c4b26bf91f6080d916bf68f106f3947cc11eb/taipy-rest-3.1.1.tar.gz",
    "platform": null,
    "description": "# Taipy-REST\n\n## License\nCopyright 2021-2024 Avaiga Private Limited\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file\nexcept in compliance with the License. You may obtain a copy of the License at\n[http://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt)\n\nUnless required by applicable law or agreed to in writing, software distributed under the\nLicense is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\neither express or implied. See the License for the specific language governing permissions\nand limitations under the License.\n\n## Usage\n  - [Taipy-REST](#taipy-rest)\n  - [License](#license)\n  - [Usage](#usage)\n  - [What is Taipy REST](#what-is-taipy-rest)\n  - [Installation](#installation)\n  - [Contributing](#contributing)\n  - [Code of conduct](#code-of-conduct)\n  - [Directory Structure](#directory-structure)\n\n\n## What is Taipy REST\n\nTaipy is a Python library for creating Business Applications. More information on our\n[website](https://www.taipy.io). Taipy is split into multiple repositories including\n_taipy-core_ and _taipy-rest_ to let users install the minimum they need.\n\nTaipy Core mostly includes business-oriented\nfeatures. It helps users create and manage business applications and improve analyses\ncapability through time, conditions and hypothesis.\n\nTaipy REST is a set of APIs built on top of the\n_taipy-core_ library developed by Avaiga. This project is meant to be used as a complement\nfor **taipy** and its goal is to enable automation through rest APIs of processes built\non taipy.\n\nThe project comes with rest APIs that provide interaction with all of taipy modules:\n - DataNodes\n - Tasks\n - Jobs\n - Sequences\n - Scenarios\n - Cycles\n\nA more in depth documentation of taipy can be found [here](https://docs.taipy.io).\n\n## Installation\n\nWant to install and try _Taipy REST_? Check out our [`INSTALLATION.md`](INSTALLATION.md) file.\n\n## Contributing\n\nWant to help build _Taipy REST_? Check out our [`CONTRIBUTING.md`](CONTRIBUTING.md) file.\n\n## Code of conduct\n\nWant to be part of the _Taipy REST_ community? Check out our\n[`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) file.\n\n## Directory Structure\n\n- `taipy/`:\n  - `rest/`:\n    - `api/`: Endpoints and schema definitions.\n      - `resources/`: Implementation of all endpoints related to taipy.\n      - `schemas/`: Schemas related to taipy objects. Used for marshalling and unmarshalling data.\n      - `views.py`: Mapping of resources to urls\n    - `commons/`: Common files shared throughout the application\n      - `templates/`: Swagger and redoc templates for generating the documentation\n    - `app.py`: Flask app configuration and creation\n    - `extensions.py`: Singletons used on the application factory\n    - `rest.py`: Main python entrypoint for running _taipy-rest_ application.\n    - `CODE_OF_CONDUCT.md`: Code of conduct for members and contributors of _taipy-rest_.\n    - `CONTRIBUTING.md`: Instructions to contribute to _taipy-rest_.\n    - `INSTALLATION.md`: Instructions to install _taipy-rest_.\n    - `LICENSE`: The Apache 2.0 License.\n    - `README.md`: Current file.\n    - `setup.py`: The setup script managing building, distributing, and installing _taipy-rest_.\n- `tests/`:\n  - `rest/`: Unit tests following the `taipy/rest/` structure.\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Library to expose taipy-core REST APIs.",
    "version": "3.1.1",
    "project_urls": null,
    "split_keywords": [
        "taipy-rest"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "862f0113d171b5cad8b3e08b576c4b26bf91f6080d916bf68f106f3947cc11eb",
                "md5": "35781290e444375a658861c173af5eeb",
                "sha256": "bda4e3d57e78d62d11d985b340003da1785e4030e251e1deca388d1d33c6532e"
            },
            "downloads": -1,
            "filename": "taipy-rest-3.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "35781290e444375a658861c173af5eeb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 21326,
            "upload_time": "2024-04-08T13:43:33",
            "upload_time_iso_8601": "2024-04-08T13:43:33.852092Z",
            "url": "https://files.pythonhosted.org/packages/86/2f/0113d171b5cad8b3e08b576c4b26bf91f6080d916bf68f106f3947cc11eb/taipy-rest-3.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-08 13:43:33",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "taipy-rest"
}
        
Elapsed time: 0.23681s