Skip to main content

Werk24 Client to read PDF- and Image-based Technical Drawings / Engineering Drawings

Project description

Werk24 Client

  • Understand the content of your PDF- and image-based Technical Drawings with a simple API call.

Werk24 offers an easy to use API to extract information from PDF- and image-based Technical Drawings. With the API are able to obtain:

  • Thumbnails of the Page / Canvas / Sectionals (Cuts and Perspectives)
  • Measures incl. tolerances

Check our website at https://www.werk24.biz. The project is persistently improved. Get in touch with us to obtain your API key.

Installation

Pip installation

pip install werk24

Documentation

See https://werk24.github.io/docs/.

CLI

To get a first impression, you can run the CLI:

usage: w24cli techread [-h] [--ask-techread-started] [--ask-page-thumbnail]
                   [--ask-sheet-thumbnail] [--ask-sectional-thumbnail]
                   [--ask-variant-measures]
                   input_files

Example

import sys
import asyncio
from werk24 import W24TechreadClient, W24AskVariantOverallDimensions, Hook

# get the drawing
with open(drawing_path, "rb") as drawing_handle
    drawing_bytes = drawing_handle.read()

async def main(drawing_path:str) -> None:

    # define the hooks
    hooks = [Hook(ask=W24AskVariantOverallDimensions(),function=print)]

    # make the session and start the reading process
    client = W24TechreadClient.make_from_env()
    async with client as session
        session.read_drawing_with_hooks(drawing_bytes, hooks)

if  __name__ == "__main__":
    try:
        drawing_path = sys.argv[1]

    except KeyError:
        sys.exit("Drawing Path Required as first argument")

    asyncio.run(main(drawing_path))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

werk24-0.2.3.tar.gz (99.7 kB view hashes)

Uploaded Source

Built Distribution

werk24-0.2.3-py3-none-any.whl (26.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page