À propos d'Olycab

À propos d'Olycab

Olycab est une solution moderne conçue pour simplifier et digitaliser la gestion des cabinets médicaux. Né du constat que de nombreux médecins perdent un temps précieux dans les tâches administratives, Olycab a été développé pour offrir un outil complet, intuitif et sécurisé.

  • flag

    Notre Mission

    Aider les professionnels de santé à se concentrer sur l'essentiel : leurs patients. Grâce à une plateforme simple, fluide et performante, Olycab automatise les tâches répétitives et améliore l'organisation quotidienne.

  • workspace_premium

    Nos Valeurs

    Sécurité : protection optimale des données médicales.

    Efficacité : des outils rapides et fiables.

    Innovation : une solution flexible et évolutive.

The cadwork API unlocks significant efficiencies for timber construction and prefabrication by bridging design intent with fabrication execution. Successful integrations balance technical translation (geometry and joinery fidelity) with practical concerns (versioning, licensing, and shop verification). Start small, validate thoroughly, and iterate toward fuller automation and BIM interoperability.

If you want, I can: produce a short sample script outline for reading parts via a cadwork SDK (specify target language), draft a data-mapping plan to convert cadwork elements to IFC entities, or sketch a CNC export pipeline. Which would you prefer?

The Cadwork API (Application Programming Interface) is a powerful development framework that allows users and developers to extend the core functionality of Cadwork 3D, the leading software for timber construction and BIM modeling. By using scripting languages like Python or C++, the API enables the automation of repetitive tasks, the creation of custom plugins, and the seamless integration of Cadwork data with external enterprise resource planning (ERP) or production systems. Core Capabilities and Features

The API provides deep access to the Cadwork 3D engine, allowing for programmatic manipulation of geometric and metadata elements. Key features include:

Automated Geometry Creation: Programmatically create and manipulate parts, such as beams, panels, and complex 3D connections, without manual drafting.

Data Extraction and List Generation: Automate the production of material lists, production lists, and hardware calculations directly from the 3D model.

Custom User Interfaces: Create specialized dialogs and menus using Python toolkits like Tkinter to guide users through specific workflows.

Import/Export Automation: Develop custom export routines to share data with CNC machines, web viewers, or BIM management tools.

Element Attributes: Manage and modify an unlimited number of user attributes to structure design data for BIM compliance. Development Ecosystem

Cadwork has increasingly focused on making the API accessible through modern scripting environments:

Python Integration: Since version 27, Cadwork has offered a robust Python API (CwAPI3D). It uses CPython, allowing developers to leverage a vast ecosystem of standard and third-party libraries for complex calculations or data handling.

Integrated Learning Environment: The software includes Python IDLE, an environment for writing and testing scripts directly within the Cadwork interface.

CwAPI3D Package: For advanced users, the cwapi3d package can be installed via PyPI to enable development in professional IDEs like Visual Studio Code or PyCharm.

Rhino/Grasshopper Link: Through Rhino.Inside Cadwork, developers can use Grasshopper’s visual programming to drive parametric designs directly into the Cadwork 3D environment. Practical Applications

The API is commonly used to build "helpers"—small, specific plugins that solve niche engineering problems. Examples include:

Dual Export Plugins: Simultaneously exporting shop drawings for both a container and its individual components to streamline production.

Automated Framing: Extending the standard framing modules to include specialized joinery or proprietary hardware connections.

ERP Connectivity: Linking the 3D model to external databases to ensure real-time synchronization between design and stock management. News Version 30 - cadwork 3D

The "cadwork API" refers to the programming interfaces (Python and C++) used to automate workflows and extend the functionality of cadwork, a leading CAD/CAM software for timber construction. While there is no single "foundational" academic paper for the API itself, its development and use are documented through technical repositories, industry presentations, and recent AI-integration initiatives. Core API Documentation and Resources

Official Python API Repository: The cadwork-api GitHub repository serves as the primary technical reference, containing the source code and documentation for the Python interface.

