{ "info": { "author": "Ivan Bogomazov", "author_email": "ivan.bogomazov@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Topic :: Utilities" ], "description": "# Shaper\n\n[![Latest version](https://img.shields.io/pypi/v/shaper.svg)](https://pypi.org/project/shaper/)\n[![License](https://img.shields.io/badge/license-Apache-green.svg?style=flat)](https://raw.githubusercontent.com/arno49/shaper/master/LICENSE)\n[![Total alerts](https://img.shields.io/lgtm/alerts/g/arno49/shaper.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/arno49/shaper/alerts/)\n[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/arno49/shaper.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/arno49/shaper/context:python)\n[![codecov](https://codecov.io/gh/arno49/shaper/branch/master/graph/badge.svg)](https://codecov.io/gh/arno49/shaper)\n[![Build Status](https://travis-ci.org/arno49/shaper.svg?branch=master)](https://travis-ci.org/arno49/shaper)\n\nTool for render configurations from few templates/sources.\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.\n\n\n### Installing\n\nInstall via [pypi](https://pypi.org/project/shaper/):\n\n```\npip install shaper\n```\n\n\n### Use cases\nAim of shaper - make configuration management easier with templating, DSL and CMDBs.\n\n\n#### Step 1 - Convert existing project configurations to DSL\n\n```\ncd myproject\nshaper read\n```\n\nWe will get `out.yml` file with DSL of our project configuration\n\n
out.yml\n

\n\n```python\nmy-backend:\n src:\n main:\n resources:\n application-dev1.properties:\n spring.cache.type: 'redis'\n spring.redis.host: 'dev1.111111.0001.use1.cache.amazonaws.com'\n spring.redis.port: '6379'\n spring.redis.ssl: 'false'\n spring.redis.ttl.minutes: '30'\n spring.redis.database: '0'\n spring.redis.available: 'true'\n app.init.enabled: 'true'\n app.email.support_address: 'support@my-domain.com'\n app.email.default_from: 'no-replay@my-domain.com'\n app.lock.provider: 'redis'\n application-qa1.properties:\n spring.cache.type: 'redis'\n spring.redis.host: dev1.111111.0001.use1.cache.amazonaws.com\n spring.redis.port: '6379'\n spring.redis.ssl: 'false'\n spring.redis.ttl.minutes: '30'\n spring.redis.database: '0'\n spring.redis.available: 'true'\n app.init.enabled: 'true'\n app.email.support_address: 'support@my-domain.com'\n app.email.default_from: 'no-replay@my-domain.com'\n app.lock.provider: 'redis'\n application-prod1.properties:\n spring.cache.type: 'redis'\n spring.redis.host: dev1.111111.0001.use1.cache.amazonaws.com\n spring.redis.port: '6379'\n spring.redis.ssl: 'false'\n spring.redis.ttl.minutes: '30'\n spring.redis.database: '0'\n spring.redis.available: 'true'\n app.init.enabled: 'true'\n app.email.support_address: 'support@my-domain.com'\n app.email.default_from: 'no-replay@my-domain.com'\n app.lock.provider: 'redis'\n application.properties:\n app.init.enabled: 'true'\n```\n\n

\n
\n\n\n#### Step 2 - Agregate common parameters with YAML anchor/alias\n\nUsing YAML specification let's rewrite duplicating data with anchors/aliases\n\n
out_refactored.yml \n

\n\n```python\nmappings.yml:\n redis:\n - host: &redis_dev_host 'dev.111111.0001.use1.cache.amazonaws.com'\n db:\n dev1: &redis_dev1_dbname 0\n qa1: &redis_qa1_dbname 1\n\n - host: &redis_prod_host 'prod.0000000.0001.use1.cache.amazonaws.com'\n db:\n prod1: &redis_prod1_dbname 0\n\n common_properties: &common_properties\n spring.cache.type: 'redis'\n spring.redis.port: '6379'\n spring.redis.ssl: 'false'\n spring.redis.ttl.minutes: '30'\n spring.redis.available: 'true'\n app.init.enabled: 'true'\n app.email.support_address: 'support@my-domain.com'\n app.email.default_from: 'no-replay@my-domain.com'\n app.lock.provider: 'redis'\n\nmy-backend:\n src:\n main:\n resources:\n application-dev1.properties:\n <<: *common_properties\n spring.redis.host: *redis_dev_host\n spring.redis.database: *redis_dev1_dbname\n\n application-qa1.properties:\n <<: *common_properties\n spring.redis.host: *redis_dev_host\n spring.redis.database: *redis_qa1_dbname\n\n application-prod1.properties:\n <<: *common_properties\n spring.redis.host: *redis_prod_host\n spring.redis.database: *redis_prod1_dbname\n\n application.properties:\n app.init.enabled: 'true'\n```\n\n

\n
\n\nThis datastructure after loads equal to previus version, but look much more pretty without duplicates parameters.\n\n\n#### Step 3 - Write properties from CMDB\n\n```\nshaper write out_refactored.yml\n```\n\n\n#### Step 4 - Enjoy\n\nCheck diff with existing configuration, fix if something wrong and embed into your CD pipeline.\n\n\n## Running the tests\nWe are using tox to agregate all testing steps. Just run it in project repository. All merges runs tests in [travis](https://travis-ci.org/arno49/shaper). \n\n```\ntox\n```\n\n\n## Contributing\n\nIf you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.\n\n### How to make a clean pull request\n\nLook for a project's contribution instructions. If there are any, follow them.\n\n- Create a personal fork of the project on Github ([howto](https://help.github.com/articles/fork-a-repo/)).\n- Clone the fork on your local machine. Your remote repo on Github is called `origin`.\n- Add the original repository as a remote called `upstream`.\n- If you created your fork a while ago be sure to pull upstream changes into your local repository.\n- Create a new branch to work on! Branch from `develop` if it exists, else from `master`.\n- Implement/fix your feature, comment your code.\n- Follow the code style of the project, including indentation.\n- If the project has tests run them!\n- Write or adapt tests as needed.\n- Add or change the documentation as needed.\n- Squash your commits into a single commit with git's [interactive rebase](https://help.github.com/articles/interactive-rebase). Create a new branch if necessary.\n- Push your branch to your fork on Github, the remote `origin`.\n- From your fork open a pull request in the correct branch. Target the project's `develop` branch if there is one, else go for `master`!\n- If the maintainer requests further changes just push them to your branch. The PR will be updated automatically.\n- Once the pull request is approved and merged you can pull the changes from `upstream` to your local repo and delete\nyour extra branch(es).\n\nAnd last but not least: Always write your commit messages in the present tense. Your commit message should describe what the commit, when applied, does to the code \u2013 not what you did to the code.\n\n## Versioning\n\nWe use [versioneer](https://pypi.org/project/versioneer/) for versioning. For the versions available, see the [tags on this repository](https://github.com/arno49/shaper/tags).\n\n## Authors\n\n* **Ivan Bogomazov** - [arno49](https://github.com/arno49)\n\nSee also the list of [contributors](https://github.com/arno49/shaper/graphs/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the Apache 2.0 - see the [LICENSE](LICENSE) file for details\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/arno49/shaper/wiki", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "shaper", "package_url": "https://pypi.org/project/shaper/", "platform": "", "project_url": "https://pypi.org/project/shaper/", "project_urls": { "Homepage": "https://github.com/arno49/shaper/wiki" }, "release_url": "https://pypi.org/project/shaper/0.1.3/", "requires_dist": [ "Jinja2 (==2.10)", "pyyaml (==3.13)", "versioneer (==0.18)", "xmltodict (==0.11.0)", "path.py (==11.5.0)", "pytest (==3.0.0) ; extra == 'test'", "mock (==2.0.0) ; extra == 'test'", "pylint (==1.9.3) ; extra == 'test'", "pep8 (==1.7.0) ; extra == 'test'", "tox (==2.5.0) ; extra == 'test'", "codecov (>=1.4.0) ; extra == 'test'", "pytest-cov (==2.6.0) ; extra == 'test'" ], "requires_python": "", "summary": "Manage application options", "version": "0.1.3" }, "last_serial": 5351538, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "54da9f38d0e16ec40cb89c9cc50eaf56", "sha256": "62b05cb96c8efdfcc05228836b127a55af60dbdab37d1f6468c3530f9dc38289" }, "downloads": -1, "filename": "shaper-0.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "54da9f38d0e16ec40cb89c9cc50eaf56", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 5629, "upload_time": "2018-06-19T13:32:42", "url": "https://files.pythonhosted.org/packages/39/ef/558ecf953d8ecf9d944f938f137876a30fe53abf62500a23a7f28a4bf7bd/shaper-0.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc9e35c02e850aeee0be96609383c2ad", "sha256": "b5172af978decb5b46f02bed3b85d32173c0c2e9af6abfbeb2d01a906a691cce" }, "downloads": -1, "filename": "shaper-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "bc9e35c02e850aeee0be96609383c2ad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7256, "upload_time": "2018-06-19T13:32:43", "url": "https://files.pythonhosted.org/packages/59/b1/a3342eca08592d3474cde9fe287560c7372c2061cedf1d01eb4ca7b130da/shaper-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e61513a8a1b1f7cc321927e3cc8cb4d", "sha256": "78d4d2730f74a3b8f218445d9730d3557d7c1e2826a31d41898de0e3c94ffe18" }, "downloads": -1, "filename": "shaper-0.0.1.tar.gz", "has_sig": false, "md5_digest": "6e61513a8a1b1f7cc321927e3cc8cb4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20664, "upload_time": "2018-06-19T13:32:44", "url": "https://files.pythonhosted.org/packages/b7/5e/ffb30f42cdda635a101ff398bb095bf6753c7d15eb167434393f1112f35c/shaper-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "26ae0ea21d2cac701e74bebf7b46bab4", "sha256": "c83e885e0291821f0d1b1c2995d46352670a3cbb9b5fe0d814eed77ecff994c8" }, "downloads": -1, "filename": "shaper-0.0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "26ae0ea21d2cac701e74bebf7b46bab4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20192, "upload_time": "2018-12-10T14:05:37", "url": "https://files.pythonhosted.org/packages/55/ae/8fac234de72e219dbefff1c7e781584bd043f843ad598e9afa42246148e9/shaper-0.0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e7d95dac748e98d9970f6a4d9b67cc23", "sha256": "3e201fa2a09defb7b7c483e5225420eeac232252f113ef397a59d9bbc12299a9" }, "downloads": -1, "filename": "shaper-0.0.10.tar.gz", "has_sig": false, "md5_digest": "e7d95dac748e98d9970f6a4d9b67cc23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30309, "upload_time": "2018-12-10T14:05:38", "url": "https://files.pythonhosted.org/packages/7d/80/84a543f319c481837b311dca79b3d17b963f1b1ee9d8d16cf942c6f7dd00/shaper-0.0.10.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "1d8b9e6767c9aca836bab035e7bea684", "sha256": "0c0c5548994234bbd87927c5e723f3bbe82c73e7e0593a71372ec991cdc7e47b" }, "downloads": -1, "filename": "shaper-0.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "1d8b9e6767c9aca836bab035e7bea684", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 7701, "upload_time": "2018-06-27T21:44:48", "url": "https://files.pythonhosted.org/packages/c6/a5/bd0828d0048d001f86891c45650e426a2394cfa09aafba92ef1e12a59516/shaper-0.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92d8b9e16c34e9cad8b6f1b31fb7707e", "sha256": "59cf104b6ba67a590b4fdf96c3368505732e89c80083220b29054f6b912386c2" }, "downloads": -1, "filename": "shaper-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "92d8b9e16c34e9cad8b6f1b31fb7707e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9337, "upload_time": "2018-06-27T21:44:49", "url": "https://files.pythonhosted.org/packages/3f/d3/292bb87ab4c0d7454b1453fc8c52b2d2128635f8dec9afbe2cddb5aca3ed/shaper-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5728e1eb074e73fc05c13931519ced78", "sha256": "464c0339b5710e7584cb4fed259053ee1271215c68237d46cf92e26616483978" }, "downloads": -1, "filename": "shaper-0.0.2.tar.gz", "has_sig": false, "md5_digest": "5728e1eb074e73fc05c13931519ced78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21457, "upload_time": "2018-06-27T21:44:51", "url": "https://files.pythonhosted.org/packages/75/52/b97d3954e54ffe1743fc42e63fdee746046f67d785c19ca97c9bd2576cef/shaper-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "81db4939d899edd2fa10c05e8cf91ce9", "sha256": "e086fa4ce38b06b2f32f77c93475734dc695b9ae038e7bb79d8cd631d652acc7" }, "downloads": -1, "filename": "shaper-0.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "81db4939d899edd2fa10c05e8cf91ce9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12753, "upload_time": "2018-10-26T16:22:59", "url": "https://files.pythonhosted.org/packages/40/16/256f072b9ef909c72a16b35b58f353c8a97ef18aecb28e741d4b45b96455/shaper-0.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c7d8ceafa8458b7842bf59192d2b15d", "sha256": "da09d29a88f68a059552c76d5ef090b10e11a5bc770bd47f60dc748a912442f0" }, "downloads": -1, "filename": "shaper-0.0.3.tar.gz", "has_sig": false, "md5_digest": "3c7d8ceafa8458b7842bf59192d2b15d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21975, "upload_time": "2018-10-26T16:23:02", "url": "https://files.pythonhosted.org/packages/14/da/0eac1d3d5554931c62f69d7f78d23a4585aa364e4c6e182f3e980100eafb/shaper-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "ef79c2a9e1567100c4ed65aa81705a55", "sha256": "e7e874d5a0a766a692d6d887bfb0cd2b483a286c628701db5e555e2d1d8fa96e" }, "downloads": -1, "filename": "shaper-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef79c2a9e1567100c4ed65aa81705a55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14770, "upload_time": "2018-11-01T15:56:19", "url": "https://files.pythonhosted.org/packages/7a/c9/01ad51b7a3752392a7dfe054f8e8f6da5ff153057644f411e7ec30799da1/shaper-0.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9083d857466454873f2e39695e0f9716", "sha256": "5a9b01350a764906f3c6568d8072d59bcfc26b8cfe4a47c4b09f020c40d5f13c" }, "downloads": -1, "filename": "shaper-0.0.4.tar.gz", "has_sig": false, "md5_digest": "9083d857466454873f2e39695e0f9716", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25658, "upload_time": "2018-11-01T15:56:21", "url": "https://files.pythonhosted.org/packages/b1/7e/db7b1c138033335b60a6bd0820b6594bf5cfc0a2589d4556eef3412f4705/shaper-0.0.4.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "da044919a811064fba72b6bea0ef981e", "sha256": "fc11be1122e081812e019c6e7baebcd387ff97e641f281ec79d123c1816dc0b0" }, "downloads": -1, "filename": "shaper-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da044919a811064fba72b6bea0ef981e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18663, "upload_time": "2018-11-06T19:09:14", "url": "https://files.pythonhosted.org/packages/0f/81/639bbc60100a9c6fa9791bd961f1ceda07418f7c39e2b53e5b76ddf7509b/shaper-0.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d8a361f90cb0cafd1ae48d2cfc972ef", "sha256": "7a11055ca4643a5ee40f5ce18b7aeba299a41d0c0a872b6bd1bbcdfdce96f19d" }, "downloads": -1, "filename": "shaper-0.0.6.tar.gz", "has_sig": false, "md5_digest": "6d8a361f90cb0cafd1ae48d2cfc972ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28796, "upload_time": "2018-11-06T19:09:16", "url": "https://files.pythonhosted.org/packages/89/f6/ea7c82e80eea0c04584473ab003f2dc1a466bfb3a033c69b6e3fac682fbc/shaper-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "606518c112b02c57c9c898736aeb867f", "sha256": "9ce34b8dc4303ea0be640fe8236fde399db465139a12fc97d3e2b1ff3e6324ec" }, "downloads": -1, "filename": "shaper-0.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "606518c112b02c57c9c898736aeb867f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19824, "upload_time": "2018-11-21T12:52:29", "url": "https://files.pythonhosted.org/packages/98/52/9071455f2ce5888b01f1c6412daf8e58eb1f21cb1d7c30692d05386edb30/shaper-0.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2827d6a15748f846a9f4694d1277e5a", "sha256": "04842d5dca17980cc5cc5ac58ce73243367c226b1e4f9fbb47ffd6368011d33a" }, "downloads": -1, "filename": "shaper-0.0.7.tar.gz", "has_sig": false, "md5_digest": "f2827d6a15748f846a9f4694d1277e5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29666, "upload_time": "2018-11-21T12:52:31", "url": "https://files.pythonhosted.org/packages/2b/e8/1ee9ff3e56cb6b871703b1493d6a1034f1d62b4041194bc2efb59fe922e0/shaper-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "6e94f50624b770ac24060fd154e20a1e", "sha256": "2b662895e33e0c01dc0828aa7c971e11c8ec536aad72d8cffa3395aee9dec1fe" }, "downloads": -1, "filename": "shaper-0.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e94f50624b770ac24060fd154e20a1e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20041, "upload_time": "2018-12-03T12:32:01", "url": "https://files.pythonhosted.org/packages/29/60/28a19a0abb13be047cfbc419acf6ad01bb5d69f48e280b1889d881be3562/shaper-0.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12bb4df90ffca1930585f8dfc716464b", "sha256": "94273e108023365453af004f97ecf4a289065a0f61a12b0d2bcc1c49387b0afe" }, "downloads": -1, "filename": "shaper-0.0.8.tar.gz", "has_sig": false, "md5_digest": "12bb4df90ffca1930585f8dfc716464b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29864, "upload_time": "2018-12-03T12:32:03", "url": "https://files.pythonhosted.org/packages/50/34/1ca1b790078e36ca65680089fca9ed238bd9f4a31f835078f8786525d524/shaper-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "7741156c483e4ac41e93d8c6395abb91", "sha256": "15f89cca98c204bd63db072f119571fbb0677a1eb783911f0f4d360fdb2e7dd7" }, "downloads": -1, "filename": "shaper-0.0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7741156c483e4ac41e93d8c6395abb91", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20065, "upload_time": "2018-12-03T14:01:19", "url": "https://files.pythonhosted.org/packages/56/23/382d90b8bc4bde1146aa5c156132c9ff92ae7dd8b875965aad94afbb6334/shaper-0.0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7a90ef4c23c7551c90d175085a0a925", "sha256": "c209d83ed4375c265010307f08d220bb91a5ceda190dcda475c9f2fbf3f19b6e" }, "downloads": -1, "filename": "shaper-0.0.9.tar.gz", "has_sig": false, "md5_digest": "d7a90ef4c23c7551c90d175085a0a925", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29919, "upload_time": "2018-12-03T14:01:20", "url": "https://files.pythonhosted.org/packages/2e/4e/a5a576370ccf5477198448d2dbcf180e3ab636dd275c13e5d33703f48f9d/shaper-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "2522283c5381ce6b1d5d561086ef6593", "sha256": "0936744dc68083d24c03eaa533994d1877a4d90213b97c1e116809fc37e477d7" }, "downloads": -1, "filename": "shaper-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2522283c5381ce6b1d5d561086ef6593", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21799, "upload_time": "2018-12-14T13:22:50", "url": "https://files.pythonhosted.org/packages/b6/3f/f14e63c9dae028be2161dbdeea4fb93f1aedb7c273b6f16b604b953f65f1/shaper-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e417e994e9ed06322fabac04209c94c", "sha256": "8e6df35fc9cd756b760558dcdfbe2b57491bb3437cee9f02b35edc4038d9ce1a" }, "downloads": -1, "filename": "shaper-0.1.0.tar.gz", "has_sig": false, "md5_digest": "8e417e994e9ed06322fabac04209c94c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35072, "upload_time": "2018-12-14T13:22:52", "url": "https://files.pythonhosted.org/packages/5a/b0/be7a6a91d5475fe924ceae4716f6b84c6df6daba559ef0481f4164b497f7/shaper-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "5977af0b11cec5c4de0dcf42a5db21af", "sha256": "c069af55e64df9a75b11e2324f153ebb63886b9202909b648221a5b11765f66a" }, "downloads": -1, "filename": "shaper-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5977af0b11cec5c4de0dcf42a5db21af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21840, "upload_time": "2018-12-28T14:45:13", "url": "https://files.pythonhosted.org/packages/10/20/52f06b5b8fe5bbbfbac16f5d044c833f76166c168bef2415257b0f4f5314/shaper-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3a1ee56dabc88de8ae6e2dff2b54920", "sha256": "91bdc27d948c2756052eb38fecb9e77b233d1f1f831e89f04d28a1898c46d717" }, "downloads": -1, "filename": "shaper-0.1.1.tar.gz", "has_sig": false, "md5_digest": "d3a1ee56dabc88de8ae6e2dff2b54920", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35127, "upload_time": "2018-12-28T14:45:14", "url": "https://files.pythonhosted.org/packages/8d/5b/9737aec09ba10d1ec5d1bba9e7ca6177ee5753b1d051536fc3f63b1f7525/shaper-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "8f5fd40ac6e8a6155d22f520030ff67a", "sha256": "f8b9f8bca8d791def4b40c187d17fb669e2528a567434692664fcd8ab45117d2" }, "downloads": -1, "filename": "shaper-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f5fd40ac6e8a6155d22f520030ff67a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21969, "upload_time": "2019-05-27T20:22:51", "url": "https://files.pythonhosted.org/packages/d8/8b/aef1d62c359474fc92535c9357368df8fbd502681b9b39acf0b8de7d521a/shaper-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a63ddc692f35aca6284a620e482213a7", "sha256": "ee42ea5fe4f765d2d89f70865edb56e5c5937483229cd26a09c09d205e573340" }, "downloads": -1, "filename": "shaper-0.1.2.tar.gz", "has_sig": false, "md5_digest": "a63ddc692f35aca6284a620e482213a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35233, "upload_time": "2019-05-27T20:22:52", "url": "https://files.pythonhosted.org/packages/5f/cd/434407129e33e97af1dbf7fa3189425f68c44fa71f2a506a00541c39ec65/shaper-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "ed973b4489653f9c2b21ce9130e66d3e", "sha256": "2ecc8f8b8b85a3112ebaaba898db87583bea5793b292bcecf87c2b8ebf85cba5" }, "downloads": -1, "filename": "shaper-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed973b4489653f9c2b21ce9130e66d3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21853, "upload_time": "2019-06-03T09:04:10", "url": "https://files.pythonhosted.org/packages/6c/c7/0cef0be074a5cb3a8292c437e41c5fdf0a26930b48932c37040fc7717f21/shaper-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c77fa05e26b80b0de912b91a313e1a60", "sha256": "d9dacf6b9c783b30f51232cf7c1b77b771010954097d6b3eb81a32ac6d205c85" }, "downloads": -1, "filename": "shaper-0.1.3.tar.gz", "has_sig": false, "md5_digest": "c77fa05e26b80b0de912b91a313e1a60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35090, "upload_time": "2019-06-03T09:04:12", "url": "https://files.pythonhosted.org/packages/0c/bf/c275914e0258f077585b64746d79d18816bfd54af9df1c88323c4ec9e02f/shaper-0.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ed973b4489653f9c2b21ce9130e66d3e", "sha256": "2ecc8f8b8b85a3112ebaaba898db87583bea5793b292bcecf87c2b8ebf85cba5" }, "downloads": -1, "filename": "shaper-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed973b4489653f9c2b21ce9130e66d3e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21853, "upload_time": "2019-06-03T09:04:10", "url": "https://files.pythonhosted.org/packages/6c/c7/0cef0be074a5cb3a8292c437e41c5fdf0a26930b48932c37040fc7717f21/shaper-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c77fa05e26b80b0de912b91a313e1a60", "sha256": "d9dacf6b9c783b30f51232cf7c1b77b771010954097d6b3eb81a32ac6d205c85" }, "downloads": -1, "filename": "shaper-0.1.3.tar.gz", "has_sig": false, "md5_digest": "c77fa05e26b80b0de912b91a313e1a60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35090, "upload_time": "2019-06-03T09:04:12", "url": "https://files.pythonhosted.org/packages/0c/bf/c275914e0258f077585b64746d79d18816bfd54af9df1c88323c4ec9e02f/shaper-0.1.3.tar.gz" } ] }