{ "info": { "author": "Ryan P Kilby", "author_email": "rpkilby@ncsu.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "SurveyGizmo\n===========\n\nA Python Wrapper for\n`SurveyGizmo `__'s mostly restful\nAPI service.\n\n|Build Status| |codecov|\n\nRequirements\n------------\n\n- **python**: 2.7, 3.4, 3.5, 3.6\n\nInstallation\n------------\n\n.. code:: sh\n\n $ pip install SurveyGizmo\n\nUsage\n-----\n\nStart by instantiating the SurveyGizmo object and providing some\nconfiguration parameters. Options can also be set through the ``config``\nproperty.\n\n.. code:: python\n\n from surveygizmo import SurveyGizmo\n\n client = SurveyGizmo(\n api_version='v4'\n\n # example token from SurveyGizmo docs\n api_token = \"E4F796932C2743FEBF150B421BE15EB9\"\n api_token_secret = \"A9fGMkJ5pJF1k\"\n )\n\n # Update client options through the config property.\n client.config.api_token = \"E4F796932C2743FEBF150B421BE15EB9\"\n client.config.api_token_secret = \"A9fGMkJ5pJF1k\"\n\nCalls to the api are by object type then by function. For example,\n\n.. code:: python\n\n client.api.survey.list()\n client.api.survey.get('39501')\n client.api.survey.copy('39501', 'New title boop')\n client.api.surveyresponse.list('39501')\n\nMost resources have the list, get, create, update, copy, and delete\nactions. If SurveyGizmo's REST API does not implement an action, the\nclient will raise a ``NotImplementedError``.\n\nAuthentication\n--------------\n\nToken based authentication is the only currently supported\nauthentication method. ``user:pass`` and ``user:md5`` were\n`deprecated `__\non May 31, 2016. Oauth support is not currently a goal, but pull\nrequests are welcome.\n\ntoken\n~~~~~\n\n.. code:: python\n\n client.config.api_token = 'E4F796932C2743FEBF150B421BE15EB9'\n client.config.api_token_secret = 'A9fGMkJ5pJF1k'\n\nAPI Filtering\n-------------\n\nSurveyGizmo's API supports filtering for ``list`` calls on surveys,\nsurvey campaigns, and survey responses. For more information, reference\nthe SurveyGizmo `filter\ndocumentation `__.\n\nThe filtering implementation contains no real magic and is simply a\nconvenience wrapper around the awkward filtering semantics. There is no\nenforcement of which resources can perform filtering or what types of\nproperties are being filtered for a resource.\n\nTo filter, simply\n\n.. code:: python\n\n filtered = client.api.surveyresponse.filter('datesubmitted', '<=', '2013-07-01')\n filtered.list('39501')\n\nFiltering is also chainable.\n\n.. code:: python\n\n client.api.survey.filter('createdon', '<=', '2013-04-01').list()\n ...\n\n client.api.surveyresponse \\\n .filter('datesubmitted', '<=', '2013-07-01') \\\n .filter('datesubmitted', '>', '2013-06-01') \\\n .list('39501')\n\nConfig paramaters\n-----------------\n\n- **api\\_version** - 'v3', 'v4', 'head'. Defaults to 'head'\n- **api\\_token**\n- **api\\_token\\_secret**\n- **response\\_type** - ``None``, ``'json'``, ``'pson'``, ``'xml'``,\n ``'debug'``. By default (using ``None``), the API returns a JSON\n response which is parsed by the client into a python dictionary.\n Specifying a ``response_type`` will return an unparsed body of the\n specified format.\n- **requests\\_kwargs** - Additional arguments passed to\n ``requests.get``. Useful for setting timeouts and otherwise\n configuring the requests library.\n- **prepare\\_url** - Force the client to return the url after being\n prepared instead of executing the api call. This is useful in cases\n where you need to call the api asynchronously. Defaults to 'False'\n- **handler52x** - Handler for CloudFlare's 52x errors. Expects a\n callable (e.g., ``surveygizmo.default_52xhandler``). Defaults to\n 'None'.\n\nCloudFlare 52x Errors\n---------------------\n\nAfter SurveyGizmo's move to CloudFlare, it isn't uncommon to see\nconnectivity issues where the service is temporarily unreachable. These\nerrors exist on the 52x range of HTTP status codes. To automatically\nhandle 52x errors, set a callable for ``config.handler52x``. A basic\nhandler is provided under ``surveygizmo.default_52xhandler``, which\nsimply retries the request every second until a non-52x response is\nreturned.\n\nAPI Resources\n-------------\n\n- `api.account `__\n- `api.accountteams `__\n- `api.accountuser `__\n- `api.contact `__\n- `api.contactlist `__\n- `api.emailmessage `__\n- `api.survey `__\n- `api.surveycampaign `__\n- `api.surveyoption `__\n- `api.surveypage `__\n- `api.surveyquestion `__\n- `api.surveyreport `__\n- `api.surveyresponse `__\n- `api.surveystatistic `__\n\nChangelog\n---------\n\n1.2.3\n~~~~~\n\n- .. rubric:: 21 Make the 'base\\_url' configurable.\n :name: make-the-base_url-configurable.\n\n- Drop explicit python 3.3 support.\n\n1.2.2\n~~~~~\n\n- .. rubric:: 17 Added basic pagination support. Thanks @WesleyBatista!\n :name: added-basic-pagination-support.-thanks-wesleybatista\n\n1.2.1\n~~~~~\n\n- Added ``_prepare_url`` argument to API calls that overrides the\n configured setting for ``prepare_url``.\n\n1.2.0\n~~~~~\n\n- Reimplmented API import as metaclass.\n- Reimplemented filtering, removed race condition.\n\n1.1.0\n~~~~~\n\n- Added required parameters various API calls (mostly create).\n\n1.0.0\n~~~~~\n\n1.0.0 is a reimplementation of the entire API. Tests have been added and\nthe package is basically stable.\n\n- Replace all authentication methods with only token based\n authentication.\n- Rewrite API to use class inheritance instead of module function\n wrapping.\n- Remove ``preserve_filters`` option.\n- Rename ``add_filter`` to just ``filter``. Filters are chainable.\n\n0.2.0\n~~~~~\n\n0.2.0 is a forwards incompatible release, but only minorly so.\n\nForwards incompatible changes:\n\n- Renamed the 'change' operations to 'update'. This is consistent with\n SurveyGizmo's API naming.\n- Removed the 'keep' kwarg for preserving filters bettween api funcion\n calls. This is now configured with 'preserve\\_filters'. Filters are\n now cleared manually with ``api.clear_filters()``\n- Removed the undocumented 'url\\_fetch' kwarg, which prevented api\n execution and instead returned the prepared url.\n\nBackwards incompatible changes:\n\n- Modified 'api\\_version' to no longer has any effect on the client.\n SurveyGizmo provides no way to meaningfully differentiate between API\n versions, so this checking was unneeded and created code duplication\n- Added 'prepare\\_url' as a replacement for 'url\\_fetch'. This forces\n the client to return the url after being prepared instead of\n executing the api call. This is useful in cases where you need to\n call the api asynchronously.\n- Added 'requests\\_kwargs'. These are additional arguments passed to\n ``requests.get``. Useful for setting timeouts and otherwise\n configuring the requests library.\n- Added handling for CloudFlare 52x errors\n\nRelease Process\n---------------\n\n- Update package version in ``setup.py``\n- Create git tag for version\n- Upload release to PyPI\n\n .. code:: bash\n\n $ pip install -U pypandoc setuptools wheel\n $ rm -rf dist/ build/\n $ python setup.py sdist bdist_wheel upload\n\nCopyright & License\n-------------------\n\nCopyright \u00a9 2013-2016 NC State University. See LICENSE for details.\n\n.. |Build Status| image:: https://travis-ci.org/ITNG/SurveyGizmo.svg?branch=master\n :target: https://travis-ci.org/ITNG/SurveyGizmo\n.. |codecov| image:: https://codecov.io/gh/ITNG/SurveyGizmo/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/ITNG/SurveyGizmo\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/ITNG/SurveyGizmo/", "keywords": "Survey Gizmo SurveyGizmo surveygizmo", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "SurveyGizmo", "package_url": "https://pypi.org/project/SurveyGizmo/", "platform": "", "project_url": "https://pypi.org/project/SurveyGizmo/", "project_urls": { "Homepage": "https://github.com/ITNG/SurveyGizmo/" }, "release_url": "https://pypi.org/project/SurveyGizmo/1.2.3/", "requires_dist": null, "requires_python": "", "summary": "A Python Wrapper for SurveyGizmo's restful API service.", "version": "1.2.3" }, "last_serial": 3219240, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "eb796535914ffb4b57070cce8c88c142", "sha256": "4e3342cc5c360fc8b06ee61763cd0553f6f85d30a0c42b8fd29bcada35a4684b" }, "downloads": -1, "filename": "SurveyGizmo-0.0.1.linux-i686.exe", "has_sig": false, "md5_digest": "eb796535914ffb4b57070cce8c88c142", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 67714, "upload_time": "2013-06-30T01:54:48", "url": "https://files.pythonhosted.org/packages/4d/d0/8c20b8f23790b2bbcc60a662b0fe1acaa2d6255995cbcd2c273f4e7d4512/SurveyGizmo-0.0.1.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "1a38aa5d190a94ab3c2a3e40a753bd34", "sha256": "baf55144d8e6ed7df6c55abb211f226d3c1d60804107ebbc2fecd625a528ac70" }, "downloads": -1, "filename": "SurveyGizmo-0.0.1.tar.gz", "has_sig": false, "md5_digest": "1a38aa5d190a94ab3c2a3e40a753bd34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5372, "upload_time": "2013-06-30T01:54:45", "url": "https://files.pythonhosted.org/packages/ca/55/1645dcf2c7b15c36a5bf23ccd82a056b3854b5af176f31f188ff506e7721/SurveyGizmo-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "0f258fa30db1f4b8b3152ef58fa398b6", "sha256": "2ffd655c759e367b53ec484fd99d945a819f5ede627774e50b1e39c1fc128bc2" }, "downloads": -1, "filename": "SurveyGizmo-0.0.2.linux-i686.exe", "has_sig": false, "md5_digest": "0f258fa30db1f4b8b3152ef58fa398b6", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 69083, "upload_time": "2013-07-01T20:03:08", "url": "https://files.pythonhosted.org/packages/c2/29/c415623c94b6408887f15b0465295bf86e01391d97b94d2097df5565e172/SurveyGizmo-0.0.2.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "58837f67ef2e56d290d3106d65113321", "sha256": "a9b6b44b6d8780c6a278e79f3f6ff76c32c424d387a54e4260724a21caefb452" }, "downloads": -1, "filename": "SurveyGizmo-0.0.2.tar.gz", "has_sig": false, "md5_digest": "58837f67ef2e56d290d3106d65113321", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5789, "upload_time": "2013-07-01T20:03:02", "url": "https://files.pythonhosted.org/packages/97/6a/1d8e9b548f19dab48b4dc4a414a2d0b9a6cb76b12fe8768398accdbdcc55/SurveyGizmo-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "00fc61eb3506c88c61c55bd7907e34af", "sha256": "05e9ff6b4f3944ac43f7f853fe2fc8eef9acdeab4a9397f09217b1e813905a4f" }, "downloads": -1, "filename": "SurveyGizmo-0.0.3.linux-i686.exe", "has_sig": false, "md5_digest": "00fc61eb3506c88c61c55bd7907e34af", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 76307, "upload_time": "2013-07-03T18:04:48", "url": "https://files.pythonhosted.org/packages/f9/5d/646b8df098de2c8ee72ffcf3a211f94c014091849ca4df3a28e0d488c73a/SurveyGizmo-0.0.3.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "50fd52e5b99ad6702ba4b3f1a116bd69", "sha256": "44d9b64a688e1bc968d20d9f1b8489ccb63b8816ce1aa29d0f671f638d333cb4" }, "downloads": -1, "filename": "SurveyGizmo-0.0.3.tar.gz", "has_sig": false, "md5_digest": "50fd52e5b99ad6702ba4b3f1a116bd69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9932, "upload_time": "2013-07-03T18:04:45", "url": "https://files.pythonhosted.org/packages/f1/b0/6cac364582b4e2b54cc9fe12287f17bf651f0ccf10af3f17dc577ceebe31/SurveyGizmo-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "0e0403550a9954123ef6412454dcacf1", "sha256": "758f1078ffae2ff9f435838117eabcf213922a5934ffd5ea9b2c1b2456eb3eaa" }, "downloads": -1, "filename": "SurveyGizmo-0.0.4.linux-i686.exe", "has_sig": false, "md5_digest": "0e0403550a9954123ef6412454dcacf1", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 76330, "upload_time": "2013-07-03T21:07:22", "url": "https://files.pythonhosted.org/packages/f2/80/5d8aa0222237f927cc4cfcdc44564f0d31002ac851ba1611531c90a26df5/SurveyGizmo-0.0.4.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "1d06e9bc122b7edf154c83a077781eae", "sha256": "b7a8d4a402453cb606f847a4c9f378da730877c775bbfa6c3e3734b84d39ec72" }, "downloads": -1, "filename": "SurveyGizmo-0.0.4.tar.gz", "has_sig": false, "md5_digest": "1d06e9bc122b7edf154c83a077781eae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9950, "upload_time": "2013-07-03T21:07:19", "url": "https://files.pythonhosted.org/packages/d3/c9/1cafd16cbc71063cd3ad2efda2a1fc2492cca555ca77e3cb6da417f03b78/SurveyGizmo-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "a2397841785c9a7f21cb1f76c241239b", "sha256": "35377f19fb990669f13df9effa00379e9ac685976442294bc20ed8c424f7edad" }, "downloads": -1, "filename": "SurveyGizmo-0.0.5.linux-i686.exe", "has_sig": false, "md5_digest": "a2397841785c9a7f21cb1f76c241239b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 79374, "upload_time": "2013-07-05T19:01:04", "url": "https://files.pythonhosted.org/packages/e7/7b/77650846d0204446b77273820ac99d5721bf3a379e5034281c61b7e1c2c7/SurveyGizmo-0.0.5.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "3c88044bfe8d517f956d7ab61ecba61a", "sha256": "beb9c36feee923eaee47bceadb8005a0599ae0f1960d801dc1b2f6a3923bd0b8" }, "downloads": -1, "filename": "SurveyGizmo-0.0.5.tar.gz", "has_sig": false, "md5_digest": "3c88044bfe8d517f956d7ab61ecba61a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11513, "upload_time": "2013-07-05T19:00:45", "url": "https://files.pythonhosted.org/packages/2d/4a/0d85a5451acbb42776e4c374bfc1b1fea536e6fe7c61c5ec420bd8c3e27c/SurveyGizmo-0.0.5.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "03de51264cab27d392d53afe6653a875", "sha256": "525fb52a02f9c0afda545dc5cff98020f7fe3cf0e58c0d3f5dfd118cf7037631" }, "downloads": -1, "filename": "SurveyGizmo-0.1.0.linux-i686.exe", "has_sig": false, "md5_digest": "03de51264cab27d392d53afe6653a875", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 79373, "upload_time": "2013-07-09T19:04:19", "url": "https://files.pythonhosted.org/packages/52/24/d7f4128d75bdffb17870192f799baecb85e67321f16c7f7ccca5c4f3da19/SurveyGizmo-0.1.0.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "3c4dbd260b2009472ff26d7c5a0e9867", "sha256": "ed4b590c4f0406846351b2e571a44c0f576f5d5b683309a187c7c988d6e829a9" }, "downloads": -1, "filename": "SurveyGizmo-0.1.0.tar.gz", "has_sig": false, "md5_digest": "3c4dbd260b2009472ff26d7c5a0e9867", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11517, "upload_time": "2013-07-09T19:04:05", "url": "https://files.pythonhosted.org/packages/5a/d1/60837c69f6b7c2c7215cb9a9adb5301a56a3038146fe936385e3f818d23e/SurveyGizmo-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "110eb643395327fd04055a64e795f75b", "sha256": "b4a98696c79a5cfac7b287e5b167eb1165d5de44e26a113756f42a263475e61c" }, "downloads": -1, "filename": "SurveyGizmo-0.1.1.linux-i686.exe", "has_sig": false, "md5_digest": "110eb643395327fd04055a64e795f75b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 79393, "upload_time": "2013-07-11T01:14:38", "url": "https://files.pythonhosted.org/packages/e6/14/62471501a60bf3c0105771188fdf31ab68ce92ce19f3f2628a9ffdb81fb1/SurveyGizmo-0.1.1.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "5ea4d935a21ec318e0f3a630abf917e6", "sha256": "3b64b2dec2962befeafbce5b006abd385fccea25de95b04f59ae37d8fbff4454" }, "downloads": -1, "filename": "SurveyGizmo-0.1.1.tar.gz", "has_sig": false, "md5_digest": "5ea4d935a21ec318e0f3a630abf917e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11563, "upload_time": "2013-07-11T01:14:29", "url": "https://files.pythonhosted.org/packages/03/b1/05d877d88d20a870b83debc3a4302bbc221895a9e22e6b99112a49f2b18f/SurveyGizmo-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "eb0ea607435ae6bff8e089ee563b3ce1", "sha256": "1945e040f79b7db328d522b49951faa33deffd7e0487cd53f6d2f67c4ec7603f" }, "downloads": -1, "filename": "SurveyGizmo-0.1.2.linux-i686.exe", "has_sig": false, "md5_digest": "eb0ea607435ae6bff8e089ee563b3ce1", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 78934, "upload_time": "2013-07-24T19:35:05", "url": "https://files.pythonhosted.org/packages/34/e0/7b0e2902f36ed20a6177e028ce691a8f6927337c4adab7a260566c0b2c75/SurveyGizmo-0.1.2.linux-i686.exe" }, { "comment_text": "", "digests": { "md5": "31fe7691852a391b15d976b3808b8cdf", "sha256": "07be49f6c60d56dc43169b8d424e49e413f348e95433971361639ba185e39237" }, "downloads": -1, "filename": "SurveyGizmo-0.1.2.tar.gz", "has_sig": false, "md5_digest": "31fe7691852a391b15d976b3808b8cdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10108, "upload_time": "2013-07-24T19:34:35", "url": "https://files.pythonhosted.org/packages/53/a4/6a1377367d13e70cb7297568ec9b4a89558e9082ce5636eb89106b93bd7d/SurveyGizmo-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "ed02f8b2c5454631179d4abc2cbe2cc7", "sha256": "a8d0461aac67c4e6a7b57abd6e940015be8912214052f9f8f90b3957c29495f6" }, "downloads": -1, "filename": "SurveyGizmo-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ed02f8b2c5454631179d4abc2cbe2cc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13694, "upload_time": "2014-08-17T20:57:49", "url": "https://files.pythonhosted.org/packages/56/e4/b2274a4e404554aec130864554c3d52ade39ce7b2809972fa4d41f1494df/SurveyGizmo-0.2.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "d721e9bfd1c469547acd8474b449dd8a", "sha256": "17940ad87b0ea032fca3035446ff092d633d3a5bb36325632050c2b6d60b27f3" }, "downloads": -1, "filename": "SurveyGizmo-1.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d721e9bfd1c469547acd8474b449dd8a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17715, "upload_time": "2016-06-11T11:18:13", "url": "https://files.pythonhosted.org/packages/eb/8e/877f4e75ec6957020dc29b2fd2edb5da68a410881f1091b2a682d15d5e43/SurveyGizmo-1.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "165bfd7a9a989593201048e77a6751f0", "sha256": "6603efd0844dc0b48a21a8783fd6e0195e2952fd8f23db24bc9a58b6215589f2" }, "downloads": -1, "filename": "SurveyGizmo-1.0.0.tar.gz", "has_sig": false, "md5_digest": "165bfd7a9a989593201048e77a6751f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12405, "upload_time": "2016-06-11T11:18:09", "url": "https://files.pythonhosted.org/packages/3c/34/2e816d0378532cb37565fbaa694cea37c8990ee73aef9d331b920f8cd674/SurveyGizmo-1.0.0.tar.gz" } ], "1.0.0.post1": [ { "comment_text": "", "digests": { "md5": "a4f20f9bc845602a4cefe4ad6b00426f", "sha256": "ab40dcb70d64979df0b80aeb12ef02258364cd0f3e8f3c40d061d394f219e6fc" }, "downloads": -1, "filename": "SurveyGizmo-1.0.0.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4f20f9bc845602a4cefe4ad6b00426f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17901, "upload_time": "2016-06-11T11:28:43", "url": "https://files.pythonhosted.org/packages/eb/54/b8fa4fe4ea3ad8ed1c7a5b0e4bf78670adf17321e3eb75e81b7b50b35a10/SurveyGizmo-1.0.0.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f87ddf3a8830b770b01573f5125d105", "sha256": "45b908e4ce91cc2ceef312aa20de71531b6ce2d7e6ad075eeabbf11076393a56" }, "downloads": -1, "filename": "SurveyGizmo-1.0.0.post1.tar.gz", "has_sig": false, "md5_digest": "0f87ddf3a8830b770b01573f5125d105", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12558, "upload_time": "2016-06-11T11:28:38", "url": "https://files.pythonhosted.org/packages/e2/b4/0d55a6f2cc2b5f9bf1fe8473dcf5a0dcca7d27e8225951ca8a829d72fd21/SurveyGizmo-1.0.0.post1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "746dd09499cdd3503319d68dbf4b8b8a", "sha256": "a7e41c0db1503c23c8d0157ed55d343f6a179a463b19283bf442e51244bbfffc" }, "downloads": -1, "filename": "SurveyGizmo-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "746dd09499cdd3503319d68dbf4b8b8a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19479, "upload_time": "2016-06-11T21:55:08", "url": "https://files.pythonhosted.org/packages/68/f6/a4941ff8a8fb314b50f0245af5fff43fb581bae259b83483ba3cf4dff093/SurveyGizmo-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b4272ecb9ac3fd5c5d64230034bb385", "sha256": "1ef0d9665e07c65fec5c30a1eb07adfa6afba341163d09fd6a47a91dd9ca10c4" }, "downloads": -1, "filename": "SurveyGizmo-1.1.0.tar.gz", "has_sig": false, "md5_digest": "2b4272ecb9ac3fd5c5d64230034bb385", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14349, "upload_time": "2016-06-11T21:55:04", "url": "https://files.pythonhosted.org/packages/97/e3/7231cfd24ed0293dd2d0341e9ec3733a303dd9bca4db11ce29362717ce57/SurveyGizmo-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3ac6d00ff85464bd0ac91fb2c45d8f39", "sha256": "eb9e7f8a2830a1e67dccb638faaa6263b0d6971a3b95d478f9ac7969687e6f71" }, "downloads": -1, "filename": "SurveyGizmo-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ac6d00ff85464bd0ac91fb2c45d8f39", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22602, "upload_time": "2016-06-12T04:10:19", "url": "https://files.pythonhosted.org/packages/b3/4b/7e8adfbb9e0d9b5ea92740aacbd50eb509a3824559f0ed8bd6e8f2cdf17e/SurveyGizmo-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "786775c03dced001969670d2b54b3fbe", "sha256": "0e7bbe827da9effb3fbc39567efa0008e588f3d7027f7fe4c0f7f9563c07d0a4" }, "downloads": -1, "filename": "SurveyGizmo-1.2.0.tar.gz", "has_sig": false, "md5_digest": "786775c03dced001969670d2b54b3fbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15352, "upload_time": "2016-06-12T04:10:15", "url": "https://files.pythonhosted.org/packages/c9/df/62c06b4e411055d750891421051a0a35283a9bec141fd8a4bc7fdae55691/SurveyGizmo-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "b35a3ae6733b08b372ca3dc2133f5f0f", "sha256": "f2e4fce159ed1624d148c83f477953544b9121d680018386416162d892ba1d70" }, "downloads": -1, "filename": "SurveyGizmo-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b35a3ae6733b08b372ca3dc2133f5f0f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22462, "upload_time": "2016-06-13T16:08:47", "url": "https://files.pythonhosted.org/packages/ea/93/cf2e77e04e3abdfa3b60909cd94a8aa62eee28f55ede892e8d2640000226/SurveyGizmo-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47c4d84ad653e016a049f799e5a35af4", "sha256": "0b0a3b28293a039eee6d826c0f7397289ac1b297d2c543c895512b3dd9ac39e8" }, "downloads": -1, "filename": "SurveyGizmo-1.2.1.tar.gz", "has_sig": false, "md5_digest": "47c4d84ad653e016a049f799e5a35af4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14701, "upload_time": "2016-06-13T16:07:52", "url": "https://files.pythonhosted.org/packages/ee/ff/fd1719c7280b820a6713c483704f4ddbc5e037a88999a906cd51ea20244e/SurveyGizmo-1.2.1.tar.gz" } ], "1.2.1.post1": [ { "comment_text": "", "digests": { "md5": "776a158215853c2e6756afde16f7e4c6", "sha256": "15ae840def0784bcdb67003ebed2f1a2e3e4a65cce624539ed63c86904779380" }, "downloads": -1, "filename": "SurveyGizmo-1.2.1.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "776a158215853c2e6756afde16f7e4c6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22857, "upload_time": "2016-06-13T16:11:57", "url": "https://files.pythonhosted.org/packages/c2/13/a7ff126bcb9d538d39c1ed4a74cb332d289ffddce888b58465ff4f91613e/SurveyGizmo-1.2.1.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63c9490b44ff9ca5a098ffe7852580f8", "sha256": "f8d14855f0e17feacd1f0909a57bcaf98c2ea4df8adac70f07ccf16c4864803c" }, "downloads": -1, "filename": "SurveyGizmo-1.2.1.post1.tar.gz", "has_sig": false, "md5_digest": "63c9490b44ff9ca5a098ffe7852580f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15527, "upload_time": "2016-06-13T16:11:13", "url": "https://files.pythonhosted.org/packages/7c/f6/9837d8d3938517ffaa2f048f3ce396b366aee613f98e2a8e82b0d3cc7b01/SurveyGizmo-1.2.1.post1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "dda4e593c476462d7d832c21203328c5", "sha256": "bffe0e458c29bbd5891273c60429b9a1c7dc1d21a9199eb4bab74a5255444986" }, "downloads": -1, "filename": "SurveyGizmo-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dda4e593c476462d7d832c21203328c5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21410, "upload_time": "2017-05-08T01:16:50", "url": "https://files.pythonhosted.org/packages/71/7d/6a2c91e31a96dcec25a1d39696811a55066eb0979879234c8b28b27078c6/SurveyGizmo-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5907ac9b6bc7baad4a407e97ab4842d", "sha256": "ba4e7f153506dd1b16f7d3ac392b023486b738f15a9fd09084ee68159637246c" }, "downloads": -1, "filename": "SurveyGizmo-1.2.2.tar.gz", "has_sig": false, "md5_digest": "b5907ac9b6bc7baad4a407e97ab4842d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14941, "upload_time": "2017-05-08T01:16:48", "url": "https://files.pythonhosted.org/packages/1a/0c/6a7bbfdbdced58a41dfda71352e9931256669470d1e0b6518090ca20c356/SurveyGizmo-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "092bb61d52a1e7e82fc447473da98a60", "sha256": "a9aa5f8e56ac5811f04794eb479da6cef3bd38a2629dba91d4ee24e52eaaaf06" }, "downloads": -1, "filename": "SurveyGizmo-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "092bb61d52a1e7e82fc447473da98a60", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22194, "upload_time": "2017-10-02T14:05:15", "url": "https://files.pythonhosted.org/packages/b5/bc/a9f1e8d6072c22c2a6ba4c154b1410a699d42876e2ed220e42b714733a7b/SurveyGizmo-1.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fdd1617ffe4e45bfa0e89f0d934fd12", "sha256": "39835621036d2bc61243c65d4f34cd0df745db3538b5cf315d740a8c725f9964" }, "downloads": -1, "filename": "SurveyGizmo-1.2.3.tar.gz", "has_sig": false, "md5_digest": "9fdd1617ffe4e45bfa0e89f0d934fd12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16283, "upload_time": "2017-10-02T14:05:13", "url": "https://files.pythonhosted.org/packages/6c/a8/35a500992debb95a2425757fbec05182d1ff36f43d20bc98816c092fd3f3/SurveyGizmo-1.2.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "092bb61d52a1e7e82fc447473da98a60", "sha256": "a9aa5f8e56ac5811f04794eb479da6cef3bd38a2629dba91d4ee24e52eaaaf06" }, "downloads": -1, "filename": "SurveyGizmo-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "092bb61d52a1e7e82fc447473da98a60", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22194, "upload_time": "2017-10-02T14:05:15", "url": "https://files.pythonhosted.org/packages/b5/bc/a9f1e8d6072c22c2a6ba4c154b1410a699d42876e2ed220e42b714733a7b/SurveyGizmo-1.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fdd1617ffe4e45bfa0e89f0d934fd12", "sha256": "39835621036d2bc61243c65d4f34cd0df745db3538b5cf315d740a8c725f9964" }, "downloads": -1, "filename": "SurveyGizmo-1.2.3.tar.gz", "has_sig": false, "md5_digest": "9fdd1617ffe4e45bfa0e89f0d934fd12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16283, "upload_time": "2017-10-02T14:05:13", "url": "https://files.pythonhosted.org/packages/6c/a8/35a500992debb95a2425757fbec05182d1ff36f43d20bc98816c092fd3f3/SurveyGizmo-1.2.3.tar.gz" } ] }