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.0.0.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.0.0 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.3.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: solidwrap-2.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 eae35ab07a45e0faa74835c0cf67c0757b2fbef8a88f9781c764f40b7745ffeb
MD5 2cf0d14982d664c69ce2a589bed9a874
BLAKE2b-256 7761374cad7c25802a60b9b5ad126524663e140edb6f092f949998df4bb88364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: solidwrap-2.1.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 394878bfe19cef3394c7c79f593fd25ebfd788cbf42a032f729adc475cf70191
MD5 cb6e4a1d53ef2febd6ef1c4efab13a5c
BLAKE2b-256 5a7b08b0fdf453ebca993e75f21b9abdc72226b6873947d059b4fa468ab202a6

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