├── .github ├── FUNDING.yml └── workflows │ └── unittests.yml ├── .travis.yml ├── LICENSE ├── README.md ├── pyembroidery ├── A100Reader.py ├── A10oReader.py ├── ArtReader.py ├── BroReader.py ├── ColReader.py ├── ColWriter.py ├── CsvReader.py ├── CsvWriter.py ├── DatReader.py ├── DsbReader.py ├── DstReader.py ├── DstWriter.py ├── DszReader.py ├── EdrReader.py ├── EdrWriter.py ├── EmbCompress.py ├── EmbConstant.py ├── EmbEncoder.py ├── EmbFunctions.py ├── EmbMatrix.py ├── EmbPattern.py ├── EmbThread.py ├── EmbThreadHus.py ├── EmbThreadJef.py ├── EmbThreadPec.py ├── EmbThreadSew.py ├── EmbThreadShv.py ├── EmdReader.py ├── ExpReader.py ├── ExpWriter.py ├── ExyReader.py ├── FxyReader.py ├── GcodeReader.py ├── GcodeWriter.py ├── GenericWriter.py ├── GtReader.py ├── HusReader.py ├── InbReader.py ├── InfReader.py ├── InfWriter.py ├── JefReader.py ├── JefWriter.py ├── JpxReader.py ├── JsonReader.py ├── JsonWriter.py ├── KsmReader.py ├── MaxReader.py ├── MitReader.py ├── NewReader.py ├── PcdReader.py ├── PcmReader.py ├── PcqReader.py ├── PcsReader.py ├── PecGraphics.py ├── PecReader.py ├── PecWriter.py ├── PesReader.py ├── PesWriter.py ├── PhbReader.py ├── PhcReader.py ├── PmvReader.py ├── PmvWriter.py ├── PngWriter.py ├── PyEmbroidery.py ├── ReadHelper.py ├── SewReader.py ├── ShvReader.py ├── SpxReader.py ├── StcReader.py ├── StxReader.py ├── SvgWriter.py ├── TapReader.py ├── TbfReader.py ├── TbfWriter.py ├── TxtWriter.py ├── U01Reader.py ├── U01Writer.py ├── Vp3Reader.py ├── Vp3Writer.py ├── WriteHelper.py ├── XxxReader.py ├── XxxWriter.py ├── ZhsReader.py ├── ZxyReader.py └── __init__.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── pattern_for_tests.py ├── test_catalog.py ├── test_color_fileformats.py ├── test_convert_csv.py ├── test_convert_dst.py ├── test_convert_exp.py ├── test_convert_gcode.py ├── test_convert_jef.py ├── test_convert_pec.py ├── test_convert_pes.py ├── test_convert_tbf.py ├── test_convert_u01.py ├── test_convert_vp3.py ├── test_convert_xxx.py ├── test_datapreservation.py ├── test_embpattern.py ├── test_encoder.py ├── test_generic.py ├── test_interpolate.py ├── test_io.py ├── test_json.py ├── test_matrix.py ├── test_overloads.py ├── test_palette.py ├── test_read_hus.py ├── test_trims_dst_jef.py └── test_writes.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tatarize] 2 | -------------------------------------------------------------------------------- /.github/workflows/unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/.github/workflows/unittests.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/README.md -------------------------------------------------------------------------------- /pyembroidery/A100Reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/A100Reader.py -------------------------------------------------------------------------------- /pyembroidery/A10oReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/A10oReader.py -------------------------------------------------------------------------------- /pyembroidery/ArtReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ArtReader.py -------------------------------------------------------------------------------- /pyembroidery/BroReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/BroReader.py -------------------------------------------------------------------------------- /pyembroidery/ColReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ColReader.py -------------------------------------------------------------------------------- /pyembroidery/ColWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ColWriter.py -------------------------------------------------------------------------------- /pyembroidery/CsvReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/CsvReader.py -------------------------------------------------------------------------------- /pyembroidery/CsvWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/CsvWriter.py -------------------------------------------------------------------------------- /pyembroidery/DatReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/DatReader.py -------------------------------------------------------------------------------- /pyembroidery/DsbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/DsbReader.py -------------------------------------------------------------------------------- /pyembroidery/DstReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/DstReader.py -------------------------------------------------------------------------------- /pyembroidery/DstWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/DstWriter.py -------------------------------------------------------------------------------- /pyembroidery/DszReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/DszReader.py -------------------------------------------------------------------------------- /pyembroidery/EdrReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EdrReader.py -------------------------------------------------------------------------------- /pyembroidery/EdrWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EdrWriter.py -------------------------------------------------------------------------------- /pyembroidery/EmbCompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbCompress.py -------------------------------------------------------------------------------- /pyembroidery/EmbConstant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbConstant.py -------------------------------------------------------------------------------- /pyembroidery/EmbEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbEncoder.py -------------------------------------------------------------------------------- /pyembroidery/EmbFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbFunctions.py -------------------------------------------------------------------------------- /pyembroidery/EmbMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbMatrix.py -------------------------------------------------------------------------------- /pyembroidery/EmbPattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbPattern.py -------------------------------------------------------------------------------- /pyembroidery/EmbThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbThread.py -------------------------------------------------------------------------------- /pyembroidery/EmbThreadHus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbThreadHus.py -------------------------------------------------------------------------------- /pyembroidery/EmbThreadJef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbThreadJef.py -------------------------------------------------------------------------------- /pyembroidery/EmbThreadPec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbThreadPec.py -------------------------------------------------------------------------------- /pyembroidery/EmbThreadSew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbThreadSew.py -------------------------------------------------------------------------------- /pyembroidery/EmbThreadShv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmbThreadShv.py -------------------------------------------------------------------------------- /pyembroidery/EmdReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/EmdReader.py -------------------------------------------------------------------------------- /pyembroidery/ExpReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ExpReader.py -------------------------------------------------------------------------------- /pyembroidery/ExpWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ExpWriter.py -------------------------------------------------------------------------------- /pyembroidery/ExyReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ExyReader.py -------------------------------------------------------------------------------- /pyembroidery/FxyReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/FxyReader.py -------------------------------------------------------------------------------- /pyembroidery/GcodeReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/GcodeReader.py -------------------------------------------------------------------------------- /pyembroidery/GcodeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/GcodeWriter.py -------------------------------------------------------------------------------- /pyembroidery/GenericWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/GenericWriter.py -------------------------------------------------------------------------------- /pyembroidery/GtReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/GtReader.py -------------------------------------------------------------------------------- /pyembroidery/HusReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/HusReader.py -------------------------------------------------------------------------------- /pyembroidery/InbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/InbReader.py -------------------------------------------------------------------------------- /pyembroidery/InfReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/InfReader.py -------------------------------------------------------------------------------- /pyembroidery/InfWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/InfWriter.py -------------------------------------------------------------------------------- /pyembroidery/JefReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/JefReader.py -------------------------------------------------------------------------------- /pyembroidery/JefWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/JefWriter.py -------------------------------------------------------------------------------- /pyembroidery/JpxReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/JpxReader.py -------------------------------------------------------------------------------- /pyembroidery/JsonReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/JsonReader.py -------------------------------------------------------------------------------- /pyembroidery/JsonWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/JsonWriter.py -------------------------------------------------------------------------------- /pyembroidery/KsmReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/KsmReader.py -------------------------------------------------------------------------------- /pyembroidery/MaxReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/MaxReader.py -------------------------------------------------------------------------------- /pyembroidery/MitReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/MitReader.py -------------------------------------------------------------------------------- /pyembroidery/NewReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/NewReader.py -------------------------------------------------------------------------------- /pyembroidery/PcdReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PcdReader.py -------------------------------------------------------------------------------- /pyembroidery/PcmReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PcmReader.py -------------------------------------------------------------------------------- /pyembroidery/PcqReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PcqReader.py -------------------------------------------------------------------------------- /pyembroidery/PcsReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PcsReader.py -------------------------------------------------------------------------------- /pyembroidery/PecGraphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PecGraphics.py -------------------------------------------------------------------------------- /pyembroidery/PecReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PecReader.py -------------------------------------------------------------------------------- /pyembroidery/PecWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PecWriter.py -------------------------------------------------------------------------------- /pyembroidery/PesReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PesReader.py -------------------------------------------------------------------------------- /pyembroidery/PesWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PesWriter.py -------------------------------------------------------------------------------- /pyembroidery/PhbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PhbReader.py -------------------------------------------------------------------------------- /pyembroidery/PhcReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PhcReader.py -------------------------------------------------------------------------------- /pyembroidery/PmvReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PmvReader.py -------------------------------------------------------------------------------- /pyembroidery/PmvWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PmvWriter.py -------------------------------------------------------------------------------- /pyembroidery/PngWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PngWriter.py -------------------------------------------------------------------------------- /pyembroidery/PyEmbroidery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/PyEmbroidery.py -------------------------------------------------------------------------------- /pyembroidery/ReadHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ReadHelper.py -------------------------------------------------------------------------------- /pyembroidery/SewReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/SewReader.py -------------------------------------------------------------------------------- /pyembroidery/ShvReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ShvReader.py -------------------------------------------------------------------------------- /pyembroidery/SpxReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/SpxReader.py -------------------------------------------------------------------------------- /pyembroidery/StcReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/StcReader.py -------------------------------------------------------------------------------- /pyembroidery/StxReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/StxReader.py -------------------------------------------------------------------------------- /pyembroidery/SvgWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/SvgWriter.py -------------------------------------------------------------------------------- /pyembroidery/TapReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/TapReader.py -------------------------------------------------------------------------------- /pyembroidery/TbfReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/TbfReader.py -------------------------------------------------------------------------------- /pyembroidery/TbfWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/TbfWriter.py -------------------------------------------------------------------------------- /pyembroidery/TxtWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/TxtWriter.py -------------------------------------------------------------------------------- /pyembroidery/U01Reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/U01Reader.py -------------------------------------------------------------------------------- /pyembroidery/U01Writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/U01Writer.py -------------------------------------------------------------------------------- /pyembroidery/Vp3Reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/Vp3Reader.py -------------------------------------------------------------------------------- /pyembroidery/Vp3Writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/Vp3Writer.py -------------------------------------------------------------------------------- /pyembroidery/WriteHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/WriteHelper.py -------------------------------------------------------------------------------- /pyembroidery/XxxReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/XxxReader.py -------------------------------------------------------------------------------- /pyembroidery/XxxWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/XxxWriter.py -------------------------------------------------------------------------------- /pyembroidery/ZhsReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ZhsReader.py -------------------------------------------------------------------------------- /pyembroidery/ZxyReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/ZxyReader.py -------------------------------------------------------------------------------- /pyembroidery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/pyembroidery/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/pattern_for_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/pattern_for_tests.py -------------------------------------------------------------------------------- /test/test_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_catalog.py -------------------------------------------------------------------------------- /test/test_color_fileformats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_color_fileformats.py -------------------------------------------------------------------------------- /test/test_convert_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_csv.py -------------------------------------------------------------------------------- /test/test_convert_dst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_dst.py -------------------------------------------------------------------------------- /test/test_convert_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_exp.py -------------------------------------------------------------------------------- /test/test_convert_gcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_gcode.py -------------------------------------------------------------------------------- /test/test_convert_jef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_jef.py -------------------------------------------------------------------------------- /test/test_convert_pec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_pec.py -------------------------------------------------------------------------------- /test/test_convert_pes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_pes.py -------------------------------------------------------------------------------- /test/test_convert_tbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_tbf.py -------------------------------------------------------------------------------- /test/test_convert_u01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_u01.py -------------------------------------------------------------------------------- /test/test_convert_vp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_vp3.py -------------------------------------------------------------------------------- /test/test_convert_xxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_convert_xxx.py -------------------------------------------------------------------------------- /test/test_datapreservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_datapreservation.py -------------------------------------------------------------------------------- /test/test_embpattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_embpattern.py -------------------------------------------------------------------------------- /test/test_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_encoder.py -------------------------------------------------------------------------------- /test/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_generic.py -------------------------------------------------------------------------------- /test/test_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_interpolate.py -------------------------------------------------------------------------------- /test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_io.py -------------------------------------------------------------------------------- /test/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_json.py -------------------------------------------------------------------------------- /test/test_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_matrix.py -------------------------------------------------------------------------------- /test/test_overloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_overloads.py -------------------------------------------------------------------------------- /test/test_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_palette.py -------------------------------------------------------------------------------- /test/test_read_hus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_read_hus.py -------------------------------------------------------------------------------- /test/test_trims_dst_jef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_trims_dst_jef.py -------------------------------------------------------------------------------- /test/test_writes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbroidePy/pyembroidery/HEAD/test/test_writes.py --------------------------------------------------------------------------------