{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "Schul-Cloud Resources Server Tests\n==================================\n\n.. image:: https://travis-ci.org/schul-cloud/schul_cloud_resources_server_tests.svg?branch=master\n :target: https://travis-ci.org/schul-cloud/schul_cloud_resources_server_tests\n :alt: Build Status\n\n.. image:: https://badge.fury.io/py/schul-cloud-resources-server-tests.svg\n :target: https://pypi.python.org/pypi/schul-cloud-resources-server-tests\n :alt: Python Package Index\n\n.. image:: https://img.shields.io/docker/build/schulcloud/schul_cloud_resources_server_tests.svg\n :target: https://hub.docker.com/r/schulcloud/schul_cloud_resources_server_tests/builds/\n :alt: Dockerhub Automated Build Status\n\n.. image:: http://firsttimers.quelltext.eu/repository/schul-cloud/schul_cloud_resources_server_tests.svg\n :target: http://firsttimers.quelltext.eu/repository/schul-cloud/schul_cloud_resources_server_tests.html\n :alt: First Timers\n\nThis repository is a test and reference implementation for the Schul-Cloud-Resources API_.\nThe purpose is to \n\n- have a reference to verify the API_ specification is actually working\n- find uncertainties in the API_ specification\n- provide tests to speed up an implementation of the API on other servers such as `schulcloud-content `__\n- have people contribute tests as a means of communication between applications: one test, X server-implementations\n- have an easy-to-setup server for crawler implementations and tests\n\nThis repository contains\n\n- a server to test scrapers against\n- tests to test the server\n\nThe package works under Python 2 and 3.\n\nYou can view the live docker instance at http://scrst.quelltext.eu/\n\nInstallation\n------------\n\nUsing ``pip``, you can install all dependencies like this:\n\n.. code:: shell\n\n pip install --user schul_cloud_resources_server_tests\n\nWhen you are done, you can import the package.\n\n.. code:: Python\n\n import schul_cloud_resources_server_tests\n\nInstallation for Development\n----------------------------\n\nIf you want to work on the module, you need to install it differently.\nIf you set it up for development, you can add new tests and features.\n\nFirst, you need to have git installed. Then, clone the repository:\n\n.. code:: shell\n\n git clone https://github.com/schul-cloud/schul_cloud_resources_server_tests.git\n cd schul_cloud_resources_server_tests\n\nIf you have ``pip`` installed, you can now install the packages:\n\n.. code:: shell\n\n pip install --user -r requirements.txt pip-tools==1.6.5\n\nNow, as long as you are in the ``schul_cloud_resources_server_tests`` folder, you can run the commands as mentioned below.\nAdditionally, you can use git to create pull-requests with your edited code.\n\nUsage\n-----\n\nThis section describes how to use the server and the tests.\n\nServer\n~~~~~~\n\nYou can find the API_ definition.\nThe server serves according to the API_.\nIt verifies the input and output for correctness.\n\nTo start the server, run\n\n.. code:: shell\n\n python -m schul_cloud_resources_server_tests.app\n\nThe server should appear at http://localhost:8080/v1.\n\nTests\n~~~~~\n\nYou always test against the running server.\n**Tests may delete everyting you can reach.**\nIf you test the running server, make sure to authenticate in a way that does not destroy the data you want to keep.\n\n.. code:: shell\n\n python -m schul_cloud_resources_server_tests.tests --url=http://localhost:8080/v1/\n\nhttp://localhost:8080/v1/ is the default url.\n\nSteps for Implementation\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you want to implement your server you can follow the TDD steps to implement\none test after the other.\n\n.. code:: shell\n\n python -m schul_cloud_resources_server_tests.tests -m step1\n python -m schul_cloud_resources_server_tests.tests -m step2\n python -m schul_cloud_resources_server_tests.tests -m step3\n ...\n\n- `step1` runs the first test \n- `step2` runs the first and the second test \n- `step3` runs the first, second and third test \n- ...\n\nYou can run a single test with\n\n.. code:: shell\n\n python -m schul_cloud_resources_server_tests.tests -m step3only\n\nTest Authentication\n~~~~~~~~~~~~~~~~~~~\n\nThe test server supports api key authentication and basic authentication.\nIf you test authentication over the internet.\nUse https to protect the secrets.\nThus, an example test call to your api could look like this:\n\n.. code:: Python\n\n python -m schul_cloud_resources_server_tests.tests \\\n --url=https://url.to/your/server \\\n --noauth=false --basic=username:password\n\nIf you have an api key, you can test that the server works.\n\n.. code:: Python\n\n python -m schul_cloud_resources_server_tests.tests \\\n --url=http://url.to/your/server \\\n --noauth=false --apikey=apikey\n\nBy default the test server accepts authentication with several credentials\n\n- no authentication\n- basic:\n\n - user ``valid1@schul-cloud.org`` password ``123abc``\n - user ``valid2@schul-cloud.org`` password ``supersecure``\n- api key: ``abcdefghijklmn`` for the user ``valid1@schul-cloud.org``.\n The client does not send the user name to the server.\n\nTo test these, you can add the ``--basic`` and ``--apikey``\nparameters several times to the tests.\nThe ``--noauth=true`` parameter is default.\nIf the api only accepts authenticated requests, set ``--noauth=false``.\n\n.. code:: Python\n\n python -m schul_cloud_resources_server_tests.tests \\\n --basic=valid1@schul-cloud.org:123abc \\\n --basic=valid2@schul-cloud.org:supersecure \\\n --apikey=valid1@schul-cloud.org:abcdefghijklmn \\\n --noauth=true\n\nAll tests are run with the different authentication options.\nIf we have several ways to authenticate, the tests test if the user sees the other users' data.\n\nIt is assumed, that adding ``invalid`` to the password,\nuser name and api key will make it invalid.\nTests use the invalid credentials to test the server behavior in rejected cases.\n\nExample Travis Configuration\n----------------------------\n\nIf you want to implement a crawler or server, you can use Travis-CI to test\nit.\nAn example travis configuration can be found in the `test-example\n`__ branch.\nYou can view the `output\n`__\nThe configuration is generic.\nIt will run under any other language you configure.\n\nUsage in Crawler\n----------------\n\nThe `url-crawler `__ uses the test server to test synchronization.\n\nUse the server in pytest\n------------------------\n\nYou can use the sever in Python tests.\nThere are fixtures available that start and stop the server.\n\n.. code:: Python\n\n from schul_cloud_resources_server_tests.tests.fixtures import *\n\n def test_pytest(resources_server):\n \"\"\"pytest using the server\"\"\"\n\nThe following attributes are available:\n\n- ``resources_server.url`` The url of the server.\n- ``resources_server.api`` A ``schul_cloud_resources_api_v1.ResourcesApi`` object connected to the server.\n- ``resources_server.get_resources()`` A function to return a list of resources on the server.\n\nFor more information, see the module ``schul_cloud_resources_server_tests.tests.fixtures``.\nYou can add support for more test frameworks.\n\nDocker\n------\n\nYou can build the this image with the following docker command:\n\n.. code:: shell\n\n docker build -t schulcloud/schul_cloud_resources_server_tests .\n\nOr you can pull the docker container and run it.\n\n.. code:: shell\n\n docker run schulcloud/schul_cloud_resources_server_tests\n\nThis starts the server at the port 8080 as in the examples above.\n\nDocker-Compose\n~~~~~~~~~~~~~~\n\nThere is a ``docker-compose.yml`` file, so you can use the ``docker-compose`` command.\nThe server will be available at http://localhost:80/v1\nIt uses a memory limit of 60MB.\n\n------------------------------\n\nYou can edit this document `on Github\n`__\nand check it with `this editor `__.\n\n.. _API: https://github.com/schul-cloud/resources-api-v1\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/schul-cloud/schul_cloud_ressources_server_tests", "keywords": "Swagger,Schul-Cloud Content API,Server Tests", "license": "", "maintainer": "", "maintainer_email": "", "name": "schul-cloud-resources-server-tests", "package_url": "https://pypi.org/project/schul-cloud-resources-server-tests/", "platform": "", "project_url": "https://pypi.org/project/schul-cloud-resources-server-tests/", "project_urls": { "Homepage": "https://github.com/schul-cloud/schul_cloud_ressources_server_tests" }, "release_url": "https://pypi.org/project/schul-cloud-resources-server-tests/1.0.387/", "requires_dist": [ "bottle (==0.12.13)", "certifi (==2017.4.17)", "chardet (==3.0.4)", "idna (==2.5)", "jsonschema (==2.6.0)", "py (==1.4.34)", "pytest (==3.1.2)", "python-dateutil (==2.6.0)", "requests (==2.18.1)", "schul-cloud-resources-api-v1 (==1.0.0.326)", "six (==1.10.0)", "urllib3 (==1.21.1)" ], "requires_python": "", "summary": "Schul-Cloud Content API", "version": "1.0.387" }, "last_serial": 3526437, "releases": { "1.0.103": [ { "comment_text": "", "digests": { "md5": "68665269e6c654a3892c8a8434d6d8bf", "sha256": "4c07fbbeb1d5ef2b33e78597da04166c4770f4d1907d8bbe140028c83fa74363" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.103-py3-none-any.whl", "has_sig": false, "md5_digest": "68665269e6c654a3892c8a8434d6d8bf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23004, "upload_time": "2017-05-31T18:30:07", "url": "https://files.pythonhosted.org/packages/e2/05/efec01743ca9eb5138b6b1dd58d8fb4527993d5418660a44acce22da7178/schul_cloud_resources_server_tests-1.0.103-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "515384fb5ce8edfd7f619a0bbadbec4d", "sha256": "44412868cc7d1c0acab497c2370528372eefc28aaec4d3be15dc527979ca0373" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.103.tar.gz", "has_sig": false, "md5_digest": "515384fb5ce8edfd7f619a0bbadbec4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18995, "upload_time": "2017-05-31T18:30:10", "url": "https://files.pythonhosted.org/packages/e6/71/a051d00cd1ee1af6e15d22345beffecae1b74c93e5c0264aac8000b965d1/schul_cloud_resources_server_tests-1.0.103.tar.gz" } ], "1.0.104": [ { "comment_text": "", "digests": { "md5": "c8f69e80f55249edd8fc733ccaaa2af8", "sha256": "0262e7e9045e6f917e41025f8a7a60abbcdf354844fc5c9f86e22cd6307b14a1" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.104-py3-none-any.whl", "has_sig": false, "md5_digest": "c8f69e80f55249edd8fc733ccaaa2af8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23753, "upload_time": "2017-05-31T19:25:16", "url": "https://files.pythonhosted.org/packages/ed/a0/aabd031ea398ac9231dbcfb3e70b4806fe3b234502b9441940efddc6b340/schul_cloud_resources_server_tests-1.0.104-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d33926cbd4bc1af6777b25c43e970672", "sha256": "8552001e3efb66cacb01fe1372b59f059616fcc7e1d6dce3a1c1044f3e197eea" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.104.tar.gz", "has_sig": false, "md5_digest": "d33926cbd4bc1af6777b25c43e970672", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19697, "upload_time": "2017-05-31T19:25:17", "url": "https://files.pythonhosted.org/packages/3d/69/4c5a072164e9d27452bc057afa5efb5041aaec9c9904f774a03e5c524165/schul_cloud_resources_server_tests-1.0.104.tar.gz" } ], "1.0.108": [ { "comment_text": "", "digests": { "md5": "e51951bdb24d5563e56bbfd9f9ce6ed4", "sha256": "96047ae015d1d431b26bc72135692c4a497d955561b924fe861275d351a35e51" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.108-py3-none-any.whl", "has_sig": false, "md5_digest": "e51951bdb24d5563e56bbfd9f9ce6ed4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23907, "upload_time": "2017-05-31T19:45:26", "url": "https://files.pythonhosted.org/packages/5f/b4/4ca8ef34aa0f5139fe00f69b4abf69158ea4f97b0ca23ece4884b7bab152/schul_cloud_resources_server_tests-1.0.108-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3593cd60ad7da5d15bac16ea0b589f5", "sha256": "7cc952c063a2ea8188dd493346a22907e294c2f006229455becad0f57d2def48" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.108.tar.gz", "has_sig": false, "md5_digest": "d3593cd60ad7da5d15bac16ea0b589f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19866, "upload_time": "2017-05-31T19:45:28", "url": "https://files.pythonhosted.org/packages/a7/c2/e51dde4f2e72e0e5c5082d76931ba32823b7aef201c53e85df834bc6b9f5/schul_cloud_resources_server_tests-1.0.108.tar.gz" } ], "1.0.109": [ { "comment_text": "", "digests": { "md5": "1e2bc00fe7c353901545b847023f7a56", "sha256": "f6cb5512cd4978914956c10014f744024c13ea599c5fd500087a2df478dd2cb4" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.109-py3-none-any.whl", "has_sig": false, "md5_digest": "1e2bc00fe7c353901545b847023f7a56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24066, "upload_time": "2017-05-31T19:49:03", "url": "https://files.pythonhosted.org/packages/98/2a/3918d6b94dee880bb6c9be858b43f1a90435221ff2b2237ecbec2adf5a52/schul_cloud_resources_server_tests-1.0.109-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "32895a2d4bbaac55a8b6a5f8fd05eb3b", "sha256": "f3b9b004298f6e924c7a00acba2d9cec3261381db76b38e870cf5a39e7a49d39" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.109.tar.gz", "has_sig": false, "md5_digest": "32895a2d4bbaac55a8b6a5f8fd05eb3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20048, "upload_time": "2017-05-31T19:49:05", "url": "https://files.pythonhosted.org/packages/8b/95/a7795aa58650655ee9d2817d46863e92fdcd8698611d5f801772821d849a/schul_cloud_resources_server_tests-1.0.109.tar.gz" } ], "1.0.110": [ { "comment_text": "", "digests": { "md5": "bd1f54b07dd48fec34f30386673d6ce5", "sha256": "56adbf9d214172af9f93d4c9e478f4e1043347c16693b08e65fe839b5e92bfac" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.110-py3-none-any.whl", "has_sig": false, "md5_digest": "bd1f54b07dd48fec34f30386673d6ce5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24067, "upload_time": "2017-05-31T19:53:38", "url": "https://files.pythonhosted.org/packages/83/0e/73249308538e40365aefc10c902a1cb0d8e7bab0d3949f1506f61c6795f4/schul_cloud_resources_server_tests-1.0.110-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcb05980ebf25fbdd690986aa52d042d", "sha256": "7a877ce1ac9c470d7f7a95faaa5373ce28f99945453a980bb2b9d023bbbb3471" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.110.tar.gz", "has_sig": false, "md5_digest": "dcb05980ebf25fbdd690986aa52d042d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20041, "upload_time": "2017-05-31T19:53:40", "url": "https://files.pythonhosted.org/packages/6e/63/ce580318c9d8c86892349f14abd332f669b45a6d2ae01a0d810fb0c2cf80/schul_cloud_resources_server_tests-1.0.110.tar.gz" } ], "1.0.113": [ { "comment_text": "", "digests": { "md5": "77b2d224d275cfef763fd2d12ba60e4e", "sha256": "be6659985f6e6e5921fbac19ee7cb315ff4133fb566a47715d462c0d3ac56bbd" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.113-py3-none-any.whl", "has_sig": false, "md5_digest": "77b2d224d275cfef763fd2d12ba60e4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24493, "upload_time": "2017-06-03T06:50:58", "url": "https://files.pythonhosted.org/packages/1e/5a/0575bc3ebecd4bf7d453e10e616abc31bf9aaa34f68690eacd0d31745eba/schul_cloud_resources_server_tests-1.0.113-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f6a8c0c86db7b119c240bcfbda9df30", "sha256": "46821a3053b42879c36fe5f966ec0c363aa3b82a9351546b8dbaa1912122c6e4" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.113.tar.gz", "has_sig": false, "md5_digest": "8f6a8c0c86db7b119c240bcfbda9df30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20567, "upload_time": "2017-06-03T06:50:59", "url": "https://files.pythonhosted.org/packages/05/df/4ba3d5d2ee57455a08b31476b327f9f7ade737afed53018bb7bc4a8ad6ac/schul_cloud_resources_server_tests-1.0.113.tar.gz" } ], "1.0.116": [ { "comment_text": "", "digests": { "md5": "0d220281ad39a2a4b0c138b770e37cd0", "sha256": "9c11c51d307f34584b2ba6931c7a718cc94be3f9f880026a0e58e116d85c49b5" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.116-py3-none-any.whl", "has_sig": false, "md5_digest": "0d220281ad39a2a4b0c138b770e37cd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24572, "upload_time": "2017-06-04T13:38:01", "url": "https://files.pythonhosted.org/packages/17/62/7517db1444f99c0fc3b0b28218dfeabcd6172db4456d76e591f9a42a9d52/schul_cloud_resources_server_tests-1.0.116-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04fa1bfcc035c5fe4300e98d76f144e1", "sha256": "1dd74bc29ddaf99d565c76778905fbc83d150b51eb8f9d7fd3fb0e4975ca9a38" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.116.tar.gz", "has_sig": false, "md5_digest": "04fa1bfcc035c5fe4300e98d76f144e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20633, "upload_time": "2017-06-04T13:38:03", "url": "https://files.pythonhosted.org/packages/8b/0f/7d6f38acab445a92c5a12411aa6bf664f701f9cfd910dc1ab9a0aab9d5d7/schul_cloud_resources_server_tests-1.0.116.tar.gz" } ], "1.0.117": [ { "comment_text": "", "digests": { "md5": "d386f993d487f0099f4be59ddc3ed2e0", "sha256": "5a972c3a911f5b5a5082fe6a3a276dc8dc380d0aa614f37c6554ff54d25f2170" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.117-py3-none-any.whl", "has_sig": false, "md5_digest": "d386f993d487f0099f4be59ddc3ed2e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24640, "upload_time": "2017-06-04T13:47:50", "url": "https://files.pythonhosted.org/packages/88/2a/4ffbde0c97d47f2d7592aa416c5cc98baf22e74f0d93a90040801b85ba9b/schul_cloud_resources_server_tests-1.0.117-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b86126da61f5d20da0d84bbc4c999f9a", "sha256": "6f74f5dbd770f60b3771d8ce18aabc0a44cf3c366cfa83ae1b7e3737a8decb9c" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.117.tar.gz", "has_sig": false, "md5_digest": "b86126da61f5d20da0d84bbc4c999f9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20709, "upload_time": "2017-06-04T13:47:51", "url": "https://files.pythonhosted.org/packages/72/c5/e264489ea966eeefc786f2c39a98bc85e7d129ba6ecd5d4ddf087993c076/schul_cloud_resources_server_tests-1.0.117.tar.gz" } ], "1.0.118": [ { "comment_text": "", "digests": { "md5": "37e942a0c11cf639222569726b158edd", "sha256": "13e66fcecce38f922cac37c63b19ac2edd881442387ce26102a6e986ccc09a54" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.118-py3-none-any.whl", "has_sig": false, "md5_digest": "37e942a0c11cf639222569726b158edd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24645, "upload_time": "2017-06-04T14:09:16", "url": "https://files.pythonhosted.org/packages/cb/8e/04d85cd1e400989d6dec57033e6f55b6d4a7e0e96e8a705283065610c3f0/schul_cloud_resources_server_tests-1.0.118-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49301a827650fdfc8927e077f309e2ce", "sha256": "f477b6c1a7554c76935768a316460cdcd61bd40c4701c71a7dc40dac9d83d3c8" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.118.tar.gz", "has_sig": false, "md5_digest": "49301a827650fdfc8927e077f309e2ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20714, "upload_time": "2017-06-04T14:09:17", "url": "https://files.pythonhosted.org/packages/0e/22/cf9a206728818eee66d3ced40cb3e314707cac2d439edc809134460cab34/schul_cloud_resources_server_tests-1.0.118.tar.gz" } ], "1.0.125": [ { "comment_text": "", "digests": { "md5": "b4e8e64ff8f820d94d0d744935a837f1", "sha256": "1339f8ed37c8847cbaaa11f829b85c9e5c3777ca92d6b90303973dbc33894bb2" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.125-py3-none-any.whl", "has_sig": false, "md5_digest": "b4e8e64ff8f820d94d0d744935a837f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24782, "upload_time": "2017-06-12T13:51:51", "url": "https://files.pythonhosted.org/packages/1b/8b/f76d5905a96c6484c7f8109999001bde80361a10446c65143a60c002ae6f/schul_cloud_resources_server_tests-1.0.125-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9f4648b40a69629d62fa51ccbc56624d", "sha256": "b85b64a47c69d3b39b4c4575be9d5447cb660020228a2639d447e9576ad521bd" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.125.tar.gz", "has_sig": false, "md5_digest": "9f4648b40a69629d62fa51ccbc56624d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20863, "upload_time": "2017-06-12T13:51:52", "url": "https://files.pythonhosted.org/packages/61/d5/713a221ccb3e14718738f11f27884bb250138f39681d3ab3656d297e76f0/schul_cloud_resources_server_tests-1.0.125.tar.gz" } ], "1.0.131": [ { "comment_text": "", "digests": { "md5": "d95b33de42a9e8f3b4a03f218a789fc4", "sha256": "22c55d6205393cc68336c1f96b32e60fe24f490546102fdd836ed0f18889fcae" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.131-py3-none-any.whl", "has_sig": false, "md5_digest": "d95b33de42a9e8f3b4a03f218a789fc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24786, "upload_time": "2017-06-13T09:48:09", "url": "https://files.pythonhosted.org/packages/90/56/ef28988456bf78a3e71e91c8d04e925e9f0a48ec3d965541c3d369f967dd/schul_cloud_resources_server_tests-1.0.131-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f690e51cffc073a5127aec8277c1d1b", "sha256": "6aa5bc28dc40410da467f447f87b3bd9f30b65e472100762adaa07c9f3f77aff" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.131.tar.gz", "has_sig": false, "md5_digest": "0f690e51cffc073a5127aec8277c1d1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20862, "upload_time": "2017-06-13T09:48:11", "url": "https://files.pythonhosted.org/packages/e3/b3/c2069f76b34d3f87a8ece4f999da841af9f71bccd8e0753adf1a0c4aa67c/schul_cloud_resources_server_tests-1.0.131.tar.gz" } ], "1.0.134": [ { "comment_text": "", "digests": { "md5": "0600b32f4e6a534b4766923a97c28ecb", "sha256": "a2b5bfe5e0c5b6c8f5cb52c2779af5fc31d22b42e34c57713550c7b778665d52" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.134-py3-none-any.whl", "has_sig": false, "md5_digest": "0600b32f4e6a534b4766923a97c28ecb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24927, "upload_time": "2017-06-13T10:03:10", "url": "https://files.pythonhosted.org/packages/c6/c4/763bfe77a2e6c18c17022a30a09c2a5f42050ea0928109c6492150b3ae6c/schul_cloud_resources_server_tests-1.0.134-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1282dc4b1c762fd65d9c72f528432925", "sha256": "2af50b7e802f30d9b5ca688e2e7636cc7fe1683fe99b3160e0cd82bb22fefae9" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.134.tar.gz", "has_sig": false, "md5_digest": "1282dc4b1c762fd65d9c72f528432925", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20992, "upload_time": "2017-06-13T10:03:13", "url": "https://files.pythonhosted.org/packages/84/fa/b238fe4e3bb682ccf5e02ca8e8d014e4c9fbefbc7efdb08f96579a814ff0/schul_cloud_resources_server_tests-1.0.134.tar.gz" } ], "1.0.141": [ { "comment_text": "", "digests": { "md5": "ab76426c41a37fce1f93a92d19ac036a", "sha256": "e8bf1c2995d1ef4dbd58cb0b008e643f60ca5589b929f92d92e2b1b77f0234ef" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.141-py3-none-any.whl", "has_sig": false, "md5_digest": "ab76426c41a37fce1f93a92d19ac036a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24962, "upload_time": "2017-06-13T10:54:07", "url": "https://files.pythonhosted.org/packages/65/65/3710fb2d024edc67942e3a7e1d36f611095d5dda287ece7cf70c748a324e/schul_cloud_resources_server_tests-1.0.141-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab5be1ea6fe28ebd5fdb5290ebdee6cf", "sha256": "a533ff2ef8c944a3c6b8da9a4ddb43912143c0626bd4157a4da5ded288cefb08" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.141.tar.gz", "has_sig": false, "md5_digest": "ab5be1ea6fe28ebd5fdb5290ebdee6cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21024, "upload_time": "2017-06-13T10:54:12", "url": "https://files.pythonhosted.org/packages/b8/44/91364624f4222f4af8d45d8004e93342b0b758415479d30ffd0162774aab/schul_cloud_resources_server_tests-1.0.141.tar.gz" } ], "1.0.144": [ { "comment_text": "", "digests": { "md5": "025a657005727962ee96eab9feedff3e", "sha256": "9fb69906ffb5b7867fd5cea4b49b18b72d4000dc22a65c3fe9ca3753153ad860" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.144-py3-none-any.whl", "has_sig": false, "md5_digest": "025a657005727962ee96eab9feedff3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25031, "upload_time": "2017-06-13T11:15:53", "url": "https://files.pythonhosted.org/packages/3f/e3/b232ce79357df69583a22b8870de7c408bf3cde15655f9dc9776e258f106/schul_cloud_resources_server_tests-1.0.144-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d3d2b7c0bcd4dfe932f64e06b613dbf", "sha256": "e3413d5e0cc71581ac427018b40eb605c33623e3d603545ae786e347d670ba8f" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.144.tar.gz", "has_sig": false, "md5_digest": "1d3d2b7c0bcd4dfe932f64e06b613dbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21068, "upload_time": "2017-06-13T11:15:56", "url": "https://files.pythonhosted.org/packages/53/d8/3005844306b2d7676f0841bf4b0c83cf7554110f92c48f783f8ae045f462/schul_cloud_resources_server_tests-1.0.144.tar.gz" } ], "1.0.153": [ { "comment_text": "", "digests": { "md5": "9225f172b60eb0e6badc43c2e74906d1", "sha256": "ff00eb6b7d9f80eb6ae9d4ad38e0ff0e422fc9959a04c5ae277b63230baa14af" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.153-py3-none-any.whl", "has_sig": false, "md5_digest": "9225f172b60eb0e6badc43c2e74906d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25033, "upload_time": "2017-06-20T09:24:17", "url": "https://files.pythonhosted.org/packages/93/3b/2d9408a985535e304a62b71597c095e1d50cac96b7f7cf6afec6457d7f0b/schul_cloud_resources_server_tests-1.0.153-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a384b92dfb2228764d373edcb8961d44", "sha256": "6423f420c501c1f1b0b7f759193fb34e44ddb3a4b650b6cdcbf244107565778b" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.153.tar.gz", "has_sig": false, "md5_digest": "a384b92dfb2228764d373edcb8961d44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21082, "upload_time": "2017-06-20T09:24:19", "url": "https://files.pythonhosted.org/packages/fe/d3/96c2b2cbc4c4a8a2cd2baa94bbbe3e04d37b68fd49ab16faf1300e567537/schul_cloud_resources_server_tests-1.0.153.tar.gz" } ], "1.0.158": [ { "comment_text": "", "digests": { "md5": "bbc2165360e0ca9bcca06cc077ba271b", "sha256": "c49374bfc6cfb77e083af18bd557637f45265d91b7a3bb9ba2d32b98a94a3689" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.158-py3-none-any.whl", "has_sig": false, "md5_digest": "bbc2165360e0ca9bcca06cc077ba271b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25037, "upload_time": "2017-06-20T11:10:16", "url": "https://files.pythonhosted.org/packages/e0/e1/6b52f560236e88255a65b2d14e963f62eca7a41d5a3356cdd8dd5241e937/schul_cloud_resources_server_tests-1.0.158-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3060d72557be34066b6d6387739c9ca", "sha256": "d5c693ba96093d0f16b73beb319f5dac2006721b6c8962b6965ff646eabe2764" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.158.tar.gz", "has_sig": false, "md5_digest": "a3060d72557be34066b6d6387739c9ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21080, "upload_time": "2017-06-20T11:10:17", "url": "https://files.pythonhosted.org/packages/3c/39/1ff42eb1610fe522672c816ee2ca10e21b00040d13d7d149d18060237dfc/schul_cloud_resources_server_tests-1.0.158.tar.gz" } ], "1.0.161": [ { "comment_text": "", "digests": { "md5": "27adb8a7c876b2969542d27528885ec5", "sha256": "07a2acb7bce44fbd61f45ddb91dac4720a31e06e6624aeba4b098489ac438991" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.161-py3-none-any.whl", "has_sig": false, "md5_digest": "27adb8a7c876b2969542d27528885ec5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24994, "upload_time": "2017-06-20T12:11:07", "url": "https://files.pythonhosted.org/packages/7f/3a/ca42e88adb5e10be05b51ec98f2b465ab417e536a0f7b281ab7298ce8560/schul_cloud_resources_server_tests-1.0.161-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f52d64023d2dc3807c7538061168a835", "sha256": "768a0ad6e4fb0623f9725e371a9f212ab198a8c74564bc8f89c41b66f4d26547" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.161.tar.gz", "has_sig": false, "md5_digest": "f52d64023d2dc3807c7538061168a835", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21026, "upload_time": "2017-06-20T12:11:09", "url": "https://files.pythonhosted.org/packages/3a/2a/9dc2bd0cc9e8bed6695a33ceebc75a7a030347d0256bf68be3b86858f7ae/schul_cloud_resources_server_tests-1.0.161.tar.gz" } ], "1.0.202": [ { "comment_text": "", "digests": { "md5": "04e2ee72b06274701525aeb110a14698", "sha256": "4309478e3ee0ea233b3a088537c3c26e275270e4808abb592b5bc060f2367016" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.202-py3-none-any.whl", "has_sig": false, "md5_digest": "04e2ee72b06274701525aeb110a14698", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24995, "upload_time": "2017-08-03T09:34:28", "url": "https://files.pythonhosted.org/packages/8c/8d/7685cc42c9b028d149b6ca001104140182d1e41e6869580e8dce80cd2540/schul_cloud_resources_server_tests-1.0.202-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e06dd5c4a84443b860449c838a8dc24d", "sha256": "b1b1bc4ebbbffb475bb041315ea2b34b7ec383b2402dc1469d4eaf97467c3e74" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.202.tar.gz", "has_sig": false, "md5_digest": "e06dd5c4a84443b860449c838a8dc24d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21033, "upload_time": "2017-08-03T09:34:30", "url": "https://files.pythonhosted.org/packages/b6/ad/6ac790f508d54f9f261358968e6898f209054a1e7fb2cafb88f4c03746cf/schul_cloud_resources_server_tests-1.0.202.tar.gz" } ], "1.0.220": [ { "comment_text": "", "digests": { "md5": "54616ed98d38424e7df0df8dd233c482", "sha256": "ba0a4e2ea996333fdbc38dea171bbba75b2c731b91f95d2c202555a190034178" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.220-py3-none-any.whl", "has_sig": false, "md5_digest": "54616ed98d38424e7df0df8dd233c482", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24996, "upload_time": "2017-08-22T07:54:47", "url": "https://files.pythonhosted.org/packages/df/c5/6430b27adfe48072e7f6b1d537b2f120a847b2a0d5619dbf65116ab64120/schul_cloud_resources_server_tests-1.0.220-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d64a87d2d6ce370505c3a7a34ba03398", "sha256": "b13873af232e69695295e10573ee6c29a93c54b32b110f284a2af56bc291d1f6" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.220.tar.gz", "has_sig": false, "md5_digest": "d64a87d2d6ce370505c3a7a34ba03398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21024, "upload_time": "2017-08-22T07:54:49", "url": "https://files.pythonhosted.org/packages/28/ed/6e5651ca4692ca651f1674334ad3c04fee3d4ddfe3392fe5dadb0ebc19d9/schul_cloud_resources_server_tests-1.0.220.tar.gz" } ], "1.0.226": [ { "comment_text": "", "digests": { "md5": "7ee8861ee8230b9316342c7beec6b878", "sha256": "eabb7fb0684cdd06df470b2fe3164e5bbd2ca70332f3bb7b75f8badbed5ef99a" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.226-py3-none-any.whl", "has_sig": false, "md5_digest": "7ee8861ee8230b9316342c7beec6b878", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24994, "upload_time": "2017-08-28T07:26:30", "url": "https://files.pythonhosted.org/packages/c9/ba/2e94b134e5e61ad0866a6a09fec58f94e1c0fc85e1d9c9e17a618d8eb676/schul_cloud_resources_server_tests-1.0.226-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18682e9fbb1bc107b35a44d3d121c62a", "sha256": "2f754409fd00e14d477754471bf8c5224f9d37ec776e78a5ab9393d781521758" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.226.tar.gz", "has_sig": false, "md5_digest": "18682e9fbb1bc107b35a44d3d121c62a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21024, "upload_time": "2017-08-28T07:26:33", "url": "https://files.pythonhosted.org/packages/cd/42/6c6b7ed6fcbb0ad211437d62689836438708d68099fb0dca5e00fc782961/schul_cloud_resources_server_tests-1.0.226.tar.gz" } ], "1.0.245": [ { "comment_text": "", "digests": { "md5": "66721c997308957f897e8c0c2c458b1f", "sha256": "2a9186092069cfb0678e5b859a416205b998344e19c32849b350abd0e8bf5ee9" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.245-py3-none-any.whl", "has_sig": false, "md5_digest": "66721c997308957f897e8c0c2c458b1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25023, "upload_time": "2017-09-18T12:19:28", "url": "https://files.pythonhosted.org/packages/07/e0/0fe406e10bc9d2033e60c6378d4b1bf04c3ca2b7148dff706b06fbdc1072/schul_cloud_resources_server_tests-1.0.245-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6dd650a9b5a5edc28a29eefedc3b2bd5", "sha256": "e5b5bc5854100833afdca84630556d4a33853e60049400aa5a469af79cd8e8d0" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.245.tar.gz", "has_sig": false, "md5_digest": "6dd650a9b5a5edc28a29eefedc3b2bd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21050, "upload_time": "2017-09-18T12:19:29", "url": "https://files.pythonhosted.org/packages/22/8b/8af95b0494ecdee4e6ac89a4fa7dc1bf45b3f00f737a06464a3d28568fdf/schul_cloud_resources_server_tests-1.0.245.tar.gz" } ], "1.0.246": [ { "comment_text": "", "digests": { "md5": "4096f87c42653b3148f2a151b9b68c88", "sha256": "630a15fae0cbe5e5dbc1ea1a3f95d6b58a20f4bdeacb0b09cd3d33ec2bdbc370" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.246-py3-none-any.whl", "has_sig": false, "md5_digest": "4096f87c42653b3148f2a151b9b68c88", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25038, "upload_time": "2017-09-18T12:41:17", "url": "https://files.pythonhosted.org/packages/42/39/183ab0992790cf01827b5ef315bb29e568d73b5954277f90e21e8b3c5d24/schul_cloud_resources_server_tests-1.0.246-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e27eceb6c5f6619aa29357a361635fed", "sha256": "ccf0ef3e984789db4b44a0d919220703aa4fb9299642a0877522ae43cc80074d" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.246.tar.gz", "has_sig": false, "md5_digest": "e27eceb6c5f6619aa29357a361635fed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21065, "upload_time": "2017-09-18T12:41:19", "url": "https://files.pythonhosted.org/packages/94/e9/f461b97c2e2d2caeba2fea7f0436d6a199828cf12fec7671631bd9262fa6/schul_cloud_resources_server_tests-1.0.246.tar.gz" } ], "1.0.247": [ { "comment_text": "", "digests": { "md5": "2f596ce709f76ce17c53e80ff06ebb01", "sha256": "a06190d4fe1e89693ee8ffd84a49cadb885e58818116866ab709bc5fb869a621" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.247-py3-none-any.whl", "has_sig": false, "md5_digest": "2f596ce709f76ce17c53e80ff06ebb01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25038, "upload_time": "2017-09-18T12:48:24", "url": "https://files.pythonhosted.org/packages/af/4d/87d6a74e06a6153fb0d2d79c9e7402ea288b69916fdc547d5e9fd4e890e2/schul_cloud_resources_server_tests-1.0.247-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fd1ab1d718b7f8e9e71ebd33d565a53", "sha256": "5bda2be9c37f1d6e9d27a946758d20c688477426dcbe28a51a2d234904610a0e" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.247.tar.gz", "has_sig": false, "md5_digest": "8fd1ab1d718b7f8e9e71ebd33d565a53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21067, "upload_time": "2017-09-18T12:48:26", "url": "https://files.pythonhosted.org/packages/59/fc/06d5b580101ac401e0dd3a5c33aa7847c6664364d7220c5d2db06892463e/schul_cloud_resources_server_tests-1.0.247.tar.gz" } ], "1.0.248": [ { "comment_text": "", "digests": { "md5": "8d53b878e874a2d2da31a71b29eac767", "sha256": "af5ef7d1d8511ebcc490acf56d8c7cc0ceb221f2c11b2ef6900c94b3e3203f93" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.248-py3-none-any.whl", "has_sig": false, "md5_digest": "8d53b878e874a2d2da31a71b29eac767", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25069, "upload_time": "2017-09-18T19:25:15", "url": "https://files.pythonhosted.org/packages/bb/4f/ee64913db41048e601dd9cfa948a361a36f90667441ee89c2726d4ef91f2/schul_cloud_resources_server_tests-1.0.248-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c140db0b78cd9da89ef1978ab862ac3", "sha256": "25a09d723297f52f5905dd50a72e9d64668863d7e64375f56bb28eda331e04aa" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.248.tar.gz", "has_sig": false, "md5_digest": "2c140db0b78cd9da89ef1978ab862ac3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21095, "upload_time": "2017-09-18T19:25:20", "url": "https://files.pythonhosted.org/packages/73/3d/a0476921a14aa5111e35112873b70677c3014cddc34ae3d2ddb7005f226d/schul_cloud_resources_server_tests-1.0.248.tar.gz" } ], "1.0.249": [ { "comment_text": "", "digests": { "md5": "62375459d6e1bc877f40ef5894bd9f76", "sha256": "22b404151872570eaefdf688f85c0e2f383f7226e0f1733f8b2cb41c4cac1a71" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.249-py3-none-any.whl", "has_sig": false, "md5_digest": "62375459d6e1bc877f40ef5894bd9f76", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25335, "upload_time": "2017-09-18T21:18:11", "url": "https://files.pythonhosted.org/packages/4c/cd/fb8169c851c7335912445547cbdea1178a20abcaab4c8e0dfd5f190206b2/schul_cloud_resources_server_tests-1.0.249-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44ec77d6689739376377117a83fc31ae", "sha256": "6f3a685cbd205db3cdd9f77a750e3c411cfe52ffe2ec9a58f20ec90e502c4ec4" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.249.tar.gz", "has_sig": false, "md5_digest": "44ec77d6689739376377117a83fc31ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21394, "upload_time": "2017-09-18T21:18:14", "url": "https://files.pythonhosted.org/packages/42/ee/fe960e16bbb51b059d5f1a68d4d19fe75368541ae5521af354012af1d561/schul_cloud_resources_server_tests-1.0.249.tar.gz" } ], "1.0.250": [ { "comment_text": "", "digests": { "md5": "7b671d5e34ad0f6cdacc1a267ad0c5d1", "sha256": "6160fda2ec6fbf6b6ef5ec4c55d1599d4d0a01b6b8f166322b2cb2f14e3c8197" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.250-py3-none-any.whl", "has_sig": false, "md5_digest": "7b671d5e34ad0f6cdacc1a267ad0c5d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25351, "upload_time": "2017-09-18T21:57:34", "url": "https://files.pythonhosted.org/packages/90/3a/435a231e9b3a86983dfcdddca572fcbbb710344479ed5fbbf0e5aa681e0c/schul_cloud_resources_server_tests-1.0.250-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49b164959d32f2c7e1058dcd9f13a57f", "sha256": "108fcc6b1f2a986267037e246cac9e27a99055eaf23458577a1f16fe519b606e" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.250.tar.gz", "has_sig": false, "md5_digest": "49b164959d32f2c7e1058dcd9f13a57f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21407, "upload_time": "2017-09-18T21:57:38", "url": "https://files.pythonhosted.org/packages/93/cb/b340a84d576958dc625ed1bb3bba9c19a9b2501cc14c15e7cc1cd3591435/schul_cloud_resources_server_tests-1.0.250.tar.gz" } ], "1.0.252": [ { "comment_text": "", "digests": { "md5": "f19a8281fb55f27a70b260c42bec1dc1", "sha256": "d6e3be830bbbaa38ba244cb061049a6fabde56e5f369e3517f29f10ae01d6dac" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.252-py3-none-any.whl", "has_sig": false, "md5_digest": "f19a8281fb55f27a70b260c42bec1dc1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25371, "upload_time": "2017-09-19T11:39:42", "url": "https://files.pythonhosted.org/packages/28/ad/0200b5fb2bddf26facb2b512884827d779510bbbd66998a6122d5b835bf7/schul_cloud_resources_server_tests-1.0.252-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f56fbcb28bc026bf75781999dbe358e", "sha256": "3e3a6db97db6adb747b0f7d5d9ee2028873c372df44c2c6df57dbd1ed859f8d0" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.252.tar.gz", "has_sig": false, "md5_digest": "0f56fbcb28bc026bf75781999dbe358e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21420, "upload_time": "2017-09-19T11:39:44", "url": "https://files.pythonhosted.org/packages/bd/a1/4975ac5390f32ae7c77a7470ec4af90f1e486d977399148842e0f2c0bdfe/schul_cloud_resources_server_tests-1.0.252.tar.gz" } ], "1.0.259": [ { "comment_text": "", "digests": { "md5": "8b55a2bbdd1a3b5c47a8beb195767e2c", "sha256": "ee41468e232d6ef2a8fef62c548ed9883b2ed35193ff0b3eb4bbb18383b5748a" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.259-py3-none-any.whl", "has_sig": false, "md5_digest": "8b55a2bbdd1a3b5c47a8beb195767e2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25363, "upload_time": "2017-09-25T11:48:41", "url": "https://files.pythonhosted.org/packages/54/c5/f6ef80eb3877b6255f5badbc2678f0abf70ad28c7d1e985f2308952bf597/schul_cloud_resources_server_tests-1.0.259-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11c1a34515c5d6e7f08f8f4e6736e03d", "sha256": "19cf7f0dbbcabe9ded818dac3c535a2809598995c91a1ed0b17983807d73cb36" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.259.tar.gz", "has_sig": false, "md5_digest": "11c1a34515c5d6e7f08f8f4e6736e03d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21410, "upload_time": "2017-09-25T11:48:43", "url": "https://files.pythonhosted.org/packages/14/ba/9d53fd517457de9415eaf6205060a83a08eb5bb71b3b91258a680d49ae03/schul_cloud_resources_server_tests-1.0.259.tar.gz" } ], "1.0.260": [ { "comment_text": "", "digests": { "md5": "d72415b9e6ff47af6947e988e194be0c", "sha256": "2b57a8471fb4cb6688b867ed6dbae988c7b3ff6b8a2296addc84d19c9a4825f2" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.260-py3-none-any.whl", "has_sig": false, "md5_digest": "d72415b9e6ff47af6947e988e194be0c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25362, "upload_time": "2017-09-25T11:55:00", "url": "https://files.pythonhosted.org/packages/47/78/852bd6063d45f02c6ff9a9b747dafffe12f8b83e5b9ec5ce9c297f9d017e/schul_cloud_resources_server_tests-1.0.260-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b17a84d95d77dd9116847fdc62793db4", "sha256": "ef97060148fddc4a1239892940100662ec5fcbc57425814944129b585d340407" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.260.tar.gz", "has_sig": false, "md5_digest": "b17a84d95d77dd9116847fdc62793db4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21409, "upload_time": "2017-09-25T11:55:02", "url": "https://files.pythonhosted.org/packages/72/c0/d93a4ae276507d414317ae1ed3e9969aebb1ce8815036b531a85bffaa2f7/schul_cloud_resources_server_tests-1.0.260.tar.gz" } ], "1.0.33": [ { "comment_text": "", "digests": { "md5": "67157280cdc71e070cd5f1184ec18b8d", "sha256": "43409a879bb9b1d00977577e3f5503b7b50b818e2d64edea8ec35bccf03cb164" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.33-py3-none-any.whl", "has_sig": false, "md5_digest": "67157280cdc71e070cd5f1184ec18b8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17661, "upload_time": "2017-05-08T12:17:43", "url": "https://files.pythonhosted.org/packages/0b/8f/4e2e897313842a8951c70e3191f08d63278e50deeac26dd027384332c966/schul_cloud_resources_server_tests-1.0.33-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f888285280ce17fa5ea61fdf14a0a24c", "sha256": "523813eed77fec5e1a00b935a88a6bc00cd89fd0d5017ea2c2fbc09698efc812" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.33.tar.gz", "has_sig": false, "md5_digest": "f888285280ce17fa5ea61fdf14a0a24c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13976, "upload_time": "2017-05-08T12:17:44", "url": "https://files.pythonhosted.org/packages/46/f6/1a044d531c9ae9e5d8bb318199e6ccd5c4f23b881cd612a2e64596adb603/schul_cloud_resources_server_tests-1.0.33.tar.gz" } ], "1.0.34": [ { "comment_text": "", "digests": { "md5": "06c5a6d881644fc812f67c61abe6862d", "sha256": "56c587e81cf2d4f12e7f228cd834a28802f429e7bd9fac995d433da5f38bb9d4" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.34-py3-none-any.whl", "has_sig": false, "md5_digest": "06c5a6d881644fc812f67c61abe6862d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18156, "upload_time": "2017-05-08T12:44:03", "url": "https://files.pythonhosted.org/packages/ea/10/e8082948a167ba42b24032266f09082d6a9ac98600b7daf20f958cdb8a06/schul_cloud_resources_server_tests-1.0.34-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e031bab01c8eb26b13b58a02f8046423", "sha256": "f8263117d3db62238ca223d53bf6d0fca068fb564bcc013dc63ecffc42ebba3d" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.34.tar.gz", "has_sig": false, "md5_digest": "e031bab01c8eb26b13b58a02f8046423", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14439, "upload_time": "2017-05-08T12:44:04", "url": "https://files.pythonhosted.org/packages/b7/c6/a95c5aef32027f1d774252fef513bf25db5811ae1a568dea25acefb42246/schul_cloud_resources_server_tests-1.0.34.tar.gz" } ], "1.0.348": [ { "comment_text": "", "digests": { "md5": "abb35b4df870a4f74190176cb4ca0628", "sha256": "5200d62493d470730958b2bd085b10608a9af26c9eef5da7831517e75a9436f5" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.348-py3-none-any.whl", "has_sig": false, "md5_digest": "abb35b4df870a4f74190176cb4ca0628", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25364, "upload_time": "2017-12-28T21:12:13", "url": "https://files.pythonhosted.org/packages/bc/c4/0e698c67441cd8f9e2d418f218a437b99805e53d5a41c6ab4994697715ae/schul_cloud_resources_server_tests-1.0.348-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a8f6e07a55fecb53c4e78323f8c1682", "sha256": "956c4902412aa4f35375f34cfc597098678bfb5baabc15ff8944bf79c4afd4f8" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.348.tar.gz", "has_sig": false, "md5_digest": "4a8f6e07a55fecb53c4e78323f8c1682", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21412, "upload_time": "2017-12-28T21:12:16", "url": "https://files.pythonhosted.org/packages/c4/ed/2432ef0d247b2100eb34db1c34290aad507285202529a17b22352164f4ed/schul_cloud_resources_server_tests-1.0.348.tar.gz" } ], "1.0.35": [ { "comment_text": "", "digests": { "md5": "9bbd6018eddb749260bbfb80267ff160", "sha256": "962b72fb4195e1403633b185424c2e4a28fadc10fadeff84eef1dd0c503ee342" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.35-py3-none-any.whl", "has_sig": false, "md5_digest": "9bbd6018eddb749260bbfb80267ff160", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18410, "upload_time": "2017-05-08T21:03:53", "url": "https://files.pythonhosted.org/packages/2d/e9/0973cffa5b80f29273e1e987a6218c2810af52e2d0a279e0035ce0597cd2/schul_cloud_resources_server_tests-1.0.35-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e13f221f7cc4d2fd01e8a0c6f22d5ce", "sha256": "64cc86de0c596684f51d6d74ec08dd2dff4b24bd1e70fc89a27f23c23baadc7d" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.35.tar.gz", "has_sig": false, "md5_digest": "1e13f221f7cc4d2fd01e8a0c6f22d5ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14651, "upload_time": "2017-05-08T21:03:54", "url": "https://files.pythonhosted.org/packages/71/d9/8d86fe360cf43c7dd1e1df739205c2e3d7c0f7a7d34802e54fd43e744fa4/schul_cloud_resources_server_tests-1.0.35.tar.gz" } ], "1.0.351": [ { "comment_text": "", "digests": { "md5": "78e6718fb889bbbc041082453acb283b", "sha256": "b7ae80beff417c93f4d43d23f4ea432dd0375856954789ddeb98b981596f9819" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.351-py3-none-any.whl", "has_sig": false, "md5_digest": "78e6718fb889bbbc041082453acb283b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25784, "upload_time": "2017-12-28T21:23:56", "url": "https://files.pythonhosted.org/packages/6f/2d/0de0a776ea029c3d23b807564a654e564d7ba85372a6cb696506cd79a32d/schul_cloud_resources_server_tests-1.0.351-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ace601dd21f72496ec910c920f2b1e2", "sha256": "b137f2d23824d93fbc090cfe8b62555023928fcbcec4eafa453ddafaad1089a6" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.351.tar.gz", "has_sig": false, "md5_digest": "9ace601dd21f72496ec910c920f2b1e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21866, "upload_time": "2017-12-28T21:23:58", "url": "https://files.pythonhosted.org/packages/32/9c/fab6d87c518f3a9c6cbba532622d0a22003c8a7a3ff8fc757d740232252a/schul_cloud_resources_server_tests-1.0.351.tar.gz" } ], "1.0.36": [ { "comment_text": "", "digests": { "md5": "729969cddd8ef194ec429683a33dfbd2", "sha256": "081468faa5a70812056b2a4d606227d1a971aa2547bd42cd5d85edb7016c5aa9" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.36-py3-none-any.whl", "has_sig": false, "md5_digest": "729969cddd8ef194ec429683a33dfbd2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18410, "upload_time": "2017-05-08T21:10:21", "url": "https://files.pythonhosted.org/packages/f4/df/326659b34f8488ef9f9b063de29036e3eb199751b809b96ed575232ecc80/schul_cloud_resources_server_tests-1.0.36-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "627ee29d3dfafe8f2b72d19c08afcca4", "sha256": "ed51c932dd75cd552f9274ebdc2461577f57845a2eaa9dccde706c746238c574" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.36.tar.gz", "has_sig": false, "md5_digest": "627ee29d3dfafe8f2b72d19c08afcca4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14655, "upload_time": "2017-05-08T21:10:23", "url": "https://files.pythonhosted.org/packages/59/17/5429a67e01a6d8a15448f26e77261b6ccec2117b5990aa5d22c858a49c1a/schul_cloud_resources_server_tests-1.0.36.tar.gz" } ], "1.0.38": [ { "comment_text": "", "digests": { "md5": "184d45f32cb27f8ef173b263b7b0c982", "sha256": "200acbc7465c03eb079b156751e6ab1d0c46aa375c607500c469c42816d6694b" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.38-py3-none-any.whl", "has_sig": false, "md5_digest": "184d45f32cb27f8ef173b263b7b0c982", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19708, "upload_time": "2017-05-09T09:39:10", "url": "https://files.pythonhosted.org/packages/69/fe/a23835adac63cf2204b291811275899412f3f1730ff9dd58cc6f28e85733/schul_cloud_resources_server_tests-1.0.38-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61996b7cccf6ee2121ebc2c305670e85", "sha256": "56b812603ff223e8a4d86cce6937a977b6d7a0b0055ec7e7e63136917cc8317c" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.38.tar.gz", "has_sig": false, "md5_digest": "61996b7cccf6ee2121ebc2c305670e85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15836, "upload_time": "2017-05-09T09:39:12", "url": "https://files.pythonhosted.org/packages/d4/ed/d777ca4bb815b910c6276665040ee1e972515d34d6c5b4a9fbfdfc5b85f2/schul_cloud_resources_server_tests-1.0.38.tar.gz" } ], "1.0.383": [ { "comment_text": "", "digests": { "md5": "d21646b72d75b7c0379e1ac7c708a91c", "sha256": "8f794ddbe472864d5ef2de48e240678ba5dae14de049fb8238681cbf92e88739" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.383-py3-none-any.whl", "has_sig": false, "md5_digest": "d21646b72d75b7c0379e1ac7c708a91c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25899, "upload_time": "2018-01-25T18:04:04", "url": "https://files.pythonhosted.org/packages/20/0c/31f01299f09f34095fa83611c0835c1b7d89a0161d5565cd6fe1ce5655a3/schul_cloud_resources_server_tests-1.0.383-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe9cbacc438fffbe4347adb9abd0a94e", "sha256": "2fc71ce47c2be4d3589033cfa467ccdee63bb37a02ee5bf60b746199e8130b14" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.383.tar.gz", "has_sig": false, "md5_digest": "fe9cbacc438fffbe4347adb9abd0a94e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21975, "upload_time": "2018-01-25T18:04:10", "url": "https://files.pythonhosted.org/packages/c0/af/d1c1c66da1aea1d048d1de40bd5a4e91ef41fe0bf0baa2074179b1687530/schul_cloud_resources_server_tests-1.0.383.tar.gz" } ], "1.0.387": [ { "comment_text": "", "digests": { "md5": "20f4f69f295d288f56b4222a98dba8d4", "sha256": "7735beb993628410d2395c372fd99459d8d68bd51a0998f4faa26b3f312aba8c" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.387-py3-none-any.whl", "has_sig": false, "md5_digest": "20f4f69f295d288f56b4222a98dba8d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25898, "upload_time": "2018-01-27T08:12:51", "url": "https://files.pythonhosted.org/packages/58/d8/3a62408a2c0abc821e83185ea03685913c4251c071a5969bcfd83199254e/schul_cloud_resources_server_tests-1.0.387-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68db049445cfe6f443ffe25588fb2494", "sha256": "94940d9fc319423a626c0c98b438e0295434d6d78da93cc7206f66773b13f6d0" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.387.tar.gz", "has_sig": false, "md5_digest": "68db049445cfe6f443ffe25588fb2494", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21971, "upload_time": "2018-01-27T08:12:52", "url": "https://files.pythonhosted.org/packages/19/67/2ff68d87369e11ea1f1e10de8c224ffa7c68ee36ca22db1f058a71aec903/schul_cloud_resources_server_tests-1.0.387.tar.gz" } ], "1.0.39": [ { "comment_text": "", "digests": { "md5": "dc019864f426a414a6cfe02624dad96d", "sha256": "c3d850071cfe010680755c8b8b49bfaafe8ea69b74b598ede07886b860253fae" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.39-py3-none-any.whl", "has_sig": false, "md5_digest": "dc019864f426a414a6cfe02624dad96d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20516, "upload_time": "2017-05-09T11:48:45", "url": "https://files.pythonhosted.org/packages/ca/41/f3facae8a18647f7a7731f54afb758ff299d094a6b9e4e41f4aea64b37f3/schul_cloud_resources_server_tests-1.0.39-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b28b862905cb32a31759b3dbdbe4ce89", "sha256": "7c54f9ca80de5035b00eb045ef06a61c054229c74b9d6c06eb0e86115d9a4cc3" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.39.tar.gz", "has_sig": false, "md5_digest": "b28b862905cb32a31759b3dbdbe4ce89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16613, "upload_time": "2017-05-09T11:48:47", "url": "https://files.pythonhosted.org/packages/9d/ee/5fb1e347db188c22b12de9410fc8e894e095508466eaf96678e3dfaac643/schul_cloud_resources_server_tests-1.0.39.tar.gz" } ], "1.0.40": [ { "comment_text": "", "digests": { "md5": "adfa4b61bb49685721d50c0885768a3d", "sha256": "31ffe8dd2f07bc30e14c96178aeb5da79341cdf89e99ee8e686471cd3dee7d8c" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.40-py3-none-any.whl", "has_sig": false, "md5_digest": "adfa4b61bb49685721d50c0885768a3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22370, "upload_time": "2017-05-09T12:23:05", "url": "https://files.pythonhosted.org/packages/f4/2e/28e36089ad1b852cd59435f0977a1afe18e3e7e60286d02f3e933f1731d8/schul_cloud_resources_server_tests-1.0.40-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0d77314bd82da798431d4c577ce4e74", "sha256": "001f3d1c9828e384ee68c01850f0fbbf37f7a3fcfda4f6d2e27c76e4b28997c4" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.40.tar.gz", "has_sig": false, "md5_digest": "b0d77314bd82da798431d4c577ce4e74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18421, "upload_time": "2017-05-09T12:23:06", "url": "https://files.pythonhosted.org/packages/f4/17/af4ff569905d1deea0420a1fb80dee541ed1bc2b5e296173c2e93d86f1ba/schul_cloud_resources_server_tests-1.0.40.tar.gz" } ], "1.0.41": [ { "comment_text": "", "digests": { "md5": "479bdad2e39212aeaeb296ec938cf67f", "sha256": "fef07b648b5624d5e1cc16c760ff88738fae6dfb04d445309cc133f7a61caf86" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.41-py3-none-any.whl", "has_sig": false, "md5_digest": "479bdad2e39212aeaeb296ec938cf67f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22590, "upload_time": "2017-05-09T18:38:55", "url": "https://files.pythonhosted.org/packages/f8/4f/fd830842d3195f47d31d950aa13cfd0805f0726ae727ad263fa30b1ce58b/schul_cloud_resources_server_tests-1.0.41-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c392547e18a076398fe6dbc246d95e08", "sha256": "b3338199040a31bc2697fea4fc3b2db9446498850a5a69e953db5dbca270eeb7" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.41.tar.gz", "has_sig": false, "md5_digest": "c392547e18a076398fe6dbc246d95e08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18617, "upload_time": "2017-05-09T18:38:57", "url": "https://files.pythonhosted.org/packages/93/d0/8a07bf61154a5248f93fa54904fcfd210bd05bbe7298d5e3f1660a92e8ac/schul_cloud_resources_server_tests-1.0.41.tar.gz" } ], "1.0.42": [ { "comment_text": "", "digests": { "md5": "a03be49be6581a4248c7a7ea52a5c1e6", "sha256": "27a14a3bb031ea17aedd819e309543a34b8286e39258faa5cb906d31e96507fb" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.42-py3-none-any.whl", "has_sig": false, "md5_digest": "a03be49be6581a4248c7a7ea52a5c1e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22616, "upload_time": "2017-05-09T18:43:54", "url": "https://files.pythonhosted.org/packages/65/46/77349ba2508aa9947cbbff61fb92ceb58760dffa8756846148b792473b15/schul_cloud_resources_server_tests-1.0.42-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "76542868150208847f4ce2ab2833ec2e", "sha256": "c59f8f60c834d4576bedca567eee38ca0f16b6b3c5e428b215955e492e5d7ac3" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.42.tar.gz", "has_sig": false, "md5_digest": "76542868150208847f4ce2ab2833ec2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18622, "upload_time": "2017-05-09T18:43:55", "url": "https://files.pythonhosted.org/packages/3b/27/fbac930b2345aa37601f0b4cb13b92c6423f23a19e1885e31b103f5fd3fa/schul_cloud_resources_server_tests-1.0.42.tar.gz" } ], "1.0.43": [ { "comment_text": "", "digests": { "md5": "6ec574f101ee7b557e609b39b8bf1b2d", "sha256": "003d839fab1beaafed8cddea653ea4753abafd305b888e57b981ad919f831c27" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.43-py3-none-any.whl", "has_sig": false, "md5_digest": "6ec574f101ee7b557e609b39b8bf1b2d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22618, "upload_time": "2017-05-09T18:53:29", "url": "https://files.pythonhosted.org/packages/7e/f4/963e843ad2dac7836b2ab7e5d5e1e9d3a960d37c57951f186a669c089808/schul_cloud_resources_server_tests-1.0.43-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "766c206969695fe92f79491b2e5b3b06", "sha256": "fa3690f760b24f4fd81a6b82914bfdfbd71186cd8bc024bd9e61ea237c317206" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.43.tar.gz", "has_sig": false, "md5_digest": "766c206969695fe92f79491b2e5b3b06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18625, "upload_time": "2017-05-09T18:53:31", "url": "https://files.pythonhosted.org/packages/58/c8/40be8d4ee385099a48a3e116429009b3a8b995b611a96507eb2dd3b1f7c6/schul_cloud_resources_server_tests-1.0.43.tar.gz" } ], "1.0.44": [ { "comment_text": "", "digests": { "md5": "130befbaaeda0dca5e713c390f934f2a", "sha256": "ed86b2388c2e6d35d7e64d0cdef8172304260e99a3a09d6f1f9ab57754390b5b" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.44-py3-none-any.whl", "has_sig": false, "md5_digest": "130befbaaeda0dca5e713c390f934f2a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22629, "upload_time": "2017-05-09T19:02:57", "url": "https://files.pythonhosted.org/packages/20/9d/51a06bdbdd9d53ac1648d8d339539ec77707d011f5a5e7ecd48e624a4197/schul_cloud_resources_server_tests-1.0.44-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2a195a882aee7952d0fa5fd2b7ac309", "sha256": "16df3ed102a1e265b5e9dce675e9d7fc4a9ed0919371398493eab4d740a3d447" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.44.tar.gz", "has_sig": false, "md5_digest": "d2a195a882aee7952d0fa5fd2b7ac309", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18635, "upload_time": "2017-05-09T19:02:58", "url": "https://files.pythonhosted.org/packages/51/4b/0de6f349b1213aec522ec6c1adb5832fa969b829a4f99c73582f1305ed3c/schul_cloud_resources_server_tests-1.0.44.tar.gz" } ], "1.0.46": [ { "comment_text": "", "digests": { "md5": "320ed3e7ffbef5a9ad495a6395ce3ca3", "sha256": "92c5cae4508ded3525e788fe2222e4aa6519317ef73ad0ed6cdfae4781b61de8" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.46-py3-none-any.whl", "has_sig": false, "md5_digest": "320ed3e7ffbef5a9ad495a6395ce3ca3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22672, "upload_time": "2017-05-10T07:40:40", "url": "https://files.pythonhosted.org/packages/d1/6f/0e00b5fda0a9a3e99516565cbaaec36580c6d7e483cc9de65a14f308f82a/schul_cloud_resources_server_tests-1.0.46-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d68bff7e85396880cb5d24c0893d1f24", "sha256": "9d8cba1c14891fb841ad003f1ac331f1b900ae1a7f235c4469ab613e73237f68" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.46.tar.gz", "has_sig": false, "md5_digest": "d68bff7e85396880cb5d24c0893d1f24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18663, "upload_time": "2017-05-10T07:40:43", "url": "https://files.pythonhosted.org/packages/1d/20/a47fed7ecf43b8dedc86418bf952dc9f0f487b3b465d8d3b552e993a2d57/schul_cloud_resources_server_tests-1.0.46.tar.gz" } ], "1.0.50": [ { "comment_text": "", "digests": { "md5": "5a03c290e0b5ad0822a0adad4350beae", "sha256": "cc01a984e3cf72359196553dcb7499d3e758c8ada41a1367a185fd4c1b6ed9cc" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.50-py3-none-any.whl", "has_sig": false, "md5_digest": "5a03c290e0b5ad0822a0adad4350beae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22580, "upload_time": "2017-05-14T13:01:24", "url": "https://files.pythonhosted.org/packages/a1/24/cc8fd31647447d36ec5caf314b1f9857aa6b82391c2e5e3d6e9f11089037/schul_cloud_resources_server_tests-1.0.50-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ad4516c826f3e1241a11feca77eb0e9", "sha256": "dfbe928a1aa5354617101fa7df22c589a93f110cd573ebabf3fed09904382d28" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.50.tar.gz", "has_sig": false, "md5_digest": "8ad4516c826f3e1241a11feca77eb0e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18556, "upload_time": "2017-05-14T13:01:25", "url": "https://files.pythonhosted.org/packages/9a/0a/2c190fc4ad7f07d6bfab18ce9b7bc382324771c8ad48770cf2c4be2cd3a8/schul_cloud_resources_server_tests-1.0.50.tar.gz" } ], "1.0.57": [ { "comment_text": "", "digests": { "md5": "a001d9dfb46cd91d1fa5428aa5685af0", "sha256": "04fe1d632e31454f960e86683c8320861ea18cbf8cab0c01ecb75469970e9df1" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.57-py3-none-any.whl", "has_sig": false, "md5_digest": "a001d9dfb46cd91d1fa5428aa5685af0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22597, "upload_time": "2017-05-14T14:27:36", "url": "https://files.pythonhosted.org/packages/f6/5c/6960503f9d3c1d16f1924dab0672ec661352eeb070ce784e812638332c9d/schul_cloud_resources_server_tests-1.0.57-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9c9c7d0638856098266787a7b032481", "sha256": "0653949ad6ded73456dc1458e9272a8212812fa2b8ee68dfa0329bc20a39eb96" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.57.tar.gz", "has_sig": false, "md5_digest": "f9c9c7d0638856098266787a7b032481", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18547, "upload_time": "2017-05-14T14:27:37", "url": "https://files.pythonhosted.org/packages/db/1c/9af5847654bbd458fc610447549e035b80fb9acc7304df4c90545b5baeee/schul_cloud_resources_server_tests-1.0.57.tar.gz" } ], "1.0.68": [ { "comment_text": "", "digests": { "md5": "a86b1e8b75d922ae1d68d919b43bc3a5", "sha256": "97fd9ddc5a76ff2ee207be3a863585e750a7c0f93bd686cd1a5aa2cb34c8b090" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.68-py3-none-any.whl", "has_sig": false, "md5_digest": "a86b1e8b75d922ae1d68d919b43bc3a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22595, "upload_time": "2017-05-14T14:54:59", "url": "https://files.pythonhosted.org/packages/1f/f1/bda421f8b300b0bc14143924c6c95ddeb5c06d9122eb4581d740d8cfaecd/schul_cloud_resources_server_tests-1.0.68-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bac6992ade7c16a356b22e75c9892fd2", "sha256": "82828de956f1bfa8a6e0e9a9127fdf24b11de239deada50ea42c6b0f060d07ac" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.68.tar.gz", "has_sig": false, "md5_digest": "bac6992ade7c16a356b22e75c9892fd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18555, "upload_time": "2017-05-14T14:55:00", "url": "https://files.pythonhosted.org/packages/68/d9/949da1785b44ce90b8ca7383df72ef74fa2aa4830ba3dfb073c624357915/schul_cloud_resources_server_tests-1.0.68.tar.gz" } ], "1.0.76": [ { "comment_text": "", "digests": { "md5": "088a3f95b0f47967715c9d8bc0af9c30", "sha256": "b401e52543140f80954eefc8a11bccbe0515ee40d2cae336acb2ef7271a5a37b" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.76-py3-none-any.whl", "has_sig": false, "md5_digest": "088a3f95b0f47967715c9d8bc0af9c30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22779, "upload_time": "2017-05-16T09:10:06", "url": "https://files.pythonhosted.org/packages/20/f4/191d9d76ae1cb6d73bef28de7e72e58899680018274826e04ade0434e097/schul_cloud_resources_server_tests-1.0.76-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb045b32ea05e2f538a256ea9d58ed5f", "sha256": "e089d14121af45e2d626f5f2fabe05fd8f45b5f14d738b2a9a1e19854476c100" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.76.tar.gz", "has_sig": false, "md5_digest": "bb045b32ea05e2f538a256ea9d58ed5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18763, "upload_time": "2017-05-16T09:10:08", "url": "https://files.pythonhosted.org/packages/cd/b0/739f394f741bd20eb9308371e951dd769d475b932b2f1afacebd36d53456/schul_cloud_resources_server_tests-1.0.76.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "20f4f69f295d288f56b4222a98dba8d4", "sha256": "7735beb993628410d2395c372fd99459d8d68bd51a0998f4faa26b3f312aba8c" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.387-py3-none-any.whl", "has_sig": false, "md5_digest": "20f4f69f295d288f56b4222a98dba8d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25898, "upload_time": "2018-01-27T08:12:51", "url": "https://files.pythonhosted.org/packages/58/d8/3a62408a2c0abc821e83185ea03685913c4251c071a5969bcfd83199254e/schul_cloud_resources_server_tests-1.0.387-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68db049445cfe6f443ffe25588fb2494", "sha256": "94940d9fc319423a626c0c98b438e0295434d6d78da93cc7206f66773b13f6d0" }, "downloads": -1, "filename": "schul_cloud_resources_server_tests-1.0.387.tar.gz", "has_sig": false, "md5_digest": "68db049445cfe6f443ffe25588fb2494", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21971, "upload_time": "2018-01-27T08:12:52", "url": "https://files.pythonhosted.org/packages/19/67/2ff68d87369e11ea1f1e10de8c224ffa7c68ee36ca22db1f058a71aec903/schul_cloud_resources_server_tests-1.0.387.tar.gz" } ] }