MCP Server for AI Assistance: As of early 2026, an MCP (Model Context Protocol) server was launched to help developers use AI assistants to generate grounded scripts and explore API modules more effectively.

Technical Implementation: The API allows for the automation of BIM workflows, bridge creation between CAD and other applications, and integration with tools like Rhino.Inside. Relevant Technical "Papers" and Presentations

While not traditional peer-reviewed journals, these documents function as the authoritative "papers" for the software's API evolution:

Rhino User Meeting (2023): A presentation by Michael Brunner titled "APIs in Cadwork: The Bridge Between CAD and Other Applications" details how the Python/C++ APIs optimize timber workflows.

Cadwork Version 30 News: Official documentation (e.g., Version 30 SP2024 PDF) outlines performance optimizations and database compatibility critical for API stability. Key Use Cases

Automation: Generating 3D geometry and shop drawings automatically.

Data Exchange: Linking cadwork models to external databases or structural analysis software.

AI Integration: Using the new MCP server to reduce coding "hallucinations" when scripting complex timber joints or layouts.

The Cadwork API (primarily the for Python) allows you to automate repetitive tasks, create custom geometric elements, and extend the functionality of Cadwork 3D without modifying the core software. 1. Initial Setup

To start scripting, your environment must be configured so Cadwork recognizes your plugins. Locate the API folder : Open Cadwork 3D and navigate to Help → Info . Click on the Userprofile folder link. Directory Structure : In your Userprofile, navigate to 3d\API.x64 Create a Plugin

: Every script requires its own folder. The folder name and the must be identical .../API.x64/MyTool/MyTool.py Icon (Optional) : Add a 30x30 pixel file with the same name (e.g., MyTool.png ) in the same folder to see it in the Cadwork Plugin Bar 2. Core Programming Concept The API is organized into Controllers , each managing specific aspects of the model. element_controller

: Used to create, modify, or query elements like beams and panels. utility_controller

: Used for user interactions, such as picking points in 3D or showing dialog boxes. geometry_controller

: Handles mathematical operations and 3D coordinate transformations. 3. Basic "Hello World" Script

This example asks the user for a point and creates a drilling vector. element_controller utility_controller # Get user input uc.get_user_bool( Create drilling? = uc.get_user_point() = uc.get_user_double( Enter length # Create element (Diameter 40, length, point, direction) ec.create_drilling_vectors( , length, pt, cadwork.point_3d( Use code with caution. Copied to clipboard 4. Advanced Use Cases Auto-Attributes

: Create "script-filled attributes" that automatically calculate values (like weight or surface area) at runtime based on geometry. External Integration

: Since Cadwork uses standard CPython, you can import external libraries like for custom GUIs. Batch Exporting

: Automate the export of shop drawings or container data to external files. 5. Debugging and Resources Cadwork Python Documentation

Unlocking Automation: A Deep Dive into the Cadwork API In the world of timber construction, precision and speed aren't just goals—they are survival requirements. As projects grow in complexity, manual modeling often becomes a bottleneck. This is where the Cadwork API

changes the game. By moving beyond standard tools and into the realm of custom scripting, you can automate repetitive tasks, ensure flawless consistency, and push the boundaries of what’s possible in 3D design. What is the Cadwork API?

The Cadwork API (Application Programming Interface) is a bridge that allows external scripts to interact directly with Cadwork 3D. While Cadwork has long supported powerful built-in modules, the API—specifically the Python-based interface

introduced in version 27—empowers users to write their own "helpers" and plugins.

Whether you need to manipulate thousands of parts at once or generate complex list calculations, the API provides the hooks to do it without changing the core program code. Why Python? The Modern Standard

Cadwork chose Python for its API for several strategic reasons: Accessibility

: Python is famously beginner-friendly with a readable syntax, making it accessible to engineers who aren't full-time developers. Vast Ecosystem : Because it uses , you can integrate standard Python modules like directly into your Cadwork workflows. Rapid Development

: Python allows you to write powerful automation in fewer lines of code than older languages, speeding up the transition from "idea" to "working plugin". Transformative Use Cases What can you actually

with it? The possibilities range from "quality-of-life" fixes to total workflow transformations. 1. Part Manipulation and Geometry

The API allows for the programmatic creation and modification of 3D parts. You can: Automate repetitive modeling

: Instantly create plate-and-hole configurations or complex prismatic solids based on input parameters. Geometric analysis

: Calculate distances between 3D points or filter elements based on specific geometric limit values. 2. Attribute Management Data is just as important as geometry in BIM. The API’s Attribute Controller Auto-tagging

: Automatically assign user attributes to elements to structure the design. Mass updates

: Change material properties or production types across thousands of elements simultaneously. 3. List and Output Automation

One of the most time-consuming parts of any project is documentation. The API can: Generate custom reports : Run list calculations and outputs directly via script. Batch Exporting

: Use the API to handle various import and export functions, ensuring data consistency across different trades. Getting Started: From IDLE to Advanced Plugins

Starting with the Cadwork API doesn't require a massive infrastructure. Cadwork Documentation

The cadwork API (officially CwAPI3D) is a programming interface that allows you to automate tasks and create custom plugins within cadwork 3D. It primarily supports Python, though a C++ interface is also available. Core Functionality

The API provides "Controllers" to interact with different parts of the 3D model:

Element Controller: Create, modify, copy, and delete architectural and structural elements (beams, panels, drillings).

File Controller: Manage exports and imports for various formats like IFC, Rhino, STEP, and STL.

Utility Controller: Access general data like camera positions, coordinate systems, and visibility states.

Attribute Controller: Read and write user attributes for BIM and data management. Getting Started with Python

Installation: You can install the local stub package via pip to get IDE autocompletion: pip install cwapi3d.

File Structure: Scripts must be placed in your user profile folder under ...\3d\API.x64\. Every script requires its own folder, and the Python file must share the folder's name (e.g., MyPlugin/MyPlugin.py).

Running Scripts: Once placed, your script appears as a button in the Plugin Bar (Window -> Plugins) within cadwork 3D. You don't need to restart cadwork to test code changes; simply save the .py file and click the button again. Development Resources Cadwork Python Documentation


cadwork is a leading 3D CAD/BIM software widely used in the timber construction, civil engineering, and steel construction industries. Unlike generic CAD platforms, cadwork specializes in frame manufacturing, roof trusses, modular buildings, and heavy timber engineering.

Theory is useful, but real value comes from application. Here are six proven ways companies use the cadwork API to save time and reduce errors.

| Benefit | Impact | |---------|--------| | Time savings | Reduce hours of manual work to seconds. | | Error reduction | Eliminate manual entry mistakes. | | Repeatability | Run the same process on any project. | | Integration | Connect cadwork to the rest of your digital workflow. | | Competitive edge | Deliver faster, more consistent designs. |

Cadwork is a CAD/BIM platform focused on timber construction, joinery, and general structural modeling. The Cadwork API lets developers and power users:

Nos Chiffres

Olycab en Quelques Chiffres

Des résultats concrets qui témoignent de la croissance de notre solution et de la confiance de nos utilisateurs.

group

0

professionnels de santé utilisent déjà Olycab

calendar_month

0

rendez-vous gérés chaque mois via Olycab

medical_services

0

consultations organisées et suivies avec Olycab

schedule

+0%

d'amélioration dans l’organisation des rendez-vous chaque mois

Solution de gestion de cabinet médical Olycab

