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 give 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.
Check our website at https://werk24.io.
- 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
async def read_drawing(path, asks):
with open(path, "rb") as fid:
async with Werk24Client() as client:
return [msg async for msg in client.read_drawing(fid, asks)]
asyncio.run(read_drawing("<path>", [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 customize the installation. │
│ --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. │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