Skip to main content

Wrapper for SolidWorks and PDM APIs for a streamlined, Pythonic workflow.

Project description

Copyright (c) 2024 Sean Yeatts. All rights reserved.

This module wraps the SolidWorks and PDM APIs for a streamlined, Pythonic workflow.

Key Features

  • Intuitive Pythonic syntax for interacting with SolidWorks documents & PDM files.

  • Timestamped logging for insights into automated task performance.

  • Full API documentation detailing module components.

Navigate to the API Reference for a complete walkthrough of the module.

Quickstart

Key import statements :

import solidwrap                         # top level module import
from solidwrap import SolidWorks, Vault  # access to SolidWorks and PDM processes
from solidwrap import Filepath           # generic container for file objects

The following methods must be called before you can utilize the SolidWrap API :

solidworks = SolidWorks(version=2023)   # instantiate SolidWorks
vault = Vault(name='VAULT-NAME')        # instantiate PDM Vault ( case sensitive )

solidworks.connect()   # connect to SolidWorks client
vault.connect()        # connect to PDM Vault client

Example - a simple script that exports a group of ‘.SLDPRT’ documents to various formats :

# IMPORTS
from solidwrap import SolidWorks, Vault         # core classes
from solidwrap import Filepath, SWExportFormat  # containers


# FUNCTIONS
def export_example(solidworks: SolidWorks, vault: Vault) -> None:

    # Set up some example files
    files = [
        Filepath(fr"C:\{vault.name}\Test_Part_01.SLDPRT"),
        Filepath(fr"C:\{vault.name}\Test_Part_02.SLDPRT"),
        Filepath(fr"C:\{vault.name}\Test_Part_03.SLDPRT")
    ]

    # Export a variety of formats
    for file in files:
        if (document := solidworks.open(file)):
            solidworks.export(document, SWExportFormat.IMAGE)      # .png
            solidworks.export(document, SWExportFormat.PARASOLID)  # .x_t
            solidworks.close(document)


# MAIN DEFINITION
def main() -> None:

    # Instantiate core objects
    solidworks = SolidWorks(2023)
    vault = Vault('My-Vault')

    # Initialize connections
    if not solidworks.connect(headless=False):
        return None
    if not vault.connect():
        return None

    # Do some stuff...
    export_example(solidworks, vault)

    # Terminate connections
    solidworks.disconnect(silent=False)
    vault.disconnect()


# TOP LEVEL ENTRY POINT
if __name__ == '__main__':
    main()

Installation

Prerequisites

  • Python 3.8 or higher is recommended

  • pip 23.0 or higher is recommended

For a pip installation

Open a new Command Prompt. Run the following command:

py -m pip install solidwrap

For a local installation

Extract the contents of this module to a safe location. Open a new terminal and navigate to the top level directory of your project. Run the following command:

py -m pip install "DIRECTORY_HERE\solidwrap\dist\solidwrap-2.1.2.tar.gz"
  • DIRECTORY_HERE should be replaced with the complete filepath to the folder where you saved the SolidWrap module contents.

  • Depending on the release of SolidWrap you’ve chosen, you may have to change 2.1.2 to reflect your specific version.

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

solidwrap-2.1.2.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

solidwrap-2.1.2-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file solidwrap-2.1.2.tar.gz.

File metadata

  • Download URL: solidwrap-2.1.2.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for solidwrap-2.1.2.tar.gz
Algorithm Hash digest
SHA256 4321244c15c20e0bc7e9c7ecdfef8304020e4a32f47080a2f6f1620ebb9aeb88
MD5 3d92a06da3e6095873c5664bd2617a9e
BLAKE2b-256 e0fbc1d215a4844572e7c28107a6ffe07f58b052a89bae4e324a7ec731a4709a

See more details on using hashes here.

File details

Details for the file solidwrap-2.1.2-py3-none-any.whl.

File metadata

  • Download URL: solidwrap-2.1.2-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for solidwrap-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7ec291465e1c325c9ae06f04250a592ef0cbf032008f75c2c1c663a17436fe28
MD5 1a083e0f52091666ab7ac1e06dd971f4
BLAKE2b-256 3cb5627b706c27dc89749ab1eefff2bcb2e682c8ce84c56fe7894a5f3c3871e9

See more details on using hashes here.

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