Metadata-Version: 2.1
Name: vpype-embroidery
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/embroidepy/vpype-embroidery/
Author: Tatarize
License: MIT License
Requires-Dist: click
Requires-Dist: vpype
Requires-Dist: numpy
Requires-Dist: pyembroidery

Copyright (c) 2020 EmbroidePy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Description: # vpype-embroidery
        Vpype plugin for embroidery
        See: https://github.com/abey79/vpype
        
        
        Embroidery vpype plugin. Reads and Writes embroidery files for the vpype pipeline.
        
        * `eread` load an embroidery into the pipeline
        * `ewrite` write embroidery geometries to disk
        * `efill` fill closed shapes in the document with a Eulerian fill.
        
        
        # Installing
        `$ pip install vpype-embroidery`
        
        # Examples
        
        ## Complex fills
        
        `vpype begin grid -o 25 25 10 10 circle 0 0 100 end efill show`
        
        ![epype](https://user-images.githubusercontent.com/3302478/101284648-fe3d0a00-3795-11eb-8a3b-5f340624195d.png)
        
        ## Convert SVG -> DST
        
        `vpype read butterfly.svg ewrite butterfly.dst`
        
        ## Convert PES -> SVG
        
        `vpype eread duck.pes write duck.svg`
        
        
        # Supported Formats.
        
        This uses `pyembroidery` for the backend so the formats supported are as follows:
        https://github.com/EmbroidePy/pyembroidery
        
        ## Embroidery Formats
        ### Write
        
        * .pes
        * .dst
        * .exp
        * .jef
        * .vp3
        * .u01
        * .pec
        * .xxx
        * .gcode
        
        ### Read
        * .pes
        * .dst
        * .exp
        * .jef
        * .vp3
        * .10o
        * .100
        * .bro
        * .dat (barudan & sunstar)
        * .dsb
        * .dsz
        * .emd
        * .exy
        * .fxy
        * .gt
        * .hus
        * .inb
        * .jpx
        * .ksm
        * .max
        * .mit
        * .new
        * .pcd
        * .pcm
        * .pcq
        * .pcs
        * .pec
        * .phb
        * .phc
        * .sew
        * .shv
        * .stc
        * .stx
        * .tap
        * .tbf
        * .u01
        * .xxx
        * .zxy
        * .gcode
        
        ## Related Formats
        
        We also write some miscellaneous formats
        
        ### Write
        * .col : Color format.
        * .edr : Color format.
        * .inf : Color format.
        * .pmv : Brother Stitch Format.
        
        ### Read
        * .col : Color format.
        * .edr : Color format.
        * .inf : Color format.
        * .pmv : Brother Stitch Format.
        
        ## Utility Formats:
        
        ### Write
        * .csv : comma-separated values
        * .json : JavaScript Object Notation
        * .png : Portable Network Graphic
        * .txt : text file.
        * .svg : Scalable Vector Graphics
        
        ### Read
        * .csv : comma-separated values
        * .json : JavaScript Object Notation
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