Une Solution Complète pour la Gestion de Votre Cabinet Médical

  • Cadwork Api Here

    The cadwork API unlocks significant efficiencies for timber construction and prefabrication by bridging design intent with fabrication execution. Successful integrations balance technical translation (geometry and joinery fidelity) with practical concerns (versioning, licensing, and shop verification). Start small, validate thoroughly, and iterate toward fuller automation and BIM interoperability.

    If you want, I can: produce a short sample script outline for reading parts via a cadwork SDK (specify target language), draft a data-mapping plan to convert cadwork elements to IFC entities, or sketch a CNC export pipeline. Which would you prefer?

    The Cadwork API (Application Programming Interface) is a powerful development framework that allows users and developers to extend the core functionality of Cadwork 3D, the leading software for timber construction and BIM modeling. By using scripting languages like Python or C++, the API enables the automation of repetitive tasks, the creation of custom plugins, and the seamless integration of Cadwork data with external enterprise resource planning (ERP) or production systems. Core Capabilities and Features

    The API provides deep access to the Cadwork 3D engine, allowing for programmatic manipulation of geometric and metadata elements. Key features include:

    Automated Geometry Creation: Programmatically create and manipulate parts, such as beams, panels, and complex 3D connections, without manual drafting.

    Data Extraction and List Generation: Automate the production of material lists, production lists, and hardware calculations directly from the 3D model.

    Custom User Interfaces: Create specialized dialogs and menus using Python toolkits like Tkinter to guide users through specific workflows.

    Import/Export Automation: Develop custom export routines to share data with CNC machines, web viewers, or BIM management tools.

    Element Attributes: Manage and modify an unlimited number of user attributes to structure design data for BIM compliance. Development Ecosystem

    Cadwork has increasingly focused on making the API accessible through modern scripting environments:

    Python Integration: Since version 27, Cadwork has offered a robust Python API (CwAPI3D). It uses CPython, allowing developers to leverage a vast ecosystem of standard and third-party libraries for complex calculations or data handling.

    Integrated Learning Environment: The software includes Python IDLE, an environment for writing and testing scripts directly within the Cadwork interface.

    CwAPI3D Package: For advanced users, the cwapi3d package can be installed via PyPI to enable development in professional IDEs like Visual Studio Code or PyCharm.

    Rhino/Grasshopper Link: Through Rhino.Inside Cadwork, developers can use Grasshopper’s visual programming to drive parametric designs directly into the Cadwork 3D environment. Practical Applications

    The API is commonly used to build "helpers"—small, specific plugins that solve niche engineering problems. Examples include:

    Dual Export Plugins: Simultaneously exporting shop drawings for both a container and its individual components to streamline production.

    Automated Framing: Extending the standard framing modules to include specialized joinery or proprietary hardware connections.

    ERP Connectivity: Linking the 3D model to external databases to ensure real-time synchronization between design and stock management. News Version 30 - cadwork 3D cadwork api

    The "cadwork API" refers to the programming interfaces (Python and C++) used to automate workflows and extend the functionality of cadwork, a leading CAD/CAM software for timber construction. While there is no single "foundational" academic paper for the API itself, its development and use are documented through technical repositories, industry presentations, and recent AI-integration initiatives. Core API Documentation and Resources

    Official Python API Repository: The cadwork-api GitHub repository serves as the primary technical reference, containing the source code and documentation for the Python interface.

    MCP Server for AI Assistance: As of early 2026, an MCP (Model Context Protocol) server was launched to help developers use AI assistants to generate grounded scripts and explore API modules more effectively.

    Technical Implementation: The API allows for the automation of BIM workflows, bridge creation between CAD and other applications, and integration with tools like Rhino.Inside. Relevant Technical "Papers" and Presentations

    While not traditional peer-reviewed journals, these documents function as the authoritative "papers" for the software's API evolution:

    Rhino User Meeting (2023): A presentation by Michael Brunner titled "APIs in Cadwork: The Bridge Between CAD and Other Applications" details how the Python/C++ APIs optimize timber workflows.

    Cadwork Version 30 News: Official documentation (e.g., Version 30 SP2024 PDF) outlines performance optimizations and database compatibility critical for API stability. Key Use Cases

    Automation: Generating 3D geometry and shop drawings automatically.

    Data Exchange: Linking cadwork models to external databases or structural analysis software.

    AI Integration: Using the new MCP server to reduce coding "hallucinations" when scripting complex timber joints or layouts.

    The Cadwork API (primarily the for Python) allows you to automate repetitive tasks, create custom geometric elements, and extend the functionality of Cadwork 3D without modifying the core software. 1. Initial Setup

    To start scripting, your environment must be configured so Cadwork recognizes your plugins. Locate the API folder : Open Cadwork 3D and navigate to Help → Info . Click on the Userprofile folder link. Directory Structure : In your Userprofile, navigate to 3d\API.x64 Create a Plugin

    : Every script requires its own folder. The folder name and the must be identical .../API.x64/MyTool/MyTool.py Icon (Optional) : Add a 30x30 pixel file with the same name (e.g., MyTool.png ) in the same folder to see it in the Cadwork Plugin Bar 2. Core Programming Concept The API is organized into Controllers , each managing specific aspects of the model. element_controller

    : Used to create, modify, or query elements like beams and panels. utility_controller

    : Used for user interactions, such as picking points in 3D or showing dialog boxes. geometry_controller

    : Handles mathematical operations and 3D coordinate transformations. 3. Basic "Hello World" Script

    This example asks the user for a point and creates a drilling vector. element_controller utility_controller # Get user input uc.get_user_bool( Create drilling? = uc.get_user_point() = uc.get_user_double( Enter length # Create element (Diameter 40, length, point, direction) ec.create_drilling_vectors( , length, pt, cadwork.point_3d( Use code with caution. Copied to clipboard 4. Advanced Use Cases Auto-Attributes The cadwork API unlocks significant efficiencies for timber

    : Create "script-filled attributes" that automatically calculate values (like weight or surface area) at runtime based on geometry. External Integration

    : Since Cadwork uses standard CPython, you can import external libraries like for custom GUIs. Batch Exporting

    : Automate the export of shop drawings or container data to external files. 5. Debugging and Resources Cadwork Python Documentation

    Unlocking Automation: A Deep Dive into the Cadwork API In the world of timber construction, precision and speed aren't just goals—they are survival requirements. As projects grow in complexity, manual modeling often becomes a bottleneck. This is where the Cadwork API

    changes the game. By moving beyond standard tools and into the realm of custom scripting, you can automate repetitive tasks, ensure flawless consistency, and push the boundaries of what’s possible in 3D design. What is the Cadwork API?

    The Cadwork API (Application Programming Interface) is a bridge that allows external scripts to interact directly with Cadwork 3D. While Cadwork has long supported powerful built-in modules, the API—specifically the Python-based interface

    introduced in version 27—empowers users to write their own "helpers" and plugins.

    Whether you need to manipulate thousands of parts at once or generate complex list calculations, the API provides the hooks to do it without changing the core program code. Why Python? The Modern Standard

    Cadwork chose Python for its API for several strategic reasons: Accessibility

    : Python is famously beginner-friendly with a readable syntax, making it accessible to engineers who aren't full-time developers. Vast Ecosystem : Because it uses , you can integrate standard Python modules like directly into your Cadwork workflows. Rapid Development

    : Python allows you to write powerful automation in fewer lines of code than older languages, speeding up the transition from "idea" to "working plugin". Transformative Use Cases What can you actually

    with it? The possibilities range from "quality-of-life" fixes to total workflow transformations. 1. Part Manipulation and Geometry

    The API allows for the programmatic creation and modification of 3D parts. You can: Automate repetitive modeling

    : Instantly create plate-and-hole configurations or complex prismatic solids based on input parameters. Geometric analysis

    : Calculate distances between 3D points or filter elements based on specific geometric limit values. 2. Attribute Management Data is just as important as geometry in BIM. The API’s Attribute Controller Auto-tagging

    : Automatically assign user attributes to elements to structure the design. Mass updates

    : Change material properties or production types across thousands of elements simultaneously. 3. List and Output Automation cadwork is a leading 3D CAD/BIM software widely

    One of the most time-consuming parts of any project is documentation. The API can: Generate custom reports : Run list calculations and outputs directly via script. Batch Exporting

    : Use the API to handle various import and export functions, ensuring data consistency across different trades. Getting Started: From IDLE to Advanced Plugins

    Starting with the Cadwork API doesn't require a massive infrastructure. Cadwork Documentation

    The cadwork API (officially CwAPI3D) is a programming interface that allows you to automate tasks and create custom plugins within cadwork 3D. It primarily supports Python, though a C++ interface is also available. Core Functionality

    The API provides "Controllers" to interact with different parts of the 3D model:

    Element Controller: Create, modify, copy, and delete architectural and structural elements (beams, panels, drillings).

    File Controller: Manage exports and imports for various formats like IFC, Rhino, STEP, and STL.

    Utility Controller: Access general data like camera positions, coordinate systems, and visibility states.

    Attribute Controller: Read and write user attributes for BIM and data management. Getting Started with Python

    Installation: You can install the local stub package via pip to get IDE autocompletion: pip install cwapi3d.

    File Structure: Scripts must be placed in your user profile folder under ...\3d\API.x64\. Every script requires its own folder, and the Python file must share the folder's name (e.g., MyPlugin/MyPlugin.py).

    Running Scripts: Once placed, your script appears as a button in the Plugin Bar (Window -> Plugins) within cadwork 3D. You don't need to restart cadwork to test code changes; simply save the .py file and click the button again. Development Resources Cadwork Python Documentation


    cadwork is a leading 3D CAD/BIM software widely used in the timber construction, civil engineering, and steel construction industries. Unlike generic CAD platforms, cadwork specializes in frame manufacturing, roof trusses, modular buildings, and heavy timber engineering.

    Theory is useful, but real value comes from application. Here are six proven ways companies use the cadwork API to save time and reduce errors.

    | Benefit | Impact | |---------|--------| | Time savings | Reduce hours of manual work to seconds. | | Error reduction | Eliminate manual entry mistakes. | | Repeatability | Run the same process on any project. | | Integration | Connect cadwork to the rest of your digital workflow. | | Competitive edge | Deliver faster, more consistent designs. |

    Cadwork is a CAD/BIM platform focused on timber construction, joinery, and general structural modeling. The Cadwork API lets developers and power users:

  • done_outline

    Ordonnances Électroniques Sécurisées

    Rédigez, sauvegardez et imprimez vos ordonnances directement depuis Olycab avec des modèles personnalisables conformes aux normes médicales avec accès à la base de données des médicaments tunisiens.

  • done_outline

    Gestion Multi-Médecins et Multi-Spécialités

    Administrez un cabinet multi-spécialités : gestion des droits, attribution intelligente des patients, organisation efficace du travail des équipes.

  • done_outline

    Import Facile de Vos Données Existantes

    Importez vos anciens dossiers patients et données médicales en toute simplicité. Notre équipe vous accompagne pour une migration sécurisée.

Témoignages

Ce Que Nos Utilisateurs Disent de Notre Solution

Cette solution a complètement transformé la gestion de mon cabinet. L'interface intuitive me permet de gérer mes patients et rendez-vous en quelques clics.

testimonial

Dr. Salem Mefteh

Médecin Généraliste

La gestion des dossiers médicaux n'a jamais été aussi simple. Tout est centralisé et sécurisé. Je recommande vivement cette solution !

testimonial

Dr. Sarra Rouached

Psychiatre

Les statistiques détaillées m’aident à comprendre l’activité du cabinet. La sécurité des données est irréprochable.

testimonial

Dr. Lynda Khaldi

Gynécologue

Gérez mieux, soignez mieux.

Rejoignez des centaines de professionnels de santé qui utilisent déjà notre solution pour mieux gérer leur cabinet. Demandez votre démonstration gratuite dès aujourd’hui !

Demander une Démo Gratuite