{ "info": { "author": "XESS Corp.", "author_email": "info@xess.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3" ], "description": "===============================\nKiPart\n===============================\n\n.. image:: https://img.shields.io/pypi/v/kipart.svg\n :target: https://pypi.python.org/pypi/kipart\n\n\nGenerate multi-unit schematic symbols for KiCad from a CSV file.\n\n* Free software: MIT license\n* Documentation: https://xesscorp.github.io/KiPart.\n\nFeatures\n--------\n\n* Generates schematic part libraries for KiCad from CSV files.\n* Converts lists of pins in a CSV file into a multi-unit schematic part symbol.\n* Converts multiple CSV files stored in .zip archives.\n* Each row of the CSV file lists the number, name, type, style, unit and side of a pin.\n* Pins on a unit with the same name (e.g., GND) can be placed at the same location\n so they can all be tied to the same net with a single connection.\n* Also includes ``kilib2csv`` for converting schematic part libraries into\n CSV files suitable for input to KiPart.\n\n\n\n\nHistory\n-------\n\n0.1.34 (2019-06-27)\n______________________\n\n* All symbols now include F2 (package) and F3 (datasheet) fields.\n* Datasheet link and part description can be entered on the first line of a part description in the CSV file.\n\n\n0.1.33 (2018-01-03)\n______________________\n\n* Fixed error in field syntax for part manufacturer number.\n* No-connect pins can no longer be bundled because it is marked as an ERC error by EESCHEMA.\n\n\n0.1.32 (2017-12-08)\n______________________\n\n* Pins sorted by name or row are now pplaced top-to-bottom on left/right sides and left-to-right on top/bottom sides.\n\n\n0.1.31 (2017-10-10)\n______________________\n\n* Removed \\*_ in statement that caused an error in Python2.\n* Removed duplicated entries in pin-style table.\n* ~ and # are now allowed in pin-style keys.\n* Parts dictionary changed to OrderedDict so it retains the order parts were entered in. Important for passing random part generation tests.\n\n\n0.1.30 (2017-10-05)\n______________________\n\n* Specifying ``-a`` option allows new parts to be written to an existing library but prevents overwriting existing parts.\n Using ``-w`` in conjunction with ``-a`` allows added parts to overwrite existing parts.\n* Part name, reference prefix, footprint, and manf. part num. are now allowed on beginning row of part info in a CSV file.\n* Expanded the lists of mnemonics for pin types and styles.\n\n\n0.1.29 (2017-07-31)\n______________________\n\n* Fixed erroneous library generation when part number is omitted from first line of CSV file.\n* Changed default output library to ``kipart.lib`` if no output library is specified.\n* Changed default output CSV file of kilib2csv to ``kipart.csv`` if no output CSV file is specified.\n\n\n0.1.28 (2017-07-27)\n______________________\n\n* Added reader for Lattice FPGA devices (except iCE40). (Thanks, Adrien Descamps!)\n\n\n0.1.27 (2017-05-24)\n______________________\n\n* Fixed issue #11 (blank lines in CSV file were skipped and multiple parts ran together).\n\n\n0.1.26 (2017-05-21)\n______________________\n\n* Fixed issue #18 (crash when symbol side for pin was left blank).\n\n\n0.1.25 (2017-05-03)\n______________________\n\n* Fixed problem caused by pin side designators not being lower-case (e.g., \"Left\").\n\n\n0.1.24 (2016-12-22)\n______________________\n\n* Fixed Xilinx reader function to parse leading comments in their FPGA pin files.\n\n\n0.1.23 (2016-12-13)\n______________________\n\n* Added ability to create hidden pins.\n\n\n0.1.22 (2016-11-29)\n______________________\n\n* Fixed readers for Xilinx, STM32, PSoC devices.\n* Pins on multiple sides of a symbol are now distributed in a more attractive manner.\n\n\n0.1.21 (2016-09-20)\n______________________\n\n* Extra stuff on starting line of library no longer kill kilib2csv.\n\n\n0.1.20 (2016-09-16)\n______________________\n\n* Fixed bug where kilib2csv was choking on footprint lists in part definitions.\n\n\n0.1.19 (2016-09-16)\n______________________\n\n* Added utility to test kilib2csv and kipart on randomly-generated CSV part files.\n\n\n0.1.18 (2016-09-14)\n______________________\n\n* kilib2csv utility added to convert KiCad schematic symbol libraries into CSV files suitable for input to KiPart.\n\n\n0.1.17 (2016-06-15)\n______________________\n\n* Use same type of sorting for unit names as for pin names so (for example) unit 'ADC_12' comes before unit 'ADC_2'.\n\n\n0.1.16 (2016-06-12)\n______________________\n\n* Added reader for CSV-formatted pinout files exported from the STM32CubeMx tool. (Thanks, Hasan Yavuz OZDERYA!)\n\n\n0.1.15 (2016-02-17)\n______________________\n\n* Added reader for Xilinx Ultrascale FPGAs.\n* Fixed insertion of spaces between groups of pins when pin number starts with '*'.\n* Replaced call to warnings.warn with issues() function.\n* fix_pin_data() now strips leading/trailing spaces from pin information.\n\n\n0.1.14 (2016-01-30)\n______________________\n\n* Fixed incorrect y-offset of pins for symbols that only have pins along the right side.\n\n\n0.1.13 (2015-09-09)\n______________________\n\n* The number of pins in a bundle is now appended to the pin name instead of an '*'.\n\n\n0.1.12 (2015-09-03)\n______________________\n\n* Added capability to insert non-existent \"gap\" pins that divide groups of pins into sections.\n\n\n0.1.11 (2015-09-02)\n______________________\n\n* future module requirement added to setup.py.\n\n\n0.1.10 (2015-08-26)\n______________________\n\n* Now runs under both Python 2.7 and 3.4.\n\n\n0.1.9 (2015-08-21)\n______________________\n\n* The bundling option now only bundles pins where that operation makes sense:\n power input pins (e.g., VCC and GND) and no-connect pins.\n\n\n0.1.8 (2015-08-17)\n______________________\n\n* Input data from the CSV file is now scanned for errors and fixed before it can cause problems\n in the library file.\n\n\n0.1.7 (2015-08-14)\n______________________\n\n* Added reader functions for Xilinx Virtex-6 and Spartan-6.\n* Broke-out reader functions into separate modules.\n* TXT and CSV files are now acceptable as part data files, but the reader has to be built to handle it.\n\n\n0.1.6 (2015-08-13)\n______________________\n\n* Fuzzy string matching is now used for the column headers.\n* Choice-type options are now case-insensitive.\n\n\n0.1.5 (2015-07-29)\n______________________\n\n* Multiple parts can now be described in a single CSV file.\n* Added function and option for reading Cypress PSoC5LP CSV files.\n* Simplified key generators for sorting pins by name or number.\n* Improved ordering of pins by name.\n\n\n0.1.4 (2015-07-27)\n______________________\n\n* Added option for approximate (fuzzy) matching for pin types, styles and orientations (sides).\n\n\n0.1.3 (2015-07-26)\n______________________\n\n* Multiple pins with the same name are now hidden by reducing their pin number size to zero\n (rather than enabling the hidden flag which can cause problems with power-in pins).\n\n\n0.1.2 (2015-07-24)\n______________________\n\n* Symbols can now have pins on any combination of left, right, top and bottom sides.\n* Added option to append parts to an existing library.\n* Refactored kipart routine into subroutines.\n* Added documentation.\n\n\n0.1.1 (2015-07-21)\n______________________\n\n* Fixed calculation of pin name widths.\n* Made CSV row order the default for arranging pins on the schematic symbol.\n* Fixed sorting key routine for numeric pin numbers.\n* Spaces are now stripped between fields in a CSV file.\n\n\n0.1.0 (2015-07-20)\n______________________\n\n* First release on PyPI.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/xesscorp/kipart", "keywords": "kipart kicad electronic circuit schematics", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "kipart", "package_url": "https://pypi.org/project/kipart/", "platform": "", "project_url": "https://pypi.org/project/kipart/", "project_urls": { "Homepage": "https://github.com/xesscorp/kipart" }, "release_url": "https://pypi.org/project/kipart/0.1.35/", "requires_dist": null, "requires_python": "", "summary": "Part creator for KiCad.", "version": "0.1.35" }, "last_serial": 5851565, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "88a487df5aa4d0759a3dea2818e0cd2c", "sha256": "f78b68548cbd87a5d43c2162ad77d2d2ea5bb12a1789776f4aa8186ab4db7be8" }, "downloads": -1, "filename": "kipart-0.1.0.zip", "has_sig": false, "md5_digest": "88a487df5aa4d0759a3dea2818e0cd2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24058, "upload_time": "2015-07-21T04:01:36", "url": "https://files.pythonhosted.org/packages/a9/e9/fcf2fcb3e6beddc0b53e6422b10bf78d4ef0df44d834a546db8af22d17de/kipart-0.1.0.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "7f7af245d94ed8a6038264f65cf9c06e", "sha256": "cc8145ffbaf415556f3b403938f89a81bcb573f4fb037b37034449749b5a23e4" }, "downloads": -1, "filename": "kipart-0.1.1.zip", "has_sig": false, "md5_digest": "7f7af245d94ed8a6038264f65cf9c06e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26399, "upload_time": "2015-07-21T20:48:35", "url": "https://files.pythonhosted.org/packages/34/b1/ae7858ad003e3f59183c290adcd086c8c264d1cc29d6e74721371029bcd4/kipart-0.1.1.zip" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "2ea4147603fe8d27f1233cd2e258b55f", "sha256": "838a6d5712a077fcc1e9a68ea3bd0a5973acfbac2f102312f24060d914f0bfcf" }, "downloads": -1, "filename": "kipart-0.1.10.zip", "has_sig": false, "md5_digest": "2ea4147603fe8d27f1233cd2e258b55f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44369, "upload_time": "2015-08-26T15:27:04", "url": "https://files.pythonhosted.org/packages/c1/3c/cc4fc973cdf83fad58652594d8eae76c1d9f57c2e29dd7f10eb6fcb0b8db/kipart-0.1.10.zip" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "7d79cba657c92342bc5a1375753a12ba", "sha256": "e2906bbddd95244996ca56153265e1bd5cf8d0bf516da2eb38277243624e397b" }, "downloads": -1, "filename": "kipart-0.1.11.zip", "has_sig": false, "md5_digest": "7d79cba657c92342bc5a1375753a12ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44499, "upload_time": "2015-09-02T18:27:25", "url": "https://files.pythonhosted.org/packages/ce/c6/102c78f5920594996aea4abff506988ce3aa96ba15235eed958de88d6bdd/kipart-0.1.11.zip" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "38bcdee62c939765cd3d93eede386f33", "sha256": "f6889f21e4a9952fb8954cc3541fc5ba9722130340272e0be90dfad733df9029" }, "downloads": -1, "filename": "kipart-0.1.12.zip", "has_sig": false, "md5_digest": "38bcdee62c939765cd3d93eede386f33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44676, "upload_time": "2015-09-04T00:48:19", "url": "https://files.pythonhosted.org/packages/d9/85/b7000ed9afa16033f6eab275780f19031f62795e7d787c59cbf77588dce0/kipart-0.1.12.zip" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "c62582405aa28fb0324a36c61b005957", "sha256": "5d616ca9cdd67dd448bcd435e65c205436e5dcdab784afd851044ffc51444df0" }, "downloads": -1, "filename": "kipart-0.1.13.zip", "has_sig": false, "md5_digest": "c62582405aa28fb0324a36c61b005957", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44792, "upload_time": "2015-09-09T23:55:12", "url": "https://files.pythonhosted.org/packages/de/8b/1b1103c7c093fefb392e5cd337af75307be2148cb86062938066fc74c4d3/kipart-0.1.13.zip" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "8826e669f1646dc7744a406125b6c128", "sha256": "8bb0685f995867786e389b083ff9399c2afae7ac60936bfd2f375237e8e9e8ab" }, "downloads": -1, "filename": "kipart-0.1.14.zip", "has_sig": false, "md5_digest": "8826e669f1646dc7744a406125b6c128", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44942, "upload_time": "2016-01-30T05:06:04", "url": "https://files.pythonhosted.org/packages/fa/f0/43379f8ed10abe6a0d0016bdbfa638d0e4cce37bebc098df94228eb7237d/kipart-0.1.14.zip" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "98ed71855fbe0aaed9084d7c9a57e2c4", "sha256": "fb8b4c7aef592c533441ad24bf3c467c4a866ddd226afa51bfaffc5b810661b7" }, "downloads": -1, "filename": "kipart-0.1.15.zip", "has_sig": false, "md5_digest": "98ed71855fbe0aaed9084d7c9a57e2c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48160, "upload_time": "2016-02-18T06:25:09", "url": "https://files.pythonhosted.org/packages/05/8c/9f726fd90e86595aabeb72f3c01d355cc36328d6e91d2adcfadc43853f0c/kipart-0.1.15.zip" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "65a26a25baa58531489efff6ef517942", "sha256": "bcbbd068b0c9f58ad910c7c8a7ad56647b6fb404d659a29722b762ada75c6656" }, "downloads": -1, "filename": "kipart-0.1.16.zip", "has_sig": false, "md5_digest": "65a26a25baa58531489efff6ef517942", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49933, "upload_time": "2016-06-12T19:42:37", "url": "https://files.pythonhosted.org/packages/b1/aa/24f326ff0b063f1cbb0a2e3091e9248b5907523f6e884dd0b2939f767a76/kipart-0.1.16.zip" } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "eaf8f26b9e45274ecc32030e7111cade", "sha256": "b3734573c5b5adbe6953ed4e26095f552efb6a2fec3e76bf31dfcba5a6f49bf0" }, "downloads": -1, "filename": "kipart-0.1.17.zip", "has_sig": false, "md5_digest": "eaf8f26b9e45274ecc32030e7111cade", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51525, "upload_time": "2016-06-15T20:22:09", "url": "https://files.pythonhosted.org/packages/3b/12/72028556a4e664bd0f1166bb322f3bcd575a150491975e4c07f2306e2edb/kipart-0.1.17.zip" } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "79bb2c3852d21edbbf86df78ab3d64cf", "sha256": "d99f720a8e073d62c9dd33ed461b5d31a7d1d37004a3ce9ae8809f6b4cf21d3c" }, "downloads": -1, "filename": "kipart-0.1.18.zip", "has_sig": false, "md5_digest": "79bb2c3852d21edbbf86df78ab3d64cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73626, "upload_time": "2016-09-15T04:07:05", "url": "https://files.pythonhosted.org/packages/29/1c/ac9bb4af6efb93deec8d8ba18a9a78e5904f50c9ddb78938a4ec0dd2ac4e/kipart-0.1.18.zip" } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "0eeb0e15f89e1546e60832f5c01737f2", "sha256": "6ea63f9279ecbd2c6e092c84d2de0f8cdab75f3635b04da46edbfccd1579b517" }, "downloads": -1, "filename": "kipart-0.1.19.zip", "has_sig": false, "md5_digest": "0eeb0e15f89e1546e60832f5c01737f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122547, "upload_time": "2016-09-16T05:02:56", "url": "https://files.pythonhosted.org/packages/10/41/94204e2b4ad66caa86284cef3fb26d0c44efc051fa8a657c3ee6097a8b4b/kipart-0.1.19.zip" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0ce7bcde298e9b12ab45d42b0f308a94", "sha256": "d10a59901652b80bee258a13aace2cae6d058a7bc89135b84b65eb5a46262817" }, "downloads": -1, "filename": "kipart-0.1.2.zip", "has_sig": false, "md5_digest": "0ce7bcde298e9b12ab45d42b0f308a94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29315, "upload_time": "2015-07-25T08:28:29", "url": "https://files.pythonhosted.org/packages/d9/8c/ab51c70382c463420b81980e1fcdf05a73a5c787f71199a700b67966f066/kipart-0.1.2.zip" } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "db641e74b4be73a30bbc98ca29ec1e4b", "sha256": "c3cf0f19b57e8ed605e09fc32f63516d1f6d7ce24673a50c664d977b3bcb9baf" }, "downloads": -1, "filename": "kipart-0.1.20.zip", "has_sig": false, "md5_digest": "db641e74b4be73a30bbc98ca29ec1e4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122183, "upload_time": "2016-09-17T03:14:22", "url": "https://files.pythonhosted.org/packages/b9/c9/872e04b329d8be7ad140ff8d933102232a3cb2cf763ad7b23b88d048abe1/kipart-0.1.20.zip" } ], "0.1.21": [ { "comment_text": "", "digests": { "md5": "4ba4ead29d8ee5025f33d48b84388844", "sha256": "49d0193e947606ed3622c0bf5802895d6106d2440327ce3f14e763a11cccda2b" }, "downloads": -1, "filename": "kipart-0.1.21.zip", "has_sig": false, "md5_digest": "4ba4ead29d8ee5025f33d48b84388844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122367, "upload_time": "2016-09-21T02:29:44", "url": "https://files.pythonhosted.org/packages/dd/75/58aeb745869c79220093508c9f7545dbb28a378fd76306773ac5f683dee9/kipart-0.1.21.zip" } ], "0.1.22": [ { "comment_text": "", "digests": { "md5": "c31bbdc2143eb0dea71a59490096bf0f", "sha256": "eb0be82eb7431389975c76bd00958bad05f5fb78aee8880cbb75b20546b85541" }, "downloads": -1, "filename": "kipart-0.1.22.zip", "has_sig": false, "md5_digest": "c31bbdc2143eb0dea71a59490096bf0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121914, "upload_time": "2016-12-04T23:56:15", "url": "https://files.pythonhosted.org/packages/05/d5/d78a5f19fb206fa2ff3beb4d4b949caed03ec5f69472a71f8b7e6e5cc055/kipart-0.1.22.zip" } ], "0.1.23": [ { "comment_text": "", "digests": { "md5": "43a19c4fe6b7191a077d92a9f9ce1907", "sha256": "5a3d1db4fe6655ee69051e8b93dbd2fc4f34441cef552ab9d472cd7af21d2778" }, "downloads": -1, "filename": "kipart-0.1.23.zip", "has_sig": false, "md5_digest": "43a19c4fe6b7191a077d92a9f9ce1907", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126164, "upload_time": "2016-12-13T05:33:57", "url": "https://files.pythonhosted.org/packages/03/8b/ea7c249dc03fa78d59c06b18cf87a50547c4730370cf9e9cd3aa29447bff/kipart-0.1.23.zip" } ], "0.1.24": [ { "comment_text": "", "digests": { "md5": "8422201b107423b92474ced483daedca", "sha256": "52ee88b49b550828f0853abfbb424e307f708f778a3c12765138d2162e8c8d00" }, "downloads": -1, "filename": "kipart-0.1.24.zip", "has_sig": false, "md5_digest": "8422201b107423b92474ced483daedca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126678, "upload_time": "2016-12-22T16:05:33", "url": "https://files.pythonhosted.org/packages/65/15/dd0a391e392831d23a8cf036fbbe6d6d624c9f1e343b476cb398410f5d6e/kipart-0.1.24.zip" } ], "0.1.25": [ { "comment_text": "", "digests": { "md5": "b66ed4e0949342a7b875fcc060395c0e", "sha256": "8e7decd614ac3678c997de33b49c12151e86bbca5dd78e82bdfe6b2ed85d641b" }, "downloads": -1, "filename": "kipart-0.1.25.tar.gz", "has_sig": false, "md5_digest": "b66ed4e0949342a7b875fcc060395c0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97839, "upload_time": "2017-05-04T03:36:02", "url": "https://files.pythonhosted.org/packages/fd/4c/8f63244012cacb96dadb8e98e9fd9cf3f8170f07ff1c52e474f3f83842c9/kipart-0.1.25.tar.gz" } ], "0.1.26": [ { "comment_text": "", "digests": { "md5": "079a85b27acc47946be2aa70228c90b4", "sha256": "1172abc513fd7a0f6df7e95b8191c21ef570965f0aad3b1bec3a442ade9cb1d6" }, "downloads": -1, "filename": "kipart-0.1.26.tar.gz", "has_sig": false, "md5_digest": "079a85b27acc47946be2aa70228c90b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100125, "upload_time": "2017-05-22T04:12:51", "url": "https://files.pythonhosted.org/packages/51/f6/f4d8da5dfa40a8ea02bf340b6f26638b44c0c8ebbc0fc8082abe82408eec/kipart-0.1.26.tar.gz" } ], "0.1.27": [ { "comment_text": "", "digests": { "md5": "b1d9f17cfb75a97140de0fc2323f1228", "sha256": "8f2bede0b3de4e2fa72fb98f77651a2d07f79a1188ec6155c0c91f5986511e0a" }, "downloads": -1, "filename": "kipart-0.1.27.tar.gz", "has_sig": false, "md5_digest": "b1d9f17cfb75a97140de0fc2323f1228", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105328, "upload_time": "2017-05-24T14:29:03", "url": "https://files.pythonhosted.org/packages/bc/39/a1f5151f18f98994cf0207dec8f97b1febd6d9f6e5e26533432defebab87/kipart-0.1.27.tar.gz" } ], "0.1.28": [ { "comment_text": "", "digests": { "md5": "14fb37a876982d29cf6bcc049798ecbc", "sha256": "d33c050a28a169e3d9a17ad52e8f5abeabd64865985c120ade83517b0021a190" }, "downloads": -1, "filename": "kipart-0.1.28.tar.gz", "has_sig": false, "md5_digest": "14fb37a876982d29cf6bcc049798ecbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106728, "upload_time": "2017-07-27T14:10:21", "url": "https://files.pythonhosted.org/packages/86/de/f80ed66a571d48000b58983cf8b43a1932a8024148e59190cada669ad2fd/kipart-0.1.28.tar.gz" } ], "0.1.29": [ { "comment_text": "", "digests": { "md5": "f558feb3d22d6e1aeb5de13d0bb33663", "sha256": "253e916ebb06109e3bb5018c6ebe875bb61518ba6728617d40f127dd81029b70" }, "downloads": -1, "filename": "kipart-0.1.29.tar.gz", "has_sig": false, "md5_digest": "f558feb3d22d6e1aeb5de13d0bb33663", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110242, "upload_time": "2017-07-31T18:00:24", "url": "https://files.pythonhosted.org/packages/ae/2b/a681f49a492093c6041c45fb74007a1b7ec38aef359050efc4f42a62f3cb/kipart-0.1.29.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "cdcb384393c43397d18fbc3d209a83fa", "sha256": "0494056b9f1a391dd3067a34b4f273dceb153e9e8873225c0274a28ef34cce25" }, "downloads": -1, "filename": "kipart-0.1.3.zip", "has_sig": false, "md5_digest": "cdcb384393c43397d18fbc3d209a83fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29572, "upload_time": "2015-07-26T18:58:40", "url": "https://files.pythonhosted.org/packages/f8/a1/9db5b181d6515cbac32264f2c4be568ecea6ccfa8cb52c4a43084453e27c/kipart-0.1.3.zip" } ], "0.1.30": [ { "comment_text": "", "digests": { "md5": "3a7b2d9cf7497944fe10ad2c8a4905f9", "sha256": "b1713ad9c65a7f6be3264a3874b5ee473984b801c80651a40b6ede818b912471" }, "downloads": -1, "filename": "kipart-0.1.30.tar.gz", "has_sig": false, "md5_digest": "3a7b2d9cf7497944fe10ad2c8a4905f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111247, "upload_time": "2017-10-05T18:19:49", "url": "https://files.pythonhosted.org/packages/be/ec/ae6200216ded483f3599cb8fa7cf690f43a9e791011c7bee9acdcc35470c/kipart-0.1.30.tar.gz" } ], "0.1.31": [ { "comment_text": "", "digests": { "md5": "b2cec867e0e3b014fd90f42c79b865ec", "sha256": "2457aa97ff1fea5ca7e8009dff9f954ee6f966ca0f69b67f2c4569b6af33c8ff" }, "downloads": -1, "filename": "kipart-0.1.31.tar.gz", "has_sig": false, "md5_digest": "b2cec867e0e3b014fd90f42c79b865ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105656, "upload_time": "2017-10-10T17:43:53", "url": "https://files.pythonhosted.org/packages/32/b2/9c89251ad0a1663f877bbd84bfb6af6602858a2df0afb08ad15ae37aa7c2/kipart-0.1.31.tar.gz" } ], "0.1.32": [ { "comment_text": "", "digests": { "md5": "edeaaedca1c0e1065edeca63973baf27", "sha256": "f6029190dc46920a9e053f1ee56c5494510efada519f05a68420c823b445ad23" }, "downloads": -1, "filename": "kipart-0.1.32.tar.gz", "has_sig": false, "md5_digest": "edeaaedca1c0e1065edeca63973baf27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106106, "upload_time": "2017-12-08T14:53:57", "url": "https://files.pythonhosted.org/packages/d7/c4/c7f43da9beb870bdf75b857f59e361626c2830f6c6ab9be4eaaf50314d8c/kipart-0.1.32.tar.gz" } ], "0.1.33": [ { "comment_text": "", "digests": { "md5": "3fb5c5f8d7d0f42e4cd8392406cab73b", "sha256": "7414e03749b214e9cb5fb32a5c4c2d205d9ebba345db8ab5bed9b385f4ba67c5" }, "downloads": -1, "filename": "kipart-0.1.33.tar.gz", "has_sig": false, "md5_digest": "3fb5c5f8d7d0f42e4cd8392406cab73b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114022, "upload_time": "2018-01-03T17:26:12", "url": "https://files.pythonhosted.org/packages/fc/be/906a4201f9e19e365fe09ab60beaa41517dc738ff952290220a725a0469e/kipart-0.1.33.tar.gz" } ], "0.1.34": [ { "comment_text": "", "digests": { "md5": "7ca2fc044010a92cc5b2af3354289816", "sha256": "fac1a29079f6cc1ce09c44c943283d06a732184f36e1421d2bd3cafa80346b5a" }, "downloads": -1, "filename": "kipart-0.1.34.tar.gz", "has_sig": false, "md5_digest": "7ca2fc044010a92cc5b2af3354289816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113524, "upload_time": "2019-06-27T19:29:58", "url": "https://files.pythonhosted.org/packages/3e/f9/80247736b229aba0d1f9b7adee6ca896d24eade0fb49494fe20d556f8514/kipart-0.1.34.tar.gz" } ], "0.1.35": [ { "comment_text": "", "digests": { "md5": "12563c58c72588f3a2b9ee8b13d95a69", "sha256": "97ee61ba2350e688717a6df70d4f2c6160e9719fe76fb10a94f54f699c05a8a5" }, "downloads": -1, "filename": "kipart-0.1.35.tar.gz", "has_sig": false, "md5_digest": "12563c58c72588f3a2b9ee8b13d95a69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58408, "upload_time": "2019-09-18T17:23:51", "url": "https://files.pythonhosted.org/packages/40/7a/e2d21ceba1c5465bf89bb5afeedfe009108edf653bb756382200f4c919a1/kipart-0.1.35.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "e310b72df6338a17b451cea453c3f45e", "sha256": "26241f059515de0ca4163a06c288697adf1a17992c735ac47fa639734ee876c9" }, "downloads": -1, "filename": "kipart-0.1.4.zip", "has_sig": false, "md5_digest": "e310b72df6338a17b451cea453c3f45e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30362, "upload_time": "2015-07-27T18:59:52", "url": "https://files.pythonhosted.org/packages/18/a8/cb81195faf65ddb987df367720367e3a839815bbe6293815a3d5e2a42a1d/kipart-0.1.4.zip" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "0c105b8ba1b68f3bb35b2876482f735e", "sha256": "b26dbf20735757a23689aab71a78a47377f16fff61ea2608ab8e430e90812b30" }, "downloads": -1, "filename": "kipart-0.1.5.zip", "has_sig": false, "md5_digest": "0c105b8ba1b68f3bb35b2876482f735e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31591, "upload_time": "2015-07-29T19:13:24", "url": "https://files.pythonhosted.org/packages/9c/06/b411dcb3c831c6b0853760d1a2b13b5150f0ccd32ae2bec26167a20461ec/kipart-0.1.5.zip" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "95a0558c76b12bd9a1ce75e756af86d6", "sha256": "b6d192df2bd368d6969f3eccf63fa71d9da28c1a4757441835518caaed9294a6" }, "downloads": -1, "filename": "kipart-0.1.6.zip", "has_sig": false, "md5_digest": "95a0558c76b12bd9a1ce75e756af86d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32661, "upload_time": "2015-08-14T03:39:36", "url": "https://files.pythonhosted.org/packages/2a/c0/e54c81adbc3f523ca9cada8690dadd84339298c35d691e8a6487a41a6a29/kipart-0.1.6.zip" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "cea5e79e408ed790a9f3f7f8127f3b65", "sha256": "1c1f192247e7e2598db62c1216dd6fec0a0a522527cc5c1a30ae1f0d20e8b8b2" }, "downloads": -1, "filename": "kipart-0.1.7.zip", "has_sig": false, "md5_digest": "cea5e79e408ed790a9f3f7f8127f3b65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43268, "upload_time": "2015-08-15T03:48:45", "url": "https://files.pythonhosted.org/packages/35/87/31eeef2a95d4f6aeec8b99f8948dd5b9e03997b54437f0bcb89499f10661/kipart-0.1.7.zip" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "a9cb5f7d90ef5cf28b1cf384adad9e21", "sha256": "c7f6699864ff6da4909ec577336ac8e2480ff50a75ea5128fc2ca42890242d16" }, "downloads": -1, "filename": "kipart-0.1.8.zip", "has_sig": false, "md5_digest": "a9cb5f7d90ef5cf28b1cf384adad9e21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43886, "upload_time": "2015-08-17T22:38:27", "url": "https://files.pythonhosted.org/packages/3c/57/f169eef61a6c2036762471fcfad8c6072255164663eb280123224e0a2594/kipart-0.1.8.zip" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "28772bccfef5fab983b22ceef6d1d5f7", "sha256": "210e0d6cc572e6081b886b75a925b119a2b41e9623e7e4eab82cceed6058add9" }, "downloads": -1, "filename": "kipart-0.1.9.zip", "has_sig": false, "md5_digest": "28772bccfef5fab983b22ceef6d1d5f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43869, "upload_time": "2015-08-21T17:43:41", "url": "https://files.pythonhosted.org/packages/9b/da/68289acb255745ec265e8ebedaa94b142ab52c9130f16bf658a757fb5625/kipart-0.1.9.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "12563c58c72588f3a2b9ee8b13d95a69", "sha256": "97ee61ba2350e688717a6df70d4f2c6160e9719fe76fb10a94f54f699c05a8a5" }, "downloads": -1, "filename": "kipart-0.1.35.tar.gz", "has_sig": false, "md5_digest": "12563c58c72588f3a2b9ee8b13d95a69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58408, "upload_time": "2019-09-18T17:23:51", "url": "https://files.pythonhosted.org/packages/40/7a/e2d21ceba1c5465bf89bb5afeedfe009108edf653bb756382200f4c919a1/kipart-0.1.35.tar.gz" } ] }