{
"info": {
"author": "Mozilla Services",
"author_email": "services-dev@mozilla.com",
"bugtrack_url": null,
"classifiers": [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
],
"description": "Cliquet\n=======\n\n|pypi| |travis| |master-coverage| |readthedocs|\n\n.. |pypi| image:: https://img.shields.io/pypi/v/cliquet.svg\n :target: https://pypi.python.org/pypi/cliquet\n\n.. |travis| image:: https://travis-ci.org/mozilla-services/cliquet.svg?branch=master\n :target: https://travis-ci.org/mozilla-services/cliquet\n\n.. |readthedocs| image:: https://readthedocs.org/projects/cliquet/badge/?version=latest\n :target: http://cliquet.readthedocs.io/en/latest/\n :alt: Documentation Status\n\n.. |master-coverage| image::\n https://coveralls.io/repos/mozilla-services/cliquet/badge.svg?branch=master\n :alt: Coverage\n :target: https://coveralls.io/r/mozilla-services/cliquet\n\n\n*Cliquet* is a toolkit to ease the implementation of HTTP microservices,\nsuch as data-driven REST APIs.\n\n* `Online documentation `_\n* `Issue tracker `_\n* `Contributing `_\n* Talks `at PyBCN `_\n and `at PyConFR `_\n\n\nChangelog\n=========\n\nThis document describes changes between each past release.\n\n\n3.1.5 (2016-05-17)\n------------------\n\n**Bug fixes**\n\n- Prevent the browser to cache server responses between two sessions. (#593)\n\n\n3.1.4 (2016-05-10)\n------------------\n\n**Bug fixes**\n\n- Redirects version prefix to hello page when trailing_slash_redirect is enabled. (#700)\n- Fix crash when setting empty permission list with PostgreSQL permission backend (fixes Kinto/kinto#575)\n- Fix crash when type of values in querystring for exclude/include is wrong (fixes Kinto/kinto#587)\n- Fix crash when providing duplicated principals in permissions with PostgreSQL permission backend (fixes #702)\n\n\n3.1.3 (2016-04-29)\n------------------\n\n**Bug fixes**\n\n- Fix migration of triggers in PostgreSQL storage backend when upgrading from <3.0.0.\n Running the ``migrate`` command will basically re-create them (fixes Kinto/kinto#559)\n\n**Documentation**\n\n- Fix some typos in documentation (#696)\n- Update links to readthedocs (#697)\n\n\n3.1.2 (2016-04-19)\n------------------\n\n**Bug fixes**\n\n- Fix safe creation (``If-None-Match: *``) if a record used to exist with the\n same id (Kinto/kinto#512)\n\n**New features**\n\n- A ``cache_prefix`` setting was added for cache backends. (#680)\n\n\n3.1.1 (2016-04-05)\n------------------\n\n**Bug fixes**\n\n- Allow numeric comparison and sorting with the PostgreSQL backend. (#690)\n\n\n3.1.0 (2016-03-07)\n------------------\n\n**Protocol**\n\n- Add the ``__lbheartbeat__`` endpoint, for load balancer membership test.\n\n**New features**\n\n- Default console log renderer now has colours (#671)\n\n**Bug fixes**\n\n- Do not always return 412 errors when request header ``If-None-Match: *``\n is sent on ``POST /collection`` (fixes #673)\n\n**Internal changes**\n\n- Remove some imports at initialization to speed startup (#674)\n\n\n3.0.0 (2016-02-26)\n------------------\n\n**Breaking changes**\n\n- Errors are not swallowed anymore during the execution of ``ResourceChanged``\n events subscribers.\n\n Subscribers are still executed within the transaction like before.\n\n Subscribers are still executed even if transaction is eventually rolledback.\n Every subscriber execution succeeds, or none.\n\n Thus, subscribers of these events should only perform operations that are reversed\n on transaction rollback: most likely database storage operations.\n\n For irreversible operations see the new ``AfterResourceChanged`` event.\n\n**Protocol**\n\n- Clients are redirected to URLs without trailing slash only if the current URL\n does not exist (#656)\n- Partial responses can now be specified for nested objects (#660, Kinto/kinto#445)\n For example, ``/records?_fields=address.street``.\n- List responses are now sorted by to last_modified descending by default (#662,\n thanks @ayusharma)\n\n**New features**\n\n- Resource events are now merged in batch requests. One event per resource and\n per action is emitted when a transaction is committed (#634)\n- Monitor time of events listeners execution (fixes #503)\n- Add method to remove a principal from every user\n- Validate that the client can accept JSON response. (#667)\n- Validate that the client can only send JSON request body. (#667)\n- Added a new ``AfterResourceChanged`` event, that is sent only when the commit\n in database is done and successful.\n\n Subscribers of this event can fail, errors are swallowed and logged. The\n final transaction result (or response) cannot be altered.\n\n Since commit occured successfully and operations will not be rolledback,\n subcribers running irreversible actions should subscribe to this event\n (like sending messages, deleting files, or run asynchronous tasks).\n- Track execution time on StatsD for each authentication sub-policy (#639)\n- Output the cliquet version with --version (#636)\n\n**Bug fixes**\n\n- ``ResourceChanged`` events are not emitted if a batch subrequest fails (#634)\n There are still emitted if the whole batch transaction is eventually rolledback.\n- Fix a migration of PostgreSQL schema introduced in #604 that was never executed\n- Fix PostgreSQL backend timestamps when collection is empty (ref Kinto/kinto#433)\n- Fix statsd initialization on storage (#637)\n- Providing bad last modified values on delete now returns 400 (#665)\n- Providing last modified in the past for delete now follows behaviour create/update (#665)\n\n**Internal changes**\n\n- Moved ``utils.current_service(request)`` to reified request method (ref #631)\n- Optimized (and cleaned) usage of (un)authenticated_userid (#641)\n- Apply request extensions on forged requests (ref Kinto/kinto#438)\n- Get rid of custom Enum (fixes #645)\n- Pyramid config link updated (#654, thanks @ayusharma)\n- Add missing readonly param for read operations in PostgreSQL (#653)\n- Move Retry-After to error responses in documentation (#657)\n- Improve batch endpoint documentation about transactions (ref #629)\n- Mac OS python installation command updated (#661)\n- Added details about forced timestamps (#665)\n- Added troubleshooting section in docs (thanks @ayusharma)\n\n\n2.15.0 (2016-01-27)\n-------------------\n\n**Protocol**\n\n- Forward slashes (``/``) are not escaped anymore in JSON responses (#537)\n- The API capabilities can be exposed in a ``capabilities`` attribute in the\n root URL (#628). Clients can rely on this to detect optional features on the\n server (e.g. enabled plugins).\n\n**Bug fixes**\n\n- Batch now relies on custom views responses (``@viewconfig(context=Error)``)\n (fixes mozilla-services/syncto#78, rel #629)\n- Fix listener name logging during startup (#626)\n\n\n**New features**\n\n- The policy name used to configure authentication in settings is now used for\n the user id prefix and StatsD ``authn_type`` counters.\n\n\n2.14.0 (2016-01-15)\n-------------------\n\n**Protocol**\n\n- Fields can be filtered in GET requests using ``_fields=f1,f2`` in querystring (fixes #384)\n\n**New features**\n\n- Add ability to filter fields from querystring (#601, thanks @MrChoclate)\n- Check backends configuration at startup (fixes Kinto/kinto#228)\n\n**Bug fixes**\n\n- Do not overwrite original error message and details in batch requests (fixes #617)\n- Fix plugins not being able to use custom requests methods (#618)\n- Do not log batch subrequests twice (fixes #450, fixes Kinto/kinto#264)\n\n**Internal changes**\n\n- Refactor filtering of events to use Pyramid subscribers predicates (fixes #609)\n- Refactor logger imports (fixes #102)\n\n\n2.13.1 (2015-12-15)\n-------------------\n\n**Bug fixes**\n\n- Fix hmac digest with python3 (fixes Kinto/kinto#288)\n\n**Documentation**\n\n- Fixed typo in RHEL package manager command (#610, thanks @FooBarQuaxx)\n\n\n2.13.0 (2015-12-01)\n-------------------\n\n**Bug fixes**\n\n- Fixes duplicated records in paginated results when limit is forced via\n settings (fixes #588)\n\n**New features**\n\n- Allow to keep the ``last_modified`` field of records when updating or\n creating them. Useful for replication of remote collections (fixes #604)\n\n**Internal changes**\n\n- Documentation has been updated to explain better how versionning is\n handled (fixes #603)\n\n\n\n2.12.0 (2015-11-27)\n-------------------\n\n**Protocol**\n\nMinor changes in the root URL (hello view):\n\n- Added ``http_api_version`` (#600)\n- Renamed ``hello`` to ``project_name``\n- Renamed ``protocol_version`` to ``cliquet_protocol_version``\n- Renamed ``documentation`` to ``project_docs``\n- Renamed ``version`` to ``project_version``\n\n**Breaking changes**\n\n- When using *cliquet-fxa*, the setting ``multiauth.policy.fxa.use`` must now\n be explicitly set to ``cliquet_fxa.authentication.FxAOAuthAuthenticationPolicy``\n- Fields in the root view were renamed (#600)\n\n**Bug fixes**\n\n- Include plugins after setting up components (like authn/authz) so that plugins\n can register views with permissions checking\n- Remove ``__permissions__`` from impacted records values in ``ResourceChanged``\n events (#586)\n\n**New features**\n\n- New options in configuration of listeners to specify filtered actions and\n resource names (#492, #555)\n- Add ability to listen to read action on resource (disabled by default)\n (#493)\n- Add ability to ask for partial response via ``_fields`` parameter on GET\n endpoints\n\n**Internal**\n\n- Fixed a few details in quickstart docs since backends are not Redis by default\n anymore\n- Replace usage of ``assert`` by explicit exceptions since the former can\n be ignored when python is ran with ``-O`` (fixes #592)\n- Improved documentation about permissions (#572, thanks for the feedback @MrChoclate)\n- Fixed docs building under Python 3 (#591)\n\n\n2.11.0 (2015-11-17)\n-------------------\n\n**Protocol**\n\n- ``_since`` and ``_before`` now accepts an integer value between quotes ``\"``,\n as it would be returned in the ``ETag`` response header.\n- A batch request now fails if one of the subrequests fails (#510)\n (*see new feature about transactions*)\n\n**Breaking changes**\n\n- For PostgreSQL backends, it is recommended to specify ``postgresql://``.\n\n**New features**\n\n- A transaction now covers the whole request/response cycle (#510, Kinto/kinto#194).\n If an error occurs during the request processing, every operation performed\n is rolled back. **Note:** This is only enabled with *PostgreSQL* backends. In\n other words, the rollback has no effect on backends like *Redis* or *Memory*.\n\n- Add the ``protocol_version`` to tell which protocol version is\n implemented by the service in the hello page. (#324)\n\n- New settings for backends when using PostgreSQL: ``*_pool_maxoverflow``,\n ``*_pool_recycle``, ``*_pool_timeout`` to control connections pool\n behaviour.\n- Add custom pool supporting a ``max_backlog`` parameter that limits the\n number of threads waiting for a connection (#509)\n- Add ``impacted_records`` attribute on ``ResourceChanged`` event (#501)\n This also allows listeners to react on particular field change, since old and\n new version of records is provided.\n\n**Bug fixes**\n\n- Fix Service CORS not being set when plugins are included\n- Fix crash with Redis backend if record parent/id is unicode (fixes #556)\n- Fix principals of permission backend not being plugged by default (#573)\n- Fix Redis error traces not being logged (#560)\n- Fix principals of permission backend not being plugged by default. (#573)\n- Maintain pagination offset to prevent pagination loop in some cases. (#366)\n\n**Internal changes**\n\n- Switch to SQLAlchemy for smarter connections pools.\n- Added a simple end-to-end test on a *Cliquet* sample application, using\n `Loads `_. (fixes #512)\n- Switched to SQLAlchemy sessions instead of raw connections and cursors. (#510)\n- Refactor Redis clients instantiation to avoid repeated defaults. (#567, #568)\n- Initialize Service class attributes before including plugins. (#578)\n- Add a statsd_count helper function to ease the usage of statsd. (#574)\n- Mention SQLAlchemy on missing PostgreSQL dependencies. (#545)\n\n\n2.10.2 (2015-11-10)\n-------------------\n\n**Bug fixes**\n\n- Fix sharing records with ProtectedResource (fixes #549)\n- Fix notifications on protected resources (#548)\n- Log any heartbeat exception (fixes #559)\n- Fix crash with Redis backend if record parent/id is unicode (fixes #556)\n- Fix Redis client instantiation (fixes #564)\n\n\n2.10.1 (2015-11-03)\n-------------------\n\n**Bug fixes**\n\n- Make sure read enpoints (GET, OPTIONS, HEAD) are activated in readonly mode. (#539)\n\n\n2.10.0 (2015-10-30)\n-------------------\n\n**Protocol**\n\n- Moved ``userid`` attribute to a dedicated ``user`` mapping in the hello\n view.\n- Fixed 503 error message to mention backend errors in addition to unavailability.\n- Set cache headers only when anonymous (fixes #449)\n- Follow redirections in batch subrequests (fixes #511)\n- When recreating a record that was previously deleted, status code is now ``201``\n (ref #530).\n\n**New features**\n\n- Follow redirections in batch subrequests (fixes #511)\n- Add a ``readonly`` setting to run the service in read-only mode. (#525)\n- If no client cache is set, add ``Cache-Control: no-cache`` by default,\n so that clients are forced to revalidate their cache against the server\n (#522, ref Kinto/kinto#231)\n\n**Bug fixes**\n\n- Fix PostgreSQL error when deleting an empty collection in a protected\n resource (fixes #528)\n- Fix PUT not using ``create()`` method in storage backend when tombstone exists\n (fixes #530)\n- Delete tombstone when record is re-created (fixes #518)\n- Fix crash with empty body for PATCH (fixes #477, fixes #516)\n- Fix english typo in 404 error message (fixes #527)\n\n**Internal changes**\n\n- Better __pycache__ cleaning\n\n\n2.9.0 (2015-10-27)\n------------------\n\n**New features**\n\n- Added Pyramid events, triggered when the content of a resource has changed. (#488)\n- Added ``cliquet.includes`` setting allowing loading of plugins once Cliquet\n is initialized (unlike ``pyramid.includes``). (#504)\n\n**Protocol**\n\n- Remove the broken git revision ``commit`` field in the hello page. (#495).\n\n**Breaking changes**\n\n- Renamed internal backend classes for better consistency. Settings\n remain unchanged, but if you imported the backend classes in your\n Cliquet application, it will break (#491).\n- ``cliquet.schema`` is now deprecated, and was moved to a ``cliquet.resource``\n module. (#505)\n- Resource collection attribute is now deprecated. Use ``model`` attribute instead. (#506)\n\n**Internal changes**\n\n- Rework PostgreSQL backends to use composition instead of inheritance for the\n client code. (#491)\n- Replace DROP INDEX by a conditional creation in PostgreSQL schemas (#487, #496\n thanks @rodo)\n- Documentation and minor refactors in viewset code (#490, #498, #502)\n- Add the ``build-requirements``, ``distclean`` and ``maintainer-clean`` Makefile rules.\n- Documentation JSON patch format. (#484)\n- Fix for permission among record fields in 412 errors. (#499)\n\n\n2.8.2 (2015-10-22)\n------------------\n\n**Bug fixes**\n\n- Fix crash on settings with list values (#481)\n- Fix crash in Redis permission backend (ref Kinto/kinto#215)\n\n**Internal changes**\n\n- Use tox installed in virtualenv (#486)\n- Skip python versions unavailable in tox (#486)\n\n\n2.8.1 (2015-10-14)\n------------------\n\n- Expose public settings without prefix, except if we explicitely\n configure public_settings to expose them (with ``cliquet.`` or\n ``project_name.``) (ref #476)\n\n\n2.8.0 (2015-10-06)\n------------------\n\n**Breaking changes**\n\n- Deprecated settings ``cliquet.cache_pool_maxconn``,\n ``cliquet.storage_pool_maxconn`` and ``cliquet.basic_auth_enabled``\n were removed (ref #448)\n- Prefixed settings will not work if ``project_name`` is not defined.\n (either with ``cliquet.initialize()`` or with the ``cliquet.project_name``\n configuration variable).\n- Settings should now be read without their prefix in the code:\n ``request.registry.settings['max_duration']`` rather than\n ``request.registry.settings['cliquet.max_duration']``\n\n**New features**\n\n- Add cache CORS headers. (ref #466)\n- Use the project name as setting prefix (ref #472)\n\n**Internal changes**\n\n- Expose statsd client so that projects using cliquet can send statsd\n metrics. (ref #465)\n- Refactor BaseWebTest. (ref #468)\n- Remove hard coded CORS origins in order to be able to override it\n with config. (ref #467)\n- Allow overridding 405 response error to give context (ref #471)\n- Allow overridding 503 response error to give context (ref #473)\n\n\n2.7.0 (2015-09-23)\n------------------\n\n**Breaking changes**\n\n- Backends are not instantiated by default anymore (used to be with *Redis*) (#461)\n\n**New features**\n\n- Redirect to remove trailing slash in URLs (fixes Kinto/kinto#112)\n- Add resource cache control headers via settings (fixes #401)\n- Add request ``bound_data`` attribute, shared with subrequests.\n Useful to share context or cache values between BATCH requests for example (#459)\n\n**Bug fixes**\n\n- Fix Werkzeug profiling setup docs and code (#451)\n- Fix logger encoding error with UTF-8 output (#455)\n- Do not instantiate backends if not configured (fixes #386)\n\n**Internal changes**\n\n- Huge refactoring the interaction between ``Resource`` and ``Permission`` backend (#454)\n- Fetch record only once from storage with PUT requests on resources (#452)\n- Index permissions columns, bringing huge performance gain for shared collections (#458, ref #354)\n- Add instructions to mention contributors list in documentation (#408)\n- Explicitly call to collection create_record on PUT (#460)\n\n\n2.6.2 (2015-09-09)\n------------------\n\n**Bug fixes**\n\n- Expose CORS headers on subrequest error response and for non service errors (#435).\n- Make sure a tuple is passed for Postgresql list comparisons even for ids (#443).\n\n**Internal changes**\n\n- Use the ``get_bound_permissions`` callback to select shared records in collection list (#444).\n\n\n2.6.1 (2015-09-08)\n------------------\n\n**Bug fixes**\n\n- Make sure a tuple is passed for Postgresql in conditions (#441).\n\n\n2.6.0 (2015-09-08)\n------------------\n\n**Protocol**\n\n- Fix consistency in API to modify permissions with PATCH (#437, ref Kinto/kinto#155).\n The list of principals for each specified permission is now replaced by the one\n provided.\n\n**New features**\n\n- Partial collection of records for ``ProtectedResource`` when user has no ``read``\n permission (fixes #354). Alice can now obtain a list of Bob records on which she\n has read/write permission.\n\n**Internal changes**\n\n- Fix Wheel packaging for Pypy (fixes Kinto/kinto#177)\n- Add additional test to make sure 400 errors returns CORS Allowed Headers\n\n\n2.5.0 (2015-09-04)\n------------------\n\n**Protocol**\n\n- Collection records can now be filtered using multiple values (``?in_status=1,2,3``) (fixes #39)\n- Collection records can now be filtered excluding multiple values (``?exclude_status=1,2,3``) (fixes mozilla-services/readinglist#68)\n\n**Internal changes**\n\n- We can obtains accessible objects_id in a collection from user principals (fixes #423)\n\n\n2.4.3 (2015-08-26)\n------------------\n\n**Bug fixes**\n\n- Fix the packaging for cliquet (#430)\n\n\n2.4.2 (2015-08-26)\n------------------\n\n**Internal changes**\n\n- Remove the symlink to cliquet_docs and put the documentation inside\n `cliquet_docs` directly (#426)\n\n\n2.4.1 (2015-08-25)\n------------------\n\n**Internal changes**\n\n- Make documentation available from outside by using `cliquet_docs` (#413)\n\n\n2.4.0 (2015-08-14)\n------------------\n\n**Protocol**\n\n- Userid is now provided when requesting the hello endpoint with an ``Authorization``\n header (#319)\n- UUID validation now accepts any kind of UUID, not just v4 (fixes #387)\n- Querystring parameter ``_to`` was renamed to ``_before`` (*the former is now\n deprecated*) (#391)\n\n**New features**\n\n- Cliquet ``Service`` class now has the default error handler attached (#388)\n- Allow to configure info link in error responses with ``cliquet.error_info_link``\n setting (#395)\n- Storage backend now has a ``purge_deleted()`` to get rid of `tombstones `_ (#400)\n\n**Bug fixes**\n\n- Fix missing ``Backoff`` header for 304 responses (fixes #416)\n- Fix Python3 encoding errors (#328)\n- ``data`` is not mandatory in request body if the resource does not define\n any schema or if no field is mandatory (fixes mozilla-services/kinto#63)\n- Fix no validation error on PATCH with unknown attribute (fixes #374)\n- Fix permissions not validated on PATCH (fixes #375)\n- Fix CORS header missing in 404 responses for unknown URLs (fixes #414)\n\n**Internal changes**\n\n- Renamed main documentation sections to *HTTP Protocol* and *Internals* (#394)\n- Remove mentions of storage in documentation to avoid confusions with the\n *Kinto* project.\n- Add details in timestamp documentation.\n- Mention talk at Python Meetup Barcelona in README\n- Fix documentation about postgres-contrib dependancy (#409)\n- Add ``cliquet.utils`` to *Internals* documentation (#407)\n- Default id generator now accepts dashes and underscores (#411)\n\n\n2.3.1 (2015-07-15)\n------------------\n\n**Bug fixes**\n\n- Fix crash on hello view when application is not deployed from Git\n repository (fixes #382)\n- Expose Content-Length header to Kinto.js (#390)\n\n\n2.3 (2015-07-13)\n----------------\n\n**New features**\n\n- Provide details about existing record in ``412`` error responses\n (fixes mozilla-services/kinto#122)\n- Add ETag on record PUT/PATCH responses (fixes #352)\n- Add StatsD counters for the permission backend\n\n**Bug fixes**\n\n- Fix crashes in permission backends when permission set is empty (fixes #368, #371)\n- Fix value of ETag on record: provide collection timestamp on collection\n endpoints only (fixes #356)\n- Default resources do accept ``permissions`` attribute in payload anymore\n- Default resources do not require a root factory (fixes #348)\n- Default resources do not hit the permission backend anymore\n- Default viewset was split and does not handle permissions anymore (fixes #322)\n- Permissions on views is now set only on resources\n- Fix missing ``last_modified`` field in PATCH response when no field\n was changed (fixes #371)\n- Fix lost querystring during version redirection (fixes #364)\n\n**Internal changes**\n\n- Document the list of public settings in hello view (mozilla-services/kinto#133)\n\n\n2.2.1 (2015-07-06)\n------------------\n\n**Bug fixes**\n\n- Fix permissions handling on PATCH /resource (#358)\n\n\n2.2.0 (2015-07-02)\n------------------\n\n**New features**\n\n* Add public settings in hello view (#318)\n\n**Bug fixes**\n\n- Fix version redirection behaviour for unsupported versions (#341)\n- PostgreSQL dependencies are now fully optional in code (#340)\n- Prevent overriding final settings from ``default_settings`` parameter\n in ``cliquet.initialize()`` (#343)\n\n**Internal changes**\n\n- Fix installation documentation regarding PostgreSQL 9.4 (#338, thanks @elemoine!)\n- Add detail about UTC and UTF-8 for PostgreSQL (#347, thanks @elemoine!)\n- Remove UserWarning exception when running tests (#339, thanks @elemoine!)\n- Move build_request and build_response to ``cliquet.utils`` (#344)\n- Pypy is now tested on Travis CI (#337)\n\n\n2.1.0 (2015-06-26)\n------------------\n\n**New features**\n\n- Cliquet does not require authentication policies to prefix\n user ids anymore (fixes #299).\n- Pypy support (thanks Balthazar Rouberol #325)\n- Allow to override parent id of resources (#333)\n\n**Bug fixes**\n\n- Fix crash in authorization on ``OPTIONS`` requests (#331)\n- Fix crash when ``If-Match`` is provided without ``If-None-Match`` (#335)\n\n**Internal changes**\n\n- Fix docstrings and documentation (#329)\n\n\n2.0.0 (2015-06-16)\n------------------\n\n**New features**\n\n- Authentication and authorization policies, as well as group finder function\n can now be specified via configuration (fixes #40, #265)\n- Resources can now be protected by fine-grained permissions (#288 via #291, #302)\n\nMinor\n\n- Preserve provided ``id`` field of records using POST on collection (#293 via #294)\n- Logging value for authentication type is now available for any kind of\n authentication policy.\n- Any resource endpoint can now be disabled from settings (#46 via #268)\n\n**Bug fixes**\n\n- Do not limit cache values to string (#279)\n- When PUT creates the record, the HTTP status code is now 201 (#298, #300)\n- Add safety check in ``utils.current_service()`` (#316)\n\n**Breaking changes**\n\n- ``cliquet.storage.postgresql`` now requires PostgreSQL version 9.4, since it\n now relies on *JSONB*. Data will be migrated automatically using the ``migrate``\n command.\n- the ``@crud`` decorator was replaced by ``@register()`` (fixes #12, #268)\n- Firefox Accounts code was removed and published as external package *cliquet-fxa*\n- The *Cloud storage* storage backend was removed out of *Cliquet* and should\n be revamped in *Kinto* repository (mozilla-services/kinto#45)\n\nAPI\n\n- Resource endpoints now expect payloads to have a ``data`` attribute (#254, #287)\n- Resource endpoints switched from ``If-Modified-Since`` and ``If-Unmodified-Since``\n to ``Etags`` (fixes #251 via #275), thanks @michielbdejong!\n\nMinor\n\n- ``existing`` attribute of conflict errors responses was moved inside a generic\n ``details`` attribute that is also used to list validation errors.\n- Setting ``cliquet.basic_auth_enabled`` is now deprecated.\n Use `pyramid_multiauth `_\n configuration instead to specify authentication policies.\n- Logging value for authentication type is now ``authn_type`` (with ``FxAOAuth``\n or ``BasicAuth`` as default values).\n\n**Internal changes**\n\n- Cliquet resource code was split into ``Collection`` and ``Resource`` (fixes #243, #282)\n- Cleaner separation of concern between ``Resource`` and the new notion of ``ViewSet`` (#268)\n- Quickstart documentation improvement (#271, #312) thanks @N1k0 and @brouberol!\n- API versioning documentation improvements (#313)\n- Contribution documentation improvement (#306)\n\n\n1.8.0 (2015-05-13)\n------------------\n\n**Breaking changes**\n\n- Switch PostgreSQL storage to JSONB: requires 9.4+ (#104)\n- Resource name is not a Python property anymore (ref #243)\n- Return existing record instead of raising 409 on POST (fixes #75)\n- ``cliquet.storage.postgresql`` now requires version PostgreSQL 9.4, since it\n now relies on *JSONB*. Data will be migrated automatically using the ``migrate``\n command.\n- Conflict errors responses ``existing`` attribute was moved inside a generic\n ``details`` attribute that is also used to list validation errors.\n- In heartbeat end-point response, ``database`` attribute was renamed to ``storage``\n\n**New features**\n\n- Storage records ids are now managed in python (fixes #71, #208)\n- Add setting to disable version redirection (#107, thanks @hiromipaw)\n- Add response behaviour headers for PATCH on record (#234)\n- Provide details in error responses (#233)\n- Expose new function ``cliquet.load_default_settings()`` to ease reading of\n settings from defaults and environment (#264)\n- Heartbeat callback functions can now be registered during startup (#261)\n\n**Bug fixes**\n\n- Fix migration behaviour when metadata table is flushed (#221)\n- Fix backoff header presence if disabled in settings (#238)\n\n**Internal changes**\n\n- Require 100% of coverage for tests to pass\n- Add original error message to storage backend error\n- A lots of improvements in documentation (#212, #225, #228, #229, #237, #246,\n #247, #248, #256, #266, thanks Michiel De Jong)\n- Migrate *Kinto* storage schema on startup (#218)\n- Fields ``id`` and ``last_modified`` are not part of resource schema anymore\n (#217, mozilla-services/readinlist#170)\n- Got rid of redundant indices in storage schema (#208, ref #138)\n- Disable Cornice schema request binding (#172)\n- Do not hide FxA errors (fixes mozilla-services/readinglist#70)\n- Move initialization functions to dedicated module (ref #137)\n- Got rid of request custom attributes for storage and cache (#245)\n\n\n1.7.0 (2015-04-10)\n------------------\n\n**Breaking changes**\n\n- A **command must be ran during deployment** for database schema migration:\n\n $ cliquet --ini production.ini migrate\n\n- Sentry custom code was removed. Sentry logging is now managed through the\n logging configuration, as explained `in docs `_.\n\n**New features**\n\n- Add PostgreSQL schema migration system (#139)\n- Add cache and oauth in heartbeat view (#184)\n- Add monitoring features using NewRelic (#189)\n- Add profiling features using Werkzeug (#196)\n- Add ability to override default settings in initialization (#136)\n- Add more statsd counter for views and authentication (#200)\n- Add in-memory cache class (#127)\n\n**Bug fixes**\n\n- Fix crash in DELETE on collection with PostgreSQL backend\n- Fix Heka logging format of objects (#199)\n- Fix performance of record insertion using ordered index (#138)\n- Fix 405 errors not JSON formatted (#88)\n- Fix basic auth prompt when disabled (#182)\n\n**Internal changes**\n\n- Improve development setup documentation (thanks @hiromipaw)\n- Deprecated ``cliquet.initialize_cliquet``, renamed to ``cliquet.initialize``.\n- Code coverage of tests is now 100%\n- Skip unstable tests on TravisCI, caused by ``fsync = off`` in their PostgreSQL.\n- Perform random creation and deletion in heartbeat view (#202)\n\n\n1.6.0 (2015-03-30)\n------------------\n\n**New features**\n\n- Split schema initialization from application startup, using a command-line\n tool.\n\n::\n\n cliquet --ini production.ini init\n\n\n**Bug fixes**\n\n- Fix connection pool no being shared between cache and storage (#176)\n- Default connection pool size to 10 (instead of 50) (#176)\n- Warn if PostgreSQL session has not UTC timezone (#177)\n\n**Internal changes**\n\n- Deprecated ``cliquet.storage_pool_maxconn`` and ``cliquet.cache_pool_maxconn``\n settings (renamed to ``cliquet.storage_pool_size`` and ``cliquet.cache_pool_size``)\n\n\n1.5.0 (2015-03-27)\n------------------\n\n**New features**\n\n- Mesure calls on the authentication policy (#167)\n\n**Breaking changes**\n\n- Prefix statsd metrics with the value of `cliquet.statsd_prefix` or\n `cliquet.project_name` (#162)\n- `http_scheme` setting has been replaced by `cliquet.http_scheme` and\n `cliquet.http_host` was introduced ((#151, #166)\n- URL in the hello view now has version prefix (#165)\n\n**Bug fixes**\n\n- Fix Next-Page url if service has key in url (#158)\n- Fix some PostgreSQL connection bottlenecks (#170)\n\n**Internal changes**\n\n- Update of PyFxA to get it working with gevent monkey patching (#168)\n- Reload kinto on changes (#158)\n\n\n1.4.1 (2015-03-25)\n------------------\n\n**Bug fixes**\n\n- Rely on Pyramid API to build pagination Next-Url (#147)\n\n\n1.4.0 (2015-03-24)\n------------------\n\n**Breaking changes**\n\n- Make monitoring dependencies optional (#121)\n\n**Bug fixes**\n\n- Force PostgreSQl session timezone to UTC (#122)\n- Fix basic auth ofuscation and prefix (#128)\n- Make sure the `paginate_by` setting overrides the passed `limit`\n argument (#129)\n- Fix limit comparison under Python3 (#143)\n- Do not serialize using JSON if not necessary (#131)\n- Fix crash of classic logger with unicode (#142)\n- Fix crash of CloudStorage backend when remote returns 500 (#142)\n- Fix behaviour of CloudStorage with backslashes in querystring (#142)\n- Fix python3.4 segmentation fault (#142)\n- Add missing port in Next-Page header (#147)\n\n**Internal changes**\n\n- Use ujson again, it was removed in the 1.3.2 release (#132)\n- Add index for as_epoch(last_modified) (#130). Please add the following\n statements to SQL for the migration::\n\n ALTER FUNCTION as_epoch(TIMESTAMP) IMMUTABLE;\n CREATE INDEX idx_records_last_modified_epoch ON records(as_epoch(last_modified));\n CREATE INDEX idx_deleted_last_modified_epoch ON deleted(as_epoch(last_modified));\n\n- Prevent fetching to many records for one user collection (#130)\n- Use UPSERT for the heartbeat (#141)\n- Add missing OpenSSL in installation docs (#146)\n- Improve tests of basic auth (#128)\n\n\n1.3.2 (2015-03-20)\n------------------\n\n- Revert ujson usage (#132)\n\n\n1.3.1 (2015-03-20)\n------------------\n\n**Bug fixes**\n\n- Fix packaging (#118)\n\n\n1.3.0 (2015-03-20)\n------------------\n\n**New features**\n\n- Add PostgreSQL connection pooling, with new settings\n ``cliquet.storage_pool_maxconn`` and ``cliquet.cache_pool_maxconn``\n (*Default: 50*) (#112)\n- Add `StatsD `_ support,\n enabled with ``cliquet.statsd_url = udp://server:port`` (#114)\n- Add `Sentry `_ support,\n enabled with ``cliquet.sentry_url = http://user:pass@server/1`` (#110)\n\n**Bug fixes**\n\n- Fix FxA verification cache not being used (#103)\n- Fix heartbeat database check (#109)\n- Fix PATCH endpoint crash if request has no body (#115)\n\n**Internal changes**\n\n- Switch to `ujson `_ for JSON\n de/serialization optimizations (#108)\n\n\n1.2.1 (2015-03-18)\n------------------\n\n- Fix tests about unicode characters in BATCH querystring patch\n- Remove CREATE CAST for the postgresql backend\n- Fix environment variable override\n\n\n1.2 (2015-03-18)\n----------------\n\n**Breaking changes**\n\n- `cliquet.storage.postgresql` now uses UUID as record primary key (#70)\n- Settings ``cliquet.session_backend`` and ``cliquet.session_url`` were\n renamed ``cliquet.cache_backend`` and ``cliquet.cache_url`` respectively.\n- FxA user ids are not hashed anymore (#82)\n- Setting ``cliquet.retry_after`` was renamed ``cliquet.retry_after_seconds``\n- OAuth2 redirect url now requires to be listed in\n ``fxa-oauth.webapp.authorized_domains`` (e.g. ``*.mozilla.com``)\n- Batch are now limited to 25 requests by default (#90)\n\n**New features**\n\n- Every setting can be specified via an environment variable\n (e.g. ``cliquet.storage_url`` with ``CLIQUET_STORAGE_URL``)\n- Logging now relies on `structlog `_ (#78)\n- Logging output can be configured to stream JSON (#78)\n- New cache backend for PostgreSQL (#44)\n- Documentation was improved on various aspects (#64, #86)\n- Handle every backend errors and return 503 errors (#21)\n- State verification for OAuth2 dance now expires after 1 hour (#83)\n\n**Bug fixes**\n\n- FxA OAuth views errors are now JSON formatted (#67)\n- Prevent error when pagination token has bad format (#72)\n- List of CORS exposed headers were fixed in POST on collection (#54)\n\n**Internal changes**\n\n- Added a method in `cliquet.resource.Resource` to override known fields\n (*required by Kinto*)\n- Every setting has a default value\n- Every end-point requires authentication by default\n- Session backend was renamed to cache (#96)\n\n\n1.1.4 (2015-03-03)\n------------------\n\n- Update deleted_field support for postgres (#62)\n\n\n1.1.3 (2015-03-03)\n------------------\n\n- Fix include_deleted code for the redis backend (#60)\n- Improve the update_record API (#61)\n\n\n1.1.2 (2015-03-03)\n------------------\n\n- Fix packaging to include .sql files.\n\n\n1.1.1 (2015-03-03)\n------------------\n\n- Fix packaging to include .sql files.\n\n\n1.1 (2015-03-03)\n----------------\n\n**New features**\n\n- Support filter on deleted using since (#51)\n\n**Internal changes**\n\n- Remove python 2.6 support (#50)\n- Renamed Resource.deleted_mark to Resource.deleted_field (#51)\n- Improve native_value (#56)\n- Fixed Schema options inheritance (#55)\n- Re-build the virtualenv when setup.py changes\n- Renamed storage.url to cliquet.storage_url (#49)\n- Refactored the tests/support.py file (#38)\n\n\n1.0 (2015-03-02)\n----------------\n\n- Initial version, extracted from Mozilla Services Reading List project (#1)\n\n**New features**\n\n- Expose CORS headers so that client behind CORS policy can access them (#5)\n- Postgresql Backend (#8)\n- Use RedisSession as a cache backend for PyFxA (#10)\n- Delete multiple records via DELETE on the collection_path (#13)\n- Batch default prefix for endpoints (#14 / #16)\n- Use the app version in the / endpoint (#22)\n- Promote Basic Auth as a proper authentication backend (#37)\n\n**Internal changes**\n\n- Backends documentation (#15)\n- Namedtuple for filters and sort (#17)\n- Multiple DELETE in Postgresql (#18)\n- Improve Resource API (#29)\n- Refactoring of error management (#41)\n- Default Options for Schema (#47)\n\n\nContributors\n============\n\n* Alexis Metaireau \n* Andy McKay \n* Ayush Sharma \n* Balthazar Rouberol
\n* Cl\u00e9ment Villain \n* Dan Phrawzty \n* \u00c9ric Lemoine \n* Ethan Glasser-Camp \n* FooBarQuaxx\n* Greeshma \n* Hiromipaw \n* Lavish Aggarwal \n* Mathieu Leplatre \n* Michiel de Jong \n* Nicolas Perriault \n* R\u00e9my Hubscher \n* Rodolphe Qui\u00e9deville \n* Tarek Ziade ",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/mozilla-services/cliquet",
"keywords": "web services",
"license": "Apache License (2.0)",
"maintainer": "",
"maintainer_email": "",
"name": "cliquet",
"package_url": "https://pypi.org/project/cliquet/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/cliquet/",
"project_urls": {
"Homepage": "https://github.com/mozilla-services/cliquet"
},
"release_url": "https://pypi.org/project/cliquet/3.1.5/",
"requires_dist": [
"colander",
"colorama",
"cornice (>=1.1)",
"enum34",
"pyramid-multiauth (>=0.8)",
"pyramid-tm",
"python-dateutil",
"redis",
"requests",
"six",
"structlog",
"ujson (>=1.35)",
"newrelic; extra == 'monitoring'",
"raven; extra == 'monitoring'",
"statsd; extra == 'monitoring'",
"werkzeug; extra == 'monitoring'",
"SQLAlchemy; extra == 'postgresql'",
"psycopg2 (>2.5); extra == 'postgresql'",
"zope.sqlalchemy; extra == 'postgresql'"
],
"requires_python": "",
"summary": "Micro service API toolkit",
"version": "3.1.5"
},
"last_serial": 4266260,
"releases": {
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "0d5cd168438fe4c872f45ef3e7997ce6",
"sha256": "dffb9798b3a25a4543e71a85884443691985ed9916a2c646e997e24aafa3d446"
},
"downloads": -1,
"filename": "cliquet-1.0.zip",
"has_sig": false,
"md5_digest": "0d5cd168438fe4c872f45ef3e7997ce6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 67231,
"upload_time": "2015-03-02T12:32:15",
"url": "https://files.pythonhosted.org/packages/2d/e0/8031414bbb85f0a23d5b3a285e3819d519a9cc424bae62fdff2e4e82d62a/cliquet-1.0.zip"
}
],
"1.1": [
{
"comment_text": "",
"digests": {
"md5": "7b4055836f52fe7fa51ec703c6669380",
"sha256": "c0cb15940c1dd2471f23f2c7b964eede9c9bfbf5396bd88ba54425914e28303d"
},
"downloads": -1,
"filename": "cliquet-1.1.zip",
"has_sig": false,
"md5_digest": "7b4055836f52fe7fa51ec703c6669380",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 67958,
"upload_time": "2015-03-02T23:24:54",
"url": "https://files.pythonhosted.org/packages/87/f9/cc921080353100d2d5b2193f46eee85d854cf397833cd6f3315c84df2844/cliquet-1.1.zip"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "b90f2d4a4f70c005a64df3edecb3f3d8",
"sha256": "21dd649179836de5f6c85d9b4622a1eebf2abb123e91f41a72c94214a0adb882"
},
"downloads": -1,
"filename": "cliquet-1.1.2.zip",
"has_sig": false,
"md5_digest": "b90f2d4a4f70c005a64df3edecb3f3d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 69498,
"upload_time": "2015-03-03T00:35:04",
"url": "https://files.pythonhosted.org/packages/01/7c/dc60de88adca01d2849e44d532ec3ffc0591e99179de4a57a32ed94f4131/cliquet-1.1.2.zip"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "e6a33f0fff2a2a4374cbe3223bbfa9d3",
"sha256": "40c02aac04afc992d59e6dae568c111a035f23ad663861718d402e9a5362cf9a"
},
"downloads": -1,
"filename": "cliquet-1.1.3.zip",
"has_sig": false,
"md5_digest": "e6a33f0fff2a2a4374cbe3223bbfa9d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 69692,
"upload_time": "2015-03-03T11:45:51",
"url": "https://files.pythonhosted.org/packages/92/1b/a5146b20f265e9c8fee3fa886435458ec1aa5a2f5707765c26be25541c82/cliquet-1.1.3.zip"
}
],
"1.1.4": [
{
"comment_text": "",
"digests": {
"md5": "3c9f66e11e99bc944a93f204429e8950",
"sha256": "b56a6d6061e044f1c7995e06b73bec04b31fa69ae9da7a559e77e94a0ae7e99e"
},
"downloads": -1,
"filename": "cliquet-1.1.4.tar.gz",
"has_sig": false,
"md5_digest": "3c9f66e11e99bc944a93f204429e8950",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 48070,
"upload_time": "2015-03-03T15:45:26",
"url": "https://files.pythonhosted.org/packages/56/14/dceed542865ded77acfb07c938ef51f096f0bba27919a8b97fc34c27ddbe/cliquet-1.1.4.tar.gz"
}
],
"1.2": [],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "8a187aeb04b0db76713ebb78e28d9ea6",
"sha256": "0f6112b73cfe8aac2b993452a379ac38e0b3b65ea76bbfd48f977fb7b351051a"
},
"downloads": -1,
"filename": "cliquet-1.2.1.zip",
"has_sig": false,
"md5_digest": "8a187aeb04b0db76713ebb78e28d9ea6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 87176,
"upload_time": "2015-03-18T21:57:59",
"url": "https://files.pythonhosted.org/packages/7b/b8/0ccc9e4ba1c3f030bd1f89dcc87af101773074440b3e30128305ea00c406/cliquet-1.2.1.zip"
}
],
"1.2.dev0": [
{
"comment_text": "",
"digests": {
"md5": "98d6123bab624a70727fc2e47805e620",
"sha256": "40d86813fc725aab79e7fecef5aca3aa904484aa424afdc687e37d6013a40ba1"
},
"downloads": -1,
"filename": "cliquet-1.2.dev0.tar.gz",
"has_sig": false,
"md5_digest": "98d6123bab624a70727fc2e47805e620",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 48108,
"upload_time": "2015-03-03T15:44:08",
"url": "https://files.pythonhosted.org/packages/53/76/4e60d22033c992d78c2e9a39a4c8163a2bc36fd2da264261662181c9e8a9/cliquet-1.2.dev0.tar.gz"
}
],
"1.2.dev1": [
{
"comment_text": "",
"digests": {
"md5": "73cdf8a2b2003d65327d8e911acb9358",
"sha256": "1ba94a8068d968d6bd1113be57943ec9e861eff56cf03d1f8788c46d35a09c0a"
},
"downloads": -1,
"filename": "cliquet-1.2.dev1.tar.gz",
"has_sig": false,
"md5_digest": "73cdf8a2b2003d65327d8e911acb9358",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 52172,
"upload_time": "2015-03-16T15:20:22",
"url": "https://files.pythonhosted.org/packages/d2/0e/d10a37f3f9b3cbb6e16150082750e4982cbab33b9166c35ce891bca31ec8/cliquet-1.2.dev1.tar.gz"
}
],
"1.2.dev2": [
{
"comment_text": "",
"digests": {
"md5": "e944aeb286245d8a22a3b2d60d139c81",
"sha256": "a1a61d2f62f2e6344041501297608717d9f997c1ef13dfdc5d668240d99bea8b"
},
"downloads": -1,
"filename": "cliquet-1.2.dev2.tar.gz",
"has_sig": false,
"md5_digest": "e944aeb286245d8a22a3b2d60d139c81",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 53622,
"upload_time": "2015-03-16T21:27:54",
"url": "https://files.pythonhosted.org/packages/9e/21/2a1be5a7c75dc5926f08ea07f591c6430248acf74a5550feb439d4f56133/cliquet-1.2.dev2.tar.gz"
}
],
"1.2.dev3": [
{
"comment_text": "",
"digests": {
"md5": "6092e36953a9323fb9f452560165341c",
"sha256": "26279203bfe266b976bff7d5a2c54f17d657bedec8cedc4aefe6ecf7ecf58a8f"
},
"downloads": -1,
"filename": "cliquet-1.2.dev3.tar.gz",
"has_sig": false,
"md5_digest": "6092e36953a9323fb9f452560165341c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 59874,
"upload_time": "2015-03-18T14:49:34",
"url": "https://files.pythonhosted.org/packages/6d/4b/05128a03f8a2fa32a97a253693c830820207fad9ceac9f814628b45dc844/cliquet-1.2.dev3.tar.gz"
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "78ab0a95de382e3666779d9c26114814",
"sha256": "47815c4862117c5be15563a8fbb86ba1ce6e204f63c343d93cf225365b061eed"
},
"downloads": -1,
"filename": "cliquet-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "78ab0a95de382e3666779d9c26114814",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 63740,
"upload_time": "2015-03-19T23:02:28",
"url": "https://files.pythonhosted.org/packages/ca/c0/ed21c6db6b6a003f2342276e3970f06a88a6d5adc782bc8e8bc1a2efa40e/cliquet-1.3.0.tar.gz"
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "0867d47bcb7a52a2f975c307f9c8c663",
"sha256": "b7fe73515f5e3594c7d0f0295a59c603c0c96c2d7d53f45ce9a8e2abddcce789"
},
"downloads": -1,
"filename": "cliquet-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "0867d47bcb7a52a2f975c307f9c8c663",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 62309,
"upload_time": "2015-03-19T23:33:57",
"url": "https://files.pythonhosted.org/packages/d5/6c/c08d128042acdda971d3df610e9085478d5ea460824cf09da7cc0db625f0/cliquet-1.3.1.tar.gz"
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "7bb56a13bccd747121e82747894f419d",
"sha256": "4ea9a2f95dcd1a1dfd11b7125010648ba4a3353ac05a50a1ca95510891f0f03f"
},
"downloads": -1,
"filename": "cliquet-1.3.2.tar.gz",
"has_sig": false,
"md5_digest": "7bb56a13bccd747121e82747894f419d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 62966,
"upload_time": "2015-03-20T20:47:43",
"url": "https://files.pythonhosted.org/packages/22/6a/4820d2878f4a3ffc72aea3a0095fa359033f87b2e705ab1b2bb15dcfb4e4/cliquet-1.3.2.tar.gz"
}
],
"1.3.3.dev1": [
{
"comment_text": "",
"digests": {
"md5": "528deb39716e4cd92e48519f765ac03a",
"sha256": "c2d4abc5e404110719536dfedda8158617a75e14052def990627bfa3a2b11b72"
},
"downloads": -1,
"filename": "cliquet-1.3.3.dev1.tar.gz",
"has_sig": false,
"md5_digest": "528deb39716e4cd92e48519f765ac03a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64452,
"upload_time": "2015-03-24T11:01:42",
"url": "https://files.pythonhosted.org/packages/90/ec/0d3345a348c33a045a232916e2db06fd458b52f2e915e3c9b90da134147d/cliquet-1.3.3.dev1.tar.gz"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "81b847f5dbcc5a070d839bcd95f41882",
"sha256": "2a3d14cab5c388fb996e895f49b05d67c43a6843d08d5a77e25b1d31e100cf06"
},
"downloads": -1,
"filename": "cliquet-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "81b847f5dbcc5a070d839bcd95f41882",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64137,
"upload_time": "2015-03-24T17:25:03",
"url": "https://files.pythonhosted.org/packages/1e/b3/c2a278abe09ebcb62ec5a0fa58791f1ad850114a2f3cd08c16e65700f66b/cliquet-1.4.0.tar.gz"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "0e10468365771d566fe8892fe2f3a118",
"sha256": "c3ed7229cc3f196ce066cd61605570d3b261ff3e8cf22411e9e1b834f654d8bd"
},
"downloads": -1,
"filename": "cliquet-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "0e10468365771d566fe8892fe2f3a118",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66446,
"upload_time": "2015-03-25T17:01:56",
"url": "https://files.pythonhosted.org/packages/2f/3e/4e16fa88f97de8096068e4824864a177b18df5fae8fa9eded308b5b3dd02/cliquet-1.4.1.tar.gz"
}
],
"1.4.2.dev0": [
{
"comment_text": "",
"digests": {
"md5": "a334e9e24032b21572529c1857f9c408",
"sha256": "cd8a85ba0886656eddb2f9de2f6b220341ed051d30e6ed7ca8f7131f5a7809f0"
},
"downloads": -1,
"filename": "cliquet-1.4.2.dev0.tar.gz",
"has_sig": false,
"md5_digest": "a334e9e24032b21572529c1857f9c408",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 66544,
"upload_time": "2015-03-25T23:34:22",
"url": "https://files.pythonhosted.org/packages/a5/47/abfbf7c179f1d158be8318692d897294282d3efb21978d02a98c061ca2f6/cliquet-1.4.2.dev0.tar.gz"
}
],
"1.5.0": [
{
"comment_text": "",
"digests": {
"md5": "e53b309585fcc5c2ab7b7314dfa4f2be",
"sha256": "9b13b9570157c8d376015c089673c440b028b4acd4538e4d3c7dcd5267c9e6ab"
},
"downloads": -1,
"filename": "cliquet-1.5.0.tar.gz",
"has_sig": false,
"md5_digest": "e53b309585fcc5c2ab7b7314dfa4f2be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 67950,
"upload_time": "2015-03-27T16:36:30",
"url": "https://files.pythonhosted.org/packages/6a/74/b925871f4d33affc697e24a0bce26096a244817290670465ccd4b1c26ad2/cliquet-1.5.0.tar.gz"
}
],
"1.6.0": [
{
"comment_text": "",
"digests": {
"md5": "171c09ea6537ba74bc4dfd4dcf544e12",
"sha256": "7ad9b99cb5176c8a9cae750607df5813080b502501d1060ca18517800e053abc"
},
"downloads": -1,
"filename": "cliquet-1.6.0.tar.gz",
"has_sig": false,
"md5_digest": "171c09ea6537ba74bc4dfd4dcf544e12",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 69920,
"upload_time": "2015-03-30T16:27:04",
"url": "https://files.pythonhosted.org/packages/6c/b3/d29e2c18d36c9a7d3a36f6926c7811c12e855fb698622cd70cfd0ca6507f/cliquet-1.6.0.tar.gz"
}
],
"1.6.1.dev0": [
{
"comment_text": "",
"digests": {
"md5": "1094b630ae1e8265de3c193b0ccad62c",
"sha256": "6a669657100af8dad64dfcfb1224894ccbb5f2db6f7ab9b939b7877dd75bc69f"
},
"downloads": -1,
"filename": "cliquet-1.6.1.dev0.tar.gz",
"has_sig": false,
"md5_digest": "1094b630ae1e8265de3c193b0ccad62c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 73387,
"upload_time": "2015-04-02T08:25:28",
"url": "https://files.pythonhosted.org/packages/2f/84/6268b85d0dfa87c03d5a3becc706cd8e49d62093bf76daa2431c7e96f91a/cliquet-1.6.1.dev0.tar.gz"
}
],
"1.7.0": [
{
"comment_text": "",
"digests": {
"md5": "86f80df6e9ff7f9dc8d34cd3acfad690",
"sha256": "1b269e60dc92a0969591f40739f0d640dd70e2737a3e48cd3e1615f0beee2990"
},
"downloads": -1,
"filename": "cliquet-1.7.0.tar.gz",
"has_sig": false,
"md5_digest": "86f80df6e9ff7f9dc8d34cd3acfad690",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 78010,
"upload_time": "2015-04-10T14:11:05",
"url": "https://files.pythonhosted.org/packages/82/53/f050fabd7c9adbd4c2b6a3b61afd4ac264d4bc520a8c96af297517d4eb81/cliquet-1.7.0.tar.gz"
}
],
"1.7.1.dev0": [
{
"comment_text": "",
"digests": {
"md5": "6a13b56775c7eda5b5906dccb056aeab",
"sha256": "df47b97ba6e8e006ddc33808657ac9d625908bae0259bcd8fc3bfbc472984076"
},
"downloads": -1,
"filename": "cliquet-1.7.1.dev0.tar.gz",
"has_sig": false,
"md5_digest": "6a13b56775c7eda5b5906dccb056aeab",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 81677,
"upload_time": "2015-04-27T12:00:32",
"url": "https://files.pythonhosted.org/packages/74/08/a53fa35feaa634df7616ecbd0a8b1105665ef17f657bbb970bb1a7723a4d/cliquet-1.7.1.dev0.tar.gz"
}
],
"1.8.0": [
{
"comment_text": "",
"digests": {
"md5": "9c67ef54a3a9fd9dd4d7f6828247876e",
"sha256": "9fe78915263b51c03e5cf23353fcad4945bd52ef983c0e061981eb4680216c45"
},
"downloads": -1,
"filename": "cliquet-1.8.0.tar.gz",
"has_sig": false,
"md5_digest": "9c67ef54a3a9fd9dd4d7f6828247876e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 87856,
"upload_time": "2015-05-18T09:32:21",
"url": "https://files.pythonhosted.org/packages/d5/a0/c0665dadc662060e140058292a137ebfb9c8f17c4282d2029d071794da92/cliquet-1.8.0.tar.gz"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "7264ad06bfa1beb1c1885645cd4fce59",
"sha256": "1ad4eb27e839bbe79a979e76524853b14132d55551facdfd35d4dec828731165"
},
"downloads": -1,
"filename": "cliquet-2.0.0.zip",
"has_sig": false,
"md5_digest": "7264ad06bfa1beb1c1885645cd4fce59",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 134785,
"upload_time": "2015-06-16T19:46:11",
"url": "https://files.pythonhosted.org/packages/73/c4/6abcbeb09acf745e1d07864a098705dce5a6801c1f84a2a07541145504c9/cliquet-2.0.0.zip"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "01bdcb173dde1bc68b90fa08d167cc51",
"sha256": "0b7c8fdf4b75072811e9c580f2d2ea38e8d1295538b711d3c26dd2249e00a606"
},
"downloads": -1,
"filename": "cliquet-2.1.0.zip",
"has_sig": false,
"md5_digest": "01bdcb173dde1bc68b90fa08d167cc51",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 136783,
"upload_time": "2015-06-26T21:19:10",
"url": "https://files.pythonhosted.org/packages/96/a3/55f5d5f460865caac4065c9acd6261dc3ea5735082eb3ca2aae176d2298a/cliquet-2.1.0.zip"
}
],
"2.10.0": [
{
"comment_text": "",
"digests": {
"md5": "8ca1ade55825021ae1e125e277188a20",
"sha256": "bace84d7aab7cafe487b239254f7bacb28960e5f9dc37b8fc3ec70b98c0e0032"
},
"downloads": -1,
"filename": "cliquet-2.10.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "8ca1ade55825021ae1e125e277188a20",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 288274,
"upload_time": "2015-10-30T16:07:59",
"url": "https://files.pythonhosted.org/packages/eb/94/753a812fd60d6e0ca4a390b3cc66061d0fe8e669197ac9a10e7c43c2797e/cliquet-2.10.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fec3eaea96356cdb00149a8363ec0a1a",
"sha256": "3b6c0922525128081b47c6804f4856bca86e530e0f80567f19cfc145ead122e0"
},
"downloads": -1,
"filename": "cliquet-2.10.0.tar.gz",
"has_sig": false,
"md5_digest": "fec3eaea96356cdb00149a8363ec0a1a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 253764,
"upload_time": "2015-10-30T16:09:29",
"url": "https://files.pythonhosted.org/packages/40/f1/9c0f26144f940286f57a6f76c132ef214c32043fd8cb7b6fa0da9c299211/cliquet-2.10.0.tar.gz"
}
],
"2.10.1": [
{
"comment_text": "",
"digests": {
"md5": "19a14501411b5419d307758e93579475",
"sha256": "cd4215e77f0552eb3fe7d96b8943f88daa0c73ef7af802415f17bab094e3f68f"
},
"downloads": -1,
"filename": "cliquet-2.10.1-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "19a14501411b5419d307758e93579475",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 288428,
"upload_time": "2015-11-02T23:30:28",
"url": "https://files.pythonhosted.org/packages/80/7b/d8be54aef0eb697fbb992f1700882d42e84f3bd73309c51092fd95da3f6b/cliquet-2.10.1-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "56f5ace227a0030099f27b971912efd4",
"sha256": "062e86b90f36b45a0aeba66e2f486b3902beb146e47e4582e8906c44485c7c23"
},
"downloads": -1,
"filename": "cliquet-2.10.1-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "56f5ace227a0030099f27b971912efd4",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 288431,
"upload_time": "2015-11-02T23:31:14",
"url": "https://files.pythonhosted.org/packages/9d/fc/d27d4a65372b7f9d7b5a74a5a49a9150cf9f303e88f36261f93307ff9a08/cliquet-2.10.1-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9487dc8732fae25ca112c1d0abc06735",
"sha256": "9eacf97f6d2b642948a4b24177b8ab64e91cdc91738a6d00d6d4a6065e0eb920"
},
"downloads": -1,
"filename": "cliquet-2.10.1.tar.gz",
"has_sig": false,
"md5_digest": "9487dc8732fae25ca112c1d0abc06735",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 253910,
"upload_time": "2015-11-02T23:30:40",
"url": "https://files.pythonhosted.org/packages/b3/40/55fe77fa9add688348747d813306a553784e75877ef74470cc174673144f/cliquet-2.10.1.tar.gz"
}
],
"2.10.2": [
{
"comment_text": "",
"digests": {
"md5": "2d3d2b286565f958903a79a218fc7726",
"sha256": "96b71d8c7b1758e750f649d7840e1b6379845f62b85252d020bf235954f91ed5"
},
"downloads": -1,
"filename": "cliquet-2.10.2-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "2d3d2b286565f958903a79a218fc7726",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 289119,
"upload_time": "2015-11-10T10:49:00",
"url": "https://files.pythonhosted.org/packages/38/47/9f5977af8d889d84f005e483cb4d343d1dbbb4ad78739c70f7c28b596e03/cliquet-2.10.2-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "efd7bbe9c4641f2d16555133ae970733",
"sha256": "0901529cd9aa5607e5d2650b5db6d396e874883aa98b79a7a17005f4f9c88005"
},
"downloads": -1,
"filename": "cliquet-2.10.2.tar.gz",
"has_sig": false,
"md5_digest": "efd7bbe9c4641f2d16555133ae970733",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 252938,
"upload_time": "2015-11-10T10:49:16",
"url": "https://files.pythonhosted.org/packages/8d/22/5c6c0aed466834ff37ae80de36ce52f6f56791af26b91e68ca78efd5f24b/cliquet-2.10.2.tar.gz"
}
],
"2.10.3": [
{
"comment_text": "",
"digests": {
"md5": "f94b6976d3356aaba169302088358c45",
"sha256": "28f56d4ded11a07f53e2dd28919994f013fa95a73b5ce23e63ddb41cfe689e98"
},
"downloads": -1,
"filename": "cliquet-2.10.3-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "f94b6976d3356aaba169302088358c45",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 290176,
"upload_time": "2015-11-18T11:30:08",
"url": "https://files.pythonhosted.org/packages/00/96/981a305be866f4e9e2b130daee9363d86ff19bb3d0b47966dd46be1246a4/cliquet-2.10.3-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "27b976cb22cda572273dd44d74167326",
"sha256": "afa62488c09c9e32cc53f79ef87a1c28bb3a81344be588cfbcb8e1137b89b445"
},
"downloads": -1,
"filename": "cliquet-2.10.3.tar.gz",
"has_sig": false,
"md5_digest": "27b976cb22cda572273dd44d74167326",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254072,
"upload_time": "2015-11-18T11:30:29",
"url": "https://files.pythonhosted.org/packages/5c/2a/14e581e708c30de9859f4ef67460174dd455adfd0abe901c90f3213eeb1d/cliquet-2.10.3.tar.gz"
}
],
"2.11.0": [
{
"comment_text": "",
"digests": {
"md5": "a6bd8221caecda75667f71974053b4fe",
"sha256": "a1cbb75ca554dd9e31c2aa709cf022f380921ed85a00536dd6ea49e8f19d0902"
},
"downloads": -1,
"filename": "cliquet-2.11.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "a6bd8221caecda75667f71974053b4fe",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 300581,
"upload_time": "2015-11-17T17:08:56",
"url": "https://files.pythonhosted.org/packages/d9/ac/0e9699f15022b782ea51de2e13b23c20f70f5dbf27c5d0478902d262f36d/cliquet-2.11.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1e157a5f07bc388b22727510b6a6bffe",
"sha256": "a021f7587ab3cf638b21d977426826f72760768857386ab662895ca41e0d30da"
},
"downloads": -1,
"filename": "cliquet-2.11.0-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "1e157a5f07bc388b22727510b6a6bffe",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 300587,
"upload_time": "2015-11-17T17:09:16",
"url": "https://files.pythonhosted.org/packages/d6/f0/1876591e532702fe8faa659064459bd06499f540164e7ac1f5d58511da04/cliquet-2.11.0-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "933c85e4dfa45164d4c8be81f63177dc",
"sha256": "cc5bbac44b1653aaea54e89541c26e7cdddc6e2130b765fda1de87ae7a92b5ac"
},
"downloads": -1,
"filename": "cliquet-2.11.0.tar.gz",
"has_sig": false,
"md5_digest": "933c85e4dfa45164d4c8be81f63177dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 264222,
"upload_time": "2015-11-17T17:09:26",
"url": "https://files.pythonhosted.org/packages/ca/81/e0d537b09c1bdff3638f45816ee183c905837f540cdae69890e643b42042/cliquet-2.11.0.tar.gz"
}
],
"2.12.0": [
{
"comment_text": "",
"digests": {
"md5": "3c216974cf3a39c6f87e7072556c6188",
"sha256": "263eea8460ce8861b89dfd0df2ec5e572795e0bfabe659831a66ba7d61b65e7a"
},
"downloads": -1,
"filename": "cliquet-2.12.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "3c216974cf3a39c6f87e7072556c6188",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 306665,
"upload_time": "2015-11-27T15:29:54",
"url": "https://files.pythonhosted.org/packages/72/80/86397eea044153e4b9a559256ced2369e0d7e82ba990b32bad606d691291/cliquet-2.12.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "10b5a3c8a95a1f879c793211f28d7ccb",
"sha256": "e4c54dc2ce0dbccf95ad5d124fa94f24991f38b6b8f77ac16aa20ecf74e4ed2b"
},
"downloads": -1,
"filename": "cliquet-2.12.0.tar.gz",
"has_sig": false,
"md5_digest": "10b5a3c8a95a1f879c793211f28d7ccb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 270116,
"upload_time": "2015-11-27T15:30:00",
"url": "https://files.pythonhosted.org/packages/6d/f8/8d821d74e35a8275d34c5d430cb5fdf48a82dbad6333122f902badb050a5/cliquet-2.12.0.tar.gz"
}
],
"2.13.0": [
{
"comment_text": "",
"digests": {
"md5": "3d26405f5ab4a7bec30527304d9b2e40",
"sha256": "356902a577e89a1b89adfacecefd86701d286a62772e9cbd6670f68f8d3bbd37"
},
"downloads": -1,
"filename": "cliquet-2.13.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "3d26405f5ab4a7bec30527304d9b2e40",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 309991,
"upload_time": "2015-12-01T15:48:27",
"url": "https://files.pythonhosted.org/packages/57/eb/e575b9ac6dc6be9890e57bb71180727ccbe17973dadf541c5f2acf756d1c/cliquet-2.13.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "10937550fab704a4aacb2d1ac3cef32b",
"sha256": "9c4fa8cfe43249a02b9af9f615f271c04d3a08c03c297d572eccf5da4d3a33d9"
},
"downloads": -1,
"filename": "cliquet-2.13.0.tar.gz",
"has_sig": false,
"md5_digest": "10937550fab704a4aacb2d1ac3cef32b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 269273,
"upload_time": "2015-12-01T15:48:41",
"url": "https://files.pythonhosted.org/packages/45/f7/5c45a3ac7834a330513f31a67df077a522774f46602e2a003193aea77155/cliquet-2.13.0.tar.gz"
}
],
"2.13.1": [
{
"comment_text": "",
"digests": {
"md5": "5bab9aa46415678b04986bbc6d9ca599",
"sha256": "51a063c605a71184c0c1970a56cd070d40fbda08e412a8a0d0d69148ea553e77"
},
"downloads": -1,
"filename": "cliquet-2.13.1-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "5bab9aa46415678b04986bbc6d9ca599",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 310289,
"upload_time": "2015-12-16T10:17:52",
"url": "https://files.pythonhosted.org/packages/7b/40/70fdbf31dbe3040afd6c795bd14cab9702e4fc95f4139528e8bd5d338266/cliquet-2.13.1-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dc67b888c4be7db95d2c399d218978af",
"sha256": "fba6e1f23919542286374dbbb388b3671c740560774b3d8d5bd48bc54e1a383c"
},
"downloads": -1,
"filename": "cliquet-2.13.1.tar.gz",
"has_sig": false,
"md5_digest": "dc67b888c4be7db95d2c399d218978af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 273165,
"upload_time": "2015-12-16T10:18:03",
"url": "https://files.pythonhosted.org/packages/e3/7c/048af6a8b85b9f2a29553fd03480159327e9da2dbc24d18bd2771678ec5a/cliquet-2.13.1.tar.gz"
}
],
"2.14.0": [
{
"comment_text": "",
"digests": {
"md5": "0ea731a9ea3ba38f5cc91e61ffdd1f30",
"sha256": "76948b8eb627f199d4d1d6ddee3ee1487c07812186216dce4e764f17851dbe6b"
},
"downloads": -1,
"filename": "cliquet-2.14.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "0ea731a9ea3ba38f5cc91e61ffdd1f30",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 313030,
"upload_time": "2016-01-15T13:59:40",
"url": "https://files.pythonhosted.org/packages/73/02/c3c675c664064d89260efe3d36002042a22b0a06e2007997d3176b715373/cliquet-2.14.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1381071a5be4bdc7d07a8e5323761944",
"sha256": "60bac60db60e449e0072c60bf230f884afafebf167a7ae06d01118d12e4ab0be"
},
"downloads": -1,
"filename": "cliquet-2.14.0.tar.gz",
"has_sig": false,
"md5_digest": "1381071a5be4bdc7d07a8e5323761944",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 275631,
"upload_time": "2016-01-15T13:59:50",
"url": "https://files.pythonhosted.org/packages/ca/d1/44948623d47007ac589265f9722a6c1756aea863fa43847c6edd67a7118d/cliquet-2.14.0.tar.gz"
}
],
"2.15.0": [
{
"comment_text": "",
"digests": {
"md5": "6bea0881ed4582481810545e69ad78b4",
"sha256": "8904bd127398b0e93a575466ac8872fa4380f245dcccdca8a87d234741c4ab69"
},
"downloads": -1,
"filename": "cliquet-2.15.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "6bea0881ed4582481810545e69ad78b4",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 315251,
"upload_time": "2016-01-27T16:25:59",
"url": "https://files.pythonhosted.org/packages/f3/b5/f9c83cd6334d859c9b800fe2acaf0d7bbd9a6a5e84177d8295e9a5a69ee0/cliquet-2.15.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5bdf721b789997325370aeb884c4ccad",
"sha256": "f7d9c6ed195f84559457d39f3d4c84714145ab596943869fd04004bb286c1e65"
},
"downloads": -1,
"filename": "cliquet-2.15.0-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "5bdf721b789997325370aeb884c4ccad",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 315256,
"upload_time": "2016-01-27T16:27:18",
"url": "https://files.pythonhosted.org/packages/6d/2c/cd33b96f9edbaeb7496200d031fa0185c92482942fe33e8a6a0475250b22/cliquet-2.15.0-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ff46ac7d8cc896a27cb2534737636db3",
"sha256": "f688af10a7021953d1cb9f276e4146ad7a0f80548b8911608491038b74eacd34"
},
"downloads": -1,
"filename": "cliquet-2.15.0.tar.gz",
"has_sig": false,
"md5_digest": "ff46ac7d8cc896a27cb2534737636db3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 278607,
"upload_time": "2016-01-27T16:26:20",
"url": "https://files.pythonhosted.org/packages/ce/05/7853d26671708ce5703f8cac76a1401ed0cc0c2b9177be51113de7cb780f/cliquet-2.15.0.tar.gz"
}
],
"2.2.0": [
{
"comment_text": "",
"digests": {
"md5": "a5d0e0f171ada347074220fe8ba61c76",
"sha256": "f82b2895e7019452c4c0a51d5de124eb552001591d4bc331f0b788cbcf35b5c9"
},
"downloads": -1,
"filename": "cliquet-2.2.0.zip",
"has_sig": false,
"md5_digest": "a5d0e0f171ada347074220fe8ba61c76",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 138322,
"upload_time": "2015-07-02T11:47:34",
"url": "https://files.pythonhosted.org/packages/98/48/34034587ab2c005d77e162ae1adb535598b940aa5b0df00bf1fa562fedea/cliquet-2.2.0.zip"
}
],
"2.2.1": [
{
"comment_text": "",
"digests": {
"md5": "15feb72b8db97e789bcbb5be937b3e6f",
"sha256": "f95f4e76e6ce24f80fa3191a8b23db3e5937711f00ba41c97b0730cd91de01a3"
},
"downloads": -1,
"filename": "cliquet-2.2.1.zip",
"has_sig": false,
"md5_digest": "15feb72b8db97e789bcbb5be937b3e6f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 138544,
"upload_time": "2015-07-08T08:23:43",
"url": "https://files.pythonhosted.org/packages/48/ec/4927e883f47b00d32d51224306a982fef58e62fd03d666ac67a73a15571a/cliquet-2.2.1.zip"
}
],
"2.3": [
{
"comment_text": "",
"digests": {
"md5": "eee57469d7840238d1b404f92a400c58",
"sha256": "e36ff04d09a6ec3234b4d91caf03ebd807fb16f6555da0791a98cac86291bdd0"
},
"downloads": -1,
"filename": "cliquet-2.3.zip",
"has_sig": false,
"md5_digest": "eee57469d7840238d1b404f92a400c58",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 140417,
"upload_time": "2015-07-13T11:20:19",
"url": "https://files.pythonhosted.org/packages/fb/e0/22e6b56f768049cf40c28ef247b701809fb341514ac0b07305aedf9ee7da/cliquet-2.3.zip"
}
],
"2.3.1": [
{
"comment_text": "",
"digests": {
"md5": "2ee0deea40a129cae9eb2b41c4a69562",
"sha256": "cf966647f38a1fa1d87980d42654c6a82ae6ea592aad12df871dfb46d322c97c"
},
"downloads": -1,
"filename": "cliquet-2.3.1.zip",
"has_sig": false,
"md5_digest": "2ee0deea40a129cae9eb2b41c4a69562",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 140821,
"upload_time": "2015-07-15T16:16:37",
"url": "https://files.pythonhosted.org/packages/27/71/43a9c7e946e3659f1354e5d25d30114898b9b5b0fddefbf240ca72078297/cliquet-2.3.1.zip"
}
],
"2.4.0": [
{
"comment_text": "",
"digests": {
"md5": "46996fd22fbe21e0815cd81991dbea87",
"sha256": "e9ebbbf3541e9483d40d67bcf0d09914abd33f161ae0db9337266c11452fcfca"
},
"downloads": -1,
"filename": "cliquet-2.4.0.linux-x86_64.tar.gz",
"has_sig": false,
"md5_digest": "46996fd22fbe21e0815cd81991dbea87",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 250925,
"upload_time": "2015-08-14T09:38:46",
"url": "https://files.pythonhosted.org/packages/04/6d/c9d07ffbe4fb0ddc90172c33997cc8fe5e378c37913374ab59a56cb152e1/cliquet-2.4.0.linux-x86_64.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "b321afea8801ff21c5e999335a95bc61",
"sha256": "6e0f11a2a44742382ebdc5dba914e3fa7835ad59a302e4bfa1aa7fa687683a31"
},
"downloads": -1,
"filename": "cliquet-2.4.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "b321afea8801ff21c5e999335a95bc61",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 138132,
"upload_time": "2015-08-14T09:38:52",
"url": "https://files.pythonhosted.org/packages/d9/2f/aba444cfd078cf26a7c2a44fea614c88e049121e45945e4a86b0ed057c3a/cliquet-2.4.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8e8c44684445009b9650cf478d00e891",
"sha256": "ba5aa54e2d21f402b911d646e2358fd9147b323377c28f2a1a82e1c688b8480e"
},
"downloads": -1,
"filename": "cliquet-2.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8e8c44684445009b9650cf478d00e891",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 138134,
"upload_time": "2015-08-14T09:55:52",
"url": "https://files.pythonhosted.org/packages/de/b7/91240211a85e8f9ff5a3a5ef93001d312df02e5de7773f2b785f3bfc5b03/cliquet-2.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c7bf92de687c2d429caa2c144787ff08",
"sha256": "ea68540b878027bbc5a81df8e444babaf19172738348204d96bccc0efefb7550"
},
"downloads": -1,
"filename": "cliquet-2.4.0.tar.gz",
"has_sig": false,
"md5_digest": "c7bf92de687c2d429caa2c144787ff08",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 107085,
"upload_time": "2015-08-14T09:38:57",
"url": "https://files.pythonhosted.org/packages/d6/ad/aeda16454cdb99451ace7785aa8a5545f2ad789ce9c4b5c8c70b86e05de1/cliquet-2.4.0.tar.gz"
}
],
"2.4.1": [
{
"comment_text": "",
"digests": {
"md5": "2c9c61bd983b9e1253a4104988694e22",
"sha256": "6cacc3d80cd7166ff19264ba352d9c098fbcd55d40b81fe65852f0c58e9e047f"
},
"downloads": -1,
"filename": "cliquet-2.4.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c9c61bd983b9e1253a4104988694e22",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 213897,
"upload_time": "2015-08-25T09:26:26",
"url": "https://files.pythonhosted.org/packages/3b/ea/53522652379cea9bfe4168342d7690c291676d3b6ddc364955ee04ede08e/cliquet-2.4.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4871ea278b13827efd268f241075d8a1",
"sha256": "656b8103735eb3f20c7379f3806019ee9114ea2038b9b84d0f4e224edf72658b"
},
"downloads": -1,
"filename": "cliquet-2.4.1.tar.gz",
"has_sig": false,
"md5_digest": "4871ea278b13827efd268f241075d8a1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 130448,
"upload_time": "2015-08-25T09:26:34",
"url": "https://files.pythonhosted.org/packages/c2/ad/f4c1dee17bf5cc109399f7f8d1f0f4c78cba086f8df8261f2b96a8d21fa5/cliquet-2.4.1.tar.gz"
}
],
"2.4.2": [
{
"comment_text": "",
"digests": {
"md5": "aeaecb06b48dfd8e46d8ded542e9608f",
"sha256": "f27bf97b402dd14aea2faf686a9cf8f3792e1ce41ffca70fdf76ed2173832b87"
},
"downloads": -1,
"filename": "cliquet-2.4.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "aeaecb06b48dfd8e46d8ded542e9608f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 214046,
"upload_time": "2015-08-26T14:52:24",
"url": "https://files.pythonhosted.org/packages/d6/2c/a59d5cc035da20d7ab9a283e846b3cfb9a1fca1b633f339b35af8d617d8a/cliquet-2.4.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "351550251be02ed49dcf0a260cd84f8a",
"sha256": "dacefe2e061e41ce3bfccad1615bb4ce39065262887f9fa5ef229fd2a95df0ab"
},
"downloads": -1,
"filename": "cliquet-2.4.2.tar.gz",
"has_sig": false,
"md5_digest": "351550251be02ed49dcf0a260cd84f8a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 128966,
"upload_time": "2015-08-26T14:52:29",
"url": "https://files.pythonhosted.org/packages/ba/cb/ab657ff28283d3263d9bd9bbff9b5a34558d78a482b268a8e4ee626112fa/cliquet-2.4.2.tar.gz"
}
],
"2.4.3": [
{
"comment_text": "",
"digests": {
"md5": "9685638ec3d1035a4e77058f7c7ab38a",
"sha256": "1e05873cf72fa338e79b6cafedf9d3b0d7b890f746102ab631769ccb30475205"
},
"downloads": -1,
"filename": "cliquet-2.4.3.zip",
"has_sig": false,
"md5_digest": "9685638ec3d1035a4e77058f7c7ab38a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 186407,
"upload_time": "2015-08-26T18:21:51",
"url": "https://files.pythonhosted.org/packages/21/17/7552a871a01de5632d1fa9c4c0268ead828c352e6519cc10de04289f134d/cliquet-2.4.3.zip"
}
],
"2.5.0": [
{
"comment_text": "",
"digests": {
"md5": "87fde146e189cc4be55eab1df583dc07",
"sha256": "edc99c35d646b860b9b906fa569b12a926d8f7e151e35c2d59273fd3d647256e"
},
"downloads": -1,
"filename": "cliquet-2.5.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "87fde146e189cc4be55eab1df583dc07",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 284616,
"upload_time": "2015-09-04T14:01:55",
"url": "https://files.pythonhosted.org/packages/3d/4e/0dae4221a4f78b39138acfb5856dd8121ab19e36150ed73a1008692c1dcc/cliquet-2.5.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "348fb1cd5e9d306e8abf00a02b7c9041",
"sha256": "abc76f0c60d7670e36879297d1f7c5d10459fb02be3347725b043d889fbf1dbb"
},
"downloads": -1,
"filename": "cliquet-2.5.0-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "348fb1cd5e9d306e8abf00a02b7c9041",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 284610,
"upload_time": "2015-09-04T13:10:38",
"url": "https://files.pythonhosted.org/packages/03/bf/705f94715095ba79e22108384fcb9130dbeab78944dbcb07c459fbb19f0b/cliquet-2.5.0-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e9780e09af521faf08757ded4193c245",
"sha256": "f9d5d001479515885c95eabb4b6af42a75c4c599d6ff1a9519f0de7e5ae53968"
},
"downloads": -1,
"filename": "cliquet-2.5.0.tar.gz",
"has_sig": false,
"md5_digest": "e9780e09af521faf08757ded4193c245",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 251951,
"upload_time": "2015-09-04T09:55:21",
"url": "https://files.pythonhosted.org/packages/e0/f5/1ad8d20be6448b75142090bd5a60ba15fac67b617995d431681ada9eb932/cliquet-2.5.0.tar.gz"
}
],
"2.6.0": [
{
"comment_text": "",
"digests": {
"md5": "e398a9ed5c4bf41c1892a4cc6e30a854",
"sha256": "705855146bcc840088a1f230b837b44ba9a892c0db1670cc4d4cc4f67c93eda5"
},
"downloads": -1,
"filename": "cliquet-2.6.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "e398a9ed5c4bf41c1892a4cc6e30a854",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 286752,
"upload_time": "2015-09-08T14:18:59",
"url": "https://files.pythonhosted.org/packages/29/00/d097f14f118af1f8976ccc141d24895c6a8337d667637e7070e622d10cdd/cliquet-2.6.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dace68af159a53b34eb619ebe274d9c2",
"sha256": "960ab7f9c9e3fc89bd78a604ca3af5bb6ed2073e093a58972c7d793cc63eab1a"
},
"downloads": -1,
"filename": "cliquet-2.6.0-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "dace68af159a53b34eb619ebe274d9c2",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 286751,
"upload_time": "2015-09-08T14:20:13",
"url": "https://files.pythonhosted.org/packages/42/28/c44c3e816126ca9250999b226cad291e2571b152057e4c3cb0cf9dfe9de9/cliquet-2.6.0-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1c24b8b935ae8c79bbdfcacb930e3696",
"sha256": "4fdf18347bfb2ff7f219ef8767e71ae856e60f11a8e1a985fd01c44e4a21c916"
},
"downloads": -1,
"filename": "cliquet-2.6.0.tar.gz",
"has_sig": false,
"md5_digest": "1c24b8b935ae8c79bbdfcacb930e3696",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254148,
"upload_time": "2015-09-08T14:18:52",
"url": "https://files.pythonhosted.org/packages/d3/ee/e1dccc87759c6845dc6d6b59e41b180d361a3415a2e05137615ce1169d04/cliquet-2.6.0.tar.gz"
}
],
"2.6.1": [
{
"comment_text": "",
"digests": {
"md5": "a53e8774ba570df50ec3ef823297fd92",
"sha256": "1e5935f0f398eca89dcc235f3b8e73639b18794ffe21923c57fa0fc54035e275"
},
"downloads": -1,
"filename": "cliquet-2.6.1-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "a53e8774ba570df50ec3ef823297fd92",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 286827,
"upload_time": "2015-09-08T17:46:20",
"url": "https://files.pythonhosted.org/packages/85/b8/71e2a029845ffbd8886d2ab1e34034b0ffd54e956ae229bc46a6d14a57ab/cliquet-2.6.1-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a55d25f6b16c9a8c5f3ebdce9aea5db8",
"sha256": "2019e2f78fdaec20f21fb2baa8d71938a95459cf0f7fe239ec4ae0f4f8f36bce"
},
"downloads": -1,
"filename": "cliquet-2.6.1-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "a55d25f6b16c9a8c5f3ebdce9aea5db8",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 286824,
"upload_time": "2015-09-08T17:48:25",
"url": "https://files.pythonhosted.org/packages/96/b7/afd79a39421dba3e86b11f2bd7c75f8a7cf3a2706f5b8adab8b421abc6b7/cliquet-2.6.1-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "66d9529a06ec6a07b90e87c932d6c2f9",
"sha256": "934dff10eb9b5ae8d53fbe3956eb3a6de204cf4493638e13fa116bfd2465a1c7"
},
"downloads": -1,
"filename": "cliquet-2.6.1.tar.gz",
"has_sig": false,
"md5_digest": "66d9529a06ec6a07b90e87c932d6c2f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254332,
"upload_time": "2015-09-08T17:46:13",
"url": "https://files.pythonhosted.org/packages/ed/fc/bc904f062552fe3f4aa3e0320bec00ec9270d8b0516387391a4a55aee9ef/cliquet-2.6.1.tar.gz"
}
],
"2.6.2": [
{
"comment_text": "",
"digests": {
"md5": "120e3adfacc89861a864c2f5ef6b23a7",
"sha256": "9c3408ec205130f942f0c1833794473e94a0c5130fee5692b328a28a9c5fe6b4"
},
"downloads": -1,
"filename": "cliquet-2.6.2-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "120e3adfacc89861a864c2f5ef6b23a7",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 287592,
"upload_time": "2015-09-09T14:12:40",
"url": "https://files.pythonhosted.org/packages/42/53/f3af52e1cc007533c2ae57295c6a3f5374727b9fbbacb4d0aa6b717aefdb/cliquet-2.6.2-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9c0cf9bd00e257e58af14d34f80b164d",
"sha256": "cec18ba222e9af6b9ec8460db05980832b57f55e00e37d1195fd5cb3ca27f687"
},
"downloads": -1,
"filename": "cliquet-2.6.2-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "9c0cf9bd00e257e58af14d34f80b164d",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 287591,
"upload_time": "2015-09-09T14:13:14",
"url": "https://files.pythonhosted.org/packages/99/32/9af881dab17fd1604b5cf90290501618c6773b91d142c1a6947a82fb24f6/cliquet-2.6.2-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9d3b5abc8a3fd9fcb1a038243800279d",
"sha256": "12c7bf9d66eaa2fbee9d997e8814d37fbd8e88377d20b0a0bafc53f29a7bf529"
},
"downloads": -1,
"filename": "cliquet-2.6.2.tar.gz",
"has_sig": false,
"md5_digest": "9d3b5abc8a3fd9fcb1a038243800279d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 255096,
"upload_time": "2015-09-09T14:12:33",
"url": "https://files.pythonhosted.org/packages/d3/04/2f8678a95e87f84859ffa758a653fc6304a93f4677686ab041473fdcfa72/cliquet-2.6.2.tar.gz"
}
],
"2.7.0": [
{
"comment_text": "",
"digests": {
"md5": "c6bad0feea5a29a7a75156fd109ac43f",
"sha256": "53f508aff77f501432879064914d8d62208cd6a3349971a851012c7f5320fa56"
},
"downloads": -1,
"filename": "cliquet-2.7.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "c6bad0feea5a29a7a75156fd109ac43f",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 293171,
"upload_time": "2015-09-23T15:42:31",
"url": "https://files.pythonhosted.org/packages/2b/18/0088a80f98ed0166131f8b1031f3c19dff09258e3825d259a2fa20b4e939/cliquet-2.7.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "58b5af4d63ecfb537ec1635af38a6f49",
"sha256": "40107f5e2c416ece9f7d77f0a3660984f780e131688508068d61fb53005ce4a4"
},
"downloads": -1,
"filename": "cliquet-2.7.0.tar.gz",
"has_sig": false,
"md5_digest": "58b5af4d63ecfb537ec1635af38a6f49",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254415,
"upload_time": "2015-09-23T15:42:41",
"url": "https://files.pythonhosted.org/packages/ae/e6/064f69eab23dee5ad055d69845de2dfb0df95eeb1e9ed1d262bf6cf2fe03/cliquet-2.7.0.tar.gz"
}
],
"2.8.0": [
{
"comment_text": "",
"digests": {
"md5": "66292937664ec97806bf357cae2bbc2e",
"sha256": "c1791ee4f825828b6cb6488cc6e83aa339cea21986f5cab5c12f39a4f5dbb855"
},
"downloads": -1,
"filename": "cliquet-2.8.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "66292937664ec97806bf357cae2bbc2e",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 295059,
"upload_time": "2015-10-06T22:07:22",
"url": "https://files.pythonhosted.org/packages/8e/90/9a80e16e124e3d08a8a62abe5dbccfb96ecf1842ade882ebaf0e315e67ff/cliquet-2.8.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fe99619495e4a1db59f4e06fac29a55b",
"sha256": "d42451a12ab48035b15316333ab637c3e4200adf7b1db7b7d9a1a3302cb920fc"
},
"downloads": -1,
"filename": "cliquet-2.8.0.tar.gz",
"has_sig": false,
"md5_digest": "fe99619495e4a1db59f4e06fac29a55b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 262140,
"upload_time": "2015-10-06T22:07:27",
"url": "https://files.pythonhosted.org/packages/23/4d/1741a79bbe22c15b38d7c5e123407067409d65faf4038f1fa2bf1454ec4a/cliquet-2.8.0.tar.gz"
}
],
"2.8.1": [
{
"comment_text": "",
"digests": {
"md5": "9f1a83483bdba2a88afaa161b98e483c",
"sha256": "42335c973a1ed0471ac8d32c31d35d4ed9e9d5d84042c3f138050151dc97e5f8"
},
"downloads": -1,
"filename": "cliquet-2.8.1-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "9f1a83483bdba2a88afaa161b98e483c",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 295186,
"upload_time": "2015-10-14T08:46:00",
"url": "https://files.pythonhosted.org/packages/86/ef/2f93d8c134c7db66b8f519d74b24576b3df7584ed1ae34029eace01e0cae/cliquet-2.8.1-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "93cb0a35724cd58edc216e486cb38713",
"sha256": "a014357a7808d910d1c3e63d7cb5e771e7501dc1ffc4a43d509cba01179dc7e5"
},
"downloads": -1,
"filename": "cliquet-2.8.1.tar.gz",
"has_sig": false,
"md5_digest": "93cb0a35724cd58edc216e486cb38713",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 262321,
"upload_time": "2015-10-14T08:46:15",
"url": "https://files.pythonhosted.org/packages/f9/a0/cb82d6e7b529a701b53cc89b7a8280f5f2ff841b3bc4153d70b7466bf9ea/cliquet-2.8.1.tar.gz"
}
],
"2.8.2": [
{
"comment_text": "",
"digests": {
"md5": "007b2e11383960ef7c5a8d7c74f46208",
"sha256": "4fb1708c58a7be5b832f3da319e9b6859072dac8898d58e5be1e35078255b77f"
},
"downloads": -1,
"filename": "cliquet-2.8.2-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "007b2e11383960ef7c5a8d7c74f46208",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 295425,
"upload_time": "2015-10-22T10:03:06",
"url": "https://files.pythonhosted.org/packages/b0/64/5c9730921656ee6dc003d62f93939bb25d2c459da47c6dda2dbd5ef14cc7/cliquet-2.8.2-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "240db5194c87f1b72425aea57bfdadc0",
"sha256": "5d7743e4b8012ef0e4f3f2fa663aaf7beceee97a2adf3f61ad5459cd27e21f74"
},
"downloads": -1,
"filename": "cliquet-2.8.2-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "240db5194c87f1b72425aea57bfdadc0",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 295416,
"upload_time": "2015-10-22T10:03:16",
"url": "https://files.pythonhosted.org/packages/c8/7f/201aac32363257d842285f19bd4407745cb87a7d3ad1740ebbcdeafcbbeb/cliquet-2.8.2-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8b4ac9c3c772605bc2176d0aa901fd28",
"sha256": "bf01417081b3a9157467b3276c44adf91bdb51934117da818a9286e122eb5385"
},
"downloads": -1,
"filename": "cliquet-2.8.2.zip",
"has_sig": false,
"md5_digest": "8b4ac9c3c772605bc2176d0aa901fd28",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 306934,
"upload_time": "2015-10-22T09:41:31",
"url": "https://files.pythonhosted.org/packages/71/3d/b18448d7d6ce97ba0fd884cc09eaac465c6049fdca8fbef0303302e68f26/cliquet-2.8.2.zip"
}
],
"2.9.0": [
{
"comment_text": "",
"digests": {
"md5": "ba2e0eed339cdec107d35428bd72646f",
"sha256": "29d0126b176822e97b0f7f9a274c4fa26b5fd344bda9b42605eecb7b4e654dd8"
},
"downloads": -1,
"filename": "cliquet-2.9.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "ba2e0eed339cdec107d35428bd72646f",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 284119,
"upload_time": "2015-10-27T14:46:57",
"url": "https://files.pythonhosted.org/packages/b6/20/6360d883ecb2fda50e8e7f46a63a4914813b6759943ab8c626a12e09ef80/cliquet-2.9.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1037d4dd846abbc08d42bdfc74db4362",
"sha256": "6d1c50158acfe5e89db0255692ea1ddf26a5d0dd427259e9015f1f75794c04ed"
},
"downloads": -1,
"filename": "cliquet-2.9.0-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "1037d4dd846abbc08d42bdfc74db4362",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 284137,
"upload_time": "2015-10-27T14:48:36",
"url": "https://files.pythonhosted.org/packages/da/5f/5b58539e08c27d30eac3c2624eb713f54c8c493ffc2ec9ab942262d1bf1a/cliquet-2.9.0-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1652805a9d6e2088803f8b9fd90b8a70",
"sha256": "7c1c3fef6a87417df9626cdb46f098512a0b7c29748eec5f24a916ccbd32cacc"
},
"downloads": -1,
"filename": "cliquet-2.9.0.tar.gz",
"has_sig": false,
"md5_digest": "1652805a9d6e2088803f8b9fd90b8a70",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 249329,
"upload_time": "2015-10-27T14:47:09",
"url": "https://files.pythonhosted.org/packages/c8/aa/1b44404e02478f117ce7e5992ac0b106925d74c6612a15a0c6aa69cb70f1/cliquet-2.9.0.tar.gz"
}
],
"3.0.0": [
{
"comment_text": "",
"digests": {
"md5": "ea91d9cb99308000fbcb0af12119b133",
"sha256": "e812a8d60011a00eadb8cdb0e7615d18c82724d655d8b38fbbf502f2f95e5569"
},
"downloads": -1,
"filename": "cliquet-3.0.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "ea91d9cb99308000fbcb0af12119b133",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 326685,
"upload_time": "2016-02-29T16:51:06",
"url": "https://files.pythonhosted.org/packages/5d/1c/51c9b1f52e85e9885e06678d4a8b5497cbd7cf299814efef0d687e4d0af4/cliquet-3.0.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "bc24d17c1e36ea8239aa951484dc1df1",
"sha256": "b76610ab6d9f044a4d6984ca7ebaf8655b85af41a3996e47b62f48203416077d"
},
"downloads": -1,
"filename": "cliquet-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "bc24d17c1e36ea8239aa951484dc1df1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 287762,
"upload_time": "2016-02-29T16:51:15",
"url": "https://files.pythonhosted.org/packages/94/b6/0779dcbbd1d9c7c7597726b54d2fe459df09e1884aeea881fbfe2ae59503/cliquet-3.0.0.tar.gz"
}
],
"3.1.0": [
{
"comment_text": "",
"digests": {
"md5": "c4c1ecd6c9baa0dd9e9182bd04bce079",
"sha256": "158dcb8304192acfba4a32e1bf713d8d2b9b1e329e6635f3853ce291911121a4"
},
"downloads": -1,
"filename": "cliquet-3.1.0-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "c4c1ecd6c9baa0dd9e9182bd04bce079",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 327785,
"upload_time": "2016-03-08T09:43:16",
"url": "https://files.pythonhosted.org/packages/63/ed/6c6feb5033d044268625747e39ac603eabf50ec17a6ce4fab1d806829cb5/cliquet-3.1.0-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6fc587363fe8537d2a8fcfd6b5202c88",
"sha256": "129c19916ec2e72b6bb77eeb200b6858240debc9b5a1a4674db71e587bb9af18"
},
"downloads": -1,
"filename": "cliquet-3.1.0.tar.gz",
"has_sig": false,
"md5_digest": "6fc587363fe8537d2a8fcfd6b5202c88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 288941,
"upload_time": "2016-03-08T09:43:22",
"url": "https://files.pythonhosted.org/packages/25/3a/667efb2b1664a5d87626566a883f88dfc825169a8755e32bfb2c2bc2892b/cliquet-3.1.0.tar.gz"
}
],
"3.1.1": [
{
"comment_text": "",
"digests": {
"md5": "8b20edf6d5eed8ed379d6c1b5798d993",
"sha256": "b5037db96c0c85c06620f1924a74183d2e9f7fb17fbbefaee32ccbff57bf6b13"
},
"downloads": -1,
"filename": "cliquet-3.1.1-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "8b20edf6d5eed8ed379d6c1b5798d993",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 329149,
"upload_time": "2016-04-06T08:51:14",
"url": "https://files.pythonhosted.org/packages/78/1f/23018c7ae463764b8d1de8db0b258dacf4ea93108677ec363e81927fdf6a/cliquet-3.1.1-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "72f8cccbdaaac65eaf21fcbb666bf1dd",
"sha256": "a2f9f822c23c261428549d1c6ab395ec42b9266545057c8524bd679f488aeb51"
},
"downloads": -1,
"filename": "cliquet-3.1.1-pp2.pp3-none-any.whl",
"has_sig": false,
"md5_digest": "72f8cccbdaaac65eaf21fcbb666bf1dd",
"packagetype": "bdist_wheel",
"python_version": "pp2.pp3",
"requires_python": null,
"size": 329170,
"upload_time": "2016-04-06T08:52:59",
"url": "https://files.pythonhosted.org/packages/64/f9/153ac0eb0f1d824e3e439a480bd6fadbefe2acf5125aac11cb01cd56ba37/cliquet-3.1.1-pp2.pp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4585441a5e92703f2a42315a2de89559",
"sha256": "e5b63cb35f1bd197ca72179796669a585773cd50099d7e4d99cd6f148d3005a6"
},
"downloads": -1,
"filename": "cliquet-3.1.1.tar.gz",
"has_sig": false,
"md5_digest": "4585441a5e92703f2a42315a2de89559",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 291994,
"upload_time": "2016-04-06T08:51:31",
"url": "https://files.pythonhosted.org/packages/d8/e6/8ed02985f841edf375825708b989e058c3cc19efeb71f5a3c004eb33fa82/cliquet-3.1.1.tar.gz"
}
],
"3.1.2": [
{
"comment_text": "",
"digests": {
"md5": "ffb28059d3e613ad649ee7d46cb6044b",
"sha256": "9151eb1148f5aaa2016a5f2d0e90db9d8ed4b9961690ae169b8a6cac841bf96e"
},
"downloads": -1,
"filename": "cliquet-3.1.2-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "ffb28059d3e613ad649ee7d46cb6044b",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 329293,
"upload_time": "2016-04-19T12:54:25",
"url": "https://files.pythonhosted.org/packages/c3/64/d0358af6b255c7e5221c88063c00b32b0680eadcb9ebdaf37e4efef99987/cliquet-3.1.2-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c4650b82f7b0548dc9fe3cd47015d3da",
"sha256": "d756e27041d95de5a036c3d9e1f0124983e0094c483639a019e39e2fad090ec6"
},
"downloads": -1,
"filename": "cliquet-3.1.2.tar.gz",
"has_sig": false,
"md5_digest": "c4650b82f7b0548dc9fe3cd47015d3da",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 290885,
"upload_time": "2016-04-19T12:54:35",
"url": "https://files.pythonhosted.org/packages/05/7f/9848652c761b26336e1fce3b35081e4b13b3432aff74a1f33365c6c37605/cliquet-3.1.2.tar.gz"
}
],
"3.1.3": [
{
"comment_text": "",
"digests": {
"md5": "633079c848828e1ac870ef9365262876",
"sha256": "2e042ab44b34f29f16cf1c45645f95f39776a3eea9765541b2168b15babc5dbb"
},
"downloads": -1,
"filename": "cliquet-3.1.3-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "633079c848828e1ac870ef9365262876",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 330162,
"upload_time": "2016-04-29T09:59:36",
"url": "https://files.pythonhosted.org/packages/b0/6c/9eb46e7b10f3fa98e6f27799e3bbcec93b953bbad4d63ab6080667c17181/cliquet-3.1.3-cp2.cp3-none-any.whl"
}
],
"3.1.4": [
{
"comment_text": "",
"digests": {
"md5": "37804325add89c62c2f8f4c2f1d301be",
"sha256": "502c30c1d756b6667463037e00fc2f0ff063b9a42ef2c5a00d0d678e51068a25"
},
"downloads": -1,
"filename": "cliquet-3.1.4-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "37804325add89c62c2f8f4c2f1d301be",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 330737,
"upload_time": "2016-05-10T17:10:18",
"url": "https://files.pythonhosted.org/packages/2f/df/bfd23950cc827d1d78114f5aff436eaf110884130db472b59a2f3f8d980b/cliquet-3.1.4-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "788be0765ab06b32d59fed6c8f1a46ae",
"sha256": "8eb95fc4ebf6374cf1eb55b3f32d9e8cc8ecd60b000bfa44d6fe64aa360e15da"
},
"downloads": -1,
"filename": "cliquet-3.1.4.tar.gz",
"has_sig": false,
"md5_digest": "788be0765ab06b32d59fed6c8f1a46ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 292058,
"upload_time": "2016-05-10T17:10:51",
"url": "https://files.pythonhosted.org/packages/8f/bd/2f9315923af3c28877bed902242fc696638b52cbf82ea135ba8c9356a741/cliquet-3.1.4.tar.gz"
}
],
"3.1.5": [
{
"comment_text": "",
"digests": {
"md5": "b594b2f213fdd1f3f7e19ee0c569fbc6",
"sha256": "e1911db45ed62cbe9d1f33c5f2a917153d200f362eb50e0da4021335213ac52b"
},
"downloads": -1,
"filename": "cliquet-3.1.5-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "b594b2f213fdd1f3f7e19ee0c569fbc6",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 330991,
"upload_time": "2016-05-18T08:50:12",
"url": "https://files.pythonhosted.org/packages/d3/2c/efd6fff304ce84b6800acd8f53604b416e78edff0cad17bb35805941ab67/cliquet-3.1.5-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ae45dba88ab6ea62dca87b07ed09f0bc",
"sha256": "fce4f064b8a070f2008f4243913a3eb338f9771ad5006466254092076e5cf49b"
},
"downloads": -1,
"filename": "cliquet-3.1.5.tar.gz",
"has_sig": false,
"md5_digest": "ae45dba88ab6ea62dca87b07ed09f0bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 293744,
"upload_time": "2016-05-18T08:50:39",
"url": "https://files.pythonhosted.org/packages/df/6b/6084037d20ce1797d94f5d91b1ecd756b227ffd32bc1b2bc06193fe4fead/cliquet-3.1.5.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "b594b2f213fdd1f3f7e19ee0c569fbc6",
"sha256": "e1911db45ed62cbe9d1f33c5f2a917153d200f362eb50e0da4021335213ac52b"
},
"downloads": -1,
"filename": "cliquet-3.1.5-cp2.cp3-none-any.whl",
"has_sig": false,
"md5_digest": "b594b2f213fdd1f3f7e19ee0c569fbc6",
"packagetype": "bdist_wheel",
"python_version": "cp2.cp3",
"requires_python": null,
"size": 330991,
"upload_time": "2016-05-18T08:50:12",
"url": "https://files.pythonhosted.org/packages/d3/2c/efd6fff304ce84b6800acd8f53604b416e78edff0cad17bb35805941ab67/cliquet-3.1.5-cp2.cp3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ae45dba88ab6ea62dca87b07ed09f0bc",
"sha256": "fce4f064b8a070f2008f4243913a3eb338f9771ad5006466254092076e5cf49b"
},
"downloads": -1,
"filename": "cliquet-3.1.5.tar.gz",
"has_sig": false,
"md5_digest": "ae45dba88ab6ea62dca87b07ed09f0bc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 293744,
"upload_time": "2016-05-18T08:50:39",
"url": "https://files.pythonhosted.org/packages/df/6b/6084037d20ce1797d94f5d91b1ecd756b227ffd32bc1b2bc06193fe4fead/cliquet-3.1.5.tar.gz"
}
]
}