Jean-Robin d7206f5001 Re entrant and thread safe reloader (#2589) (#2612) 2 settimane fa
..
_cli dfc5fe344a Merge pull request #1865 from Avaiga/feature/#398-databricks-poc 8 mesi fa
_entity d7206f5001 Re entrant and thread safe reloader (#2589) (#2612) 2 settimane fa
_manager dfc5fe344a Merge pull request #1865 from Avaiga/feature/#398-databricks-poc 8 mesi fa
_orchestrator 6678003b3c Fix issue 2319 (#2321) 5 mesi fa
_repository 03b3ff3100 Feature/#923 create taipy common (#1833) 8 mesi fa
_version dfc5fe344a Merge pull request #1865 from Avaiga/feature/#398-databricks-poc 8 mesi fa
common daaf474b0e #2306 Simplify event consumer (#2600) 3 settimane fa
config afe72633e0 #enterprise-666 prepare migration feature into release/4.1 (#2604) 3 settimane fa
cycle 9373005365 Config Ref man (#1851) 8 mesi fa
data 44c366312b fix: make sure path is in unix format (#2267) (#2312) 5 mesi fa
exceptions 9373005365 Config Ref man (#1851) 8 mesi fa
job 9373005365 Config Ref man (#1851) 8 mesi fa
notification daaf474b0e #2306 Simplify event consumer (#2600) 3 settimane fa
reason 9373005365 Config Ref man (#1851) 8 mesi fa
scenario d7206f5001 Re entrant and thread safe reloader (#2589) (#2612) 2 settimane fa
sequence 183365bebc #2597 fix parent ids (#2602) 3 settimane fa
submission 9373005365 Config Ref man (#1851) 8 mesi fa
task 183365bebc #2597 fix parent ids (#2602) 3 settimane fa
INSTALLATION.md 1ef0fe25b8 fix: update aterises and CONTRIBUTING.md link 1 anno fa
LICENSE a655865ef0 removed src folder 1 anno fa
README.md 20adfc4719 Change versions to 4.0.0.dev0 (#1552) 10 mesi fa
__init__.py 9373005365 Config Ref man (#1851) 8 mesi fa
_core.py 03b3ff3100 Feature/#923 create taipy common (#1833) 8 mesi fa
_init.py 610461a9cb Improve config doc and remove deprecated function. (#1839) 8 mesi fa
_init_version.py 569f29cc06 Change year in copyright 1 anno fa
orchestrator.py 9373005365 Config Ref man (#1851) 8 mesi fa
package_desc.md 404685dab0 fix: remove the test, contributing, and code of conduct sections from the package long description 1 anno fa
pyproject.toml daaf474b0e #2306 Simplify event consumer (#2600) 3 settimane fa
setup.py 7b9c5f6688 Build and release processes improvements (#2499) 2 mesi fa
taipy.py acecde287e minor ref man improvement 7 mesi fa
version.json daaf474b0e #2306 Simplify event consumer (#2600) 3 settimane fa

README.md

Taipy Core

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

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

What is Taipy Core

Taipy is a Python library for creating Business Applications. More information on our website. Taipy is split into multiple packages including taipy-core 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.

A more in depth documentation of taipy can be found here.

Installation

Want to install Taipy Core? Check out our INSTALLATION.md file.

Contributing

Want to help build Taipy Core? Check out our CONTRIBUTING.md file.

Code of conduct

Want to be part of the Taipy Core community? Check out our CODE_OF_CONDUCT.md file.

Directory Structure

  • taipy/:
    • core/:
    • _entity/: Internal package for abstract entity definition and entity's properties management.
    • _manager/: Internal package for entity manager.
    • _orchestrator/: Internal package for task orchestrating and execution.
    • _repository/: Internal package for data storage.
    • _version/: Internal package for managing Taipy Core application version.
    • common/: Shared data structures, types, and functions.
    • config/: Configuration definition, management and implementation.
    • cycle/: Work cycle definition, management and implementation.
    • data/: Data Node definition, management and implementation.
    • exceptions/: taipy-core exceptions.
    • job/: Job definition, management and implementation.
    • notification/: Notification management system implementation.
    • scenario/: Scenario definition, management and implementation.
    • sequence/: Sequence definition, management and implementation.
    • submission/: Submission definition, management and implementation.
    • task/: Task definition, management and implementation.
    • taipy.py: Main entrypoint for taipy-core runtime features.
    • INSTALLATION.md: Instructions to install taipy-core.
    • LICENSE: The Apache 2.0 License.
    • README.md: Current file.
    • setup.py: The setup script managing building, distributing, and installing taipy-core.
  • tests/:
    • core/: Unit tests following the taipy/core/ structure.