{ "info": { "author": "Jos\u00e9 Antonio Perdiguero L\u00f3pez", "author_email": "perdy@perdy.io", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# API Star CRUD\n[![Build Status](https://travis-ci.org/PeRDy/apistar-crud.svg?branch=master)](https://travis-ci.org/PeRDy/apistar-crud)\n[![codecov](https://codecov.io/gh/PeRDy/apistar-crud/branch/master/graph/badge.svg)](https://codecov.io/gh/PeRDy/apistar-crud)\n[![PyPI version](https://badge.fury.io/py/apistar-crud.svg)](https://badge.fury.io/py/apistar-crud)\n\n* **Version:** 0.6.6\n* **Status:** Production/Stable\n* **Author:** Jos\u00e9 Antonio Perdiguero L\u00f3pez\n\n## Table of Contents\n\n- [API Star CRUD](#api-star-crud)\n * [Features](#features)\n + [Resource](#resource)\n + [ORM](#orm)\n + [Admin site](#admin-site)\n * [Quick start](#quick-start)\n * [Usage](#usage)\n + [SQLAlchemy](#sqlalchemy)\n + [Peewee](#peewee)\n * [Resources](#resources)\n + [Routes](#routes)\n + [Override methods](#override-methods)\n + [Filtering](#filtering)\n * [Admin](#admin)\n + [Main page](#main-page)\n + [Resource list](#resource-list)\n + [Resource detail](#resource-detail)\n\n## Features\nAPI Star CRUD provides an easy way to define a REST resource and generic operations over it.\n\n### Resource\nThe resources are classes with a default implementation for **methods**:\n* `create`: Create a new element for this resource.\n* `retrieve`: Retrieve an element of this resource.\n* `update`: Update (partially or fully) an element of this resource.\n* `delete`: Delete an element of this resource.\n* `list`: List resource collection with **filtering** capabilities.\n* `drop`: Drop resource collection.\n\n### ORM\nAPI Star CRUD supports the following ORM:\n* [SQLAlchemy](https://www.sqlalchemy.org/) through [apistar-sqlalchemy](https://github.com/PeRDy/apistar-sqlalchemy).\n* [Peewee](https://github.com/coleifer/peewee) through [apistar-peewee-orm](https://github.com/PeRDy/apistar-peewee-orm).\n\n### Admin site\nAPI Star CRUD serves an admin site to handle resources in a graphical way, by default this site is routed to `/admin`. \n\n## Quick start\nInstall API Star CRUD:\n\n```bash\n$ pip install apistar-crud[peewee]\n```\n\nor \n\n```\n$ pip install apistar-crud[sqlalchemy]\n```\n\nFollow the steps:\n\n1. Create an **input type** and **output type** for your resource:\n2. Define a **model** based on your ORM.\n3. Build your **resource** using the metaclass specific for your ORM.\n4. Add the **routes** for your resources.\n\n## Usage\n### SQLAlchemy\nExample of a fully functional resource based on SQLAlchemy.\n\nCreate an **input type** and **output type**:\n\n```python\nclass PuppyInputType(types.Type):\n name = validators.String()\n\nclass PuppyOutputType(types.Type):\n id = validators.Integer()\n name = validators.String()\n```\n\nDefine a **model**:\n\n```python\nclass PuppyModel(Base):\n __tablename__ = \"Puppy\"\n\n id = Column(Integer, primary_key=True)\n name = Column(String)\n```\n\nThe **resource**:\n\n```python\nfrom apistar_crud.resource.sqlalchemy import Resource\n\nclass PuppyResource(metaclass=Resource):\n name = \"puppy\"\n verbose_name = \"Puppy\"\n \n model = PuppyModel\n input_type = PuppyInputType\n output_type = PuppyOutputType\n methods = (\"create\", \"retrieve\", \"update\", \"delete\", \"list\", \"drop\")\n```\n\nThe resource generates his own **routes**:\n\n```python\nfrom apistar import App\nfrom apistar_crud.routes import routes as resource_routes\n\nresource_routes.register(PuppyResource, \"/puppy\", admin=True)\n\nroutes = [\n # ... your app routes\n]\n\nroutes += resource_routes.routes(admin=\"/admin\")\npackages = (\"apistar_crud\",)\napp = App(routes=routes, packages=packages)\n```\n\n### Peewee\nExample of a fully functional resource based on Peewee.\n\nCreate an **input type** and **output type**:\n\n```python\nclass PuppyInputType(types.Type):\n name = validators.String()\n\nclass PuppyOutputType(types.Type):\n id = validators.Integer()\n name = validators.String()\n```\n\nDefine a **model**:\n\n```python\nclass PuppyModel(peewee.Model):\n name = peewee.CharField()\n```\n\nThe **resource**:\n\n```python\nfrom apistar_crud.resource.peewee import Resource\n\nclass PuppyResource(metaclass=Resource):\n name = \"puppy\"\n verbose_name = \"Puppy\"\n \n model = PuppyModel\n input_type = PuppyInputType\n output_type = PuppyOutputType\n methods = (\"create\", \"retrieve\", \"update\", \"delete\", \"list\", \"drop\")\n```\n\nThe resource generates his own **routes**:\n\n```python\nfrom apistar import App\nfrom apistar_crud.routes import routes as resource_routes\n\nresource_routes.register(PuppyResource, \"/puppy\", admin=True)\n\nroutes = [\n # ... your app routes\n]\n\nroutes += resource_routes.routes(admin=\"/admin\")\npackages = (\"apistar_crud\",)\napp = App(routes=routes, packages=packages)\n```\n\n## Resources\n\n### Routes\nThe routes for resource methods are:\n\n|Method |Verb |URL\n|--------|------|--------------\n|create |POST |/\n|retrieve|GET |/{element_id}/\n|update |PUT |/{element_id}/\n|delete |DELETE|/{element_id}/\n|list |GET |/\n|drop |DELETE|/\n\n\n### Override methods\nTo customize CRUD methods you can override them like:\n\n```python\nfrom apistar_crud.resource.peewee import Resource\n\nclass PuppyResource(metaclass=Resource):\n name = \"puppy\"\n verbose_name = \"Puppy\"\n \n model = PuppyModel\n input_type = PuppyInputType\n output_type = PuppyOutputType\n methods = (\"create\", \"retrieve\", \"update\", \"delete\", \"list\", \"drop\")\n \n @classmethod\n def create(cls, element: PuppyInputType) -> PuppyOutputType:\n # Do your custom process\n```\n\n### Filtering\nDefault `list` implementation has filtering capabilities but to reflect it in the schema is necessary to override that \nmethod defining all the parameters that will be used as a filter and pass it as keywords to `_list()` method. \n\nIt is a direct translation to ORM keyword arguments \nso in case of SQLAlchemy it uses a `filter_by()` method and a `where()` in Peewee case.\n\n```python\nimport typing\n\nfrom apistar import http\nfrom apistar_crud.resource.peewee import Resource\nfrom apistar_pagination import PageNumberResponse\n\nclass PuppyResource(metaclass=Resource):\n name = \"puppy\"\n verbose_name = \"Puppy\"\n \n model = PuppyModel\n input_type = PuppyInputType\n output_type = PuppyOutputType\n methods = (\"create\", \"retrieve\", \"update\", \"delete\", \"list\", \"drop\")\n \n @classmethod\n def list(cls, name: http.QueryParam, page: http.QueryParam=None, page_size: http.QueryParam=None) -> typing.List[PuppyOutputType]:\n return PageNumberResponse(page=page, page_size=page_size, content=cls._filter(name=name))\n```\n\n## Admin\nAPI Star CRUD provides an admin panel to manage resources, including filtering, editing and creating new entries in your \nresources.\n\nTo include admin panel in your application you simply has to add the routes as following:\n\n```python\nfrom apistar import App\nfrom apistar_crud.routes import routes as resource_routes\n\nresource_routes.register(PuppyResource, \"/puppy\", admin=True)\n\nroutes = [\n # ... your app routes\n]\n\nroutes += resource_routes.routes(admin=\"/admin\")\npackages = (\"apistar_crud\",)\napp = App(routes=routes, packages=packages)\n```\n\n### Main page\nMain page showing a list of manageable resources.\n\n![Admin main page](docs/images/admin_landing.png \"Main page showing a list of manageable resources\")\n\n### Resource list\nConfigurable view of a list of resource entries. If that resource provides filtering parameters for list method, a \nfilter input will be available. The list of columns shown is also configurable.\n\n![Admin resource list page](docs/images/admin_resource_list.png \"Configurable view of a list of resource entries\")\n\n### Resource detail\nPage for editing a resource entry or creating a new one.\n\n![Admin resource detail page](docs/images/admin_resource_detail.png \"Page for editing a resource entry or create a new one\")\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/PeRDy/apistar-crud", "keywords": "apistar,resource,crud,django,sqlalchemy", "license": "GPL-3.0+", "maintainer": "Jos\u00e9 Antonio Perdiguero L\u00f3pez", "maintainer_email": "perdy@perdy.io", "name": "apistar-crud", "package_url": "https://pypi.org/project/apistar-crud/", "platform": "", "project_url": "https://pypi.org/project/apistar-crud/", "project_urls": { "Homepage": "https://github.com/PeRDy/apistar-crud" }, "release_url": "https://pypi.org/project/apistar-crud/0.6.6/", "requires_dist": [ "apistar (>=0.5.41,<0.6.0)", "apistar-pagination (>=0.4.0,<0.5.0)" ], "requires_python": ">=3.6,<4.0", "summary": "API Star tools to create CRUD resources.", "version": "0.6.6" }, "last_serial": 4352155, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c0aa55e7421827a4b759083efe1a8ca1", "sha256": "7a3312e0953d6fa2e044d4231e595360c221236827016dfe5d5ef2dbdf4b4ac4" }, "downloads": -1, "filename": "apistar_crud-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c0aa55e7421827a4b759083efe1a8ca1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16838, "upload_time": "2018-04-10T16:25:21", "url": "https://files.pythonhosted.org/packages/13/5c/e059539462dc1e4e2e0af93e59d1f9a9df65690a241fb5ee06f828bf6bc7/apistar_crud-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62da04d729f8f2d3847db387f0c834a5", "sha256": "0389f9764ea35aeb9075798dc8661a4367d6a7233874845ccb1b630f9a96df2f" }, "downloads": -1, "filename": "apistar-crud-0.1.0.tar.gz", "has_sig": false, "md5_digest": "62da04d729f8f2d3847db387f0c834a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17521, "upload_time": "2018-04-10T16:25:22", "url": "https://files.pythonhosted.org/packages/1b/85/7982ccbb2e2be9473951e32dad494f471a16254bfd336773c77f7682d6bc/apistar-crud-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8eda042229988b52f0c049a41ffe0773", "sha256": "f621cadf7a933e980400677f42c2eb68b698404d840d9f2b9a06b1aa639139bb" }, "downloads": -1, "filename": "apistar_crud-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8eda042229988b52f0c049a41ffe0773", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19009, "upload_time": "2018-04-14T11:04:59", "url": "https://files.pythonhosted.org/packages/22/26/b059c70272e574b83a41db197e0d2ab564cca6ea03d3b69c7ebad71396dc/apistar_crud-0.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af6407a7296fb4b6d06684b3aa3bef6e", "sha256": "74c241bdd57499ecead608eac0c57ccf4b0105072b9aa1da59d28275c45a6d09" }, "downloads": -1, "filename": "apistar-crud-0.2.0.tar.gz", "has_sig": false, "md5_digest": "af6407a7296fb4b6d06684b3aa3bef6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17445, "upload_time": "2018-04-14T11:05:00", "url": "https://files.pythonhosted.org/packages/eb/eb/c2ac369f3d8a59ecc1d2dbfed392dccfdff63caa5e8302428bb7ad7d6e3b/apistar-crud-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "54e89f0f869720cfa0cf7ec6f476a135", "sha256": "cca1a0532982a6b13157ceffd32c89edeebd3cb15ea795acf14f4e23e00cbeb5" }, "downloads": -1, "filename": "apistar_crud-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "54e89f0f869720cfa0cf7ec6f476a135", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24944, "upload_time": "2018-04-18T11:01:24", "url": "https://files.pythonhosted.org/packages/40/24/82ba8d0d3a7d90ceb7a3d98898eab5c81b3998ffa5bec3c3350e842b00b5/apistar_crud-0.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "384209bc0714dde93dff0092803438c8", "sha256": "ce197c89284b4e157afcb00576dcf2147f2b38e39042385170f79a88890ffe17" }, "downloads": -1, "filename": "apistar-crud-0.2.1.tar.gz", "has_sig": false, "md5_digest": "384209bc0714dde93dff0092803438c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17076, "upload_time": "2018-04-18T11:01:26", "url": "https://files.pythonhosted.org/packages/6b/82/5cc21914bd37265d8699dbdc3866811d6b0818cfdaa75c04636e1d074112/apistar-crud-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4712616f69475c65bf4ebe25dc9bb6c8", "sha256": "1784a98ecdc2f11d8da92561be21c23fdec004c3a2fafab94a904085d1af26a1" }, "downloads": -1, "filename": "apistar_crud-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4712616f69475c65bf4ebe25dc9bb6c8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20723, "upload_time": "2018-04-26T08:25:51", "url": "https://files.pythonhosted.org/packages/cb/7b/199eb049c6bf099b33c36d2cb87a1d136811f21baf4852cab1a311f1b950/apistar_crud-0.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e9fdb3d68ed83a8b1b90e607b2b36071", "sha256": "ea5fb0e838117ce0a1d0fa389b9dbf864528be6fe29de23902dacc3b0147e7e1" }, "downloads": -1, "filename": "apistar-crud-0.2.2.tar.gz", "has_sig": false, "md5_digest": "e9fdb3d68ed83a8b1b90e607b2b36071", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17354, "upload_time": "2018-04-26T08:25:52", "url": "https://files.pythonhosted.org/packages/27/75/a657e0d7fdd74f42ac7873ec73c8ba640bebf3240b14c93bc494527948c4/apistar-crud-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "b4a81a1e6724a97335aeb4b47a430100", "sha256": "962273df17e697511d58f6ecc33f3bf3df4ae2819d096efd0fab3d3d9ed39c41" }, "downloads": -1, "filename": "apistar_crud-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b4a81a1e6724a97335aeb4b47a430100", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20907, "upload_time": "2018-05-22T17:10:45", "url": "https://files.pythonhosted.org/packages/7a/43/414f3a937dcfa3224220afdd692cdd700280964f3ccbb672d4c857b6f73d/apistar_crud-0.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "575024521f67a7afd3f3932e24bd40d8", "sha256": "a41cd02b422d35819f7d3759531001bf8ecd93f9dabebe9bf9eec347269340cd" }, "downloads": -1, "filename": "apistar-crud-0.2.3.tar.gz", "has_sig": false, "md5_digest": "575024521f67a7afd3f3932e24bd40d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17447, "upload_time": "2018-05-22T17:10:47", "url": "https://files.pythonhosted.org/packages/14/1e/5551e264fa5a5b9ed45e96261aadddeed62bc2085a87c571084547128799/apistar-crud-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "6dd8eb8b873b214e659b25a7f37c4996", "sha256": "1fee86ddba6204dd16ad088377cf31e94f69f47946075ba283bfb658f7d568aa" }, "downloads": -1, "filename": "apistar_crud-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6dd8eb8b873b214e659b25a7f37c4996", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 44137, "upload_time": "2018-06-07T15:49:13", "url": "https://files.pythonhosted.org/packages/c7/1e/dbd2df7894b69a00da60f87043a66d992e669233ba577b8eccdcd114d197/apistar_crud-0.2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f3fb8adeb3fe9ebfb684694cc8e1024c", "sha256": "59afe01b6294877d7256f7983df916724974a3b0c0884aa19ddb9dc69bfa7f9f" }, "downloads": -1, "filename": "apistar-crud-0.2.4.tar.gz", "has_sig": false, "md5_digest": "f3fb8adeb3fe9ebfb684694cc8e1024c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 16062, "upload_time": "2018-06-07T15:49:11", "url": "https://files.pythonhosted.org/packages/13/8e/36413734c29d7916c3028b9be999de2d7a1ef90cb38bfd9a78dea18d323c/apistar-crud-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "e716a3fe8a60c2b5a21c8147517916d8", "sha256": "9cf34eb3df5da80c005880108eafec6b2a474134cf40ec121fadba0782cdf638" }, "downloads": -1, "filename": "apistar_crud-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e716a3fe8a60c2b5a21c8147517916d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 47840, "upload_time": "2018-06-13T14:54:45", "url": "https://files.pythonhosted.org/packages/de/8b/49649192328fe4e842591fe0dafc4e9d4f6d36fbd25bbaecc9f9a59b7489/apistar_crud-0.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d5b596a6f314efcb938b17deaf6e8ed", "sha256": "82966592eac48bc2dec2f67ff737bddbd7580203811a6956f04f4a57a3a94f9f" }, "downloads": -1, "filename": "apistar-crud-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2d5b596a6f314efcb938b17deaf6e8ed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 16364, "upload_time": "2018-06-13T14:54:43", "url": "https://files.pythonhosted.org/packages/e4/98/f76badb1c73683e5e44bd366a5ea34bc6290620e821d9d9e8a149b50ea8a/apistar-crud-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6a76e3cf6daa572314e775ecca34fb0b", "sha256": "2e1b04a5d4be5cd192e484e7c24a1f691b45b6536bd9dbbd981df2c8992bd4dd" }, "downloads": -1, "filename": "apistar_crud-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6a76e3cf6daa572314e775ecca34fb0b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 47954, "upload_time": "2018-06-21T16:13:15", "url": "https://files.pythonhosted.org/packages/f2/db/66cc78af229501c71f6a64f5b83aaabcc85798681016a5d4ff761447e633/apistar_crud-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd74bf3fcd9855978d871855ab0938a2", "sha256": "38fdd5753286540a225c072537b23e145cacbbe79713a1b560cff047c6398f28" }, "downloads": -1, "filename": "apistar-crud-0.3.1.tar.gz", "has_sig": false, "md5_digest": "bd74bf3fcd9855978d871855ab0938a2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16601, "upload_time": "2018-06-21T16:13:13", "url": "https://files.pythonhosted.org/packages/09/2f/a0623163ce5f8efcc51df8e67b739161e81597a4e83b5b72148bf6abfc9d/apistar-crud-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d41a2b75018f354c679b3694cd6f7355", "sha256": "22c6e4ee02ad9145644a385d4a7daa1ae786cdbf2350a09bda8ceaedcd3a203a" }, "downloads": -1, "filename": "apistar_crud-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d41a2b75018f354c679b3694cd6f7355", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 49263, "upload_time": "2018-07-03T17:53:56", "url": "https://files.pythonhosted.org/packages/87/13/63777a3766c4dee06bc56885360421f94e3290cc62c632a4c772c12076b2/apistar_crud-0.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a33178c0fc0460e3716ab5cf6a40829", "sha256": "5fd5bae2fed50c62417198aea528ff19fff657b57d9fb20153d3a01b8ed0311f" }, "downloads": -1, "filename": "apistar-crud-0.4.0.tar.gz", "has_sig": false, "md5_digest": "5a33178c0fc0460e3716ab5cf6a40829", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 17208, "upload_time": "2018-07-03T17:53:55", "url": "https://files.pythonhosted.org/packages/40/b7/46cf33cdca2d97e6e1baa383f71c0a193b420acb03befd286d5a77ad0e5f/apistar-crud-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "e72ceb29ec72622e90c92ab3ca34c62b", "sha256": "b60c92ae0126a4c5127e8d956fc341d0b4909b4ce96167f2fa5f0bcc69186a40" }, "downloads": -1, "filename": "apistar_crud-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e72ceb29ec72622e90c92ab3ca34c62b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 54279, "upload_time": "2018-07-25T10:38:54", "url": "https://files.pythonhosted.org/packages/66/6b/91fb3f41c8d688f9072fd58128b08ad2486475c1dbe356b0bc99b6872e3a/apistar_crud-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "966f39f0c39123a208bfd68a19a74eb7", "sha256": "e52148cf19db88ee49f0e716922bc19163754a316cc12c7401491b1bf88dc4b6" }, "downloads": -1, "filename": "apistar-crud-0.5.0.tar.gz", "has_sig": false, "md5_digest": "966f39f0c39123a208bfd68a19a74eb7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 19768, "upload_time": "2018-07-25T10:38:52", "url": "https://files.pythonhosted.org/packages/52/95/ce90156b2d1de373a6653fccee52cb02b1525dd837105522d1cb463a94d0/apistar-crud-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "e294a157f14f600c5bcd6cf79d21ed3f", "sha256": "74cb285d598ed04641e4562c8eae3bb7c25ec1733b4f3ed87f7f18c0442413bf" }, "downloads": -1, "filename": "apistar_crud-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e294a157f14f600c5bcd6cf79d21ed3f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21847821, "upload_time": "2018-07-25T13:11:05", "url": "https://files.pythonhosted.org/packages/76/47/fdb97338ff5f3b91e4e98f895c2f73911eff835455c7f753563373636023/apistar_crud-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84a9303b1dd9c2f21e2d471d63c58008", "sha256": "6bde79a849f672c324819206532827042c8a5a71dc519edb387e8dfcd193b7bb" }, "downloads": -1, "filename": "apistar-crud-0.5.1.tar.gz", "has_sig": false, "md5_digest": "84a9303b1dd9c2f21e2d471d63c58008", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 1711045, "upload_time": "2018-07-25T13:10:47", "url": "https://files.pythonhosted.org/packages/28/fe/4341a3bc274b4cefbbe80d53df3fc4b3e11dc2f3e71199493ca44499b7fd/apistar-crud-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "dbb76b1541c0c4a0b5c50fa4594925ee", "sha256": "828fdfb7f10f21ad48113551a470bd36511a17f0b35ff6c99e0c21481bffc48f" }, "downloads": -1, "filename": "apistar_crud-0.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "dbb76b1541c0c4a0b5c50fa4594925ee", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21847810, "upload_time": "2018-07-25T14:33:45", "url": "https://files.pythonhosted.org/packages/e0/82/ac0712554d2449c4eeed5b06a76c9fc93a7a27d2a23629c271761c30c253/apistar_crud-0.5.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b781d082d7df2356204768c503c1f58a", "sha256": "8fe7fdf11a9013e9c75142e132c77cc0860eb9138851f75ad3407438a606e17f" }, "downloads": -1, "filename": "apistar-crud-0.5.2.tar.gz", "has_sig": false, "md5_digest": "b781d082d7df2356204768c503c1f58a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 1711174, "upload_time": "2018-07-25T14:32:45", "url": "https://files.pythonhosted.org/packages/21/8e/47fa3f7e0e830465cd4e545b53ec2d0e0e57aaf08555c25b35e6511ef4e9/apistar-crud-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "547f444c1a8de9e615a20c84467b9c81", "sha256": "917ec4bbb795808681b3d97ff2e2bfb0796deb953a5047ddcaae8f64a6c8f7c9" }, "downloads": -1, "filename": "apistar_crud-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "547f444c1a8de9e615a20c84467b9c81", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 14428274, "upload_time": "2018-08-03T11:28:55", "url": "https://files.pythonhosted.org/packages/99/36/d6539ca116b52e475025d023af6a5d450ec83023fed596f9ebdf901d754d/apistar_crud-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "648886362f7e15a1025687e5a510f045", "sha256": "c6ce382c29fcfadf97a0acf227611a7e5cc2615c9826873d5c77b33185ae2cd8" }, "downloads": -1, "filename": "apistar-crud-0.6.0.tar.gz", "has_sig": false, "md5_digest": "648886362f7e15a1025687e5a510f045", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2184830, "upload_time": "2018-08-03T11:28:46", "url": "https://files.pythonhosted.org/packages/8e/56/518e1d002a19444c1329d153560edf8de035bbd53897d591752ed315dca3/apistar-crud-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "ac5dd2fb39ca7dd11e337f823b06d34c", "sha256": "048f4a502cc7a7509d9012b3e5e416b1ba2faa6700f10d5a8dc0e8c75fe889ac" }, "downloads": -1, "filename": "apistar-crud-0.6.1.tar.gz", "has_sig": false, "md5_digest": "ac5dd2fb39ca7dd11e337f823b06d34c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 3855255, "upload_time": "2018-08-03T13:26:14", "url": "https://files.pythonhosted.org/packages/bb/16/ed5effb9bb9e71ab1a120552c4fc8bfc6b6c4d611ec86ac845f36708802f/apistar-crud-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "dfbde979c714b1e6309b72365d0679b0", "sha256": "b9374028d6e1bb1487cb0204700ee455acc7a944f5d7a2041f27bbae7a40dec0" }, "downloads": -1, "filename": "apistar_crud-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "dfbde979c714b1e6309b72365d0679b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 14432064, "upload_time": "2018-08-03T13:29:32", "url": "https://files.pythonhosted.org/packages/fa/16/f91026214050ac494f663bc5fae9c5bc48acff840858026a467191b97c7b/apistar_crud-0.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53e1f00c5a8a70279cbf8d25c2dcaa50", "sha256": "20302b47ceb76070e8aafb8ce3960f75b56696db7d0ed014a5dd81393ba55ef4" }, "downloads": -1, "filename": "apistar-crud-0.6.2.tar.gz", "has_sig": false, "md5_digest": "53e1f00c5a8a70279cbf8d25c2dcaa50", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2185315, "upload_time": "2018-08-03T13:29:22", "url": "https://files.pythonhosted.org/packages/97/37/685a1d2f35cf89efb0cf1a94c6adf016fb856a91e3565d0d39b5a8c0591b/apistar-crud-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "2679cce1b28799923a9b2ad646d6a1f1", "sha256": "fb49e307dd42e6be82002b9058810ae4bc9c42f2bde48b7a64eaa3734105ceac" }, "downloads": -1, "filename": "apistar_crud-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2679cce1b28799923a9b2ad646d6a1f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 13739273, "upload_time": "2018-08-07T16:44:44", "url": "https://files.pythonhosted.org/packages/87/a4/77a59c9e7f77023cf0f1821754d884c78419922d92caf262e0926ae20997/apistar_crud-0.6.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55efd469547ee707cfe4f870633e942d", "sha256": "1f32e43e505656db0514309a078e9c0ee890ab7b03dda7f3958e950586228388" }, "downloads": -1, "filename": "apistar-crud-0.6.3.tar.gz", "has_sig": false, "md5_digest": "55efd469547ee707cfe4f870633e942d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2054816, "upload_time": "2018-08-07T16:44:34", "url": "https://files.pythonhosted.org/packages/62/39/9d4dee33445f1bd720437451cf890752ebc2ecb05618402e765b12d40659/apistar-crud-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "626a2e289881b845733e54f7f89ff5ed", "sha256": "b4f6867aa48e2696b6de83d93e5895738c03d7eada7ee4a0f04a7149733c6a91" }, "downloads": -1, "filename": "apistar_crud-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "626a2e289881b845733e54f7f89ff5ed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 13739530, "upload_time": "2018-09-04T12:45:07", "url": "https://files.pythonhosted.org/packages/0c/68/8d955a8b8fdf35fc339d23e7d2847e83b644955135ba0cc027fd47205782/apistar_crud-0.6.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0601b29452459ea5211fb2d411ca733a", "sha256": "fc61829e5f4e55d867971f3e7b9ce42dbb7eb6e4501cd2cfb29f76272fcd4bf9" }, "downloads": -1, "filename": "apistar-crud-0.6.4.tar.gz", "has_sig": false, "md5_digest": "0601b29452459ea5211fb2d411ca733a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2054896, "upload_time": "2018-09-04T12:44:57", "url": "https://files.pythonhosted.org/packages/e8/fa/12fe220f50e36b8eec7d3689a99c7cf1b23f0becc63ab0cdcb98137b0767/apistar-crud-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "a637babb38a972de2a43042f1ae6e9f8", "sha256": "b2ebd79bd8e9dbe9a3ce3498507b415be0ffb5de8ed58e21830940bd9b282ea9" }, "downloads": -1, "filename": "apistar_crud-0.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "a637babb38a972de2a43042f1ae6e9f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 13739649, "upload_time": "2018-09-14T17:13:03", "url": "https://files.pythonhosted.org/packages/86/22/8d7e0484a3704f1dfbfcc79b5e0b6543ebea527903fd51895d1aa89dc79a/apistar_crud-0.6.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fbe3aa520c93ad98017225257f3bef4", "sha256": "8ac084285595e80220a04179d74ad588670ea6f9060d0918bb32be38c787bd06" }, "downloads": -1, "filename": "apistar-crud-0.6.5.tar.gz", "has_sig": false, "md5_digest": "8fbe3aa520c93ad98017225257f3bef4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2054876, "upload_time": "2018-09-14T17:12:59", "url": "https://files.pythonhosted.org/packages/ed/3f/75eafc1393f3191aac9d845698ac782541bec8d426b4fe524c121d3871b7/apistar-crud-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "acf2655f5c5de69e8ec83a98cb4d9652", "sha256": "ea3ff859499b30f812a6f689315e4068f4e80596fcb95078b6b65ccbf034e1d6" }, "downloads": -1, "filename": "apistar_crud-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "acf2655f5c5de69e8ec83a98cb4d9652", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 13739650, "upload_time": "2018-10-08T13:54:12", "url": "https://files.pythonhosted.org/packages/ac/19/5770fd069700032ab9bbe4dcde2734bea97634a58d0b4debcdbe4f91fb68/apistar_crud-0.6.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ecbbaeb497d16dd7f686dbebfe0c1ee8", "sha256": "8325a48599e5bd4bf722b2111daf8ea890160ec4811dfdca137808b6f0df5c04" }, "downloads": -1, "filename": "apistar-crud-0.6.6.tar.gz", "has_sig": false, "md5_digest": "ecbbaeb497d16dd7f686dbebfe0c1ee8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2054880, "upload_time": "2018-10-08T13:54:08", "url": "https://files.pythonhosted.org/packages/55/62/57569bfaa48d9f4b545febbcd369a4ad38f32476130ece6497f70a258bf9/apistar-crud-0.6.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "acf2655f5c5de69e8ec83a98cb4d9652", "sha256": "ea3ff859499b30f812a6f689315e4068f4e80596fcb95078b6b65ccbf034e1d6" }, "downloads": -1, "filename": "apistar_crud-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "acf2655f5c5de69e8ec83a98cb4d9652", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 13739650, "upload_time": "2018-10-08T13:54:12", "url": "https://files.pythonhosted.org/packages/ac/19/5770fd069700032ab9bbe4dcde2734bea97634a58d0b4debcdbe4f91fb68/apistar_crud-0.6.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ecbbaeb497d16dd7f686dbebfe0c1ee8", "sha256": "8325a48599e5bd4bf722b2111daf8ea890160ec4811dfdca137808b6f0df5c04" }, "downloads": -1, "filename": "apistar-crud-0.6.6.tar.gz", "has_sig": false, "md5_digest": "ecbbaeb497d16dd7f686dbebfe0c1ee8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2054880, "upload_time": "2018-10-08T13:54:08", "url": "https://files.pythonhosted.org/packages/55/62/57569bfaa48d9f4b545febbcd369a4ad38f32476130ece6497f70a258bf9/apistar-crud-0.6.6.tar.gz" } ] }