{
"info": {
"author": "Mike Duskis",
"author_email": "mike.duskis@cybergrx.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing"
],
"description": "\n# Questions Three\n### A Library for Serious Software Interrogators (and silly ones too)\n\n> Stop! Who would cross the Bridge of Death must answer me these questions three, ere the other side he see.\n>\n-- The Keeper\n\n\n## Why you want this\nThe vast majority of support for automated software checking falls into two main groups: low-level unit checking tools that guide design and maintain control over code as it is being written, and high-level system checking tools that reduce the workload of human testers after the units have been integrated.\n\nThe first group is optimized for precision and speed. A good unit check proves exactly one point in milliseconds. The second group is optimized for efficient use of human resources, enabling testers to repeat tedious actions without demanding much (or any) coding effort.\n\nEngineering is all about trade-offs. We can reduce the coding effort, but only if we are willing to sacrifice control. This makes the existing high-level automation tools distinctly unsatisfactory to testers who would prefer the opposite trade: more control in exchange for the need to approach automation as a _bona-fide_ software development project.\n\n**If you want complete control over your system-level automation and are willing to get some coding dirt under your fingernails in exchange, then Questions Three could be your best friend.** As a flexible library rather than an opinionated framework, it will support you without dictating structures or rules. Its features were designed to work together, but you can use them separately or even integrate them into the third-party or homegrown framework of your choice.\n\nA note on heretical terminology
\nThe vast majority of software professionals refer to inspection work done by machines as \"automated testing.\" James Bach and Michael Bolton make a strong case that this is a dangerous abuse of the word \"testing\" and suggest that we use \"checking\" instead when we talk about executing a procedure with a well-defined expected outcome.\n\nQuestions Three tries to maintain neutrality in this debate. Where practical, it lets you choose whether you want to say \"test\" or \"check.\" Internally, it uses \"test\" for consistency with third-party libraries. As the public face of the project, this documentation falls on the \"check\" side. It says \"check suite\" where most testers would say \"test suite.\"\n\n## Orientation Resources\n\n- Article: \"Waiter, There's a _Database_ in My Unit Test!\" explains the differences between unit, integration, and system testing and the role for each.\n\n- Video: \"Industrial Strength Automation\" presentation from STARWEST 2019 makes the cases for and against building a serious automation program. It concludes with an extended discussion on the history, purpose, and design of Questions Three.\n\n\n## What's in the Box\n\n- **Scaffolds** that help you structure your checks. Chose one from the library or use them as examples to build your own.\n\n- **Reporters** that provide results as expected by various readers. Use as many or as few as you would like, or follow the design pattern and build your own.\n\n - **Event Broker** which allows components to work together without knowing about one another. Need to integrate a new kind of reporter? Simply contact the broker and subscribe to relevant events. No need to touch anything else.\n\n- **HTTP Client** that tracks its own activity and converts failures to meaningful artifacts for test reports.\n\n- **GraphQL Client** that leverages the HTTP Client for an easy to use GraphQL interface.\n\n- **Logging Subsystem** that, among other things, allows you to control which modules log at which level via environment variables.\n\n- **Vanilla Functions** that you might find useful for checking and are entirely self-contained. Use as many or as few as you would like.\n\n- **Bulk Suite Runner** that lets you run multiple suites in parallel and control their execution via environment variables.\n\n## Optional Packages\n\n - Amazon Web Services Integrations\n\n - Selenium Integrations that facilitate compatibility checking and make Selenium WebDriver a full citizen of Question-Three's event-driven world.\n\n## Quick Start\n\n### Install questions-three\n```\npip install questions-three\n```\n\n### Write the suite\n```\nfrom questions_three.scaffolds.check_script import check, check_suite\n\nwith check_suite('ExampleSuite'):\n\n with check('A passing check'):\n assert True, 'That was easy'\n```\n\n### Run the suite\nNo special executors are required. Just run the script:\n```\npython example_suite.py\n```\n\n### Review the results\nThe console output should look like this:\n```\n2018-08-13 14:52:55,725 INFO from questions_three.reporters.event_logger.event_logger: Suite \"ExampleSuite\" started\n2018-08-13 14:52:55,726 INFO from questions_three.reporters.event_logger.event_logger: Check \"A passing check\" started\n2018-08-13 14:52:55,726 INFO from questions_three.reporters.event_logger.event_logger: Check \"A passing check\" ended\n2018-08-13 14:52:55,729 INFO from questions_three.reporters.event_logger.event_logger: Suite \"ExampleSuite\" ended\n```\n\nThere should also be a reports directory which contains a report:\n```\n> ls reports\nExampleSuite.xml jenkins_status\n```\nExampleSuite.xml is a report in the _JUnit XML_ format that can be consumed by many report parsers, including Jenkins CI. It gets produced by the junit_reporter module.\n\njenkins_status is a plain text file that aggregates the results of all test suites from a batch into a single result which Jenkins can display. It gets produced by the jenkins_build_status module.\n\nScaffolds
\nScaffolds provide a basic structure for your checks. Their most important function is to publish events as your checks start, end, and fail.\n\n### The top-to-bottom script scaffold\n\n```\nfrom questions_three.scaffolds.check_script import check, check_suite\n\nwith check_suite('ExampleSuite'):\n\n with check('A passing check'):\n assert True, 'That was easy'\n\n with check('A failing check'):\n assert False, 'Oops'\n```\n\nIf you don't like saying \"check,\" you can say \"test\" instead:\n\n```\nfrom questions_three.scaffolds.test_script import test, test_suite\n\nwith test_suite('ExampleSuite'):\n\n with test('A passing check'):\n assert True, 'That was easy'\n\n with test('A failing check'):\n assert False, 'Oops'\n```\n\nThis code is an ordinary executable python script, so you can simply execute it normally.\n\n```\npython example_suite.py\n```\n\n\n### The xUnit style scaffold\nAs its name suggests, the xUnit scaffold implements the well-worn xUnit pattern.\n\n```\nfrom questions_three.scaffolds.xunit import TestSuite, skip\n\n\nclass MyXunitSuite(TestSuite):\n\n def setup_suite(self):\n \"\"\"\n Perform setup that affects all tests here\n Changes to \"self\" will affect all tests.\n \"\"\"\n print('This runs once at the start of the suite')\n\n def teardown_suite(self):\n print('This runs once at the end of the suite')\n\n def setup(self):\n \"\"\"\n Perform setup for each test here.\n Changes to \"self\" will affect the current test only.\n \"\"\"\n print('This runs before each test')\n\n def teardown(self):\n print('This runs after each test')\n\n def test_that_passes(self):\n \"\"\"\n The method name is xUnit magic.\n Methods named \"test...\" get treated as test cases.\n \"\"\"\n print('This test passes')\n\n def test_that_fails(self):\n print('This test fails')\n assert False, 'I failed'\n\n def test_that_errs(self):\n print('This test errs')\n raise RuntimeError('I tried to think but nothing happened')\n\n def test_that_skips(self):\n print('This test skips')\n skip(\"Don't do that\")\n```\nThe most important advantage of the xUnit scaffold over the script one is that it automatically repeats the same set-up and tear-down routines between `test_...` functions. Its main disadvantage is that the suites aren't as beautiful to read.\n\nThanks to some metaclass hocus-pocus which you're free to gawk at by looking at the source code, this too is an ordinary Python executable file:\n\n```\npython my_xunit_suite.py\n```\n\n### The Test Table Scaffold\nThe Test Table scaffold was designed to support two use cases:\n1. You would like to repeat the same procedure with different sets of arguments.\n2. You would like to execute the same procedure multiple times to measure performance.\n\n#### Example test table that varies arguments\n\n```\nfrom expects import expect, equal\nfrom questions_three.scaffolds.test_table import execute_test_table\n\nTABLE = (\n ('x', 'y', 'expect sum', 'expect exception'),\n (2, 2, 4, None),\n (1, 0, 1, None),\n (0, 1, 0, None),\n (0.1, 0.1, 0.2, None),\n (1, 'banana', None, TypeError),\n (1, '1', None, TypeError),\n (2, 2, 5, None))\n\n\ndef test_add(*, x, y, expect_sum):\n expect(x + y).to(equal(expect_sum))\n\n\nexecute_test_table(\n suite_name='TestAddTwoThings', table=TABLE, func=test_add)\n\n```\n\n#### Example test table that measures performance\n```\nfrom questions_three.scaffolds.test_table import execute_test_table\n\nTABLE = (\n ('operation', 'sample size'),\n ('1 + 1', 30),\n ('1 * 1', 60),\n ('1 / 1', 42))\n\n\ndef calculate(operation):\n exec(operation)\n\n\nexecute_test_table(\n suite_name='MeasureOperatorPerformance',\n table=TABLE, func=calculate, randomize_order=True)\n```\n\nThe optional `randomize_order` argument instructs the scaffold to execute the rows\nin a random order (to mitigate systematic bias that could affect measurements).\n\nFor each row that exits cleanly (no assertion failures or other exceptions),\nthe scaffold publishes a SAMPLE_MEASURED event that a reporter can collect.\nFor example, the built-in EventLogger logs each of these events, including\nthe row execution time.\n\nLike the other built-in scaffolds, the Test Table produces plain old Python executable scripts.\n\n\n### Building your own scaffold\nNothing stops you from building your own scaffold. The test_script scaffold makes a good example of the services your scaffold should provide. The xUnit scaffold is much more difficult to understand (but more fun if you're into that sort of thing).\n\nThe key to understanding scaffold design is to understand the event-driven nature of Questions Three. Scaffolds are responsible for handling exceptions and publishing the following events:\n- SUITE_STARTED\n- SUITE_ERRED\n- SUITE_ENDED\n- TEST_SKIPPED\n- TEST_STARTED\n- TEST_ERRED\n- TEST_FAILED\n- TEST_ENDED\n\nReporters
\nIn Questions Three, \"reporter\" is a broad term for an object that listens for an event, converts it to a message useful to someone or something and sends the message. Built-in reporters do relatively dull things like sending events to the system log and producing the Junit XML report, but there is no reason you couldn't build a more interesting reporter that launches a Styrofoam missile at the developer who broke the build.\n\n### Built-in reporters ###\n\n| Name | Events it subscribes to | what it does |\n|------------|-------------------------|--------------|\n| Artifact Saver | ARTIFACT_CREATED, REPORT_CREATED | Saves artifacts to the local filesystem. |\n| Event Logger | all test lifecycle events | Sends messages to system log. |\n| Junit Reporter | all test lifecycle events | Builds Junit XML reports and publishes them as REPORT_CREATED events. |\n| Result Compiler | all test lifecycle events | Reports how many tests ran, failed, etc, and how long they took. Publishes SUITE_RESULTS_COMPILED after SUITE_ENDED. |\n\n\n### Custom reporters ###\nA reporter can do anything you dream up and express as Python code. That includes interacting with external services and physical objects. Think \"when this occurs during a test run, I want that to happen.\" For example, \"When the suite results are compiled and contain a failure, I want a Slack message sent to the channel where the developers hang out.\"\n\n#### Building a custom reporter ####\nResult Compiler provides a simple example to follow. You don't have to copy the pattern it establishes, but it's an easy way to start. The `ResultCompiler` class has one method for each event to which it subscribes. Each method is named after the event (e.g. `on_suite_started`). These method names are magic. The imported `subscribe_event_handlers` function recognizes the names and subscribes each method to its respective event. The `activate` method is mandatory. The scaffold calls it before the suite starts. `activate` performs any initialization, most importantly subscribing to the events.\n\n#### Installing a custom reporter ####\n1. Ensure that the package containing your reporter is installed.\n2. Create a text file that contains the name of the reporter class, including its module (e.g. `my_awesome_reporters.information_radiators.LavaLamp`). This file can contain as many reporters as you would like, one per line.\n3. Set the environment variable `CUSTOM_REPORTERS_FILE` to the full path and filename of your text file.\n\n\nEvent Broker
\nThe Event Broker is Questions Three's beating heart. It's how the components communicate with one another. If you're not in the business of building custom components and plugging them in, you won't need to think about the Event Broker. If you are, it's all you'll need to think about.\n\nThe Event Broker is little more than a simple implementation of the Publish/Subscribe Pattern. Component A subscribes to an event by registering a function with the Event Broker. Component B publishes the event with an optional dictionary of arbitrary properties. The Event Broker calls the subscriber function, passing it the dictionary as keyword arguments.\n\nAn event can be any object. Internally, Questions Three limits itself to members of an enum called TestEvent. It's defined in `questions_three.constants`.\n\nAn event property can also be any object. Property names are restricted to valid Python variable names so the Event Broker can send them as keyword arguments.\n\nHTTP Client
\nThe HTTP client is a wrapper around the widely-used requests module, so it can serve as a drop-in replacement. Its job in life is to integrate `requests` into the event-driven world of Questions Three, doing things like publishing an HTTP transcript when a check fails. It also adds a few features that you can use. Nearly all of the documentation for `requests` applies to HttpClient as well. There are two deviations, one significant and one somewhat obscure.\n\n### Deviation 1: HTTP Client raises an exception when it encounters an exceptional status code ###\n\nWhen the HTTP server returns an exceptional status code (anything in the 400 - 599 range), `requests` simply places the status code in the response as it always does and expects you to detect it. HTTP Client, by contrast, detects the status for you and raises an `HttpError`. There is an `HttpError` subclass for each exceptional status code defined by RFC 7231 (plus one from RFC 2324 just for fun), so you can be very specific with your `except` blocks. For example:\n\n```\nfrom questions_three.exceptions.http_error import HttpImATeapot, HttpNotFound, HttpServerError\nfrom questions_three.http_client import HttpClient\n\ntry:\n HttpClient().get('http://coffee.example.com')\nexcept HttpImATeapot as e:\n # This will catch a 418 only\n # e.response is the requests.Response object returned by `requests.get`\n do_something_clever(response=e.response)\nexcept HttpNotFound:\n # This will catch a 404 only\n do_something_sad()\nexcept HttpServerError:\n # This will catch anything in the 500-599 range.\n do_something_silly()\n```\n\n### Deviation 2: json is not allowed as a keyword argument\n\n\n\n`requests` allows you to write this:\n\n```\nrequests.post('http://songs.example.com/', json=['spam', 'eggs', 'sausage', 'spam'])\n```\n\nHTTP Client does not support this syntax because it interferes with transcript generation. Instead, write this:\n\n```\nHttpClient().post('http://songs.example.com/', data=json.dumps(['spam', 'eggs', 'sausage', 'spam'])\n```\n\n### New feature: simplified cookie management ###\nInstead of creating a `requests.Session`, you can simply do this:\n\n```\nclient = HttpClient()\nclient.enable_cookies()\n```\n\nThe client will now save cookies sent to it by the server and return them to the server with each request.\n\n### New feature: persistent request headers ###\n\nThis is particularly useful for maintaining an authenticated session:\n```\nclient = HttpClient()\nclient.set_persistent_headers(session_id='some fake id', secret_username='bob')\n```\n\nThe client will now send the specified headers to the server with each request.\n\n\n### New feature: callbacks for exceptional HTTP responses\n\nInstead of putting each request into its own try/except block, you can install\na generic exception handler as a callback:\n```\ndef on_not_found(exception):\n mother_ship.beam_up(exception, exception.response.text)\n\nclient = HttpClient()\nclient.set_exceptional_response_callback(exception_class=HttpNotFound, callback=on_not_found)\nclient.get('https://something-that-does-not-exist.mil/')\n```\n\nIn the example above, the server will respond to the `GET` request with an `HTTP 404` (Not Found) response. The client will notice that it has a callback for the `HttpNotFound` exception, so will call `on_not_found` with the `HttpNotFound` exception as the `exception` keyword argument.\n\nIf a callback returns `None` (as in the example above), the client will re-raise the exception after it processes the callback. If the callback returns anything else, the client will return whatever the callback returns. Please observe the Principle of Least Astonishment and have your callback return either `None` or else an HttpResponse object.\n\nInstalled callbacks will apply to child exception classes as well, so a callback for `HttpClientError` will be called if the server returns an `HttpNotFound` response (because `HttpClientError` is the set of all 4xx responses and `HttpNotFound` is 404).\n\nYou can install as many callbacks as you would like, with one important restriction. You may not install a parent class or a child class of an exception that already has an associated callback. For example, you may install both `HttpNotFound` and `HttpUnauthorized`, but you may not install both `HttpNotFound` and `HttpClientError` because `HttpClientError` is a parent class of `HttpNotFound`.\n\nSee `questions_three/exceptions/http_error.py` for complete details of the HttpError\nclass hierarchy. It follows the classification scheme specified in RFC 7231.\n\n### Tuning with environment variables ###\n`HTTP_PROXY` This is a well-established environment variable. Set it to the URL of your proxy for plain HTTP requests.\n\n`HTTPS_PROXY` As above. Set this to the URL of your proxy for secure HTTP requests\n\n`HTTPS_VERIFY_CERTS` Set this to \"false\" to disable verification of X.509 certificates.\n\n`HTTP_CLIENT_SOCKET_TIMEOUT` Stop waiting for an HTTP response after this number of seconds.\n\n\nGraphQL Client
\nThe GraphQL Client is a wrapper around the HTTP Client that allows for a simple way of making and handling requests against\na GraphQL endpoint. Since the HTTP Client is doing all the heavy lifting, there is only a few custom behaviors that the GraphQL\nClient has.\n\n### Using the GraphQL Client ###\n```\nclient = HttpClient() # This is where you would authenticate, if needed\ngraphql_client = GraphqlClient(http_client=client, url='https://www.yoursite.com/graph')\n\nyour_important_query = \"\"\"\n query {\n ...\n {\n\"\"\"\ngraphql_client.execute(your_important_query)\n```\n\n`execute` is a neutral method that makes `POST` requests against your GraphQL endpoint for either Queries or Mutations.\nThe first argument of `execute` is always the operation that you are trying to perform, and any key-word arguments\nafterwards are turned into your given variables.\n```\nyour_important_query = \"\"\"\n query ($id: String!) {\n ...\n {\n\"\"\"\ngraphql_client.execute(your_important_query, id='1234')\n```\n\nUpon making your request (that does not result in an HTTP Error), you will either get a `GraphqlResponse` object, or\nif you received errors in your response, an `OperationFailed` exception will be raised.\n- **GraphqlResponse** objects have the following:\n - `.http_response` property: The `requests.Response` object returned by the HTTP Client\n - `.data` property: The JSON representation of your response\n - `.data_as_structure` property: The Structure object representation of your response\n- **OperationFailed** exceptions have the following:\n - `.http_response` property: The `requests.Response` object returned by the HTTP Client\n - `.data` property: The JSON representation of your (successful parts of the) response\n - `.errors` property: The JSON representation of the errors included in your response\n - `.operation` property: The query or mutation sent in your request\n - `.operation_variables` property: The variables send in your request\n - When raised, the exception message will include the errors strings, or the entire error collection\n\nLogging Subsystem
\nQuestions Three extends Python's logging system to do various things internally that won't matter to most users. However, there's one feature that may be of interest. You can customize how verbose/noisy any given module will be. Most common targets are event_broker when you want to see all the events passing through and http_client when you want excruciating detail about every request and response.\n\n```\nexport QUESTIONS_THREE_EVENT_BROKER_LOG_LEVEL=INFO\nexport QUESTIONS_THREE_HTTP_CLIENT_LOG_LEVEL=DEBUG\n```\n\nThis works with any Questions Three module and any log level defined in the Fine Python Manual.\n\nYou can make it work with your custom components too:\n\n```\nfrom questions_three.logging import logger_for_module\n\nlog = logger_for_module(__name__)\nlog.info('I feel happy!')\n```\n\n\nVanilla Functions
\nYou'll find these in `questions_three.vanilla`. The unit tests under `tests/vanilla` provide examples of their use.
\n\n`b16encode()` Base 16 encode a string. This is basically a hex dump.
\n\n`call_with_exception_tolerance()` Execute a function. If it raises a specific exception, wait for a given number of seconds and try again up to a given timeout
\n\n`format_exception()` Convert an exception to a human-friendly message and stack trace\n\n`path_to_entry_script()` Return the full path and filename of the script that was called from the command line\n\n`random_base36_string()` Return a random string of a given length. Useful for generating bogus test data.\n\n`string_of_sequential_characters()` Return a string of letters and numbers in alphabetical order. Useful for generating bogus but deterministic test data.\n\n`url_append()` Replacement for `urljoin` that does not eliminate characters when slashes are present but does join an arbitrary number of parts.\n\n`wait_for()` Pauses until the given function returns a truthy value and returns the value. Includes a throttle and a timeout.\n\n\n\nBulk Suite Runner
\nTo run all suites in any directory below `./my_checks`:\n\n```\npython -m questions_three.ci.run_all my_checks\n```\n\n\n### Controlling execution with environment variables ###\n\n`MAX_PARALLEL_SUITES` Run up to this number of suites in parallel. Default is 1 (serial execution).\n\n`REPORTS_PATH` Put reports and other artifacts in this directory. Default: `./reports`\n\n`RUN_ALL_TIMEOUT` After this number of seconds, terminate all running suites and return a non-zero exit code.\n\n`TEST_RUN_ID` Attach this arbitrary string as a property to all events. This allows reporters to discriminate one test run from another.\n\n\n### Understanding events and reports\n**(or the philosophy of errors, failures, and warnings)**\n\nQuestions Three follows the convention set by JUnit and draws an important distinction between error events and failure events. This distinction flows from the scaffolds to the Event Broker to the reports.\n\nA **failure event** occurs when a check makes a false assertion. The simplest way to trigger one is `assert False` which Python converts to an `AssertionError` which the scaffold converts to a `TEST_FAILED` event. The intent of the system is to produce a failure event only when there is high confidence that there is a fault in the system under test.\n\nAn **error event** occurs when some other exception gets raised (or, for whatever batty reason, something other than a check raises an `AssertionError`). Depending on the context from which the exception was raised, the scaffold will convert it into a `SUITE_ERRED` or a `TEST_ERRED` event. In theory, an error event should indicate a fault in the check. In practice, the fault could be anywhere, especially if the system under test behaves in unanticipated ways.\n\nBecause of the expectation that failure events indicate faults in the checks and error events indicate faults in the system under test, the **Event Logger** reports failure events as warnings and error events as errors. The warning indicates that the check did its job perfectly and the fault was somewhere else. The error indicates that the fault is in the check. Of course, real life is not so clean.\n\nBecause the distinction originated from the JUnit world, **Junit XML Reporter** has no need to perform any interpretation. It reports failure events as failures and error events as errors.\n\n\n",
"description_content_type": "text/markdown",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/CyberGRX/questions-three",
"keywords": "",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "questions-three",
"package_url": "https://pypi.org/project/questions-three/",
"platform": "",
"project_url": "https://pypi.org/project/questions-three/",
"project_urls": {
"Homepage": "https://github.com/CyberGRX/questions-three"
},
"release_url": "https://pypi.org/project/questions-three/3.14.2.0/",
"requires_dist": [
"expects (>=0.8.0)",
"junit-xml (==1.8)",
"lxml (>=4.1.1)",
"PyYAML (>=5.1)",
"pyfakefs (>=3.4.3)",
"requests (>=2.18.4)",
"twin-sister (>=4.2.6.0)",
"twine (>=1.9.1)",
"wheel (>=0.30.0)",
"parameterized (>=0.7.0)"
],
"requires_python": "",
"summary": "Toolkit for building automated integration checks",
"version": "3.14.2.0",
"yanked": false,
"yanked_reason": null
},
"last_serial": 8299620,
"releases": {
"2.10.0.0": [
{
"comment_text": "",
"digests": {
"md5": "98e13a10515bc1aeef9961341c1f61ec",
"sha256": "02918504e1237eab79e9715deb53441fb5a80311341cc13bd585192248b64c3f"
},
"downloads": -1,
"filename": "questions-three-2.10.0.0.tar.gz",
"has_sig": false,
"md5_digest": "98e13a10515bc1aeef9961341c1f61ec",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27798,
"upload_time": "2019-11-27T19:31:11",
"upload_time_iso_8601": "2019-11-27T19:31:11.140862Z",
"url": "https://files.pythonhosted.org/packages/65/a1/5c288d727647319f995c6306a302be1131f45f62bf432f2457c4392a946c/questions-three-2.10.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.10.1.0": [
{
"comment_text": "",
"digests": {
"md5": "890ccaee08d65c0ff7b439307df13108",
"sha256": "7d9654aac8999666aad54fa1204618e8242c25c51188991812b9674bd04c05f8"
},
"downloads": -1,
"filename": "questions-three-2.10.1.0.tar.gz",
"has_sig": false,
"md5_digest": "890ccaee08d65c0ff7b439307df13108",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27719,
"upload_time": "2019-11-29T16:56:54",
"upload_time_iso_8601": "2019-11-29T16:56:54.458445Z",
"url": "https://files.pythonhosted.org/packages/57/2b/ad0ae9f2c0e27cc35b760f60aa7d579336a4fd8a3967579a110675747b1c/questions-three-2.10.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.6.3.0": [
{
"comment_text": "",
"digests": {
"md5": "1ec780a780c7abb802e2b9e170addae5",
"sha256": "79a1f350d436971e5b1bc5ac0f725ba3c00543150f41ecad4ae6244c6437d8ef"
},
"downloads": -1,
"filename": "questions_three-2.6.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1ec780a780c7abb802e2b9e170addae5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 48930,
"upload_time": "2019-07-28T21:03:33",
"upload_time_iso_8601": "2019-07-28T21:03:33.258793Z",
"url": "https://files.pythonhosted.org/packages/03/e5/a0c9b66f5727229cf696a96fc73f9181f339967a21da6b0e2cd278394ca8/questions_three-2.6.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4ad31cf7b14e4f853cf7d2080042ceb2",
"sha256": "c3f223dac3635ff4542cce9268113e0aa160364541d7e22047a2750af2f50999"
},
"downloads": -1,
"filename": "questions-three-2.6.3.0.tar.gz",
"has_sig": false,
"md5_digest": "4ad31cf7b14e4f853cf7d2080042ceb2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27411,
"upload_time": "2019-07-28T21:03:36",
"upload_time_iso_8601": "2019-07-28T21:03:36.966782Z",
"url": "https://files.pythonhosted.org/packages/1e/73/5e7eab1d357b89ae2f5856ca1aeb751df9d2f829099ed45a42bf13098ae5/questions-three-2.6.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.6.4.0": [
{
"comment_text": "",
"digests": {
"md5": "910de43aaf5d8cda0d2f99d2be35d46e",
"sha256": "91bfd55b8613c354ec8619f632e4c677f86c21cbae451d315a5c3bb62d20533f"
},
"downloads": -1,
"filename": "questions-three-2.6.4.0.tar.gz",
"has_sig": false,
"md5_digest": "910de43aaf5d8cda0d2f99d2be35d46e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27281,
"upload_time": "2019-07-28T21:26:57",
"upload_time_iso_8601": "2019-07-28T21:26:57.918527Z",
"url": "https://files.pythonhosted.org/packages/2d/8a/781cc129211c234e53466f091451a5e4f7311a34a2af7c927882246ac80f/questions-three-2.6.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.6.5.0": [
{
"comment_text": "",
"digests": {
"md5": "41a99767790970386328bde1e69fdf18",
"sha256": "23b9de8071d591e7b8e1e0dac2ffa606147e37d322b1858f0e38291c75630c74"
},
"downloads": -1,
"filename": "questions-three-2.6.5.0.tar.gz",
"has_sig": false,
"md5_digest": "41a99767790970386328bde1e69fdf18",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27343,
"upload_time": "2019-08-14T19:49:58",
"upload_time_iso_8601": "2019-08-14T19:49:58.318999Z",
"url": "https://files.pythonhosted.org/packages/e8/b6/28bfa7c6a54e32927cf82bbf5be684b1b3f774a129332bd51c73e7a3159c/questions-three-2.6.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.6.6.0": [
{
"comment_text": "",
"digests": {
"md5": "b560d8fff9f32981ced91c52dd11f765",
"sha256": "9cd0f36d4d8ca2d42cc241cda5f7b2e643f79bfe1df845cd1c68116bd2c2c108"
},
"downloads": -1,
"filename": "questions-three-2.6.6.0.tar.gz",
"has_sig": false,
"md5_digest": "b560d8fff9f32981ced91c52dd11f765",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27442,
"upload_time": "2019-08-14T21:28:46",
"upload_time_iso_8601": "2019-08-14T21:28:46.703304Z",
"url": "https://files.pythonhosted.org/packages/9c/80/82e9ae4c433bac5bd2f8f30f287128e24f49587df14f3edd9fbde3a3fb91/questions-three-2.6.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.8.0.0": [
{
"comment_text": "",
"digests": {
"md5": "4b9248294f4755b203d606e1dcbe8e88",
"sha256": "ace204bf25d5cbf82747c3c3ecdf44bec6767397fa291d35d3830fc77e3d1d85"
},
"downloads": -1,
"filename": "questions-three-2.8.0.0.tar.gz",
"has_sig": false,
"md5_digest": "4b9248294f4755b203d606e1dcbe8e88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27548,
"upload_time": "2019-09-02T17:26:45",
"upload_time_iso_8601": "2019-09-02T17:26:45.859151Z",
"url": "https://files.pythonhosted.org/packages/61/70/37755a7ea5815131cd53e77112de982f44d7f6d0e1b2b120d9689e5a8ed2/questions-three-2.8.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.8.4.0": [
{
"comment_text": "",
"digests": {
"md5": "fa0f20aafc4559976ea72845eeec1428",
"sha256": "bd096f6ec92e2697cdb4aff73ca0d96d1ccbd39bff47854400072fbe53724d6f"
},
"downloads": -1,
"filename": "questions-three-2.8.4.0.tar.gz",
"has_sig": false,
"md5_digest": "fa0f20aafc4559976ea72845eeec1428",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27670,
"upload_time": "2019-10-29T19:03:44",
"upload_time_iso_8601": "2019-10-29T19:03:44.534825Z",
"url": "https://files.pythonhosted.org/packages/3f/17/3e2b01c7e3b8f47beaf3ddadca2269fb4a40431a9dc611cf1cfccdf2f2ef/questions-three-2.8.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.8.5.0": [
{
"comment_text": "",
"digests": {
"md5": "0e496505f30c38e9f05aae8713d69df7",
"sha256": "81b7b3977e46f9a3aac691d02659602ee6cbf31b02cc9f12c67fc4a2520f29fe"
},
"downloads": -1,
"filename": "questions-three-2.8.5.0.tar.gz",
"has_sig": false,
"md5_digest": "0e496505f30c38e9f05aae8713d69df7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27690,
"upload_time": "2019-10-29T19:15:53",
"upload_time_iso_8601": "2019-10-29T19:15:53.643510Z",
"url": "https://files.pythonhosted.org/packages/9f/e0/b0a9b192b73d7ce2ca1444a767474885e29915577c2cca1389c96912e26c/questions-three-2.8.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"2.9.0.0": [
{
"comment_text": "",
"digests": {
"md5": "5cd1cc60fc96734cebb5be3328e26fb9",
"sha256": "a9ac29f625ca0bb64dadb05878aead5f20cb7e86d4d23e62bee1ae8a4cfb3ac9"
},
"downloads": -1,
"filename": "questions-three-2.9.0.0.tar.gz",
"has_sig": false,
"md5_digest": "5cd1cc60fc96734cebb5be3328e26fb9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27801,
"upload_time": "2019-11-26T17:42:07",
"upload_time_iso_8601": "2019-11-26T17:42:07.961175Z",
"url": "https://files.pythonhosted.org/packages/b3/ed/240c4177e4e486d6fecf1e99e13a1ac27c23d60a8a667054dec3abf82f03/questions-three-2.9.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "4e8e9b059eddc06df611860ede200568",
"sha256": "792c763afa68d2351516d56fde21ca8a50596fc0f2f2aa3fed2294d379a3bd03"
},
"downloads": -1,
"filename": "questions-three-3.0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "4e8e9b059eddc06df611860ede200568",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26718,
"upload_time": "2019-12-02T23:55:14",
"upload_time_iso_8601": "2019-12-02T23:55:14.297178Z",
"url": "https://files.pythonhosted.org/packages/e0/c0/206428bfa8e77d66e82f4393082424091d99fadedefda11d457111a95faf/questions-three-3.0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "b89070bca435a4ad58d171a36f68d285",
"sha256": "0f957de58ea0c063ce1e48599ef4352dbf3f22563a80cd348bd52787e262122d"
},
"downloads": -1,
"filename": "questions-three-3.0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "b89070bca435a4ad58d171a36f68d285",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26723,
"upload_time": "2019-12-03T14:58:04",
"upload_time_iso_8601": "2019-12-03T14:58:04.390757Z",
"url": "https://files.pythonhosted.org/packages/a1/78/9f3bc85ad89e5ddbd5d0140aae2f69235d8f831a8b0957471f926dff376f/questions-three-3.0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "16d4d73fe38e0e18164182f6581b94b5",
"sha256": "00b8e68b9868f150969c47086dfaf2e293525995114f672bfd5fc1914bc6cb57"
},
"downloads": -1,
"filename": "questions_three-3.0.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "16d4d73fe38e0e18164182f6581b94b5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 47920,
"upload_time": "2019-12-03T17:40:11",
"upload_time_iso_8601": "2019-12-03T17:40:11.646819Z",
"url": "https://files.pythonhosted.org/packages/eb/9d/e18e3d381b82d7a40aa679e9420cf0a2142383cd75477c92de525d569617/questions_three-3.0.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "295d2b357a97f239c5bfdd51a602e696",
"sha256": "aceac424fc539b905254b7e6f80fd15dff020093bad20abd10000cb681e9b783"
},
"downloads": -1,
"filename": "questions-three-3.0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "295d2b357a97f239c5bfdd51a602e696",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26718,
"upload_time": "2019-12-03T17:40:17",
"upload_time_iso_8601": "2019-12-03T17:40:17.775443Z",
"url": "https://files.pythonhosted.org/packages/ee/2e/8ba091cadb44c557f4fbcd30a8a9a0511064d70d4abd98b8f3f1bb4ba190/questions-three-3.0.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "11733915cc2d2177467b886d244dd2ed",
"sha256": "0c58265e085e9976b0f395f69cd6812d2ad173d8f14a3eddedd23b83fb66c40a"
},
"downloads": -1,
"filename": "questions_three-3.1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "11733915cc2d2177467b886d244dd2ed",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 47997,
"upload_time": "2019-12-04T14:31:39",
"upload_time_iso_8601": "2019-12-04T14:31:39.465647Z",
"url": "https://files.pythonhosted.org/packages/65/44/6bf819dd56fb177b7f44ac5a656e807af5cf8877182ca78bd2cb0dcc4dfc/questions_three-3.1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1c575bb14aa1410e0abd2e050927eb1a",
"sha256": "0355f029991ca3adc838c7add445fde6b44302d175cb6de020171a5e42196eed"
},
"downloads": -1,
"filename": "questions-three-3.1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "1c575bb14aa1410e0abd2e050927eb1a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26904,
"upload_time": "2019-12-04T14:31:43",
"upload_time_iso_8601": "2019-12-04T14:31:43.927642Z",
"url": "https://files.pythonhosted.org/packages/1c/fd/0536b2d5b28cc9ba0615f6a7f74de2d226ff2d3d935e1da79177a7e2ec3e/questions-three-3.1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "ee1d7256546f71f25a38dbef951291e0",
"sha256": "41dcda2277382c1c0d4bde7ea3bd2744433a626dc66defd367ec287c8317e1d4"
},
"downloads": -1,
"filename": "questions_three-3.1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ee1d7256546f71f25a38dbef951291e0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 48007,
"upload_time": "2019-12-04T14:47:49",
"upload_time_iso_8601": "2019-12-04T14:47:49.218858Z",
"url": "https://files.pythonhosted.org/packages/44/37/fd903a42c94cc25165eec284178192d6bd4c8abf6fe03972c585a48e9439/questions_three-3.1.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1b40999673443c5660886f49d78a31fa",
"sha256": "47a0b82f07a12f420cbe6d984f563949a66f9c8594295be6d48a1e3de31eb2c5"
},
"downloads": -1,
"filename": "questions-three-3.1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "1b40999673443c5660886f49d78a31fa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26915,
"upload_time": "2019-12-04T14:47:53",
"upload_time_iso_8601": "2019-12-04T14:47:53.343869Z",
"url": "https://files.pythonhosted.org/packages/e8/00/af38c69537cfa4091aff6b9fa8115da387667be758c8da8afe67a6881ea2/questions-three-3.1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "e567aa1079adb1e4013f05df8780fcff",
"sha256": "cdad5bd1780984c9adfab724e9bd494895f6db350e1d96d9eb6353f54b42ac08"
},
"downloads": -1,
"filename": "questions_three-3.1.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e567aa1079adb1e4013f05df8780fcff",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 48010,
"upload_time": "2019-12-05T17:51:29",
"upload_time_iso_8601": "2019-12-05T17:51:29.166812Z",
"url": "https://files.pythonhosted.org/packages/db/60/54b1a2cbcb085ed1a02f6cedc48ca97d4fec129fc223c6c098fef955b37c/questions_three-3.1.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9fae83828ce97bbb35c9413a9276b39f",
"sha256": "fcfa849297b01afc695e04cbce4a70b7ef2d8fd92e3418d8f09842f87e1ceaef"
},
"downloads": -1,
"filename": "questions-three-3.1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "9fae83828ce97bbb35c9413a9276b39f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26910,
"upload_time": "2019-12-05T17:51:33",
"upload_time_iso_8601": "2019-12-05T17:51:33.081982Z",
"url": "https://files.pythonhosted.org/packages/9d/68/cb8332a1c7d6aed84fa5e29edb808f8d244706d5fb0601cf7344e4ae9f0d/questions-three-3.1.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "658f74dfed5f05192a22c29002a1cc83",
"sha256": "c697be3a21367b6246a71c1984c909b8c11e93829704a05c26d15be1fa8c93b4"
},
"downloads": -1,
"filename": "questions_three-3.1.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "658f74dfed5f05192a22c29002a1cc83",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 48007,
"upload_time": "2019-12-05T19:53:30",
"upload_time_iso_8601": "2019-12-05T19:53:30.173795Z",
"url": "https://files.pythonhosted.org/packages/82/81/74062b02f3a37327ca0f0738b7858a2b421f6ab24ac287cf84cf60123d54/questions_three-3.1.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c615c088a02a5656f67a70d53872fe47",
"sha256": "db5657a29c187348ff7a074fac86f3e5d683b7dfa1aa3bab841e8b9f656ec9ff"
},
"downloads": -1,
"filename": "questions-three-3.1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "c615c088a02a5656f67a70d53872fe47",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26912,
"upload_time": "2019-12-05T19:53:33",
"upload_time_iso_8601": "2019-12-05T19:53:33.841164Z",
"url": "https://files.pythonhosted.org/packages/f8/5e/c396ee6c9748327563ad30a10b701cdf702d97cb3a3bf74870cfe42a1e6c/questions-three-3.1.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.10.1.0": [
{
"comment_text": "",
"digests": {
"md5": "5c79b78e8aa05679d51fa092048ef3bd",
"sha256": "a483497014b533cbd902e7355aaaabf7a95574a0c2bf1d243b55507323c370ab"
},
"downloads": -1,
"filename": "questions_three-3.10.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5c79b78e8aa05679d51fa092048ef3bd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 59098,
"upload_time": "2020-03-02T23:32:21",
"upload_time_iso_8601": "2020-03-02T23:32:21.086578Z",
"url": "https://files.pythonhosted.org/packages/e0/76/1163cdd8e073c6877f864c5ee7de105f22987e0be938de9d4ba4b86e741c/questions_three-3.10.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "63ee4142689cb4308caaf2e819d37a2f",
"sha256": "eb12ee34900673c6572ea1b4fe62fbecfb72ff15f7a29e817cab0f3991cac4a7"
},
"downloads": -1,
"filename": "questions-three-3.10.1.0.tar.gz",
"has_sig": false,
"md5_digest": "63ee4142689cb4308caaf2e819d37a2f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44635,
"upload_time": "2020-03-02T23:32:24",
"upload_time_iso_8601": "2020-03-02T23:32:24.428726Z",
"url": "https://files.pythonhosted.org/packages/06/29/399d3939949def34649bd5816b03e2e1e18a51d36e9b88bcfd712277ef11/questions-three-3.10.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.12.0.0": [
{
"comment_text": "",
"digests": {
"md5": "3798a6c650caaf5e43c78bc2c1678f1b",
"sha256": "4daffb1e3fa9067bbacede9da1a8f4fcbaba30d6080a038862f00fdc52930ae8"
},
"downloads": -1,
"filename": "questions_three-3.12.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3798a6c650caaf5e43c78bc2c1678f1b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 57853,
"upload_time": "2020-03-09T23:09:45",
"upload_time_iso_8601": "2020-03-09T23:09:45.097201Z",
"url": "https://files.pythonhosted.org/packages/50/c2/be77a2d1d9e1cae824afeaf15f2abd994e9f80f940be8bb103bf42451345/questions_three-3.12.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0970f4c7de1a0bc38f4a172ed714e44e",
"sha256": "68ef67454a0f96e6f4ae8e50de0a4a69a87e9ae35a245ae3bdf0d98bd23c634d"
},
"downloads": -1,
"filename": "questions-three-3.12.0.0.tar.gz",
"has_sig": false,
"md5_digest": "0970f4c7de1a0bc38f4a172ed714e44e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44189,
"upload_time": "2020-03-09T23:09:48",
"upload_time_iso_8601": "2020-03-09T23:09:48.772132Z",
"url": "https://files.pythonhosted.org/packages/e6/3c/b2335d87f62bf815df6bf4f7326eee390d3f08362f123b709ed28b4268cb/questions-three-3.12.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.12.1.0": [
{
"comment_text": "",
"digests": {
"md5": "5d73608acd6c8b0c603413e23089e9e1",
"sha256": "4f13ce8a71041fe04eaeb9bdd608fd4a106e83e31bd5f443a81b64ea6aeface9"
},
"downloads": -1,
"filename": "questions_three-3.12.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5d73608acd6c8b0c603413e23089e9e1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 57826,
"upload_time": "2020-07-31T20:50:24",
"upload_time_iso_8601": "2020-07-31T20:50:24.146622Z",
"url": "https://files.pythonhosted.org/packages/03/80/94e0b6dbd03aba67a99991a04d06c17591fa23b19724816835d27759e373/questions_three-3.12.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "02d4cef96823a4fbe93efaf9455364f9",
"sha256": "72964ecd6ffe7e13e17f6bdede3eaaf91b2b6aaa0e215c5ff2f1bdc625ab4742"
},
"downloads": -1,
"filename": "questions-three-3.12.1.0.tar.gz",
"has_sig": false,
"md5_digest": "02d4cef96823a4fbe93efaf9455364f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44151,
"upload_time": "2020-07-31T20:50:25",
"upload_time_iso_8601": "2020-07-31T20:50:25.095189Z",
"url": "https://files.pythonhosted.org/packages/d9/9a/7d56497e4125aac023f82746f659f49dad8b297c5e0596b5c28db7ef166d/questions-three-3.12.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.14.0.0": [
{
"comment_text": "",
"digests": {
"md5": "22019b4d7ad2c20b485e7834db523437",
"sha256": "610b9aa258bd1fc8fabc17e61d94a9891aad5ba038a382d318697f16ea8db270"
},
"downloads": -1,
"filename": "questions_three-3.14.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "22019b4d7ad2c20b485e7834db523437",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 60549,
"upload_time": "2020-08-04T17:42:34",
"upload_time_iso_8601": "2020-08-04T17:42:34.690390Z",
"url": "https://files.pythonhosted.org/packages/12/7b/d1250f086b877cd8c4525080f0f52f14a6c6022741adbba9bcb5bb2822b2/questions_three-3.14.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6e762946093efdcce8d25d1884321874",
"sha256": "1faec766bb562eac39f8aaf60daed01a6c14487afb672f005439a55e424e2fea"
},
"downloads": -1,
"filename": "questions-three-3.14.0.0.tar.gz",
"has_sig": false,
"md5_digest": "6e762946093efdcce8d25d1884321874",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46599,
"upload_time": "2020-08-04T17:42:35",
"upload_time_iso_8601": "2020-08-04T17:42:35.888657Z",
"url": "https://files.pythonhosted.org/packages/54/a7/7859cae72962f12908af065c80a531cedbd68bed9b6585e87debfec5873a/questions-three-3.14.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.14.1.0": [
{
"comment_text": "",
"digests": {
"md5": "d5f00e2ec17a7ea8c8b2b8ad508a4e83",
"sha256": "c2d0ef0cd81f7bc667c0f5fb96a5c3d5267a9341113f6317473be0165c666c92"
},
"downloads": -1,
"filename": "questions_three-3.14.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d5f00e2ec17a7ea8c8b2b8ad508a4e83",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 60248,
"upload_time": "2020-09-15T17:34:34",
"upload_time_iso_8601": "2020-09-15T17:34:34.909091Z",
"url": "https://files.pythonhosted.org/packages/d3/03/11b02f277e6e5196d275aca442020e4d68561b2e11efa1ba67f052b5381c/questions_three-3.14.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "74c6f0d0ed8be9a26a2d84db77889a96",
"sha256": "d37d04925ea425407ee00d43ab962228101eae559509c0db4044db3d339321c1"
},
"downloads": -1,
"filename": "questions-three-3.14.1.0.tar.gz",
"has_sig": false,
"md5_digest": "74c6f0d0ed8be9a26a2d84db77889a96",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46566,
"upload_time": "2020-09-15T17:34:36",
"upload_time_iso_8601": "2020-09-15T17:34:36.492916Z",
"url": "https://files.pythonhosted.org/packages/31/28/0c3604970b852f3f1cd8e477f7b28a5a616b85f6be8f7014629c95a601b7/questions-three-3.14.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.14.2.0": [
{
"comment_text": "",
"digests": {
"md5": "bcd4f896d0def4204a793d6fc5f15141",
"sha256": "f5aecf9f2fd48a8cd7e9e66065265daa321f568e122e50c8a6bf9a5233011b93"
},
"downloads": -1,
"filename": "questions_three-3.14.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "bcd4f896d0def4204a793d6fc5f15141",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 60247,
"upload_time": "2020-09-29T18:04:52",
"upload_time_iso_8601": "2020-09-29T18:04:52.474780Z",
"url": "https://files.pythonhosted.org/packages/84/30/4d9e1b124d6fcff10687eddc8dae0572c0d9c537b7d5c8da611563da4fad/questions_three-3.14.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "eb09f9849aeb0061775ed344b4ca4703",
"sha256": "9d64140b04fdb1cb4f2ecb739ba7b29b88ea8e2852fecece681a2876dc317312"
},
"downloads": -1,
"filename": "questions-three-3.14.2.0.tar.gz",
"has_sig": false,
"md5_digest": "eb09f9849aeb0061775ed344b4ca4703",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46486,
"upload_time": "2020-09-29T18:04:54",
"upload_time_iso_8601": "2020-09-29T18:04:54.450783Z",
"url": "https://files.pythonhosted.org/packages/31/6e/61370d93b961e545d6593e7cc8551563dc4056e4149a98be54f245b79a08/questions-three-3.14.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "49bb21173575814241da245df4dbaef6",
"sha256": "c710a186fb10e5a3aa8a1915ffa022bad7ad1c5e8482c786a83e908c7004c08a"
},
"downloads": -1,
"filename": "questions_three-3.2.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "49bb21173575814241da245df4dbaef6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 53925,
"upload_time": "2019-12-20T01:18:17",
"upload_time_iso_8601": "2019-12-20T01:18:17.736319Z",
"url": "https://files.pythonhosted.org/packages/75/1f/caf7813118edbb2388ef76a8657418f7616e44ce666ff1ab2425315586a9/questions_three-3.2.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f64732f4a5e41d727e4b03738e6d9a94",
"sha256": "d62151d6786707c3274f1618108d522e7e48db22b35bd51230772411f1775ece"
},
"downloads": -1,
"filename": "questions-three-3.2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "f64732f4a5e41d727e4b03738e6d9a94",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39111,
"upload_time": "2019-12-20T01:18:22",
"upload_time_iso_8601": "2019-12-20T01:18:22.420596Z",
"url": "https://files.pythonhosted.org/packages/eb/c6/7ac5eb32bc2e072882ca070210cbd52aba1205aa15a06d8551f269162c51/questions-three-3.2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "dff4915d21b5f909cdda5583b4ddc622",
"sha256": "fe0088260f34c46f889ea1bbdf9eadb7db5983ceb9e614745862076a6b4c59fa"
},
"downloads": -1,
"filename": "questions_three-3.2.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dff4915d21b5f909cdda5583b4ddc622",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 54157,
"upload_time": "2019-12-25T14:06:20",
"upload_time_iso_8601": "2019-12-25T14:06:20.382673Z",
"url": "https://files.pythonhosted.org/packages/37/ea/b5866df877b1e97a2f3a42b2f6990878fa172cc5f929582d8c71165a184c/questions_three-3.2.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2e84cd4e20e7a1c0d986f606b2b80d60",
"sha256": "66f347dc5f30ff17f30224bc6be4b89c44767f9d895fd9645606f2e1f209911b"
},
"downloads": -1,
"filename": "questions-three-3.2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "2e84cd4e20e7a1c0d986f606b2b80d60",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39698,
"upload_time": "2019-12-25T14:06:24",
"upload_time_iso_8601": "2019-12-25T14:06:24.806783Z",
"url": "https://files.pythonhosted.org/packages/97/99/6457074f2b408ab89367a6cf01c7f86151cfe129f70f4c6d048c4539bfb0/questions-three-3.2.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.2.2.0": [
{
"comment_text": "",
"digests": {
"md5": "e41a392e71b626b352556ddc3bd904e3",
"sha256": "ab72f5aab52c3d99b4f227a9ab131bc5230ee1002ae04bea32c743fd6a97b269"
},
"downloads": -1,
"filename": "questions_three-3.2.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e41a392e71b626b352556ddc3bd904e3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 54160,
"upload_time": "2019-12-26T17:01:11",
"upload_time_iso_8601": "2019-12-26T17:01:11.325948Z",
"url": "https://files.pythonhosted.org/packages/5f/39/cc1f3dd1cc01eae2ed770856abc0509fcdf35ab274acb12e8f790794ae32/questions_three-3.2.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d625a0291ff47bb82484a7d06ae406f7",
"sha256": "4f5f76ffd36b5a7e4b40d1e0b96bdab341b1fa7e198c8ea9cff1bdbd7d1870f2"
},
"downloads": -1,
"filename": "questions-three-3.2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "d625a0291ff47bb82484a7d06ae406f7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39699,
"upload_time": "2019-12-26T17:01:15",
"upload_time_iso_8601": "2019-12-26T17:01:15.577254Z",
"url": "https://files.pythonhosted.org/packages/99/98/de11dd4612e32fe89971fb027478c8d79f80643c1503c6e57c8197f2df8d/questions-three-3.2.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.3.0.0": [
{
"comment_text": "",
"digests": {
"md5": "5b478c1011d116480df0d034df45aa8b",
"sha256": "2de67b27f6bf1760555dce7e49bdb24f60e1de46b14866e1cb347f3f0e86f892"
},
"downloads": -1,
"filename": "questions_three-3.3.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5b478c1011d116480df0d034df45aa8b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 55030,
"upload_time": "2020-01-16T15:47:21",
"upload_time_iso_8601": "2020-01-16T15:47:21.821584Z",
"url": "https://files.pythonhosted.org/packages/ee/05/ea22bb9d4741a883449f116b9683ca5803f7b3ba7549efdcb705256259c3/questions_three-3.3.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "fdb005d39c98917bae902fe9040476cd",
"sha256": "5f68e33d498fe4dc75f402c97a3d4a9452dd5e149ad7550c9d39187f9e00fc23"
},
"downloads": -1,
"filename": "questions-three-3.3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "fdb005d39c98917bae902fe9040476cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41098,
"upload_time": "2020-01-16T15:47:26",
"upload_time_iso_8601": "2020-01-16T15:47:26.064874Z",
"url": "https://files.pythonhosted.org/packages/5b/d4/e110a9087b41e5b05ed9ee03f07bdcecb216d7d358d251e0de7a158fcf07/questions-three-3.3.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.4.0.0": [
{
"comment_text": "",
"digests": {
"md5": "7959ca609b6d4b9fe0fb87843831a9ba",
"sha256": "f482331c6cfa9ab52fc1c3865a562de0738e0b5e886daf9de43b971c3a370631"
},
"downloads": -1,
"filename": "questions_three-3.4.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7959ca609b6d4b9fe0fb87843831a9ba",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 55027,
"upload_time": "2020-01-16T15:52:34",
"upload_time_iso_8601": "2020-01-16T15:52:34.980495Z",
"url": "https://files.pythonhosted.org/packages/4f/9a/2b23ffe195a5a86f98db150cde289dc0f5a34b21bf9e01be5248405b323d/questions_three-3.4.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d6dc26a02b5c55f6092f6be75268fa2d",
"sha256": "9d6c23995250dffc3c17cbccab61e434b5a0e8c038645972b28e6a341546720e"
},
"downloads": -1,
"filename": "questions-three-3.4.0.0.tar.gz",
"has_sig": false,
"md5_digest": "d6dc26a02b5c55f6092f6be75268fa2d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41102,
"upload_time": "2020-01-16T15:52:39",
"upload_time_iso_8601": "2020-01-16T15:52:39.421059Z",
"url": "https://files.pythonhosted.org/packages/47/23/b3b796c3153e487c7dd5d29d797b7bba68db6d799a1f340b75e90ade5e37/questions-three-3.4.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.4.1.0": [
{
"comment_text": "",
"digests": {
"md5": "64f989c33f342a65bb132817947d66c6",
"sha256": "01f32e6885cbefaf3023cfd5b7d1551890a6d1738a379dce6c48357f99428313"
},
"downloads": -1,
"filename": "questions_three-3.4.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "64f989c33f342a65bb132817947d66c6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 55213,
"upload_time": "2020-01-23T22:12:27",
"upload_time_iso_8601": "2020-01-23T22:12:27.093204Z",
"url": "https://files.pythonhosted.org/packages/e8/97/edf33f9b1d277f6b729c061a7575cff9f47412b435c0237b37c0f0188be8/questions_three-3.4.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "cb9d73939f744e05b179396cd98e92ab",
"sha256": "1d40acf8db9573f35e94458b7e9344d7ae88ecfc05a8097ad86561c4e4f1d503"
},
"downloads": -1,
"filename": "questions-three-3.4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "cb9d73939f744e05b179396cd98e92ab",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41450,
"upload_time": "2020-01-23T22:12:31",
"upload_time_iso_8601": "2020-01-23T22:12:31.129879Z",
"url": "https://files.pythonhosted.org/packages/ec/2f/9454635b4d96d07406fef07048d52ae412b7b6121ed50da025c0ee4f23e1/questions-three-3.4.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.8.0.0": [
{
"comment_text": "",
"digests": {
"md5": "b26b3ba173fadfc7991155805ae273fe",
"sha256": "a588859322c1ce1312ec0c0be03bd3d8aa93f16ce84c9a7af94836126c9397e9"
},
"downloads": -1,
"filename": "questions_three-3.8.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b26b3ba173fadfc7991155805ae273fe",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 58915,
"upload_time": "2020-01-31T16:46:23",
"upload_time_iso_8601": "2020-01-31T16:46:23.223232Z",
"url": "https://files.pythonhosted.org/packages/2d/8e/faa38b6060068cf4574534b5e24f5ad7b9b7a8f407dd2433bd8c696e5aa5/questions_three-3.8.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "adaf6bfc9ff8d4b97483406ab728618c",
"sha256": "865ce754e814abf38f7804dfe5aa0e4bfd641b9e2699b7d46cc4f4ee82e53448"
},
"downloads": -1,
"filename": "questions-three-3.8.0.0.tar.gz",
"has_sig": false,
"md5_digest": "adaf6bfc9ff8d4b97483406ab728618c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44437,
"upload_time": "2020-01-31T16:46:27",
"upload_time_iso_8601": "2020-01-31T16:46:27.666069Z",
"url": "https://files.pythonhosted.org/packages/52/d5/54b2dd7df554d3f72b1fca38cb0dfed12a44b3283a232fd68ffa7e53e54a/questions-three-3.8.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.8.2.0": [
{
"comment_text": "",
"digests": {
"md5": "de4e849eee021d25cefde867ab8fef3a",
"sha256": "ac3ca65a3678790e9a4d3458109a37d0bb2884aa4461db3e34ce2cc40918854f"
},
"downloads": -1,
"filename": "questions_three-3.8.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "de4e849eee021d25cefde867ab8fef3a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 58945,
"upload_time": "2020-02-24T18:47:37",
"upload_time_iso_8601": "2020-02-24T18:47:37.981797Z",
"url": "https://files.pythonhosted.org/packages/1d/ff/2bde510f7f40f9c148682ed01d0d77b2a171bfb33a2768dff5b9572d6a43/questions_three-3.8.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "68a8dcd32dda982ed23c4307008d1f47",
"sha256": "b7506f634185c2a12fc14682ec580ed796b8031477a0b6e05c9a4010aa3583e9"
},
"downloads": -1,
"filename": "questions-three-3.8.2.0.tar.gz",
"has_sig": false,
"md5_digest": "68a8dcd32dda982ed23c4307008d1f47",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44516,
"upload_time": "2020-02-24T18:47:42",
"upload_time_iso_8601": "2020-02-24T18:47:42.375171Z",
"url": "https://files.pythonhosted.org/packages/7d/77/aa1dcdce492abe62937307ecc994a61bc9b5d3d19bede49b6632046e0dc7/questions-three-3.8.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"3.8.3.0": [
{
"comment_text": "",
"digests": {
"md5": "54b7c73dad1ef5eb4d86bc42a63fd71f",
"sha256": "623e93537a4523a8b413802f122cf59fd332555e1a34e2ee35432fcdb5586391"
},
"downloads": -1,
"filename": "questions_three-3.8.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "54b7c73dad1ef5eb4d86bc42a63fd71f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 58956,
"upload_time": "2020-02-27T22:47:09",
"upload_time_iso_8601": "2020-02-27T22:47:09.537658Z",
"url": "https://files.pythonhosted.org/packages/b6/b9/881bbf77938559aa0b780fa1703e04413f84f3e113572d03e89ec595da92/questions_three-3.8.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a8ddd71b980517ddf1423a1e00089fb6",
"sha256": "cdfac66f755a8284e2ba60712e9db0a5c52de40df631b6c6240d17d1f500f138"
},
"downloads": -1,
"filename": "questions-three-3.8.3.0.tar.gz",
"has_sig": false,
"md5_digest": "a8ddd71b980517ddf1423a1e00089fb6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44525,
"upload_time": "2020-02-27T22:47:13",
"upload_time_iso_8601": "2020-02-27T22:47:13.858788Z",
"url": "https://files.pythonhosted.org/packages/09/47/b569b588e6a4f268d9d24f6eac267348d8428a8d3702f6147ad9370770b6/questions-three-3.8.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "bcd4f896d0def4204a793d6fc5f15141",
"sha256": "f5aecf9f2fd48a8cd7e9e66065265daa321f568e122e50c8a6bf9a5233011b93"
},
"downloads": -1,
"filename": "questions_three-3.14.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "bcd4f896d0def4204a793d6fc5f15141",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 60247,
"upload_time": "2020-09-29T18:04:52",
"upload_time_iso_8601": "2020-09-29T18:04:52.474780Z",
"url": "https://files.pythonhosted.org/packages/84/30/4d9e1b124d6fcff10687eddc8dae0572c0d9c537b7d5c8da611563da4fad/questions_three-3.14.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "eb09f9849aeb0061775ed344b4ca4703",
"sha256": "9d64140b04fdb1cb4f2ecb739ba7b29b88ea8e2852fecece681a2876dc317312"
},
"downloads": -1,
"filename": "questions-three-3.14.2.0.tar.gz",
"has_sig": false,
"md5_digest": "eb09f9849aeb0061775ed344b4ca4703",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46486,
"upload_time": "2020-09-29T18:04:54",
"upload_time_iso_8601": "2020-09-29T18:04:54.450783Z",
"url": "https://files.pythonhosted.org/packages/31/6e/61370d93b961e545d6593e7cc8551563dc4056e4149a98be54f245b79a08/questions-three-3.14.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}