Unlock manufacturing intelligence from technical drawings with AI.
- Overview
- Why Werk24?
- Features
- Applications
- Installation
- Quick Start
- Documentation
- Community & Support
- Contributing
- License
Werk24 provides AI-powered solutions for extracting and interpreting technical drawings. This Python client enables easy interaction with the Werk24 API for processing technical drawings efficiently. The API gives you access to the following structured data:
- Meta Data: Drawing ID, Part ID, Designation, General Tolerances, General Roughness, Material, Weight, Bill of Material, Revision Table, Languages and Notes.
- Features: Dimensions incl. Tolerances, Threads, Bores, Chamfers, Roughnesses, GDnTs, Radii.
- Insights: Manufacturing Method, Postprocesses, Input Geometry, Output Geometry.
- Redaction: Redact information from Technical Drawings.
👉 Visit werk24.io to learn more or request a demo.
- Accelerate Quoting – Generate prices from 2D drawings in seconds.
- Reduce Manual Entry – Automatically capture metadata and dimensions.
- Speed Up Supplier Scouting – Match drawings with capable vendors.
- Protect IP – Anonymize sensitive details before sharing.
- Boost Productivity – Let engineers focus on design, not data extraction.
- Automated Extraction: Retrieve metadata, dimensions, and annotations from technical drawings.
- Fast Processing: Optimized API calls for efficient inference.
- Seamless Integration: Works with Python-based workflows for manufacturing, CAD, and ERP systems.
- JSON Output: Standardized response format for easy processing.
Harness Werk24 for:
- Instant Pricing: Automate 2D drawing-based quoting.
- Feasibility Checks: Evaluate RFQs efficiently.
- Configurator Auto-Fill: Populate online configurators with minimal input.
- Drawing Anonymization: Protect sensitive data in technical drawings.
- Supplier Scouting: Automate vendor selection for specific requirements.
- ERP Registration: Streamline incoming RFQ registrations.
- Structured Archiving: Organize drawings with metadata extraction.
Pip installation
pip install werk24 # install the library
werk24 init # obtain a trial license
Here's how you can use the Werk24 client to extract data from a technical drawing:
import asyncio
from werk24 import Werk24Client, AskMetaData, get_test_drawing
async def read_drawing(asks):
fid = get_test_drawing()
async with Werk24Client() as client:
return [msg async for msg in client.read_drawing(fid, asks)]
asyncio.run(read_drawing([AskMetaData()]))
See https://werk24.io/docs/index.html
To get a first impression, you can run the CLI:
$> werk24 --help
Usage: python -m werk24.cli.werk24 [OPTIONS] COMMAND [ARGS]...
╭─ Options ─────────────────────────────────────────────────────────────────────────────────╮
│ --log-level TEXT Set the log level [default: WARNING] │
│ --install-completion Install completion for the current shell. │
│ --show-completion Show completion for the current shell, to copy it or... |
│ --help Show this message and exit. │
╰───────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ────────────────────────────────────────────────────────────────────────────────╮
│ init Initialize Werk24 by providing or creating a license. │
│ health-check Run a comprehensive health check for the CLI. │
│ techread Read a drawing file and extract information. │
│ version Print the version of the Client. │
│ status Fetch and display the Werk24 system status. │
╰───────────────────────────────────────────────────────────────────────────────────────────╯
- Website: werk24.io
- Email: [email protected]
- LinkedIn: Werk24
Have questions? Request a demo or open an issue and we’ll be happy to help.
We welcome contributions that improve the client or documentation.
- Fork the repository and create a new branch.
- Make your changes and ensure tests pass with
pytest
. - Open a pull request describing your changes.
See CONTRIBUTING.md for more details.
The Werk24 Python Client requires a commercial Werk24 license to use. See LICENSE.txt for terms and conditions.