|
1 月之前 | |
---|---|---|
.. | ||
_cli | 8 月之前 | |
config | 8 月之前 | |
logger | 8 月之前 | |
INSTALLATION.md | 8 月之前 | |
LICENSE | 8 月之前 | |
README.md | 8 月之前 | |
__init__.py | 8 月之前 | |
package_desc.md | 8 月之前 | |
pyproject.toml | 1 月之前 | |
setup.py | 2 月之前 | |
version.json | 1 月之前 | |
version.py | 8 月之前 |
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
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.
Taipy is a Python library for creating Business Applications. More information on our website. Taipy is split into multiple packages including taipy-common to let users install the minimum they need.
Taipy Common is a package designed to have the code that serves as basis for the other Taipy packages, including classes and methods to enable logging, cli and users to configure their Taipy application.
More in-depth documentation of taipy can be found here.
Want to install Taipy Common? Check out our INSTALLATION.md
file.
Want to help build Taipy Common? Check out our CONTRIBUTING.md
file.
Want to be part of the Taipy Common community? Check out our CODE_OF_CONDUCT.md
file.
taipy/
:
common/
: Common data structures, types, and functions.config/
: Configuration definition, management, and implementation. taipy.Config
is the main entrypoint for configuring a Taipy Core application.
_config_comparator/
: Internal package for comparing configurations._serializer/
: Internal package for serializing and deserializing configurations.checker/
: Configuration checker and issue collector implementation.common/
: Shared data structures, types, and functions.exceptions/
: taipy-common exceptions.global_app/
: GlobalAppConfig
implementation.stubs/
: Helper functions to create the config.pyi
file.INSTALLATION.md
: Instructions to install taipy-common.LICENSE
: The Apache 2.0 License.README.md
: Current file.setup.py
: The setup script managing building, distributing, and installing taipy-common.logger/
: Taipy logger implementation.tests/
:
common/
: Tests for the taipy-common package.