{ "info": { "author": "allink AG and contributors", "author_email": "itcrowd@allink.ch", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Application Frameworks" ], "description": "# allink-core\nallink-core is a heavily opinionated collection of django apps, django-cms plugins and other utilities. allink-core was implemented to create a standardized ecosystem for django-cms projects developed at [allink AG](https://www.allink.ch).\n\nallink-core is ment to be used with our boilerplate project which is hosted on the [divio cloud](https://www.divio.com/en/). (feel free to send us a [message](mailto:itcrowd@allink.ch) if you would like to have a look.)\nThe steps we describe here are mostly closely coupled to our setup and environment. So the described steps might not make sense to you, when you don't know our setup. Also we skip steps which we already included in the boilerplate.\n\n## Documentation\n[v2.x.x](http://allink-core.readthedocs.io/en/v2.x.x/)\n\n## Working on documentation\n`make docs` will serve you a preview of the local docs on \"http://127.0.0.1:8000\". More Information on [mkdocs.org](http://www.mkdocs.org/) or [mkdocs rtd](https://mkdocs.readthedocs.io/en/stable/).\n\n## Release conventions\n\n### Major\nv.0.x.x, v.1.x.x and v.2.x.x are not compatible with each other. We never migrated from one to an other and doing so would be a be a lot of manual work, as there have been a lot of database changes. We try to minimize the need for a new major version. The decision if v3.x.x will be compatible with v.2.x.x has yet to be made.\n\n### Minor\nWhen you make changes that affect both the [backend](https://github.com/allink/allink-core) and the [frontend](https://github.com/allink/allink-core-static) the project dependencies need to be updated at the same time. To quickly see which releases belong together you should make a `minor` release in both repositories.\n\n#### Example\nA new CMS plugin together with styles has been added to the core. Release a new `minor` version:\n\n- `allink-core==v2.3.0`\n- `allink-core-static@v2.3.0`\n\n### Patch\nChanges that only affect a single repo should be tagged with a `patch` release. Usually needed for small adjustments and bugfixes.\n\n#### Example\nA bugfix has been made in allink-core. Release a new `patch` version:\n\n- `allink-core==v2.3.2`\n\n## Workflow when making updates to allink-core repo while working on a project.\nThe idea is that we want to be able to make changes to the allink-core repo with real life data. This can be achieved, when we are able to switch out the installed allink-core form the requirements.in with a local allink-core repo. This way we can also maintain a proper git history.\n\n### Prepare allink-core repository\nTo work on the allink-core repo you first need to pull the [allink-core](https://github.com/allink/allink-core) repo. The setup expects it to be at \"~/projects/allink-core\". If it isn't in this location, just create a symlink which points to your allink-core repo.\n\n1. make sure you are up to date with the current version branch e.g \"v2.0.x\" and you working on your own branch.\n2. create a virtualenv `virtualenv env`\n3. install requirements `pip install -r requiremnts_dev.txt`\n\nFor the next steps, we assume you are working on the [boilerplate-2.0](https://github.com/allink/boilerplate-2.0) project, but this should work with every project which follows the same principles and have allink-core installed.\n\n### Prepare boilerplate-2.0 repository\n1. To override the already installed allink-core requirements, we have to mount the local allink-core directory as a volume into the docker container. Add `- \"~/projects/allink-core/allink_core:/app/allink_core:rw\"` to the docker-compose.yml file.\n2. To work directly on allink-core in the same directory as the boilerplate-project, we create a symlink. `ln -s ~/projects/allink-core/allink_core allink_core`\n\n> Make sure you do not commit these changes, as your teammates probably do not care about having a local allink-core mapped in their project.\n\n> Make added or updated translations with the following command: `./manage.py makemessages --symlinks`\n\nYou are all set. When you now run `docker-compose up` your application will run with your local allink-core repo. However if you run `docker-compose build` you will still be installing the allink-core repo from the requirements file.\n\nIf you need to run `docker-compose build` with your new branch. Just commit your changes to your feature branch on the allink-core repo and add it to the boilerplate-2.0 requirementsfile with the corresponding commit hash. e.g: `https://github.com/allink/allink-core/tarball/ccb67deaed7dbc07bd565c717a21c0a07752bd9d`\n\n### create a new release of allink-core\n1. create a new pull request (make sure you include your changes to CHANGELOG.md)\n2. merge back to version branch e.g v2.0.x\n3. `make patch` or `make minor` depending on what version you want to create. (this will create a new commit and push the new tags to github) If you need an other version do it with `bumpversion`.\n4. create a new release on PyPi. First use `make release-test` to release in the test repository and finally use `make release`(make sure you have the correct credentials for allink in your [~/.pypirc](https://docs.python.org/3.3/distutils/packageindex.html#the-pypirc-file) also for [test-pypi](https://packaging.python.org/guides/using-testpypi/#setting-up-testpypi-in-pypirc))\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": "http://github.com/allink/allink-core/", "keywords": "", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "allink-core", "package_url": "https://pypi.org/project/allink-core/", "platform": "OS Independent", "project_url": "https://pypi.org/project/allink-core/", "project_urls": { "Homepage": "http://github.com/allink/allink-core/" }, "release_url": "https://pypi.org/project/allink-core/2.8.2/", "requires_dist": [ "Django (<3.0,>=2.0)" ], "requires_python": "", "summary": "A collection of apps used in allink cms-projects.", "version": "2.8.2", "yanked": false, "yanked_reason": null }, "last_serial": 10142786, "releases": { "2.0.3": [ { "comment_text": "", "digests": { "md5": "8f8f01f576ddda28a154ff803c470a63", "sha256": "791a4ace889e038aee0f446edf5005f65a23aae86b59027e50c64e2717b07afc" }, "downloads": -1, "filename": "allink_core-2.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "8f8f01f576ddda28a154ff803c470a63", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 566271, "upload_time": "2019-10-11T10:50:36", "upload_time_iso_8601": "2019-10-11T10:50:36.270277Z", "url": "https://files.pythonhosted.org/packages/f3/c4/a29d555eb660f4c79752238d0e578f202b46d84bf045b7abc134c42bbb84/allink_core-2.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8da554423a5b69be2d7ac2c9fabc86a", "sha256": "aaea26c03418e41d990f78ab0b4c97d67a99022ed334cab4e3b0bf24b4884c46" }, "downloads": -1, "filename": "allink-core-2.0.3.tar.gz", "has_sig": false, "md5_digest": "e8da554423a5b69be2d7ac2c9fabc86a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253008, "upload_time": "2019-10-11T10:50:39", "upload_time_iso_8601": "2019-10-11T10:50:39.130533Z", "url": "https://files.pythonhosted.org/packages/9a/c6/f69c146847d6c71e58d232a825b3c29d6d274110853f16242c57caf90d06/allink-core-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "b1e60ea256c5e1b5c35bac29572762c4", "sha256": "2943866891d47baa663dfc056d04b73f92017c8049c961e213433ebc12a2b939" }, "downloads": -1, "filename": "allink_core-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b1e60ea256c5e1b5c35bac29572762c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 566622, "upload_time": "2019-10-11T11:21:44", "upload_time_iso_8601": "2019-10-11T11:21:44.627946Z", "url": "https://files.pythonhosted.org/packages/4c/a2/f83b442e3c3b334ab7b4d20f4bebc107388416348ee5453d29fb8c261414/allink_core-2.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c19c4bc8c6379df22d2feb8a8099d9b", "sha256": "de82f7827e3003b1d28fbd63fe80dcba61eb987ea2381e9ae0894648e423224d" }, "downloads": -1, "filename": "allink-core-2.0.4.tar.gz", "has_sig": false, "md5_digest": "2c19c4bc8c6379df22d2feb8a8099d9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253141, "upload_time": "2019-10-11T11:21:46", "upload_time_iso_8601": "2019-10-11T11:21:46.235606Z", "url": "https://files.pythonhosted.org/packages/90/3a/e12906b34a2e5682b43af3b2d66eb6f4bb4692adaa90d71dfc8f83412305/allink-core-2.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "33943c13da29ac4bc0403d8eb7fa8528", "sha256": "f0d9439354b8b3f2aa8295ac795a847d0053200f744dccfa4a22077da529db88" }, "downloads": -1, "filename": "allink_core-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "33943c13da29ac4bc0403d8eb7fa8528", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 565647, "upload_time": "2019-10-11T13:51:52", "upload_time_iso_8601": "2019-10-11T13:51:52.598650Z", "url": "https://files.pythonhosted.org/packages/35/97/0e2b6a126688bda20825fcb4bfff91a822c8269b3d357e7b03291c5832ce/allink_core-2.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20c08ab03075a219b392adeaeac35b70", "sha256": "06c8d76c7113a99f8bf5d34a2053e20cee62f8e03bf6bd719642d04758a79077" }, "downloads": -1, "filename": "allink-core-2.0.5.tar.gz", "has_sig": false, "md5_digest": "20c08ab03075a219b392adeaeac35b70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 254812, "upload_time": "2019-10-11T13:51:55", "upload_time_iso_8601": "2019-10-11T13:51:55.782904Z", "url": "https://files.pythonhosted.org/packages/cb/46/83504ffb37f36b589ffd4a4b98e672cb85d0425d9c358bf2e79e72e57bc2/allink-core-2.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "fe13ce8de3d131f67691215416fc4c05", "sha256": "480196ca1eebb4ab983b3fb5efe41fd4b859525efe44a2e32f9d40372ad4c599" }, "downloads": -1, "filename": "allink_core-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "fe13ce8de3d131f67691215416fc4c05", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 566568, "upload_time": "2019-10-14T15:45:16", "upload_time_iso_8601": "2019-10-14T15:45:16.046807Z", "url": "https://files.pythonhosted.org/packages/5e/59/b59b5a42c868f6d54d99d6057a2ec772030a4895bdb7491cea932d549f72/allink_core-2.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa52c480285558dd769d5a2cf4bdb0ea", "sha256": "d6051e7c2b7fc6bb87a7a8295774bd9c840620504f378de6afc5ab6a0a460201" }, "downloads": -1, "filename": "allink-core-2.0.6.tar.gz", "has_sig": false, "md5_digest": "fa52c480285558dd769d5a2cf4bdb0ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 255676, "upload_time": "2019-10-14T15:45:28", "upload_time_iso_8601": "2019-10-14T15:45:28.886427Z", "url": "https://files.pythonhosted.org/packages/08/d0/866a8cf29e4bf9acb81a254c687af9b72ca2bba88f0b3a95fc35ee2395f9/allink-core-2.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "f424fc3eb70a8e851453c500d4b3da80", "sha256": "81003751ce783ab711926d7992d102e18c7d4a8f70b6d30e8be7c239f0c277cb" }, "downloads": -1, "filename": "allink_core-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "f424fc3eb70a8e851453c500d4b3da80", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 566581, "upload_time": "2019-10-15T07:10:35", "upload_time_iso_8601": "2019-10-15T07:10:35.383085Z", "url": "https://files.pythonhosted.org/packages/fe/26/0a6547d117ea227c5e12c7f90cb8555e094ef972ddc1210eee3756f39860/allink_core-2.0.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b0a363992e0cfa2b8720e0e03d3467f", "sha256": "79ce60b646bcd52693d41e06ff8fc33e012917a0ca66a2751509a1c34193452c" }, "downloads": -1, "filename": "allink-core-2.0.7.tar.gz", "has_sig": false, "md5_digest": "0b0a363992e0cfa2b8720e0e03d3467f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 255751, "upload_time": "2019-10-15T07:10:38", "upload_time_iso_8601": "2019-10-15T07:10:38.668051Z", "url": "https://files.pythonhosted.org/packages/f6/51/38934739aba05d3d4240c41c2c89dd81f88ca32f321bbeaf7ae64cc5d2c0/allink-core-2.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "4f6440bee6cd7d07739660fa1b92f360", "sha256": "993814a22bbba60928a784edb06a081ae1946c5c5e528a4a648103bd7b813046" }, "downloads": -1, "filename": "allink_core-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "4f6440bee6cd7d07739660fa1b92f360", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 567338, "upload_time": "2019-10-15T14:25:54", "upload_time_iso_8601": "2019-10-15T14:25:54.136554Z", "url": "https://files.pythonhosted.org/packages/ed/3e/eda687a7bc08e023799f23c4b2385a334c86a2ddadad4b6f029ac1ff4b3a/allink_core-2.0.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de7824391ec7dcdf00dd0d03657ee98a", "sha256": "11e00131f2a03e0aa9e9511de207c31b80f71698731b4a7853225629bec8400f" }, "downloads": -1, "filename": "allink-core-2.0.8.tar.gz", "has_sig": false, "md5_digest": "de7824391ec7dcdf00dd0d03657ee98a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 255860, "upload_time": "2019-10-15T14:25:55", "upload_time_iso_8601": "2019-10-15T14:25:55.907182Z", "url": "https://files.pythonhosted.org/packages/61/ab/6fbff9aa3b11810d9007a0f8243cf290544daa4a6362d2f2952588af6f68/allink-core-2.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "e68a7c61e41b45fc718dd7f6fcec27d7", "sha256": "a9ba0db0c602533524fec7fe394de024b49ab18e936be952028ae132fe255ca4" }, "downloads": -1, "filename": "allink_core-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e68a7c61e41b45fc718dd7f6fcec27d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 569939, "upload_time": "2019-10-18T13:41:26", "upload_time_iso_8601": "2019-10-18T13:41:26.228974Z", "url": "https://files.pythonhosted.org/packages/92/e3/ff0f636f9ab0f9ba5c72f51d2114a9dd29e95f85239e4bee3bfa6b19deb0/allink_core-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3001cb6f257cc17e3efac6fdf58d032d", "sha256": "835b8e2d1788a9551aa03ed9a2828354625a8a7d5a72fc938343beaf0bf3a22e" }, "downloads": -1, "filename": "allink-core-2.1.0.tar.gz", "has_sig": false, "md5_digest": "3001cb6f257cc17e3efac6fdf58d032d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258075, "upload_time": "2019-10-18T13:41:28", "upload_time_iso_8601": "2019-10-18T13:41:28.550794Z", "url": "https://files.pythonhosted.org/packages/27/d6/51221d31f319fa4ee9439b74c1aa5ada128b9d1bd8742078b6e5a5e4ed68/allink-core-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "015117085d255db11c1df880fc52bd91", "sha256": "56d32811d118f996356eb171a8c6fd2b1276691423ed46df6092729803c4cee9" }, "downloads": -1, "filename": "allink_core-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "015117085d255db11c1df880fc52bd91", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 570641, "upload_time": "2019-10-18T13:36:17", "upload_time_iso_8601": "2019-10-18T13:36:17.141675Z", "url": "https://files.pythonhosted.org/packages/e1/21/a35f4e06ce6f8643127b3a576f9a25574a8806857a9ffd874d7db7fbd23b/allink_core-2.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b8a179dbfbe059f3dc021017d80aab5", "sha256": "4568d8ca4e1e66215e98f1bf1913289db17904f8bdce335f6e0bbc825045c6c3" }, "downloads": -1, "filename": "allink-core-2.2.0.tar.gz", "has_sig": false, "md5_digest": "8b8a179dbfbe059f3dc021017d80aab5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258214, "upload_time": "2019-10-18T13:36:19", "upload_time_iso_8601": "2019-10-18T13:36:19.143157Z", "url": "https://files.pythonhosted.org/packages/c8/e0/aab40be926ac7ccbcb7fdf371311d8cbe61600d1b7191c2724488c762e2f/allink-core-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "d30a1c29bb91831342923394528f13b0", "sha256": "c68fec97f0aaaae4d73404f3a987ac8e0985d9384bddc98db5b55656b218ab1c" }, "downloads": -1, "filename": "allink_core-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d30a1c29bb91831342923394528f13b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 581642, "upload_time": "2019-10-21T08:54:30", "upload_time_iso_8601": "2019-10-21T08:54:30.737157Z", "url": "https://files.pythonhosted.org/packages/75/b6/e2b669f1001d1012578a830acc9be052a7d71f6f9e588b5dcb3241a10a89/allink_core-2.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb1d208d633fd095f5cf35bd3f3dd957", "sha256": "90b394da9b2340b90b85be1b035935de4a96c35e5c60093beb860ec2445262f5" }, "downloads": -1, "filename": "allink-core-2.2.1.tar.gz", "has_sig": false, "md5_digest": "bb1d208d633fd095f5cf35bd3f3dd957", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 259793, "upload_time": "2019-10-21T08:54:33", "upload_time_iso_8601": "2019-10-21T08:54:33.093236Z", "url": "https://files.pythonhosted.org/packages/42/b6/ebae7caf47cbb124bfe579338c9e14b6c794b41affcb13048f53a3a0a5ce/allink-core-2.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "af4ae30f69701524067735babd1ed141", "sha256": "dce7d10e7825714153de5f50473266cb120c8f22d4eb58bc7749948f7695989e" }, "downloads": -1, "filename": "allink_core-2.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "af4ae30f69701524067735babd1ed141", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 581928, "upload_time": "2019-10-21T13:57:55", "upload_time_iso_8601": "2019-10-21T13:57:55.333725Z", "url": "https://files.pythonhosted.org/packages/cb/38/daaf59860a582d00b188310cb5a7021093d8e6f3e1fc306aced370c4bf50/allink_core-2.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9852c7dfd1b5a2ec15f9df4393e87f8", "sha256": "1b8340acdd33ef4280e9c1e67dee91b85cd54cac5425628bc5dff97614c4379d" }, "downloads": -1, "filename": "allink-core-2.2.2.tar.gz", "has_sig": false, "md5_digest": "c9852c7dfd1b5a2ec15f9df4393e87f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260966, "upload_time": "2019-10-21T13:57:57", "upload_time_iso_8601": "2019-10-21T13:57:57.730423Z", "url": "https://files.pythonhosted.org/packages/ba/01/4d300f4c83573363f99dea1ffe5ecae2d61748ad54e2ad5151af46e7fc57/allink-core-2.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "88fe3b0efa544d5107d2cd5559f04bc8", "sha256": "414835ce7d590b05bb47e6e480f692e482f5bcee575fa88a9cf6b727b303d5bb" }, "downloads": -1, "filename": "allink_core-2.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "88fe3b0efa544d5107d2cd5559f04bc8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 587357, "upload_time": "2019-11-21T14:40:49", "upload_time_iso_8601": "2019-11-21T14:40:49.630290Z", "url": "https://files.pythonhosted.org/packages/c4/09/58c862c60b2c979cd4ca3ffa754a52bd44f3f7466d1f6efd300a6e099e6f/allink_core-2.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af9c60fb3c04cb357298f70104bc7895", "sha256": "c308e2dbf1b46acd7ebf71896750f98a3839a7c53580335aa5992a1c76a29171" }, "downloads": -1, "filename": "allink-core-2.2.3.tar.gz", "has_sig": false, "md5_digest": "af9c60fb3c04cb357298f70104bc7895", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 264442, "upload_time": "2019-11-21T14:40:57", "upload_time_iso_8601": "2019-11-21T14:40:57.308588Z", "url": "https://files.pythonhosted.org/packages/b3/38/e49152a472ee78b4dbebb962669d4e3d70074885f86cf87b539370eec366/allink-core-2.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "cef36f3b99e3647c5de23cc08493e081", "sha256": "d991ec50f2cadb095f55caef069fe143200f9d24478b258e4c4b189fbcf786e5" }, "downloads": -1, "filename": "allink_core-2.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cef36f3b99e3647c5de23cc08493e081", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 586238, "upload_time": "2019-11-27T16:04:03", "upload_time_iso_8601": "2019-11-27T16:04:03.646780Z", "url": "https://files.pythonhosted.org/packages/d1/73/d6b6cffb042af7b2f0439c3cde3d53c32e6e8b02962506a2e2f2d17be326/allink_core-2.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0e34e031562f23279b9f1fba734f1e0", "sha256": "d86a5fb681252b8551c746d6b4e015c2c325243c682ded79acc502b1abd30439" }, "downloads": -1, "filename": "allink-core-2.3.0.tar.gz", "has_sig": false, "md5_digest": "e0e34e031562f23279b9f1fba734f1e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 257683, "upload_time": "2019-11-27T16:04:05", "upload_time_iso_8601": "2019-11-27T16:04:05.670783Z", "url": "https://files.pythonhosted.org/packages/f8/35/3e01bfa08516e48b874043d28ee5c7283336a8093c8e684da872833d894b/allink-core-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "a490384647eba46a822253e393ac76db", "sha256": "c764bad8f97df7176851d152b52485781d617487b920ed9a88307328a1b677e5" }, "downloads": -1, "filename": "allink_core-2.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a490384647eba46a822253e393ac76db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 586692, "upload_time": "2019-11-29T10:14:38", "upload_time_iso_8601": "2019-11-29T10:14:38.618997Z", "url": "https://files.pythonhosted.org/packages/6f/0a/c1f9574455e9dfd61b5e220d982f4b74e487a268ce59ec85dfac131053a2/allink_core-2.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ade0a57511da016e553ccfdfff8b19e", "sha256": "110870f955e76fed074be709fab424831ab07fdbe1880dc5eb5a012b3ac0132d" }, "downloads": -1, "filename": "allink-core-2.3.1.tar.gz", "has_sig": false, "md5_digest": "7ade0a57511da016e553ccfdfff8b19e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 258390, "upload_time": "2019-11-29T10:14:40", "upload_time_iso_8601": "2019-11-29T10:14:40.250373Z", "url": "https://files.pythonhosted.org/packages/11/47/34a87076bcced74c46620801072d7052db6ccdfa1e03d1296fed190105f6/allink-core-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "5ba21cb619c9dc933e5c1e219a1cb366", "sha256": "3d04caded965c138d9542361e04cfcea9525aeb13a4d71361eca3d9036e9b74f" }, "downloads": -1, "filename": "allink_core-2.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5ba21cb619c9dc933e5c1e219a1cb366", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 590834, "upload_time": "2020-01-24T14:46:59", "upload_time_iso_8601": "2020-01-24T14:46:59.130235Z", "url": "https://files.pythonhosted.org/packages/a8/b4/b3d2ce34fd5022b6cb7d7fb909a254ad046afede816c566d47608857fc43/allink_core-2.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "719548988163ba4dcd18b65ca7bd7352", "sha256": "f4417bb6e34cc6c90ce1e42d6f7bab321dce3b01bd1f796d8e65e1fd62a8946d" }, "downloads": -1, "filename": "allink-core-2.3.2.tar.gz", "has_sig": false, "md5_digest": "719548988163ba4dcd18b65ca7bd7352", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 259850, "upload_time": "2020-01-24T14:47:00", "upload_time_iso_8601": "2020-01-24T14:47:00.986800Z", "url": "https://files.pythonhosted.org/packages/b8/81/b0ba963b25eb9cb0b30cf1d9bc63dc4a83613cc277e400c36a4c3985209b/allink-core-2.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "a8eecffbdad47a706d1c9906066737f0", "sha256": "50692c5a5e5235c220582619567bdc942d671f626c633ffe02e78615f26a03ef" }, "downloads": -1, "filename": "allink_core-2.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a8eecffbdad47a706d1c9906066737f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 591115, "upload_time": "2020-02-03T14:29:22", "upload_time_iso_8601": "2020-02-03T14:29:22.896581Z", "url": "https://files.pythonhosted.org/packages/e0/00/73e65c2cda63b8b29d757a02d11e49cb2ed71ac1154a8dd450126f6cf498/allink_core-2.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c585a31c328153f081bb6d4eeb22aeae", "sha256": "41924c0b3b1050996c6fe34731633ba50000e53c9321a77f3a5cd505ca0d832f" }, "downloads": -1, "filename": "allink-core-2.3.3.tar.gz", "has_sig": false, "md5_digest": "c585a31c328153f081bb6d4eeb22aeae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260096, "upload_time": "2020-02-03T14:29:29", "upload_time_iso_8601": "2020-02-03T14:29:29.342301Z", "url": "https://files.pythonhosted.org/packages/af/c9/5e6633ac2045892ae54f1f562b19e3d6092a2c18854a9411fc5f9b202e40/allink-core-2.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "51ade969ae8deb303a9044542a2f3619", "sha256": "5f9adaa15a4ff6ddaf74eb85229c0354711d8a1835148fa94f2876c4e22b523d" }, "downloads": -1, "filename": "allink_core-2.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "51ade969ae8deb303a9044542a2f3619", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 476388, "upload_time": "2020-02-24T14:25:17", "upload_time_iso_8601": "2020-02-24T14:25:17.992561Z", "url": "https://files.pythonhosted.org/packages/ae/67/fd2482b42a114d22c0197a8a741f6e9750b77278ae598e790c2c4f858100/allink_core-2.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf20df3a6d1815c49d93dce168f76727", "sha256": "12c78355808d12644061a58433d631d0723975a013267e80106a229d8b744b0c" }, "downloads": -1, "filename": "allink-core-2.4.0.tar.gz", "has_sig": false, "md5_digest": "cf20df3a6d1815c49d93dce168f76727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218811, "upload_time": "2020-02-24T14:25:19", "upload_time_iso_8601": "2020-02-24T14:25:19.638779Z", "url": "https://files.pythonhosted.org/packages/88/f6/e4b39b13fd549011b50b3a215a641d827076aa02e2df615db73a4d86958c/allink-core-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "24ace8ac8c852e56323280169ad42ec1", "sha256": "f390fc4e8575077d7a13e9b63c7632a8a9e5981bf2832483eb4929b54b6612ae" }, "downloads": -1, "filename": "allink_core-2.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "24ace8ac8c852e56323280169ad42ec1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 477848, "upload_time": "2020-04-15T08:34:40", "upload_time_iso_8601": "2020-04-15T08:34:40.037866Z", "url": "https://files.pythonhosted.org/packages/1e/58/4d2871fa44a96c9aad4ebab4c39ea956217462130d68e9d988fd68bf8d10/allink_core-2.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59660f474fb469b53b8dbee10645d648", "sha256": "c88b8ab1acc831474a31e1283f1274e170e7da64c7d86308ee5b792a43e46458" }, "downloads": -1, "filename": "allink-core-2.5.0.tar.gz", "has_sig": false, "md5_digest": "59660f474fb469b53b8dbee10645d648", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218325, "upload_time": "2020-04-15T08:34:41", "upload_time_iso_8601": "2020-04-15T08:34:41.847821Z", "url": "https://files.pythonhosted.org/packages/0c/39/b118bf282e916eaba4114a2232a3263a97c77526b915e7cf367ad970bf66/allink-core-2.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "36ba1c3a62b100f5a4975a7620cfbc57", "sha256": "e1cb305f0299579a4cce26c6d2fa25ef41e8c5970f48a5389e86724eebcdf0a8" }, "downloads": -1, "filename": "allink_core-2.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "36ba1c3a62b100f5a4975a7620cfbc57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 477836, "upload_time": "2020-04-15T08:35:07", "upload_time_iso_8601": "2020-04-15T08:35:07.663533Z", "url": "https://files.pythonhosted.org/packages/5c/3e/9dd80d3e6a21ee7f54946ad64c169874c2ef3f8ecb27cc7dbd4172f920c0/allink_core-2.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65b271ac61eecfc3f79d29feab183ed1", "sha256": "8ebe765ba586c95f3be8b6181917950f9ed0cb48ed7043af6eb1c57f3a5c55c7" }, "downloads": -1, "filename": "allink-core-2.5.1.tar.gz", "has_sig": false, "md5_digest": "65b271ac61eecfc3f79d29feab183ed1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218343, "upload_time": "2020-04-15T08:35:09", "upload_time_iso_8601": "2020-04-15T08:35:09.016321Z", "url": "https://files.pythonhosted.org/packages/fd/bd/fd5a809a14808ba016ee19da32afc77a690fc9ad3305171c8acebaa8f0d3/allink-core-2.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "7d7619f762310eec0d33da853a0aa120", "sha256": "95182461988ad9af33f2d6dd7e64e1bbf8ced802ae8dba474d65986b661188d7" }, "downloads": -1, "filename": "allink_core-2.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7d7619f762310eec0d33da853a0aa120", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 478002, "upload_time": "2020-04-15T08:35:25", "upload_time_iso_8601": "2020-04-15T08:35:25.656471Z", "url": "https://files.pythonhosted.org/packages/82/d6/d08e0691d9b6ca1c9e3eca12e5d63c4bed87de1d763fb6e4cd17a3ca585e/allink_core-2.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a2f790eead7f8d4da2b82d9901d3db0", "sha256": "622d87a913c989857d43bd56953c46ac22abccb08fe58f363abe02e226da601d" }, "downloads": -1, "filename": "allink-core-2.5.2.tar.gz", "has_sig": false, "md5_digest": "4a2f790eead7f8d4da2b82d9901d3db0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218365, "upload_time": "2020-04-15T08:35:27", "upload_time_iso_8601": "2020-04-15T08:35:27.267829Z", "url": "https://files.pythonhosted.org/packages/96/cc/7069ba98faef80ef2871a03e9fb1e287f09b436e705ed6c23fc349010513/allink-core-2.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.3": [ { "comment_text": "", "digests": { "md5": "6c22983464063c9aaef7a52f54d9d9ca", "sha256": "5812ceae4ae720b3af21e8c3b818e77d2576258cf5afbd54031d2afc7e3d4cca" }, "downloads": -1, "filename": "allink_core-2.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "6c22983464063c9aaef7a52f54d9d9ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 478007, "upload_time": "2020-04-15T16:35:26", "upload_time_iso_8601": "2020-04-15T16:35:26.163296Z", "url": "https://files.pythonhosted.org/packages/ac/89/77af4404bd450f8ad80506c280271679ebede9adc4f42c7ab3bc971822ad/allink_core-2.5.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d2148ce13e2d5c772b15224e210abd6", "sha256": "9b4c36ebf354dc7c66215ee50c1fd0e4b161f0aed680fb8bdb031a04dc271017" }, "downloads": -1, "filename": "allink-core-2.5.3.tar.gz", "has_sig": false, "md5_digest": "8d2148ce13e2d5c772b15224e210abd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218422, "upload_time": "2020-04-15T16:35:27", "upload_time_iso_8601": "2020-04-15T16:35:27.860535Z", "url": "https://files.pythonhosted.org/packages/18/00/3e527059e2cfbc6058f25c54a0fd6ad5239e55ef2e7a7b8af4ebd5d89389/allink-core-2.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.4": [ { "comment_text": "", "digests": { "md5": "fa2830762f5855fb7bd4169f969eafc4", "sha256": "567b54f98746d370eea5e9b1126e76386255a1f5fd997f4868db1f8388bfc0b8" }, "downloads": -1, "filename": "allink_core-2.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fa2830762f5855fb7bd4169f969eafc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 478006, "upload_time": "2020-04-24T12:45:51", "upload_time_iso_8601": "2020-04-24T12:45:51.959785Z", "url": "https://files.pythonhosted.org/packages/8c/2a/f666b3376632c05527152be906cd0958df21e6f7e9a8c79b993a1b330caa/allink_core-2.5.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ca0076d0e59cb5b955af01598164de9", "sha256": "b37d814983ecf6530c27bc681bbd4d0be7ad9d5ca00e762966cbcb27894a9c55" }, "downloads": -1, "filename": "allink-core-2.5.4.tar.gz", "has_sig": false, "md5_digest": "1ca0076d0e59cb5b955af01598164de9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218513, "upload_time": "2020-04-24T12:45:53", "upload_time_iso_8601": "2020-04-24T12:45:53.488948Z", "url": "https://files.pythonhosted.org/packages/05/cf/d85e834ba10bda0bff84fb13684faaef17f6cf69c5c0139d568e130ffa22/allink-core-2.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "51eea7b3c2cf490a5e9102ef63e606e1", "sha256": "87084251d191b84daa3e264c621c8d09dcb5fba2bcfd5495cc1c4b8ddcdd4b07" }, "downloads": -1, "filename": "allink_core-2.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "51eea7b3c2cf490a5e9102ef63e606e1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 478853, "upload_time": "2020-06-17T13:45:24", "upload_time_iso_8601": "2020-06-17T13:45:24.226532Z", "url": "https://files.pythonhosted.org/packages/41/e8/d064cbd73dded53ec8080ac4e56b4cd4d0420bc369f11edb533d8cdd87e3/allink_core-2.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34a7d679cf9e6b26015bca93a45f7d9d", "sha256": "78d49024877f3c247240ad8052a9c9a3251c2638598dc4babbbcbefb3946f409" }, "downloads": -1, "filename": "allink-core-2.6.0.tar.gz", "has_sig": false, "md5_digest": "34a7d679cf9e6b26015bca93a45f7d9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219602, "upload_time": "2020-06-17T13:45:25", "upload_time_iso_8601": "2020-06-17T13:45:25.458779Z", "url": "https://files.pythonhosted.org/packages/9c/7c/5d06ab504c21e295239d26dd913ef7e04f2a349d8498a4455b2194f10680/allink-core-2.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "5d70de255037d907467f44a4e09fe1bd", "sha256": "6eea88200e42567d4c8f5ab0fe320936621e596bdb03c0a4dda6c1f2397d71e6" }, "downloads": -1, "filename": "allink_core-2.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "5d70de255037d907467f44a4e09fe1bd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 483056, "upload_time": "2020-06-24T12:32:41", "upload_time_iso_8601": "2020-06-24T12:32:41.047886Z", "url": "https://files.pythonhosted.org/packages/9c/73/1c68dac1c7c7729501d707b831070b7ac377e5d6d9c612630af2d09fa428/allink_core-2.6.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6aff7c88fbe22ec661749dc4893d4b51", "sha256": "10595e6ab1612edef765c5b85d7a66771bf1669f70a17b0f0409c11659ecbc27" }, "downloads": -1, "filename": "allink-core-2.6.1.tar.gz", "has_sig": false, "md5_digest": "6aff7c88fbe22ec661749dc4893d4b51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225235, "upload_time": "2020-06-24T12:32:42", "upload_time_iso_8601": "2020-06-24T12:32:42.283769Z", "url": "https://files.pythonhosted.org/packages/43/43/ca4cc6a2615e5d81e977c2b3e31142f8f3fe1cff009b2ac4347928dd0490/allink-core-2.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.2": [ { "comment_text": "", "digests": { "md5": "2e61f39d9b33d0fd0f6d3b184014e717", "sha256": "7d06815c3caa105b7908d9beedd270eb1b8894651677785d9ea17da62ebf8205" }, "downloads": -1, "filename": "allink_core-2.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2e61f39d9b33d0fd0f6d3b184014e717", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 484874, "upload_time": "2020-07-15T11:36:28", "upload_time_iso_8601": "2020-07-15T11:36:28.349598Z", "url": "https://files.pythonhosted.org/packages/3e/6a/09af26b939ceca6291e9cf945378cfd125b50b7312a6785d60d3ebb9eab1/allink_core-2.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ab47a8b9701196b0ed548d87db512bf", "sha256": "6f294b3970234145dd194c2402fb53c4faf4bbdf67dce5d4c95a86769b1c4b5a" }, "downloads": -1, "filename": "allink-core-2.6.2.tar.gz", "has_sig": false, "md5_digest": "0ab47a8b9701196b0ed548d87db512bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 223946, "upload_time": "2020-07-15T11:36:29", "upload_time_iso_8601": "2020-07-15T11:36:29.866778Z", "url": "https://files.pythonhosted.org/packages/1b/4f/b30ac0b0e4bcf48e50442cae4a934abdc199e04f7804b4e8bb620a74c029/allink-core-2.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.3": [ { "comment_text": "", "digests": { "md5": "f7624fd92d2c452f21bd98b80dbbcf30", "sha256": "46e5d5cc9a03f4ed5095354ba4f82d32e5d852cfbbf075fb2337d59939622322" }, "downloads": -1, "filename": "allink_core-2.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f7624fd92d2c452f21bd98b80dbbcf30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 480040, "upload_time": "2020-08-17T13:13:55", "upload_time_iso_8601": "2020-08-17T13:13:55.628953Z", "url": "https://files.pythonhosted.org/packages/e4/a8/b25daa113928ca5e9ad1fc92e70b9bf455469b262a69e5cb31609c71bf24/allink_core-2.6.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58b0ab26e3583cfa0dec58195b3de8fa", "sha256": "a59d78d4e132c17640aa634c07462445acc8090873a036066c8259827e100172" }, "downloads": -1, "filename": "allink-core-2.6.3.tar.gz", "has_sig": false, "md5_digest": "58b0ab26e3583cfa0dec58195b3de8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219592, "upload_time": "2020-08-17T13:13:57", "upload_time_iso_8601": "2020-08-17T13:13:57.061706Z", "url": "https://files.pythonhosted.org/packages/5e/ef/d861a2a445ec2c04b0fe63042b67d6395dea9e3aceb617c1ec87001a91e6/allink-core-2.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "79e7f6be9dc36fd03849d637208360c1", "sha256": "2126daca2cc8d8d06fe424c211d505f6f651c1fc39a36b41638648335fa88648" }, "downloads": -1, "filename": "allink_core-2.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "79e7f6be9dc36fd03849d637208360c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 482370, "upload_time": "2020-09-14T09:42:50", "upload_time_iso_8601": "2020-09-14T09:42:50.587508Z", "url": "https://files.pythonhosted.org/packages/f4/3f/fe08a93de39f6303abc83bd7e3e9e2b6172a4bedbaf1eb4d4a339d510b98/allink_core-2.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2adabbacdb7f90d265304ebe6051d067", "sha256": "90b1090be7cb4fa2275d4712fa3f5ae0ce26ffeed75987e99b6b8960d281799b" }, "downloads": -1, "filename": "allink-core-2.7.0.tar.gz", "has_sig": false, "md5_digest": "2adabbacdb7f90d265304ebe6051d067", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220256, "upload_time": "2020-09-14T09:42:51", "upload_time_iso_8601": "2020-09-14T09:42:51.988620Z", "url": "https://files.pythonhosted.org/packages/44/f8/44864dfe1c28ebd916bba819e93083753707c4d0c1d9336730c05d2cf2bb/allink-core-2.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "b0b6468e60cb8129e8c8d3b8677a0df0", "sha256": "7276516a88bbce92d96e28f21f481655e2bebadbfee3fc8a9538799b312792da" }, "downloads": -1, "filename": "allink_core-2.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b0b6468e60cb8129e8c8d3b8677a0df0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 487806, "upload_time": "2020-11-12T13:17:54", "upload_time_iso_8601": "2020-11-12T13:17:54.986290Z", "url": "https://files.pythonhosted.org/packages/e4/94/af73ac2d75391ba5e2763aa47686aeae4b387addd7f98d8d42910fc36a71/allink_core-2.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ed6cc0aaaa80e308b78dbbe3e404bff", "sha256": "f388789866074c858a9a09926a8f936ab82524397aaab7dab7009c9c9ec19351" }, "downloads": -1, "filename": "allink-core-2.7.1.tar.gz", "has_sig": false, "md5_digest": "9ed6cc0aaaa80e308b78dbbe3e404bff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224745, "upload_time": "2020-11-12T13:17:56", "upload_time_iso_8601": "2020-11-12T13:17:56.638688Z", "url": "https://files.pythonhosted.org/packages/e6/20/f0c262fb77e0816b9cd73a872e051f6d78a71da872fbb6dc4a09ca66c47f/allink-core-2.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "780ac6d83b214911f8cc4df409ecdad8", "sha256": "ec157a813bb3f76e3fe8c2bd4fd90c22ee0cb5e88b1452c3504be50f5f049ad1" }, "downloads": -1, "filename": "allink_core-2.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "780ac6d83b214911f8cc4df409ecdad8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 487743, "upload_time": "2020-11-12T14:43:58", "upload_time_iso_8601": "2020-11-12T14:43:58.352674Z", "url": "https://files.pythonhosted.org/packages/16/dc/c7dbe9743094194950dbb5fd44fc7b7e09b1ab9d718378f04b360e17a056/allink_core-2.7.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "105b423ed61de9d790efcbb79e15eea3", "sha256": "5db59837861d8c3c51bdc2d1c32c49bc7df3a6ff216432e5a9c66f1f8c1e06e4" }, "downloads": -1, "filename": "allink-core-2.7.2.tar.gz", "has_sig": false, "md5_digest": "105b423ed61de9d790efcbb79e15eea3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224586, "upload_time": "2020-11-12T14:43:59", "upload_time_iso_8601": "2020-11-12T14:43:59.736296Z", "url": "https://files.pythonhosted.org/packages/6e/e5/48360131f1e7063b535db276e43990c15ca15b7926a3d551e0f0d0dc5fd6/allink-core-2.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "cc24d044ce7d087b6b709864c74dbc7e", "sha256": "c03a7615190b68a48319b40bc76456656e518b9a1371bc0f50e0dfc2a123a78c" }, "downloads": -1, "filename": "allink_core-2.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cc24d044ce7d087b6b709864c74dbc7e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 522217, "upload_time": "2021-03-29T14:21:14", "upload_time_iso_8601": "2021-03-29T14:21:14.037723Z", "url": "https://files.pythonhosted.org/packages/f0/36/7fecb2dfae2c7391fdf509df70aee302fff4bebd428e4e494f2ed709dd16/allink_core-2.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f90506d05c7fa927d384bae9b6a624a", "sha256": "83f6f24038120fcbd7d756098440919a981b31ac9fa9c64e53dda5955d580877" }, "downloads": -1, "filename": "allink-core-2.8.0.tar.gz", "has_sig": false, "md5_digest": "6f90506d05c7fa927d384bae9b6a624a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234369, "upload_time": "2021-03-29T14:21:15", "upload_time_iso_8601": "2021-03-29T14:21:15.402029Z", "url": "https://files.pythonhosted.org/packages/f8/22/38ec5f4672ce799eb5063f28f60ea25f1250c7001065ab73a800d039df2a/allink-core-2.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "5722bd74db34435c9736fc0765e68dd0", "sha256": "98769a4002b2a7d33aa6394c29bc1e9302859f9ce3bec3159cfda0f67243ab6b" }, "downloads": -1, "filename": "allink_core-2.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5722bd74db34435c9736fc0765e68dd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 524482, "upload_time": "2021-03-29T15:30:02", "upload_time_iso_8601": "2021-03-29T15:30:02.056933Z", "url": "https://files.pythonhosted.org/packages/d4/d6/caff6493b1b6069ac94699effb0470222ded0b171ffb1a2ad030f1203ab5/allink_core-2.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b1ecc65a7a2e2d5933a2e127f18996a", "sha256": "f28797d8c9fbad9e6b4a2f7ad88d4dc509efa665aa39af45fd5483bcd6cd9434" }, "downloads": -1, "filename": "allink-core-2.8.1.tar.gz", "has_sig": false, "md5_digest": "0b1ecc65a7a2e2d5933a2e127f18996a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235208, "upload_time": "2021-03-29T15:30:03", "upload_time_iso_8601": "2021-03-29T15:30:03.742303Z", "url": "https://files.pythonhosted.org/packages/12/01/d8dbe405c9c2fa6015030651a100e8878e2db70409e48ae5c68a8e8b191b/allink-core-2.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.2": [ { "comment_text": "", "digests": { "md5": "5d315bb0ca1f9211d7e5047859fc4db7", "sha256": "a6a4aa4ecf6a40afbd8cfc8d6726098a2917884d17825eef72530ec2da28d513" }, "downloads": -1, "filename": "allink_core-2.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5d315bb0ca1f9211d7e5047859fc4db7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 527033, "upload_time": "2021-04-22T21:26:29", "upload_time_iso_8601": "2021-04-22T21:26:29.870448Z", "url": "https://files.pythonhosted.org/packages/1f/49/94c664fdcc246042dfbbca0c3f0c1423f56fef1378b42146152818175d5a/allink_core-2.8.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3717abb8f10f3217f0c01b3c076b1e8", "sha256": "ee13acfc18d239fa6f79bbae218be92597fe2e5de3066629cb25889c333327e0" }, "downloads": -1, "filename": "allink-core-2.8.2.tar.gz", "has_sig": false, "md5_digest": "f3717abb8f10f3217f0c01b3c076b1e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236990, "upload_time": "2021-04-22T21:26:31", "upload_time_iso_8601": "2021-04-22T21:26:31.239851Z", "url": "https://files.pythonhosted.org/packages/1e/0e/78b7d912e833ad7fcdc3bbce91657c289693147343e608e14bbcf02a9be1/allink-core-2.8.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5d315bb0ca1f9211d7e5047859fc4db7", "sha256": "a6a4aa4ecf6a40afbd8cfc8d6726098a2917884d17825eef72530ec2da28d513" }, "downloads": -1, "filename": "allink_core-2.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5d315bb0ca1f9211d7e5047859fc4db7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 527033, "upload_time": "2021-04-22T21:26:29", "upload_time_iso_8601": "2021-04-22T21:26:29.870448Z", "url": "https://files.pythonhosted.org/packages/1f/49/94c664fdcc246042dfbbca0c3f0c1423f56fef1378b42146152818175d5a/allink_core-2.8.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3717abb8f10f3217f0c01b3c076b1e8", "sha256": "ee13acfc18d239fa6f79bbae218be92597fe2e5de3066629cb25889c333327e0" }, "downloads": -1, "filename": "allink-core-2.8.2.tar.gz", "has_sig": false, "md5_digest": "f3717abb8f10f3217f0c01b3c076b1e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236990, "upload_time": "2021-04-22T21:26:31", "upload_time_iso_8601": "2021-04-22T21:26:31.239851Z", "url": "https://files.pythonhosted.org/packages/1e/0e/78b7d912e833ad7fcdc3bbce91657c289693147343e608e14bbcf02a9be1/allink-core-2.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }