{ "info": { "author": "Yuri Okulovsky", "author_email": "yuri.okulovsky@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# `yo_fluq`\n\n## Summary\n\n`yo_fluq` focuses on a fluent, lazy, expandable way of writing data processing pipelines. The typical example is\n\n```python\n(Query\n .en(orders)\n .take(1000)\n .where(lambda order: order['is_shipped'])\n .select(lambda order: order['payment_information'])\n .group_by(lambda payment: payment['customer_id'])\n .to_dictionary(\n lambda group: group.key,\n lambda group: Query\n .en(group.value)\n .select(lambda payment: payment['value'])\n .sum()\n )\n)\n\n```\n\nThis way of writing code is typical for C# Linq and Spark, and this project makes it available for Python as well.\n\nUnlike `pandas`, `yo_fluq` is:\n* Lazy, so it does not require to keep the whole collection in memory\n* Extendable, so you can define your own filters and use them in pipelines.\n\nUnlike [`asq`](https://pypi.org/project/asq/) or [`py_linq`](https://pypi.org/project/py_linq/), well-known ports of C# LINQ to Python, `yo_fluq` fully supports data annotations, even in case of user-defined extensions. Therefore, in IDE like PyCharm you will see the available methods in the hints.\n[`plinq`](https://pypi.org/project/plinq/) supports annotations, but does not offer extendability technique.\n\nThe library has been developed since 2017, is extensively tested and is currently available under MIT licence, at Beta development stage.\n\n\n\n\n\n## Pull-pipelines\n\n`yo_fluq` is a port of [C# LINQ-to-objects](https://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_Objects), which is a set of methods for data processing, focused on:\n* [Fluent interface](https://en.wikipedia.org/wiki/Fluent%20interface)\n* [Lazy evaluation](https://en.wikipedia.org/wiki/Lazy_evaluation)\n* Extendability\n* Type hints\n\nThis port maintains this focus. \n\n### Motivation\n\nConsider the task:\n* You have two collections of `articles` and `customers`\n* You have a `function` that predicts how well the article fits the customer\n* You want to get the top-10 tuples of `(article, customer, value)`, but only if the function\u2019s value is greater than 0\n* These tuples have to be sorted by `value` in descending order\n\n#### Naive Python\n\nThe easiest way to solve it is to just write it in Python:\n\n```python\nresult = []\nfor article in articles:\n for customer in customers:\n value = function(article,customer)\n if value>0:\n result.append((article,customer,value))\nresult.sort(key = lambda z: z[2], reverse = True)\nreturn result[:10]\n```\nThe problems are:\n* The code gets more and more nested with every step, which contributes to poor code quality\n* Everything is done in a different way: we use operators for filtering, function with and without returning values for different cases. It's not uniform\n* If you want to restore the task from this code, it requires an effort. The code is not self-explanatory\n\n#### List comprehension\n\nList comprehension is another way of doing it:\n```python\nresult = [\n (article,customer,function(article,customer))\n for article in articles\n for customer in customers\n if function(article,customer) > 0\n]\nresult.sort(key = lambda z: z[2], reverse = True)\nreturn result[:10]\n```\n\nThe problems are:\n* The functionality is limited and non-extendable. In order to put filtration inside list comprehension, I had to compute `function` twice. Ordering and slicing are impossible to fit\n* I use `article` and `customer` before they are defined. Hence, no type hints will be available in IDE\n* (subjective) The syntax is rather exotic\n\n#### `pandas`\n\nIf we convert the whole data in pandas, it's easy to do:\n\n```python\ndf = pd.DataFrame(\n [(article, customer) for article in articles for customer in customers],\n columns = ['article','customer'])\ndf = (df\n .assign(value = df.apply(lambda s: function(s.article,s.customer),axis=1))\n)\nreturn (df\n .loc[df.value>0]\n .sort_values('value',ascending=False)\n .iloc[:10]\n)\n```\n\nHere we have **Fluent** Interface, and it brings:\n* We can apply more and more filters, just adding the lines\n* Everything is done in the same **uniform** fashion: all the filters are just methods of `pandas`\n* Code is readable: each line of code basically can be traced to the line in problem's description\n\nHowever, there are still problems:\n* It's not always easy to convert data from existing format to pandas, you need to write some (ugly) code for that\n* In some cases it's not possible. Pandas requires the whole dataframe to be in memory, which is sometimes not possible\n* Not all the data are two-dimensional\n* `pandas` is still not extendable: I had to break a fluent style once to filter out by `value`. \n\n#### `itertools`\n\nThe survey of different methods won't be complete without the fourth method - `itertools`:\n\n```python\nreturn islice(\n sorted(\n filter(\n lambda z: z[2]>0,\n map(\n lambda art_cust: (\n art_cust[0], \n art_cust[1], \n function(art_cust[0],art_cust[1])),\n product(\n articles,\n customers\n ) \n )\n ),\n key = lambda res: res[2],\n reverse=True\n ),\n 0,\n 10\n)\n``` \n\nThis method solves all the problems of pandas:\n* By default, all the itertools are **lazy**: that means, you don't need to store all the data in memory at once\n* It's extendable: you can always write your own method to do precisely what you need. This whole code is written completely within one approach\n* Applicable to any data in any format\n\nHowever:\n* `itertools` has horrible inside-out syntax which is almost unreadable.\n\n#### `fluq`\n\nThis is the solution, offered by this module:\n\n```python\n(Query\n .combinatorics.cartesian(articles,customers)\n .select(lambda art_cust: art_cust+(function(art_cust[0],art_cust[1]),))\n .where(lambda res: res[2]>0)\n .order_by_descending(lambda res: res[2])\n .take(10)\n .to_list()\n)\n```\n\nThis solution is combining the best parts of `pandas` and `itertools`. It is fluent, lazy, \n* Fluent\n* Lazy\n* Extendable: you can add your own filter\n* After each dot `.` in IDE you can see the list of methods applicable, so half of this query will be written by IDE.\n\n### Related works\n\nOf course, I didn't invent this solution. I learned it from `C#`, which employed ideas from `Scala` (the same concepts are behind Spark for instance). \n\nWhat I did is port to Python. \n\nI know about these analogues:\n\n* [`asq`](https://github.com/sixty-north/asq), [`py-linq`](https://pypi.org/project/py_linq/). The key difference is that `yo_fluq` has annotations and it's expansion technique preserves type hints\n* [`plinq`](https://pypi.org/project/plinq/) has type annotations, but does not have an extendability mechanism.\n* [`RxPy`](https://github.com/ReactiveX/RxPY) contains LINQ port, which is non-extendable and is not a main focus of the library anyway.\n* In some sense [`fluentpy`](https://github.com/dwt/fluent). However the approach of this module is more fundamental, and that leads to the side effects described in the repo.\n\n\n### Fluent data processing\n\nThe typical `fluq` pipeline looks like this:\n\n```python\n(Query\n .en(orders)\n .take(1000)\n .where(lambda order: order['is_shipped'])\n .select(lambda order: order['payment_information'])\n .group_by(lambda payment: payment['customer_id'])\n .to_dictionary(\n lambda group: group.key,\n lambda group: Query\n .en(group.value)\n .select(lambda payment: payment['value'])\n .sum()\n )\n)\n\n```\n\nThe typical `fluq` pipeline consists of:\n* The source `Query.en(orders)`. This creates the `Queryable` object which can be perceived as a flow of objects\n* The set of filters `where`, `select`, `take`, `group_by`\n* The final aggreagation `to_dictionary`, that initiates all other components and produces the result.\n\n#### Sources\n\n| Code | Arguments | Output type | Comments |\n| ---- | --------- | ----------- | -------- |\n| `Query.en(list)` | `list: Iterable[T]` | `Q[T]` |\n| `Query.args(*args)` | `*args: Any` | `Q[Any]` | Mostly used in unit tests\n| `Query.dict(dict)` | `dict: Dict[TKey,TValue]` | `Q[KeyValuePair[TKey,TValue]]` | Use Query.en(dict.values()) or Query.en(dict) to access only keys or values\n| `Query.loop(begin,delta,end,endtype)` | | `Q[Any]` | Produces begin, begin+delta, begin+delta+delta, etc. until the end. Also works when delta is negative. `endType` determines when exactly process ends.\n\nNotes:\n* `Query` is a singleton instance of `QueryFactory` class that contains all the sources. \n* `Q` is used as a shortening for `Queryable` through all this documentation\n* The annotations in code may be weaker than in documentation. Currently, annotations are messy in the library, basically I only worried that type hints work in PyCharm \n\n#### Filters\n\n##### Main filters\n\nFor these filters it is important to understand what is the type of the incoming and outgoing objects. \n\n| Method | Input | Argument | Output | Comments |\n| ------ | ----- | -------- | ------ | -------- |\n| `select(selector)` | `Q[TIn]` | `selector:` `TIn->TOut` | `Q[TOut]` | Maps elements of the flow. Preserves length. Analog to itertools.map\n| `where(filter)` | `Q[T]` | `filter:` `T->bool` | `Q[T]` | Stops the elements where filter's value is False. Analog to itertools.filter\n| `distinct(selector)` | `Q[T]` | Opt. `selector:` `T->Any` | `Q[T]` | Distinct elements. By some value if `selector` is provided\n| `select_many(selector)` | `Q[TIn]` | `selector:` `TIn->Iterable[TOut]` | `Q[TOut]` | Like `select`, but flattens the result, so returns `Q[TOut]` instead of e.g. `Q[List[TOut]]`.\n| `with_indices()` | `Q[T]` | | `Q[KeyValuePair[int,T]]` | Enumerates objects in the incoming flow\n| `group_by(selector)` | `Q[T]` | `selector:` `T->TKey` | `Q[KeyValuePair[TKey,List[T]]` | Groups elements by the key, provided by selector, and propagates the groups. \n\n##### Flow control and set operations\n\nFlow control and set operations:\n* `skip(N)` skips N objects in the flow\n* `take(N)` takes N objects from the flow, then stops processing. \n* `skip_while(condition)` skips objects while condition is true, then start processing them ignoring the condition\n* `take_while(condition)` process objects while condition is true, then stops processing\n* `prepend(*args)` places `*args` in front of the flow\n* `append(*args)` places `*args` after the flow\n* `Query.en(e1).concat(e2)` concatenates collections e1 and e2 in the flow\n* `Query.en(e1).intersect(e2)` intersects the collection e1 and e2\n\n##### Ordering\n\n* `order_by(key_selector)` and `order_by_descending(key_selector)` will order the flow by ascending/descending values of the `key_selector`\n* If ordering by several keys is needed, add them with `then_by`/`then_by_descending`.\n\nExample:\n\n```python\n(Query\n .en(['B1','A0','A1','B1'])\n .order_by(lambda element: element[0])\n .then_by_descending(lambda element: element[1])\n .to_list()\n )\n``` \nwill order the collection by the ascending first letter, and then by the descending second letter, producing `['A1','A0','B1','B0']`\n\n\n#### Aggregators\n\nEach aggregator exists in two forms: as a method in Queryable, and as a class in `agg` module. The reason is, that aggregators are reused in both pull- and push-queries. The names are self-explanatory:\n* Getters: `first`, `last` and `single` (works like `first` but throws exception if more than element occur)\n* Basic math: `sum`, `count`, `mean`, `std`, `max`, `min`\n* `arg_max` and `arg_min` (accepts `selector`, return the element for which its value is highest/lowest)\n* `all`, `any`\n\n#### Others\n\nThe following methods are also implemented:\n* `foreach(processor)` acts as aggregator, executes `processor` on each element in the flow\n* `foreach_and_continue(processor)` execute processor on each element in the flow, but let flow further, thus acting like a filter\n* `parallel_select` runs `select` in parallel, thus simplifying multiprocessing usage in Python, if you want to speed-up some really time-consuming `select`.\n\n### Execution order\n\nConsider the query\n\n```python\n(Query\n .en([0,1,2])\n .where(lambda z: z%2==0)\n .select(str)\n .to_list()\n) \n```\n\n_You might think_ that it first filters out the odd numbers, then translates what is left into strings, and then puts the numbers to list. \nThe actual process you might see in the debugger is different, but lead to the same result.\n\n| Enumerable | Query | Effective python code|\n| --- | --- | --- | \n| en1 | `Query.en([0,1,2])` |`for z0 in [0,1,2]: yield e` |\n| en2 | `e1.where(lambda z: z%2==0)` | `for z1 in en1: if z1%2==0: yield z1` | \n| en3 | `e2.select(str)` | `for z2 in en2: yield str(e2)` | \n| | `e3.to_list()` | `for z3 in en3: lst.append(z3)` | \n\nThe sequence of actions is:\n* `to_list` requests element from `en3`\n * `en3` is the result of `select`, so `select` requests element from `en2`\n * `en2` is the result of `where`, so `where` requests element from `en1`\n * `en1` iterates over `[0,1,2]`. First `z0` is `0`, this is yielded as `en1` element\n * `where` checks `z1=0`, it satisfies the condition, `where` yields `0`\n * `select` converts `0` to `'0'` and yields it\n * `to_list` places `z3='0'` into `lst`\n* `to_list` requests next element from `en3`\n * `select` requests next element from `en2`\n * `where` requests next element from `en1`\n * `1` is the next element in `[0,1,2]`. So it is yielded\n * `where` checks this element, it does not satisfy the condition\n * `where` requests another element from `en1`\n * `2` is the next element in `[0,1,2]`, so `2` is yielded as the next element in `en1`\n * `where` checks `2`, it satisfies the condition and is yielded as `en2` _second_ element\n * `select` converts `2` to `'2'`\n * `to_list` places `'2'` into `lst`\n* `to_list` requests next element from `en2`\n * `select` requests next element from `en2` \n * `where` requests next element from `en1`\n * There is no more elements in `[]`, so loop in `en1` terminates\n * `where`'s loop terminates\n * `select`'s loop terminates\n * `to_list`'s loop terminates \n\n\n\n### Extendability\n\nIn C#, there are [extension methods](https://en.wikipedia.org/wiki/Extension_method), the syntax which \"add\" a method to compiled object. \nIn Python, monkey-patching produces the similar effect, but unfortunately neither PyCharm nor Jupyter Notebook can infer the annotations for monkey-patched methods.\nTherefore, extendability and type hints come into conflict in Python, and this section describes how the conflict is resolved. \n\n#### `feed`-method\n\n`feed` method in `Queryable` is defined as:\n\n```python\ndef feed(self, processor: Callable[[Queryable],T]) -> T:\n return processor(self)\n``` \n\nAssume we want to extend with [TQDM](https://pypi.org/project/tqdm) progress bar:\n\n```python\ndef _with_tqdm_iter(queryable):\n for element in tqdm(queryable):\n yield element\n\ndef with_tqdm(queryable: Queryable) -> Queryable:\n return Queryable(_with_tqdm_iter(queryable))\n```\n\nNow, the code:\n\n```python\nQuery.en([1,2,3]).feed(with_tqdm).to_list()\n\n```\nwill push the flow through the tqdm and produce a list [1,2,3]. Due to type annotation for `feed` and `with_tqdm` methods, the type of the expression `Query.en([1,2,3]).feed(with_tqdm)` can be inferred as `Queryable`, thus the type hint will appear.\n\nWhat if you want to pass some arguments to this `with_tqdm` method? Then it's a little more complicated:\n\n```python\nclass with_tqdm(Callable[[Queryable],Queryable]):\n def __init__(self, **kwargs):\n self.kwargs = kwargs\n\n def _with_tqdm_iter(self, queryable):\n for element in tqdm(queryable, **self.kwargs):\n yield element\n\n def __call__(self, queryable: Queryable) -> Queryable:\n return Queryable(self._with_tqdm_iter(queryable))\n```\n\nAnd then:\n\n```python\nQuery.en([1,2,3]).feed(with_tqdm(total=3)).to_list()\n```\n\nSo if you want to develop several extension methods, just follow these templates and you will keep the type hints. \n\n#### Updating Query and Queryable\n\nAt some point, there are simply too much of the extension methods used too often, so the pipeline looks like a sequence of `feed` methods.\n\nIn order to resolve that, there is a need to re-define `Queryable`, so:\n* the old `Queryable` methods produce instances of new `Queryable`\n* the annotation is bound to the new `Queryable` in both old and new cases.\n\nFortunately, this is possible, and done in the `yo_fluq_ds` package. I refer you to the source code for details, because this is definitely not the most frequently needed operation. \n\n## Push-queries\n\nPush-queries are important for data aggregation. Assume you want to execute this pull-query:\n\n```python\n(Query\n .en(orders_from_huge_file())\n .where(lambda order: order['is_shipped'])\n .group_by(lambda order: order['shipping_country'])\n .to_dictionary(\n lambda group: group.key,\n lambda group: Query.en(group.value).select(lambda order: order['billing_total']).mean()\n )\n)\n```\n\nThe execution of the pull-query starts from the end. `to_dictionary` aggregation requests data from the filters before. \nThe previous filter is `group_by`, and it can only provide data when all the file is read. Therefore, this whole file will be stored in memory, which is not possible if the file is huge. \nTherefore, this particular operation cannot really be performed by pull-queries.\n\nPush-queries are introduced to solve this problem.\n\n```python\npipeline = (Query\n .push()\n .where(lambda order: order['is_shipped'])\n .split_by_groups(lambda order: order['shipping_country'])\n .mean()\n )\nreport = pipeline(orders_from_huge_file())\n```\n\nThe idea behind the this implementation is pretty much alike [`RxPy`](https://github.com/ReactiveX/RxPY). The differences are:\n* It is optimized for data processing, so pipeline has \"two ways\": data comes in and in the end the report comes out.\n* It has the same interface as pull-queries and reuse some of their code\n\n### Push-queries architecture\n\n* `PushQuery` is a class that follows [Builder pattern](https://en.wikipedia.org/wiki/Builder_pattern). It's methods, like `where` or `select`, creates instances of `PushQueryElement`-s and stores them inside the class. Thus, `PushQuery` is a sequence of `PushQueryElement`, or `PQE`.\n* `PushQueryElement` *is not* the entity that processes data. It is the factory that creates such entities: `PushQueryElementInstance`, or `PQEI`.\n* PQEI implements `__enter__` and `__exit__` function. It must be entered to before processing data, and exited from after processing. E.g., PQEI that writes to files will close the file on exit.\n\nSo when we try to feed data to `PushQuery`, we actually:\n1. Take the first PQE-factory in the `PushQuery` list.\n1. Create PQEI with this factory and enter to it\n1. Feed data to first PQEI. If there are more than one PQE in query, subsequent PQEI will be created and data will be forwarded to them.\n1. After data is over, collect the report from PQEI. If there is more that one PQE in the query, PQEI requests report from subsequent PQEI and may transform it.\n1. Exit the PQEI\n\nDepending on its type and purpose, PQEI processes data in following fashions:\n* PQEI for `sum`, `mean` etc. compute reports. If `PushQuery` consists of only one such `PQE`, it's behavior is straightforward: process data and return a report.\n* PQEI for `select` transforms data and feeds it to the subsequent PQEI\n* PQEI for `where` checks the condition and depending on the result, forwards it to the subsequent PQEI or discards.\n* PQEI for `group_by` checks the group key and:\n * If this key is seen for the first time, creates a new instance of subsequet PQEI and forwards data to it, keeping a link to this PQEI\n * If the key was seen before, forwards data to the kept PQEI\n * Thus, `group_by` expands the original pipeline of PQE into *tree* of PQEI.\n\n`sum`, `mean` and others are actually the very same `agg.Sum`, `agg.Mean` etc. that are used in the pull-queries.\n\n\n### Expandability\n\nSince push-queries are just sequences of factories, you can always write your own PQE and add it to the sequence with `append` method of `PushQuery`. No special magic is required.\n\nThe base class for PQE is `PushQueryElement`. As instances, it creates `_PushQueryElementInstance` objects, but these objects redirect all their methods to the factory. It is very important to **never** modify anything that belongs to the factory in these methods, otherwise it's hard to predict the system's behavior.\n\n### Comparing pull- and push-queries\n\nNew filters for pull-queries are very easy to write with `yield`. However, push-queries are harder to write: in complex cases, when the processing of element is affected by processing the previous, you must write state machine yourself, while in pull-queries it is done by Python.\n\nPull-queries can be easily continued with push-queries, and actually this happens always, because aggregators in pull-query are implemented as atomic push-queries. However, push-query can be continued with pull-query only in a separate thread. There is no other means to do that.\n\nIn general, for data processing, the pull-queries are the weapon of choice. Push-queries should only be used for the cases, when the data flow \"splits\" and forms trees, like in `group_by`-based statistics.\n\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": "http://github.com/okulovsky/yo_ds", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "yo-fluq", "package_url": "https://pypi.org/project/yo-fluq/", "platform": "", "project_url": "https://pypi.org/project/yo-fluq/", "project_urls": { "Homepage": "http://github.com/okulovsky/yo_ds" }, "release_url": "https://pypi.org/project/yo-fluq/1.1.11/", "requires_dist": null, "requires_python": "", "summary": "Fluent interface for data processing, basic toolkit", "version": "1.1.11", "yanked": false, "yanked_reason": null }, "last_serial": 6506379, "releases": { "0.9.9": [ { "comment_text": "", "digests": { "md5": "73d030156c07bf9d9561d073502ec0d1", "sha256": "4314882d590d55c00ba0be751eaad6003f8906307ae5e2fa7b2ab179b6cdf2b6" }, "downloads": -1, "filename": "yo_fluq-0.9.9-py3-none-any.whl", "has_sig": false, "md5_digest": "73d030156c07bf9d9561d073502ec0d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25440, "upload_time": "2019-09-05T12:10:58", "upload_time_iso_8601": "2019-09-05T12:10:58.766048Z", "url": "https://files.pythonhosted.org/packages/e2/ba/c1ee6b449a861c00d0bac63a1cad8f59f982c92ff218b1f47179a3e961a9/yo_fluq-0.9.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1732f6aa6d579b16be65cc1f6afa4c78", "sha256": "2396786ea306ce4f1ce77c289a15cdf641b35f1d19935e10ad800ab8a084682f" }, "downloads": -1, "filename": "yo_fluq-0.9.9.tar.gz", "has_sig": false, "md5_digest": "1732f6aa6d579b16be65cc1f6afa4c78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14221, "upload_time": "2019-09-05T12:11:00", "upload_time_iso_8601": "2019-09-05T12:11:00.958792Z", "url": "https://files.pythonhosted.org/packages/20/52/7900798eb1849011290d6be48e661963ba16fcafbc27e4d8ecaebe8e4fa0/yo_fluq-0.9.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.901": [ { "comment_text": "", "digests": { "md5": "baf6f6a19d6da4074259d7e3953879e8", "sha256": "080035289daee381e8a12d807e6228b58d1e086804468b3ba5f05ffda3c72d3a" }, "downloads": -1, "filename": "yo_fluq-0.9.901-py3-none-any.whl", "has_sig": false, "md5_digest": "baf6f6a19d6da4074259d7e3953879e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25480, "upload_time": "2019-09-05T14:31:43", "upload_time_iso_8601": "2019-09-05T14:31:43.956296Z", "url": "https://files.pythonhosted.org/packages/54/a0/608e8f15114d962dcefea7cc6df1dddd2293f665d8caac4886c26fd22dd2/yo_fluq-0.9.901-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dd6511136b070ac59cdb397f72788d2", "sha256": "15bb7b23ed74e3a47557311426c914729e34265ff65c9d7a4c8f6a9c4a47f3f2" }, "downloads": -1, "filename": "yo_fluq-0.9.901.tar.gz", "has_sig": false, "md5_digest": "3dd6511136b070ac59cdb397f72788d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14224, "upload_time": "2019-09-05T14:31:45", "upload_time_iso_8601": "2019-09-05T14:31:45.763035Z", "url": "https://files.pythonhosted.org/packages/b6/78/48774ba8bdcd5c3aeb3b01e724d3c946d4f727f4be45856ed080deace5e9/yo_fluq-0.9.901.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.902": [ { "comment_text": "", "digests": { "md5": "680594c7b4f6ac633fdd4d725a347b35", "sha256": "bf74cc2dd050ce8f57a98377fd9781b1a0408f8f834f0127a898e5a3e8a6dc63" }, "downloads": -1, "filename": "yo_fluq-0.9.902-py3-none-any.whl", "has_sig": false, "md5_digest": "680594c7b4f6ac633fdd4d725a347b35", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25479, "upload_time": "2019-09-05T14:49:52", "upload_time_iso_8601": "2019-09-05T14:49:52.522887Z", "url": "https://files.pythonhosted.org/packages/07/8a/49eb93793b59b6ab372c2330f9e5ab40cf86058df64d4d42be9a4a100db2/yo_fluq-0.9.902-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38c9de2d53bae5b99c9500c8a86fc417", "sha256": "88e6d01f7f8ce41872bf0e1334e0864638f469de17e5c0b6ab8dc384d04b477d" }, "downloads": -1, "filename": "yo_fluq-0.9.902.tar.gz", "has_sig": false, "md5_digest": "38c9de2d53bae5b99c9500c8a86fc417", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14227, "upload_time": "2019-09-05T14:49:54", "upload_time_iso_8601": "2019-09-05T14:49:54.250205Z", "url": "https://files.pythonhosted.org/packages/b9/64/29e597c849850641f8280887d0de872eb01c2fbc1d376433715bb69bb8bd/yo_fluq-0.9.902.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.903": [ { "comment_text": "", "digests": { "md5": "739ca9ee776d70eacb6af50bb9715e64", "sha256": "c5e9109cdfbe70e13a631e164e7fabd5eaf89bbc49292f0f813468a4e07a7dd0" }, "downloads": -1, "filename": "yo_fluq-0.9.903-py3-none-any.whl", "has_sig": false, "md5_digest": "739ca9ee776d70eacb6af50bb9715e64", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25500, "upload_time": "2019-09-10T11:33:27", "upload_time_iso_8601": "2019-09-10T11:33:27.761500Z", "url": "https://files.pythonhosted.org/packages/f6/3f/7a926fadf5eb418bbaa1cebd159cccff8921442ee2948356834b4f7bfbfb/yo_fluq-0.9.903-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8dd073d55873f0e7a4f9df991d00039", "sha256": "fcfa39265aa9c20edbf617cafcd3407b4d948466640b5a570db9e715fe119b96" }, "downloads": -1, "filename": "yo_fluq-0.9.903.tar.gz", "has_sig": false, "md5_digest": "f8dd073d55873f0e7a4f9df991d00039", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14256, "upload_time": "2019-09-10T11:33:29", "upload_time_iso_8601": "2019-09-10T11:33:29.527085Z", "url": "https://files.pythonhosted.org/packages/bd/4c/13b2fda3597e2985afd8531db8b24a14a8ddad89b086cc971e76796fcea8/yo_fluq-0.9.903.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.904": [ { "comment_text": "", "digests": { "md5": "6369b76f4ac11354632f1a301929ebbc", "sha256": "10e3ab23f7c3abe7206bd14079b519cf27bc798224f216361396ca3970b86f3a" }, "downloads": -1, "filename": "yo_fluq-0.9.904-py3-none-any.whl", "has_sig": false, "md5_digest": "6369b76f4ac11354632f1a301929ebbc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26068, "upload_time": "2019-09-10T14:03:52", "upload_time_iso_8601": "2019-09-10T14:03:52.187386Z", "url": "https://files.pythonhosted.org/packages/be/9d/b50c25f06e576a1270b083004d710356d4024bf241b2eeea2d7c812a87ef/yo_fluq-0.9.904-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df59b5bed71bc1adb3c220e1061294ae", "sha256": "7ed4e6b645da3bc420a2b35bf9abee3c0911917195c6a98d848c3c0565bcc93f" }, "downloads": -1, "filename": "yo_fluq-0.9.904.tar.gz", "has_sig": false, "md5_digest": "df59b5bed71bc1adb3c220e1061294ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14446, "upload_time": "2019-09-10T14:03:53", "upload_time_iso_8601": "2019-09-10T14:03:53.506466Z", "url": "https://files.pythonhosted.org/packages/d5/a2/54fc999b51dc2f600db744ca635ce34a9c5bd3cf863c1951ad258066fccb/yo_fluq-0.9.904.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.905": [ { "comment_text": "", "digests": { "md5": "992acfd0904164e10f6d99eb93c94087", "sha256": "5d2486d5746f33124f561b97d0200d826cb20dae0762a5b4c6854fc9ec28d0d4" }, "downloads": -1, "filename": "yo_fluq-0.9.905-py3-none-any.whl", "has_sig": false, "md5_digest": "992acfd0904164e10f6d99eb93c94087", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26074, "upload_time": "2019-09-10T14:08:07", "upload_time_iso_8601": "2019-09-10T14:08:07.267784Z", "url": "https://files.pythonhosted.org/packages/4c/b6/c9aff3522511dfd1921093a6ec8050f7ac9cf9ec334998d3e31ec7d0977a/yo_fluq-0.9.905-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b54fb9594e85317dcf4a21708c532815", "sha256": "bc2ba668f0a9e87f88eb26d35a40485d06ef25adacd6b3707c5e72ab8781141c" }, "downloads": -1, "filename": "yo_fluq-0.9.905.tar.gz", "has_sig": false, "md5_digest": "b54fb9594e85317dcf4a21708c532815", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14455, "upload_time": "2019-09-10T14:08:08", "upload_time_iso_8601": "2019-09-10T14:08:08.808506Z", "url": "https://files.pythonhosted.org/packages/df/9f/feae1ae839fe3d52ecce08ce1e4e687cd25f207fbd76edadeb8cc418b657/yo_fluq-0.9.905.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.906": [ { "comment_text": "", "digests": { "md5": "6b06785558265034357cb2efca6b2be7", "sha256": "15cd9376235c4072274496646ec76f4fc6c50b85b617e8e0bfec4c6fa440ed40" }, "downloads": -1, "filename": "yo_fluq-0.9.906-py3-none-any.whl", "has_sig": false, "md5_digest": "6b06785558265034357cb2efca6b2be7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26074, "upload_time": "2019-09-10T14:09:21", "upload_time_iso_8601": "2019-09-10T14:09:21.034821Z", "url": "https://files.pythonhosted.org/packages/67/f7/9757a697ff498969596b2a3cc09bcab043539d4edd4b8a84a9c4b0d4d4d1/yo_fluq-0.9.906-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94ebca9e5a2b7e1d58b1049a77a5ada7", "sha256": "22247fc3c595496f2e6f7d61d60838e006f26811de30707334674763ef0ff22d" }, "downloads": -1, "filename": "yo_fluq-0.9.906.tar.gz", "has_sig": false, "md5_digest": "94ebca9e5a2b7e1d58b1049a77a5ada7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14454, "upload_time": "2019-09-10T14:09:22", "upload_time_iso_8601": "2019-09-10T14:09:22.659637Z", "url": "https://files.pythonhosted.org/packages/6e/02/79630f9f483f92f5bc96cf09c18d1ee85d32280bac828d3493aabd572c33/yo_fluq-0.9.906.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.907": [ { "comment_text": "", "digests": { "md5": "2963ef3c16c2bc43520d9c4ee2f91096", "sha256": "e5aedbc27af23cc0f528b449ab67cec0360c0c34f7368e50f23e9e1e964c6f98" }, "downloads": -1, "filename": "yo_fluq-0.9.907-py3-none-any.whl", "has_sig": false, "md5_digest": "2963ef3c16c2bc43520d9c4ee2f91096", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26075, "upload_time": "2019-09-10T14:09:47", "upload_time_iso_8601": "2019-09-10T14:09:47.015728Z", "url": "https://files.pythonhosted.org/packages/81/ff/0f1385265329a0adb809cd250bd4520ede9f95b1b8ab13eb41290b862d4a/yo_fluq-0.9.907-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a73a46f4d74d4dd981c82ad8329f50bd", "sha256": "38f239cb49a5144bd5cd99b102c2a1c0aac4a1ae8fc0a8c5f500dbdf355aca7f" }, "downloads": -1, "filename": "yo_fluq-0.9.907.tar.gz", "has_sig": false, "md5_digest": "a73a46f4d74d4dd981c82ad8329f50bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14448, "upload_time": "2019-09-10T14:09:48", "upload_time_iso_8601": "2019-09-10T14:09:48.630776Z", "url": "https://files.pythonhosted.org/packages/11/59/70175a872abadfc7fb90ff95f18e9d9536eff4cc64189bfa0d02d18d4224/yo_fluq-0.9.907.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.908": [ { "comment_text": "", "digests": { "md5": "5d09211991680720c4d714046215edc8", "sha256": "fc49612acdf344eb970dc656caa0aab0b7e39069be092c78ff7915ed4985b319" }, "downloads": -1, "filename": "yo_fluq-0.9.908-py3-none-any.whl", "has_sig": false, "md5_digest": "5d09211991680720c4d714046215edc8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26074, "upload_time": "2019-09-10T14:16:34", "upload_time_iso_8601": "2019-09-10T14:16:34.729699Z", "url": "https://files.pythonhosted.org/packages/71/44/7ec480b5da23905842ef95430f15d7364127e95c2c5165bb208bbb0764ad/yo_fluq-0.9.908-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7a8971fa5cb828a3e5f7d49e7682ee7", "sha256": "385f11bffae0628ae0d6e76a535baf2a268acf38a7316766f14fd078f138d260" }, "downloads": -1, "filename": "yo_fluq-0.9.908.tar.gz", "has_sig": false, "md5_digest": "f7a8971fa5cb828a3e5f7d49e7682ee7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14451, "upload_time": "2019-09-10T14:16:36", "upload_time_iso_8601": "2019-09-10T14:16:36.494338Z", "url": "https://files.pythonhosted.org/packages/68/06/a27f6e4eab511b7be0bcb4e84cc9ce864178044a791daecf221833e07bcc/yo_fluq-0.9.908.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.910": [ { "comment_text": "", "digests": { "md5": "ae58cab34b61e37516d620feb10927cc", "sha256": "cd8f791f33a009b455ac225c71c5df35efa2a555986aa4752b6b2932d1407e1a" }, "downloads": -1, "filename": "yo_fluq-0.9.910-py3-none-any.whl", "has_sig": false, "md5_digest": "ae58cab34b61e37516d620feb10927cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26073, "upload_time": "2019-09-10T14:24:02", "upload_time_iso_8601": "2019-09-10T14:24:02.667906Z", "url": "https://files.pythonhosted.org/packages/59/a8/3c3dbba9175dddf41289dc1755abb3c14a7c16ccbd9679cadd3fd738e022/yo_fluq-0.9.910-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8afb652dd47ce9f918ef9f03b1dad8ba", "sha256": "b400628f63a1e2d32649127c486417df61d5fa4fc5d23f558e10c8f38ad83242" }, "downloads": -1, "filename": "yo_fluq-0.9.910.tar.gz", "has_sig": false, "md5_digest": "8afb652dd47ce9f918ef9f03b1dad8ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14451, "upload_time": "2019-09-10T14:24:04", "upload_time_iso_8601": "2019-09-10T14:24:04.313457Z", "url": "https://files.pythonhosted.org/packages/b1/c7/f880815c2372a67bbf8702cb61f14129a9cd740948b3658dc4ae284552b5/yo_fluq-0.9.910.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.911": [ { "comment_text": "", "digests": { "md5": "07cbef50f7716153911fd90f315a4b2b", "sha256": "82c52a47d11d1d23ca62d03abded7d500b4e372cd7b27d5c0f41fa322bce9400" }, "downloads": -1, "filename": "yo_fluq-0.9.911-py3-none-any.whl", "has_sig": false, "md5_digest": "07cbef50f7716153911fd90f315a4b2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26874, "upload_time": "2019-09-20T08:52:50", "upload_time_iso_8601": "2019-09-20T08:52:50.386593Z", "url": "https://files.pythonhosted.org/packages/5f/4b/77d2c5823fc26f7e34112b36d9d8cddc289022fa112a78f34a23e064072f/yo_fluq-0.9.911-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "418fcb97ee3b07b654ed44af78df37f1", "sha256": "143e4341e12ef5cf785c4877441464c920a79ad5721d0495bd8d21c6c55a951e" }, "downloads": -1, "filename": "yo_fluq-0.9.911.tar.gz", "has_sig": false, "md5_digest": "418fcb97ee3b07b654ed44af78df37f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14999, "upload_time": "2019-09-20T08:52:51", "upload_time_iso_8601": "2019-09-20T08:52:51.814791Z", "url": "https://files.pythonhosted.org/packages/4c/49/31c92ec3d5f40348916f4bf4270a65e0c15bab5abdc326b5f59c49eb5638/yo_fluq-0.9.911.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.912": [ { "comment_text": "", "digests": { "md5": "a518bbb7e656423398386d75e3c1b360", "sha256": "e1071e800b127a4156c82147082970f4be45933724e58bd84aea78b55e32cc83" }, "downloads": -1, "filename": "yo_fluq-0.9.912-py3-none-any.whl", "has_sig": false, "md5_digest": "a518bbb7e656423398386d75e3c1b360", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26874, "upload_time": "2019-09-20T15:11:12", "upload_time_iso_8601": "2019-09-20T15:11:12.370300Z", "url": "https://files.pythonhosted.org/packages/6e/b3/84f0249286f91a9ac6a17baf86927c0924440ac6562306ad7afd9f3175cc/yo_fluq-0.9.912-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6dd2745cc2c7a6d4592870f174e06334", "sha256": "fe5ca89ea4d71958daef25fbb53465c7980bc271ec1f0dda28e6c28879490673" }, "downloads": -1, "filename": "yo_fluq-0.9.912.tar.gz", "has_sig": false, "md5_digest": "6dd2745cc2c7a6d4592870f174e06334", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14996, "upload_time": "2019-09-20T15:11:13", "upload_time_iso_8601": "2019-09-20T15:11:13.869181Z", "url": "https://files.pythonhosted.org/packages/33/57/23dd6882584a264ad6c4ca5ec0c8ed2c15c9dd89fb6d1e41b7bc078c4111/yo_fluq-0.9.912.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "57826efbee689bf94ddc4db0ffbf4150", "sha256": "b8d9691d772d687158aa894c7964865bf74b3bb7a79dcf53d73f39e4abd58e4f" }, "downloads": -1, "filename": "yo_fluq-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "57826efbee689bf94ddc4db0ffbf4150", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25914, "upload_time": "2019-09-26T09:02:20", "upload_time_iso_8601": "2019-09-26T09:02:20.350783Z", "url": "https://files.pythonhosted.org/packages/7f/c0/c9477772bece3efa67b06acf928d32b53bf9d6fdc5dcb8e47ddfc0291896/yo_fluq-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f41edf7ea2c608b3e1bd70581e58258", "sha256": "ea5a2b5aa524e005b00ed925f999ddbaa4bc1349a70613cbad720a689900572d" }, "downloads": -1, "filename": "yo_fluq-1.0.0.tar.gz", "has_sig": false, "md5_digest": "7f41edf7ea2c608b3e1bd70581e58258", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14403, "upload_time": "2019-09-26T09:02:22", "upload_time_iso_8601": "2019-09-26T09:02:22.634190Z", "url": "https://files.pythonhosted.org/packages/bf/f6/3574173d8a42b897e87b2c5bbceecc2b6997717fe76e2f25354fbfff3742/yo_fluq-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "ca45438c694ed3c59b742da1fda8c934", "sha256": "2f5b0e0f6c0a81ba986758c72e9846c083e97f134997219e6daf273f8a0d22b4" }, "downloads": -1, "filename": "yo_fluq-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ca45438c694ed3c59b742da1fda8c934", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25920, "upload_time": "2019-10-01T07:59:03", "upload_time_iso_8601": "2019-10-01T07:59:03.660606Z", "url": "https://files.pythonhosted.org/packages/92/0f/83f6ef193557494c41f4ae2d9f23a008fcf7f10bd074453fbf11fdeb345a/yo_fluq-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "262b8bd5be9c06a51b90478be85f5d06", "sha256": "5a33c75d20b77c9b80cd635ca0e01aeea0bf4070cfabd3fdb5c71aece154ec17" }, "downloads": -1, "filename": "yo_fluq-1.0.1.tar.gz", "has_sig": false, "md5_digest": "262b8bd5be9c06a51b90478be85f5d06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14406, "upload_time": "2019-10-01T07:59:05", "upload_time_iso_8601": "2019-10-01T07:59:05.169918Z", "url": "https://files.pythonhosted.org/packages/65/e5/66d76bbc2abf6efe2da0bc9eebe27ce6b84a5f4b6741ed9dc9708a19c02e/yo_fluq-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2rc1": [ { "comment_text": "", "digests": { "md5": "ebd3a27d03077cfdaa2fa36e96475231", "sha256": "20250e438ede680302e585b9c4ed87aff5201363cbc951d060ebfd660e2df198" }, "downloads": -1, "filename": "yo_fluq-1.0.2rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "ebd3a27d03077cfdaa2fa36e96475231", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33435, "upload_time": "2019-10-04T08:21:23", "upload_time_iso_8601": "2019-10-04T08:21:23.446106Z", "url": "https://files.pythonhosted.org/packages/fb/79/0648c9b9ddedb8ba252b49b87653ea1dfe61e657b34180bdba4a5af0cfe5/yo_fluq-1.0.2rc1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f74167de7076eb5fbd72331d02afcaee", "sha256": "660e3148cf1db75c2f2569c118682aa72220e9772908d0105bb26ca7f36e1e13" }, "downloads": -1, "filename": "yo_fluq-1.0.2rc1.tar.gz", "has_sig": false, "md5_digest": "f74167de7076eb5fbd72331d02afcaee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23255, "upload_time": "2019-10-04T08:21:25", "upload_time_iso_8601": "2019-10-04T08:21:25.586796Z", "url": "https://files.pythonhosted.org/packages/5c/7f/dcf5528e6f56aef54796975ee8312dc8ee190eb2a8633edff9602aa97aad/yo_fluq-1.0.2rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2rc2": [ { "comment_text": "", "digests": { "md5": "2cfb195baaaba100ab9c63b1f1a7c52c", "sha256": "d46970176d08dd263c2f2b2406e1a5af24c1bd65253c4e9dbfe9edd0f2ea5088" }, "downloads": -1, "filename": "yo_fluq-1.0.2rc2-py3-none-any.whl", "has_sig": false, "md5_digest": "2cfb195baaaba100ab9c63b1f1a7c52c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33290, "upload_time": "2019-10-04T09:22:25", "upload_time_iso_8601": "2019-10-04T09:22:25.557111Z", "url": "https://files.pythonhosted.org/packages/90/01/a09a8335a150a8146894303eda7b83e84b98206f7826aadf556d0530ff91/yo_fluq-1.0.2rc2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c30c93610e23b8fe664f6bbf2734384d", "sha256": "182824d17d946b82d121a5ccd70840dea55b237d9a009238db6690a4d5321454" }, "downloads": -1, "filename": "yo_fluq-1.0.2rc2.tar.gz", "has_sig": false, "md5_digest": "c30c93610e23b8fe664f6bbf2734384d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23138, "upload_time": "2019-10-04T09:22:27", "upload_time_iso_8601": "2019-10-04T09:22:27.906871Z", "url": "https://files.pythonhosted.org/packages/63/cc/a445fb9b950bdaacfeb3cd1064476fa71709dc5b71d075a1b3c14380cd3c/yo_fluq-1.0.2rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "b63bb33a3f43046207092b994ed8d814", "sha256": "28079a9530c9cda0a3a59e8cf55900df1bc10ef4f28156ce7dd0fb71dbf8a640" }, "downloads": -1, "filename": "yo_fluq-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b63bb33a3f43046207092b994ed8d814", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33263, "upload_time": "2019-10-04T09:28:21", "upload_time_iso_8601": "2019-10-04T09:28:21.147489Z", "url": "https://files.pythonhosted.org/packages/0b/bb/bce9693a1268fc76af4167146297ec91b673a4a37ff327de48ff88734a06/yo_fluq-1.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91eb7fe217ce0ae308bcc158e67f6bdf", "sha256": "4259cf20a8d5575efe85853e128d542b6ca6b548c039f178171d6f17d95dbc3f" }, "downloads": -1, "filename": "yo_fluq-1.0.3.tar.gz", "has_sig": false, "md5_digest": "91eb7fe217ce0ae308bcc158e67f6bdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23124, "upload_time": "2019-10-04T09:28:23", "upload_time_iso_8601": "2019-10-04T09:28:23.478110Z", "url": "https://files.pythonhosted.org/packages/24/bc/e9d3d858b06423391462b2441fb1517f905389bbb7ca778c718d1fdabc6c/yo_fluq-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "04181909c1d6524afe1b34ba8ae4eae4", "sha256": "a235cb37882f60c03245397a7016fb1491d52651b8d8e94678efd8b9d531b298" }, "downloads": -1, "filename": "yo_fluq-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "04181909c1d6524afe1b34ba8ae4eae4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33262, "upload_time": "2019-10-04T09:38:43", "upload_time_iso_8601": "2019-10-04T09:38:43.418792Z", "url": "https://files.pythonhosted.org/packages/ba/1e/83d2f0de0f1bf1716ee3b436ed9d2ddc19ae941fe4e230e7a0e40d65ded8/yo_fluq-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f3990551bd0df3d57fa81d3d28721f4", "sha256": "a277e74ecc7d20065baec0ebc23ffaeebccad6cd0657b0f3fd607dc73954a436" }, "downloads": -1, "filename": "yo_fluq-1.1.0.tar.gz", "has_sig": false, "md5_digest": "8f3990551bd0df3d57fa81d3d28721f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23121, "upload_time": "2019-10-04T09:38:46", "upload_time_iso_8601": "2019-10-04T09:38:46.370901Z", "url": "https://files.pythonhosted.org/packages/a5/a4/d1e7e54e559e7c6d817e63d1656bffb693cced7586fa2fbb8f348788d013/yo_fluq-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "464b3d655e038192be7f7e962bf269cf", "sha256": "71273852961e8aefe517a69b7faa60f2f8848e7310ae71bf9ce66d77f7f50aa0" }, "downloads": -1, "filename": "yo_fluq-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "464b3d655e038192be7f7e962bf269cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33470, "upload_time": "2019-10-05T08:09:48", "upload_time_iso_8601": "2019-10-05T08:09:48.900456Z", "url": "https://files.pythonhosted.org/packages/a6/e8/f86549cad99ce9947c698f6df17849e80a2e137b81ead1d1bff6a636b456/yo_fluq-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "498dd00545e2cf1286592c41fafd1354", "sha256": "8f7978183354dee22385d9d75b10144ce9c48f0dd591b2e750f5efb1165167d1" }, "downloads": -1, "filename": "yo_fluq-1.1.1.tar.gz", "has_sig": false, "md5_digest": "498dd00545e2cf1286592c41fafd1354", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23483, "upload_time": "2019-10-05T08:09:51", "upload_time_iso_8601": "2019-10-05T08:09:51.002587Z", "url": "https://files.pythonhosted.org/packages/84/30/9b2ad44cc926defdb2ed14e97386368ab1ada394c9ca09a57cf32a5128ac/yo_fluq-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "9263fad71bfd36a65962fe2e63ae0084", "sha256": "1177d38569154bdd5cc61e666853be025a660812caa068b7e2324fb540cac8d0" }, "downloads": -1, "filename": "yo_fluq-1.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "9263fad71bfd36a65962fe2e63ae0084", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34118, "upload_time": "2020-01-03T08:57:10", "upload_time_iso_8601": "2020-01-03T08:57:10.222926Z", "url": "https://files.pythonhosted.org/packages/e8/df/4ee7cb572bfce7cf2dea85abed1ad6a4acd2b8f031f0a258e65112756fe9/yo_fluq-1.1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a9f7a81411eb759e4ad1c68e27b628c", "sha256": "f5a19971ad039565b8e138dcf3e484390b8401f1d6dae3f923e37e116f1ce1f9" }, "downloads": -1, "filename": "yo_fluq-1.1.10.tar.gz", "has_sig": false, "md5_digest": "6a9f7a81411eb759e4ad1c68e27b628c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24458, "upload_time": "2020-01-03T08:57:11", "upload_time_iso_8601": "2020-01-03T08:57:11.900053Z", "url": "https://files.pythonhosted.org/packages/ba/0b/2588eda54ed1ece809a11f3306ad562fe857ff094b38915187a50b011c23/yo_fluq-1.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "0134403162488b484d5352aea32a251c", "sha256": "6c5a5dfe7e2a4bb9466f0ab464a6f76446d208d78d6213b57f5ba13e29dec0aa" }, "downloads": -1, "filename": "yo_fluq-1.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "0134403162488b484d5352aea32a251c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34204, "upload_time": "2020-01-23T13:04:59", "upload_time_iso_8601": "2020-01-23T13:04:59.691853Z", "url": "https://files.pythonhosted.org/packages/e9/2a/98fcdd8801897eafde7e7ef3214709a1c490b8fe635cf1639e524dc56937/yo_fluq-1.1.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7373ac38890b617847a9d0be2167f08", "sha256": "8bb9263b1863b181f98617cf37e89ed0091e94794006211621b452429204f713" }, "downloads": -1, "filename": "yo_fluq-1.1.11.tar.gz", "has_sig": false, "md5_digest": "f7373ac38890b617847a9d0be2167f08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24545, "upload_time": "2020-01-23T13:05:01", "upload_time_iso_8601": "2020-01-23T13:05:01.454780Z", "url": "https://files.pythonhosted.org/packages/22/1a/b2fe5a1fc0b54036124f60368d52534201fbcf6322fa19b635bbf5fb9a0f/yo_fluq-1.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "9975b055fa52457e5538625bba9bdf6e", "sha256": "3291892b7ffbee829b98b2011b3810ef6c8011d1b48b0338593a28472a8f6b2d" }, "downloads": -1, "filename": "yo_fluq-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9975b055fa52457e5538625bba9bdf6e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33471, "upload_time": "2019-10-14T12:01:22", "upload_time_iso_8601": "2019-10-14T12:01:22.255748Z", "url": "https://files.pythonhosted.org/packages/11/0b/b0e52093353d46cb4bfb421d0248c3a2dd9b4942cc5cb0a73b3e354aca4c/yo_fluq-1.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a9db070aa294b030768059b52e0a9f7", "sha256": "b98b090b9bf3dae629dd3c628b97093f9ac21abca6a47d0558bc1505b4325283" }, "downloads": -1, "filename": "yo_fluq-1.1.2.tar.gz", "has_sig": false, "md5_digest": "2a9db070aa294b030768059b52e0a9f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24128, "upload_time": "2019-10-14T12:01:24", "upload_time_iso_8601": "2019-10-14T12:01:24.606410Z", "url": "https://files.pythonhosted.org/packages/35/03/571f5019cb4f9fdddcaac4251e3a2b7e2164d5ec23641b58b21177136f33/yo_fluq-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "dae7cb3fc7b48fb3f97e6aad2053abf7", "sha256": "6cdb579dde1c470a74bce787214a6946d8c64b68595284e47ea15727b82ba2dd" }, "downloads": -1, "filename": "yo_fluq-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "dae7cb3fc7b48fb3f97e6aad2053abf7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33548, "upload_time": "2019-10-17T10:13:13", "upload_time_iso_8601": "2019-10-17T10:13:13.451877Z", "url": "https://files.pythonhosted.org/packages/48/7d/0308f92f246d34e9cafb2ddc1050dc73eeec75a4046af36eb48a8102179c/yo_fluq-1.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb68a8e2a71aaa918274b68a6c5a23f8", "sha256": "f6e822b0adee65ba8870bec58710aa529d44d589cb945f883a7bde57e1eb9e27" }, "downloads": -1, "filename": "yo_fluq-1.1.3.tar.gz", "has_sig": false, "md5_digest": "bb68a8e2a71aaa918274b68a6c5a23f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24191, "upload_time": "2019-10-17T10:13:15", "upload_time_iso_8601": "2019-10-17T10:13:15.868153Z", "url": "https://files.pythonhosted.org/packages/3f/58/886eedf94f1181ba99fd4c67b135a08dca971d0cc7fd19753b8ec80e8d4e/yo_fluq-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "8030267aa6405032268b96d4903486f6", "sha256": "78762df8d45504d0264812d9dc6da6611c92fa28b0a30668ebb66f1bd799b21d" }, "downloads": -1, "filename": "yo_fluq-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8030267aa6405032268b96d4903486f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33562, "upload_time": "2019-10-17T11:17:56", "upload_time_iso_8601": "2019-10-17T11:17:56.240378Z", "url": "https://files.pythonhosted.org/packages/e2/c3/765ae5132e01ed0640c710dd9f8dbcbe503074b24f65f6a4be806be2f88f/yo_fluq-1.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a92567bb05fba41d0a2fe38b17f8eab9", "sha256": "38d5b518ffb7ae8ac37303ae0f855d82cc24cc9f755dc1d4ae09433098dfd231" }, "downloads": -1, "filename": "yo_fluq-1.1.4.tar.gz", "has_sig": false, "md5_digest": "a92567bb05fba41d0a2fe38b17f8eab9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24202, "upload_time": "2019-10-17T11:17:58", "upload_time_iso_8601": "2019-10-17T11:17:58.508916Z", "url": "https://files.pythonhosted.org/packages/59/2a/0ce8fa427869130158dca7e7fdbeb1c9b67cf86ddcc7a69902eaf0a8894f/yo_fluq-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "fea35d0420a99f66a1b7dd7427da2b40", "sha256": "b5727a4e151cfbe8e724b9db9f2e2a0168b8b771588cb5f422bbe295d8dbdf2c" }, "downloads": -1, "filename": "yo_fluq-1.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fea35d0420a99f66a1b7dd7427da2b40", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33677, "upload_time": "2019-10-25T07:10:57", "upload_time_iso_8601": "2019-10-25T07:10:57.053972Z", "url": "https://files.pythonhosted.org/packages/27/ff/6a90585a2692ca53287ea01b3f4a1a4aa640260052458200fca5994d9ef3/yo_fluq-1.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9feb681feecafa72747e677edab6e01", "sha256": "f7b250747fd3f83b8c717b4d0d82dbb91c2426dbc8eac52ddc697863b70e5d3e" }, "downloads": -1, "filename": "yo_fluq-1.1.5.tar.gz", "has_sig": false, "md5_digest": "b9feb681feecafa72747e677edab6e01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24316, "upload_time": "2019-10-25T07:10:58", "upload_time_iso_8601": "2019-10-25T07:10:58.984927Z", "url": "https://files.pythonhosted.org/packages/91/c4/57edf619b6f230e92841c23048948150f56fb1ba1640544d77e288e2b1b6/yo_fluq-1.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "fa881d0552966cb7496e720171369024", "sha256": "8f39f004d217e5a016af5953377227ec01b6c450eb05edbe61b322a1c80890d5" }, "downloads": -1, "filename": "yo_fluq-1.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "fa881d0552966cb7496e720171369024", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33676, "upload_time": "2019-11-22T15:18:38", "upload_time_iso_8601": "2019-11-22T15:18:38.857990Z", "url": "https://files.pythonhosted.org/packages/e1/6b/cc2e52ea2e96d68c308877fa49ff0d878e0e01e86bf0ef61912ceeb73296/yo_fluq-1.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2788d9087dd261005b6f5bc5e4b64992", "sha256": "d87ca7c741c78383467b5368d357aef38058d08f284f8a1ec9c0e595bf993863" }, "downloads": -1, "filename": "yo_fluq-1.1.6.tar.gz", "has_sig": false, "md5_digest": "2788d9087dd261005b6f5bc5e4b64992", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24310, "upload_time": "2019-11-22T15:18:40", "upload_time_iso_8601": "2019-11-22T15:18:40.877449Z", "url": "https://files.pythonhosted.org/packages/1b/e2/a1030e021359b2e26996ab7d77f581b6d69518271e1faaeb2799f8824295/yo_fluq-1.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "654882304efbff4b9add24437094cd02", "sha256": "7eb661f489e72022bf5458698aee8f2d173923d08b1b46f19403a18bb9c82c0d" }, "downloads": -1, "filename": "yo_fluq-1.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "654882304efbff4b9add24437094cd02", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33678, "upload_time": "2019-12-03T12:30:15", "upload_time_iso_8601": "2019-12-03T12:30:15.130401Z", "url": "https://files.pythonhosted.org/packages/ad/7f/9d0457d717d8ccc41c0102797806e055fd90aae92417a535b046fe667646/yo_fluq-1.1.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50a33006200df78ce6f37a79ed281aeb", "sha256": "7d255d14d27ed6dc5077c6c1e87a3a05518c75b4f1a4c8f5ef04146d28f4e9b6" }, "downloads": -1, "filename": "yo_fluq-1.1.7.tar.gz", "has_sig": false, "md5_digest": "50a33006200df78ce6f37a79ed281aeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24314, "upload_time": "2019-12-03T12:30:17", "upload_time_iso_8601": "2019-12-03T12:30:17.292896Z", "url": "https://files.pythonhosted.org/packages/93/b1/e48f60d9cbc62425112b2eb10647a044f8854de0cec3ac8d583972a0d5b3/yo_fluq-1.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "4aa7e5407ba2b97521b7446652edb036", "sha256": "f4760d390f5c0deaf9e9f558becc5a1e3b8b5ebaebb080ec709a3e8eadb147e2" }, "downloads": -1, "filename": "yo_fluq-1.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "4aa7e5407ba2b97521b7446652edb036", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34109, "upload_time": "2019-12-20T09:43:03", "upload_time_iso_8601": "2019-12-20T09:43:03.950341Z", "url": "https://files.pythonhosted.org/packages/88/c5/c211ce2ef2d6e6b4a279a854d870cb7540072509a141362136afa7d3ae36/yo_fluq-1.1.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "975c26b316db5bac1a0dd8a65c53faea", "sha256": "e097e809844e92841f3513c49d4266270c33a965ba481235356c2f683e54ffa5" }, "downloads": -1, "filename": "yo_fluq-1.1.8.tar.gz", "has_sig": false, "md5_digest": "975c26b316db5bac1a0dd8a65c53faea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24467, "upload_time": "2019-12-20T09:43:06", "upload_time_iso_8601": "2019-12-20T09:43:06.281137Z", "url": "https://files.pythonhosted.org/packages/44/0a/d1e35460381906c76d2b3b7a85008d9584cb0754506e2d202fee68a6c049/yo_fluq-1.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "bc2cbb8185ffe504d518fea4f16a7baf", "sha256": "c1a111d1d89f60c15ae43251f7844edebaaeb130909ca5bf5c705b6bbac0ca83" }, "downloads": -1, "filename": "yo_fluq-1.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "bc2cbb8185ffe504d518fea4f16a7baf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34109, "upload_time": "2020-01-02T10:56:00", "upload_time_iso_8601": "2020-01-02T10:56:00.801075Z", "url": "https://files.pythonhosted.org/packages/dc/d7/e4207d3b47608e2e1505ce8fa6cd01978c575d5184b95d7a702e6ac333eb/yo_fluq-1.1.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1d331212c156cfd774a66347c696e92", "sha256": "a9b4374068d730029b4a53ed705455525f00cc3a854961c36730473b13cbe8d3" }, "downloads": -1, "filename": "yo_fluq-1.1.9.tar.gz", "has_sig": false, "md5_digest": "b1d331212c156cfd774a66347c696e92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24468, "upload_time": "2020-01-02T10:56:03", "upload_time_iso_8601": "2020-01-02T10:56:03.034447Z", "url": "https://files.pythonhosted.org/packages/04/36/22a4c9bc934f94345a107aa2f4de920e690fb568d06ee2556d9c04d01e3a/yo_fluq-1.1.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0134403162488b484d5352aea32a251c", "sha256": "6c5a5dfe7e2a4bb9466f0ab464a6f76446d208d78d6213b57f5ba13e29dec0aa" }, "downloads": -1, "filename": "yo_fluq-1.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "0134403162488b484d5352aea32a251c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34204, "upload_time": "2020-01-23T13:04:59", "upload_time_iso_8601": "2020-01-23T13:04:59.691853Z", "url": "https://files.pythonhosted.org/packages/e9/2a/98fcdd8801897eafde7e7ef3214709a1c490b8fe635cf1639e524dc56937/yo_fluq-1.1.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7373ac38890b617847a9d0be2167f08", "sha256": "8bb9263b1863b181f98617cf37e89ed0091e94794006211621b452429204f713" }, "downloads": -1, "filename": "yo_fluq-1.1.11.tar.gz", "has_sig": false, "md5_digest": "f7373ac38890b617847a9d0be2167f08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24545, "upload_time": "2020-01-23T13:05:01", "upload_time_iso_8601": "2020-01-23T13:05:01.454780Z", "url": "https://files.pythonhosted.org/packages/22/1a/b2fe5a1fc0b54036124f60368d52534201fbcf6322fa19b635bbf5fb9a0f/yo_fluq-1.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }