Metadata-Version: 1.2
Name: creopyson
Version: 0.5.1
Summary: Python library for Creoson
Home-page: https://github.com/Zepmanbc/creopyson
Author: Benjamin C.
Author-email: zepman@gmail.com
License: MIT license
Description: =========
        Creopyson
        =========
        
        
        .. image:: https://img.shields.io/pypi/v/creopyson.svg
                :target: https://pypi.python.org/pypi/creopyson
        
        .. image:: https://img.shields.io/travis/Zepmanbc/creopyson.svg
                :target: https://travis-ci.org/Zepmanbc/creopyson
        
        .. image:: https://coveralls.io/repos/github/Zepmanbc/creopyson/badge.svg?branch=master
                :target: https://coveralls.io/github/Zepmanbc/creopyson?branch=master
        
        .. image:: https://readthedocs.org/projects/creopyson/badge/?version=latest
                :target: https://creopyson.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        .. image:: https://github.com/Zepmanbc/creopyson/raw/master/docs/_static/buymeacoffe.png
                :target: https://www.buymeacoffee.com/Zv7CwOS
                :alt: Buy Me A Coffee
        
        Creopyson is a python library that aim to control `PTC's CREO Parametric`_ via JLink via CREOSON.
        
        CREOSON uses JSON Requests to send commands/functions to CREO, JSON Responses are used to communicate the results of your requests.
        
        Creopyson creates a Client to send JSON Requests to CREOSON server.
        
        * Free software: MIT license
        * Documentation: https://creopyson.readthedocs.io.
        
        .. _`PTC's CREO Parametric`: https://www.ptc.com/en/products/cad/creo/parametric
        
        Features
        --------
        
        Creopyson can be used to automate actions in CREO:
        
        * Get BOM
        * Manage files, Working directories
        * Support Familytables
        * Export 3D/2D: pdf3d, pdf, STEP, IGES, JPEG...
        * Interact with layers, views
        * Read/Write parameters, dimensions
        * Support Windchill
        
        Basic usage video:
        
        .. image:: https://github.com/Zepmanbc/creopyson/raw/master/docs/_static/video.png
                :target: https://youtu.be/NjkvRZJQzXs
        
        See documentation for more informations...
        
        Credits
        -------
        
        CREOSON_ from `Simplified Logic, Inc.`_
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        .. _CREOSON: http://www.creoson.com/
        .. _`Simplified Logic, Inc.`: http://www.simplifiedlogic.com/
        
        
        =======
        History
        =======
        
        0.5.1 (2020-05-19)
        ------------------
        
        Docstring updates:
        
        * interface_import_file: PV extension correction.
        * interface_export_image: add infos about valid values in docstrings for dpi and depth.
        
        Features updates:
        
        * interface_mapkey: remove extra white space in script string.
        * connection_start_creo: add use_desktop param.
        
        New Feature:
        
        * Add **logging DEBUG** on request & response.
        
        0.5.0 (2020-03-08)
        ------------------
        
        Update for `Creoson 2.6.0 release`_.
        
        * New functions:
            * interface_import_file
        * Add parameters:
            * bom_get_paths: add `has_simprep`
            * file_delete_material: `file` now allows wildcard
            * interface_export_file: add *NEUTRAL* to `file_type`
            * file_load_material: `file_` allows wildcard
        * New returns:
            * file_massprops: add inertia matrices to output (`ctr_grav_inertia_tensor`, `coord_sys_inertia`, `coord_sys_inertia_tensor`)
        
        .. _`Creoson 2.6.0 release`: https://github.com/SimplifiedLogic/creoson/releases/tag/v2.6.0
        
        0.4.3 (2020-03-07)
        ------------------
        
        Update missing features from previous Creoson updates.
        
        * New Features:
            * drawing_set_sheet_format
            * file_get_cur_material
            * file_get_cur_material_wildcard
            * file_list_materials
            * file_list_materials_wildcard
            * file_load_material_file
            * file_set_cur_material
        
        * New param:
            * note_list:
                * add *select* param
                * add *location* in response
        
        0.4.2 (2020-03-03)
        ------------------
        
        Bugfix:
        
        * feature_list params correction (ADD: status, paths, no_comp. REMOVE: param, value, encoded)
        * feature_list_params params correction(inc_unnamed)
        * feature_param_exists params correction (name)
        * add test on `status` correct values in feature's functions (feature_delete, feature_list feature_resume, feature_suppress)
        
        modify pipenv config for bleach security alert.
        
        0.4.1 (2020-01-30)
        ------------------
        
        Bugfix:
        
        * view_list_exploded(): name param was in request even if empty (`issue#4`_)
        * start_creo(): path decomposition did not worked with Windows style (`issue#5`_)
        * geometry_get_surfaces(): wrong data_key waited in result, need *surflist* (`issue#6`_)
        
        .. _`issue#4`: https://github.com/Zepmanbc/creopyson/issues/4
        .. _`issue#5`: https://github.com/Zepmanbc/creopyson/issues/5
        .. _`issue#6`: https://github.com/Zepmanbc/creopyson/issues/6
        
        0.4.0 (2019-10-12)
        ------------------
        
        Update for `Creoson 2.5.0 release`_.
        
        * New functions:
        
            * file_delete_material
            * drawing_get_sheet_format
            * dimension_set_text
        
        * Add parameters:
        
            * windchill_clear_workspace: filenames
            * dimension_list: select
            * dimension_list_detail: select
            * feature_resume: `name` can be an integer for *feat_ID*
            * feature_suppress: `name` can be an integer for *feat_ID*
        
        * New returns:
            * note_get: location
            * dimension_list: dwg_dim
            * dimension_list_detail: dwg_dim
        
        * Few notes updates
        
        .. _`Creoson 2.5.0 release`: https://github.com/SimplifiedLogic/creoson/releases/tag/v2.5.0
        
        0.3.3 (2019-07-13)
        ------------------
        
        Bugfix:
        
        * feature_resume: `with_children` paramt set default to `False` (`issue #3`_)
        
        .. _`issue #3`: https://github.com/Zepmanbc/creopyson/issues/3
        
        0.3.2 (2019-07-03)
        ------------------
        
        Bugfix:
        
        * creo_list_dirs: return empty list if there is no folder in the directory (`issue #1`_)
        
        Add basic usage video on README
        
        .. _`issue #1`: https://github.com/Zepmanbc/creopyson/issues/1
        
        
        0.3.1 (2019-06-30)
        ------------------
        
        Bugfixes:
        
        * view_list: default query name="*"
        
        
        0.3.0 (2019-06-29)
        ------------------
        
        Bugfixes:
        
        * file_set_mass_units: function param correction
        * file_list: function param correction
        * general: set active file when file is optionnal
        
        Improvement:
        
        * file_open: `activate` and `display` default to True
        * dimension_set: file is optionnal
        
        
        0.2.0 (2019-06-28)
        ------------------
        
        Update for Creoson 2.4.0 release. New functions:
        
        * parameter_set_designated
        * feature_list_group_features
        * feature_list_pattern_features
        
        Add missing function:
        
        * feature_list_params
        
        
        0.1.0 (2019-06-22)
        ------------------
        
        First release on PyPI.
        
Keywords: creopyson
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Requires-Python: ==3.7.*
