{ "info": { "author": "Aaron Christianson", "author_email": "ninjaaron@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "pyfil\n=====\nPython one-liners in the spirit of Perl and AWK.\n\n``pyfil`` stands for PYthon FILter. One of the tenants of the `Unix\ndesign`_ is that every program is a filter. It's especially obvious of\nprograms, like ``grep``, ``sed``, ``sort``, ``tr``, etc.\n\nOne notable example is ``awk`` -- a Turing-complete, interpreted\nlanguage for parsing text. While AWK scripts are still in use and it's a\nfine language, it has been superseded for parsing scripts by more\ngeneral languages like Perl and later Python and Ruby. However, AWK was\ndesigned to be especially useful in the shell as a filter, and it is\nstill in very commonly used for that today (in part because it is on\nevery \\*nix system, but also because it's great at what it does). AWK is\nable to be any arbitrary text filter that doesn't come as a coreutil.\n``perl -e`` is also quite good as a filter, and Ruby has made a valiant\nattempt to do so as well.\n\nWhile python does have a few good one-line uses (``python -m\nhttp.server``), some elements of its design make it less suited than the\nafore-mentioned languages. ``pyfil`` is one of several attempts to\naddress this issue. In particular, it takes a lot of queues in the\ndesign of its CLI from AWK and Perl, and aims fundamentally to be a\ncapable text filter, though it will evaluate any arbitrary Python\nexpression and print its value (with modules being imported implicitly\nas required).\n\nAs a more modern touch, it also has a special emphasis on\ninteroperability with JSON. If the return value of the evaluated\nexpression is a container type, python will attempt to serialize it as\nJSON before printing, so you can pipe output into other tools that deal\nwith JSON, store it to a file for later use, or send it over http. This,\ncombined with the ability to read JSON from stdin (with --json) make\n``pyfil`` a good translator between the web, which tends to speak JSON\nthese days, and the POSIX environment, which tends to think about data\nin terms of lines in a file (frequently with multiple fields per line).\n\npyfil is in pypi (i.e. you can get it easily with pip, if you want)\n\nnote:\n pyfil has only been tested with python3, and only has wheels available\n for python3\n\n.. _unix design: https://en.wikipedia.org/wiki/Unix_philosophy\n\n.. contents::\n\nsimilar projects\n----------------\npyfil ain't the first project to try something like this. Here are some\nother cracks at this problem:\n\n- oneliner_\n- pyp_\n- pyle_\n- funcpy_\n- red_\n- pyeval_\n- quickpy_\n\nDon't worry. I've stolen some of their best ideas already, and I will go\non stealing as long as it takes!\n\n.. _oneliner: http://python-oneliner.readthedocs.io/en/latest/\n.. _pyp: http://code.google.com/p/pyp\n.. _pyle: https://github.com/aljungberg/pyle\n.. _funcpy: http://www.pixelbeat.org/scripts/funcpy\n.. _red: https://bitbucket.org/johannestaas/red\n.. _pyeval: https://bitbucket.org/nejucomo/pyeval/wiki/Home\n.. _quickpy: https://github.com/slezica/quick-py\n\nusage\n-----\n\n.. code::\n\n pyfil [-h] [-l] [-x] [-q] [-j] [-o] [-b PRE] [-e POST] [-s] [-F PATTERN]\n [-n STRING] [-R] [-S] [-H EXCEPTION_HANDLER]\n expression [expression ...]\n\npositional arguments:\n expression expression(s) to be executed. If multiple expression\n arguments are given, and --exec is not used, the value\n of the previous expression is available as 'x' in the\n following expression. if --exec is used, all\n assignment must be explicit.\n\noptional arguments:\n -h, --help show this help message and exit\n -l, --loop for n, i in enumerate(stdin): expressions\n -x, --exec use exec instead of eval. statements are allowed, but\n automatic printing is lost. doesn't affect --post\n -q, --quiet suppress automatic printing. doesn't affect --post\n -j, --json load stdin as json into object 'j'; If used with\n --loop, treat each line of stdin as a new object\n -J, --real-dict-json like -j, but creates real dictionaries instead of the\n wrapper that allows dot syntax.\n -o, --force-oneline-json\n outside of loops and iterators, objects serialzed to\n json print with two-space indent. this forces this\n forces all json objects to print on a single line.\n -b PRE, --pre PRE statement to evaluate before expression args. multiple\n statements may be combined with ';'. no automatic\n printing\n -e POST, --post POST expression to evaluate after the loop. always handeled\n by eval, even if --exec, and always prints return\n value, even if --quiet. implies --loop\n -s, --split split lines from stdin on whitespace into list 'f'.\n implies --loop\n -F PATTERN, --field-sep PATTERN\n regex used to split lines from stdin into list 'f'.\n implies --loop\n -n STRING, --join STRING\n join items in iterables with STRING\n -R, --raise-errors raise errors in evaluation and stop execution\n (default: print message to stderr and continue)\n -S, --silence-errors suppress error messages\n -H EXCEPTION_HANDLER, --exception-handler EXCEPTION_HANDLER\n specify exception handler with the format 'Exception:\n alternative expression to eval'\n\navailable objects\n~~~~~~~~~~~~~~~~~\n``pyfil`` automatically imports any modules used in expressions.\n\nIf you'd like to create any other objects to use in the execution\nenvironment ~/.config/pyfil-env.py and put things in it.\n\ndefault objects:\n\n- l = []\n- d = {}\n\nThese are empty containers you might wish to add items to during\niteration, for example.\n\n- x is the value of the previous expression unless --exec was used.\n\nThe execution environment also has a special object for stdin,\ncreatively named ``stdin``. This differs from sys.stdin in that it\nstrips trailing newlines when you iterate over it, and it has\na property, ``stdin.l``, which returns a list of the lines (without\nnewlines). If you do want the newlines, access sys.stdin directly.\n\nstdin inherits the rest of its methods from sys.stdin, so you can use\nstdin.read() to get a string of all lines, if that's what you need.\n\nCertain other flags may create additional objects in the evaluation\ncontext.\n\n- --loop (or anything that implies --loop) create ``n`` and ``i``.\n- --json creates ``j``.\n- --split or --field_sep create ``f``\n \nCheck the flag descriptions for further details.\n\noutput\n~~~~~~\nautomatic printing\n..................\nBy default, pyfil prints the return value of expressions. Different\ntypes of objects use different printing conventions.\n\n- ``None`` does not print (as in the REPL)\n- strings are sent directly to to ``print()``\n- iterators (not other iterables) print each item on a new line.\n- other objects are serialized as json. If an object cannot be\n serialized as json, it is sent directly to print().\n- all of these are overridden by --join\n\nIterators will also try to serialize each returned object as json if\nthey are not strings. json objects will be indented if only one object\nis being printed. If --loop is set or several of objects are being\nserialzed from an iterator, it will be one object per-line.\n--force-oneline-json extends this policy to printing single json objects\nas well.\n\nexamples:\n\n.. code:: bash\n\n $ # None gets skipped\n $ pyfil None\n $ # strings and numbers just print\n $ pyfil sys.platfrom\n linux\n $ pyfil math.pi\n 3.141592653589793\n $ # objects try to print as json\n $ pyfil sys.path\n [\n \"/home/ninjaaron/.local/bin\",\n \"/usr/lib/python35.zip\",\n \"/usr/lib/python3.5\",\n \"/usr/lib/python3.5/plat-linux\",\n \"/usr/lib/python3.5/lib-dynload\",\n \"/home/ninjaaron/.local/lib/python3.5/site-packages\",\n \"/usr/lib/python3.5/site-packages\"\n ]\n $ pyfil '{i: n for n, i in enumerate(sys.path)}'\n {\n \"/usr/lib/python3.5/plat-linux\": 3,\n \"/usr/lib/python35.zip\": 1,\n \"/usr/lib/python3.5\": 2,\n \"/usr/lib/python3.5/lib-dynload\": 4,\n \"/usr/lib/python3.5/site-packages\": 6,\n \"/home/ninjaaron/.local/lib/python3.5/site-packages\": 5,\n \"/home/ninjaaron/.local/bin\": 0\n }\n $ # unless they can't\n $ pyfil '[list, print, re]'\n [, , ]\n $ # iterators print each item on a new line, applying the same conventions\n $ pyfil 'iter(sys.path)'\n /home/ninjaaron/src/py/pyfil/venv/bin\n /home/ninjaaron/src/py/pyfil\n /usr/lib/python35.zip\n /usr/lib/python3.5\n /usr/lib/python3.5/plat-linux\n /usr/lib/python3.5/lib-dynload\n /home/ninjaaron/src/py/pyfil/venv/lib/python3.5/site-package\n $ pyfil '(i.split('/')[1:] for i in sys.path)'\n [\"home\", \"ninjaaron\", \"src\", \"py\", \"pyfil\", \"venv\", \"bin\"]\n [\"home\", \"ninjaaron\", \"src\", \"py\", \"pyfil\"]\n [\"usr\", \"lib\", \"python35.zip\"]\n [\"usr\", \"lib\", \"python3.5\"]\n [\"usr\", \"lib\", \"python3.5\", \"plat-linux\"]\n [\"usr\", \"lib\", \"python3.5\", \"lib-dynload\"]\n [\"home\", \"ninjaaron\", \"src\", \"py\", \"pyfil\", \"venv\", \"lib\", \"python3.5\", \"site-packages\"]\n\nMost JSON is also valid Python, but be aware that you may occasionally\nsee ``null`` instead of ``None`` along with ``true`` and ``false``\ninstead of ``True`` and ``False``, and your tuples will look like list.\nI guess that's a risk I'm willing to take. (The rational for this is\nthat pyfil is more about composability in the shell than printing valid\nPython literals. JSON is becoming the defacto standard for\nserialization.)\n\nsuppressing output and using statements\n.......................................\nBecause these defaults use eval() internally to get value of\nexpressions, statements may not be used. exec() supports statements, but\nit does not return the value of expressions when they are evaluated.\nWhen the -x/--exec flag is used, automatic printing is suppressed, and\nexpressions are evaluated with exec, so statements, such as assignments,\nmay be used. Values may still be printed explicitly.\n\n--quite suppresses automatic printing, but eval is still used.\n\nThe --post option is immune from --quiet and --exec. It will always be\nevaluated with ``eval()``, and it will always try to print. The only\ndifference is that if --quiet or --exec was used, json will be printed\nwith indentation unless --force-oneline-json is used.\n\nusing files for input and output\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n``pyfil`` doesn't have any parameters for input and output files. Instead,\nuse redirection.\n\n.. code:: bash\n\n pyfil -s 'i.upper()' > output.txt < input.txt\n\nusing multiple expression arguments\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n``pyfil`` can take as many expressions as desired as arguments. When used\nwith --exec, this works pretty much as expected, and assignment must be\ndone manually.\n\nWithout --exec, the return value of each expression is assigned to the\nvariable ``x``, which can be used in the next expression. The final\nvalue of ``x`` is what is ultimately printed, not any intermediate\nvalues.\n\n.. code:: bash\n\n $ pyfil 'reversed(\"abcd\")' 'i.upper() for i in x'\n D\n C\n B\n A\n\nlooping over stdin\n~~~~~~~~~~~~~~~~~~\none can do simple loops with a generator expression. (note that any\nexpression that evaluates to an iterator will print each item on a new\nline unless the ``--join`` option is specified.)\n\n.. code:: bash\n\n $ ls / | pyfil 'i.upper() for i in stdin'\n BIN@\n BOOT/\n DEV/\n ETC/\n HOME/\n ...\n\nHowever, with the ``-l``/``--loop`` flag, pyfil loops over stdin in a\ncontext like this:\n\n.. code:: python\n\n for n, i in enumerate(stdin):\n expressions\n\nTherefore, the above loop can also be written thusly:\n\n.. code:: bash\n\n $ ls / | pyfil -l 'i.upper()'\n\n``--pre`` and ``--post`` (-b and -e) options can be used to specify\nactions to run before or after the loop. Note that the --pre option is\nrun with exec instead of eval, and therefore output is never printed,\nand statements may be used. This is for things like initializing\ncontainer types. --post is automatically printed and statements are not\nallowed (even if --exec is used). --loop is implied if ``--post`` is\nused. ``--pre`` can be used without a --loop to do assignments (or\nwhatever else you may want to do with a statement).\n\nUsing ``-s``/``--split`` or ``-F``/``--field-sep`` for doing awk things\nalso implies --loop. The resulting list is named ``f`` in the execution\nenvironment, in quazi-Perl fashion. (oh, and that list is actually a\nsubclass of collections.UserList that returns an empty string if the\nindex doesn't exist, so it acts more like awk with empty fields, rather\nthan throwing and error).\n\njson input\n~~~~~~~~~~\n``pyfil`` can parse json objects from stdin with the ``-j``/``--json``\nflag. They are passed into the environment as the ``j`` object.\ncombining with the --loop flag will treat stdin as one json object per\nline. json objects support dot syntax for attribute access, e.g.\n``j.someattr.attr_of_someattr``\n\nThere are occasionally functions that require \"real\" dictionaries and\nwon't work with this special subclass that supports dot access. In\nsuch cases, use ``-J``/``--real-dict-json`` to get unadultered Python\ndictionaries.\n\nformatting output (and 'awk stuff')\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nIt's probably obvious that the most powerful way to format strings is\nwith Python's str.format method and the ``-F`` or ``-s`` options.\n\n.. code:: bash\n\n $ ls -l /|pyfil -s '\"{0}\\t{2}\\t{8}\".format(*f)'\n IndexError: tuple index out of range\n lrwxrwxrwx\troot\tbin\n drwxr-xr-x\troot\tboot/\n drwxr-xr-x\troot\tdev/\n drwxr-xr-x\troot\tetc/\n drwxr-xr-x\troot\thome/\n lrwxrwxrwx\troot\tlib\n ...\n\nHowever, you will note that using ``string.format(*f)`` produces an\nerror and does not print anything to stdout (error message is sent to\nstderr; see error handling for more options) for lines without enough\nfields, which may not be the desired behavior when dealing with lines\ncontaining arbitrary numbers of fields.\n\nFor simpler cases, you may wish to use the ``-n``/``--join`` option,\nwhich will join any iterables with the specified string before printing,\nand, in the case of the ``f`` list, will replace any none-existent\nfields with an empty string.\n\n.. code:: bash\n\n $ ls -l /|pyfil -sn '\\t' 'f[0], f[2], f[8]'\n total\t\t\n lrwxrwxrwx\troot\tbin\n drwxr-xr-x\troot\tboot/\n drwxr-xr-x\troot\tdev/\n drwxr-xr-x\troot\tetc/\n drwxr-xr-x\troot\thome/\n lrwxrwxrwx\troot\tlib\n\nIn this case, the first line of ``ls -l /`` provides values for all\navailable fields.\n\nTechnical note:\n The separator specified with the ``--join`` option is implemented\n internally as ``ast.literal_eval(\"'''\"+STRING.replace(\"'\",\n r\"\\'\")+\"'''\")``. If one works hard at it, it is possible to pass\n values which will cause pyfil to crash; i.e. patterns ending with a\n backslash. Keep in mind rules about escape sequences in the shell and\n in python if you absolutely must have a pattern that terminates with\n a backslash. (The reason it is implemented this way is to allow the\n use of escape sequences that are meaningful to the python, but not\n the shell, such as \\\\n, \\\\t, \\\\x, \\\\u, etc.)\n\nexamples\n~~~~~~~~\n\n*I realize that it's much better to do most of these things with the\noriginal utility. This is just to give some ideas of how to use `pyfil`*\n\nreplace ``wc -l``:\n\n.. code:: bash\n\n $ ls / | pyfil 'len(stdin.l)'\n 20\n\nreplace ``fgrep``:\n\n.. code:: bash\n\n $ ls / | pyfil '(i for i in stdin if \"v\" in i)'\n $ ls / | pyfil -l 'i if \"v\" in i else None'\n\n\nreplace ``grep``:\n\n.. code:: bash\n\n $ ls / | pyfil 'filter(lambda x: re.search(\"^m\", x), stdin)'\n $ ls / | pyfil -lS 're.search(\"^m\", i).string)'\n $ # using the -S option to suppress a ton of error messages\n\nreplace ``sed 's/...``:\n\n.. code:: bash\n\n $ ls / | pyfil -l 're.sub(\"^([^aeiou][aeiou][^aeiou]\\W)\", lambda m: m.group(0).upper(), i)'\n BIN@\n boot/\n data/\n DEV/\n etc/\n ...\n\nThis example illustrates that, while you might normally prefer ``sed``\nfor replacement tasks, the ability to define a replacement function with\n``re.sub`` does offer some interesting possibilities. Indeed, someone\nfamiliar with coreutils should never prefer to do something they already\ncomfortable doing the traditional way with ``pyfil`` (coreutils are\nheavily optimized). Python is interesting for this use-case because it\noffers great logic, anonymous functions and all kinds of other goodies\nthat only full-fledged, modern programming language can offer. Use\ncoreutiles for the jobs they were designed to excel in. Use ``pyfil`` to\ndo whatever they can't... and seriously, how will coreutils do this?:\n\n.. code:: bash\n\n $ wget -qO- http://pypi.python.org/pypi/pyfil/json/ | pyfil -j 'j.urls[0].filename'\n pyfil-0.5-py3-none-any.whl\n $ ls -l | pyfil -qSs \\\n \"d.update({f[8]: {'permissions': f[0], 'user': f[2], 'group': f[3],\n 'size': int(f[4]), 'timestamp': ' '.join(f[5:8])}})\" \\\n --post 'd'\n.. code:: json\n\n {\n \"README.rst\": {\n \"group\": \"users\",\n \"user\": \"ninjaaron\",\n \"permissions\": \"-rw-r--r--\",\n \"timestamp\": \"Sep 6 20:55\",\n \"size\": 18498\n },\n \"pyfil/\": {\n \"group\": \"users\",\n \"user\": \"ninjaaron\",\n \"permissions\": \"drwxr-xr-x\",\n \"timestamp\": \"Sep 6 20:20\",\n \"size\": 16\n },\n \"setup.py\": {\n \"group\": \"users\",\n \"user\": \"ninjaaron\",\n \"permissions\": \"-rw-r--r--\",\n \"timestamp\": \"Sep 6 20:30\",\n \"size\": 705\n },\n \"LICENSE\": {\n \"group\": \"users\",\n \"user\": \"ninjaaron\",\n \"permissions\": \"-rw-r--r--\",\n \"timestamp\": \"Sep 3 13:32\",\n \"size\": 1306\n }\n }\n\nOther things which might be difficult with coreutils:\n\n.. code:: bash\n\n $ ls / | pyfil -n ' ' 'reversed(stdin.l)'\n var/ usr/ tmp/ sys/ srv/ sbin@ run/ root/ proc/ opt/ ...\n $ # ^^ also, `ls /|pyfil -n ' ' 'stdin.l[::-1]'\n\nerror handling\n~~~~~~~~~~~~~~\nIf pyfil encounters an exception while evaluating user input the default\nis to print the error message to stderr and continue (if looping over\nstdin), as we saw in the section on formatting output. However, errors\ncan also be silenced entirely with the ``-S``/``--silence-errors``\noption. In the below example, the first line produces an error, but we\ndon't hear about it.\n\n.. code:: bash\n\n $ ls -l /|pyfil -sS '\"{0}\\t{2}\\t{8}\".format(*f)' \n lrwxrwxrwx\troot\tbin\n drwxr-xr-x\troot\tboot/\n drwxr-xr-x\troot\tdev/\n drwxr-xr-x\troot\tetc/\n drwxr-xr-x\troot\thome/\n lrwxrwxrwx\troot\tlib\n ...\n\nAlternatively, errors may be raised when encountered, which will stop\nexecution and give a (fairly useless, in this case) traceback. This is\ndone with the ``-R``/``--raise-errors`` flag.\n\n.. code:: bash\n\n $ ls -l /|pyfil -sR '\"{0}\\t{2}\\t{8}\".format(*f)'\n Traceback (most recent call last):\n File \"/home/ninjaaron/src/py/pyfil/venv/bin/pyfil\", line 9, in \n load_entry_point('pyfil', 'console_scripts', 'pyfil')()\n File \"/home/ninjaaron/src/py/pyfil/pyfil/pyfil.py\", line 242, in main\n run(expressions, a, namespace)\n File \"/home/ninjaaron/src/py/pyfil/pyfil/pyfil.py\", line 164, in run\n handle_errors(e, args)\n File \"/home/ninjaaron/src/py/pyfil/pyfil/pyfil.py\", line 134, in handle_errors\n raise exception\n File \"/home/ninjaaron/src/py/pyfil/pyfil/pyfil.py\", line 162, in run\n value = func(expr, namespace)\n File \"\", line 1, in \n IndexError: tuple index out of range\n\nIn addition to these two handlers, it is possible to specify a\nrudimentary custom handler with the ``-H``/``--exception-handler``\nflags. The syntax is ``-H 'Exception: expression'``, where ``Exception``\ncan be any builtin exception class (including Exception, to catch all\nerrors), and ``expression`` is the alternative expression to evaluate\n(and print, if not --quiet).\n\n.. code:: bash\n\n $ ls -l /|pyfil -sH 'IndexError: i' '\"{0}\\t{2}\\t{8}\".format(*f)'\n total 32\n lrwxrwxrwx\troot\tbin\n drwxr-xr-x\troot\tboot/\n drwxr-xr-x\troot\tdev/\n drwxr-xr-x\troot\tetc/\n drwxr-xr-x\troot\thome/\n lrwxrwxrwx\troot\tlib\n ...\n\nIn this case, we've chosen to print line without any additional\nformatting. If other errors are encountered, it will fall back to other\nhandlers (``-S``, ``-R``, or the default). For more sophisticated error\nhandling... write a real Python script, where you can handle to your\nheart's content.\n\nAlso note that this case is possible to handle with a test instead of an\nexception handler because ``f`` is a special list that will return an\nempty string instead of throw an index error if the index is out of\nrange:\n\n``ls -l / | pyfil -s '\"{0}\\t{2}\\t{8}\".format(*f) if f[2] else i'``\n\nEasy-peasy.\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ninjaaron/pyfil", "keywords": "", "license": "BSD-2-Clause", "maintainer": "Aaron Christianson", "maintainer_email": "ninjaaron@gmail.com", "name": "pyfil", "package_url": "https://pypi.org/project/pyfil/", "platform": "", "project_url": "https://pypi.org/project/pyfil/", "project_urls": { "Homepage": "https://github.com/ninjaaron/pyfil", "Repository": "https://github.com/ninjaaron/pyfil" }, "release_url": "https://pypi.org/project/pyfil/1.9.2/", "requires_dist": null, "requires_python": ">=3.4,<4.0", "summary": "Python one-liners in the shell in the spirit of Perl and AWK", "version": "1.9.2" }, "last_serial": 4502760, "releases": { "0.0": [ { "comment_text": "", "digests": { "md5": "3cfc0439c7dae130adbf30696b4238c5", "sha256": "2079ff4dfb68ec7930f50875d0dbb33f18d318be6260998388610fd502b81a20" }, "downloads": -1, "filename": "pyfil-0.0.tar.gz", "has_sig": false, "md5_digest": "3cfc0439c7dae130adbf30696b4238c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4388, "upload_time": "2016-09-03T19:02:47", "url": "https://files.pythonhosted.org/packages/60/43/247997707fd8e1dfdda2d5ec7b37d1adf284e59cd738a53857fa661bca7a/pyfil-0.0.tar.gz" } ], "0.1": [ { "comment_text": "", "digests": { "md5": "ba94457cc159b70642ea39d78c28f8fb", "sha256": "d90c307fe033a379e82eb47af5b594f5b7c5160a7054cb2d007d999b62b1a3af" }, "downloads": -1, "filename": "pyfil-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ba94457cc159b70642ea39d78c28f8fb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8039, "upload_time": "2016-09-03T19:08:02", "url": "https://files.pythonhosted.org/packages/f6/94/6cf6eb5006f38706ee069f647794659d4ba376651a8eea8c10778f654e59/pyfil-0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8f7554c05277a795e384c7d0516acaf", "sha256": "80f05280ae67bace55740f57e23cd9c5bb1f98220b136f2b4c8b55be1ac879f5" }, "downloads": -1, "filename": "pyfil-0.1.tar.gz", "has_sig": false, "md5_digest": "c8f7554c05277a795e384c7d0516acaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4358, "upload_time": "2016-09-03T19:08:05", "url": "https://files.pythonhosted.org/packages/47/43/74b89d7f12a4d691818c3d8741c58174313225947dc3f6dc8d07ea706e42/pyfil-0.1.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "9ea10f37e7afa2568a2cc49bb2ecba57", "sha256": "2e9ee9402c291332a1509c1efbbbf7863cf52f134f8e69a9f6e83aadc3afc14a" }, "downloads": -1, "filename": "pyfil-0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "9ea10f37e7afa2568a2cc49bb2ecba57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16585, "upload_time": "2016-09-06T11:17:31", "url": "https://files.pythonhosted.org/packages/12/8d/9e4286f02fa0c0499127a8e71c29757fe98e7e32e8fdeb06ad4f4e567d10/pyfil-0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e32581f7397aebef1a45cea25e917fc0", "sha256": "0ae6d5b3cfe91d2fbf0e51aae8ec88c3bd617b3ded4b151eec43012a7db76845" }, "downloads": -1, "filename": "pyfil-0.10.tar.gz", "has_sig": false, "md5_digest": "e32581f7397aebef1a45cea25e917fc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11930, "upload_time": "2016-09-06T11:17:33", "url": "https://files.pythonhosted.org/packages/bd/39/d7664b3568309287c25657da867da317bf8c4738dcd504f723b1ba6650d8/pyfil-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "d8c2cdb7a5f44de0f8112e6be666423f", "sha256": "37b833ffa2ab323ea9880be2351262eb4ea89e51687fb40534d1d7e0e266e8da" }, "downloads": -1, "filename": "pyfil-0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "d8c2cdb7a5f44de0f8112e6be666423f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16638, "upload_time": "2016-09-06T13:36:59", "url": "https://files.pythonhosted.org/packages/12/1b/ad789498cd15edddc9e2433424e60426bf10cdac3a2c665ffcb0ccc622d7/pyfil-0.11-py3-none-any.whl" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "74a813144276661a871de975246029da", "sha256": "be6f8b6e224b9f502bd6c2b54ff691c2000e291a27ca706d8d0534218420cc30" }, "downloads": -1, "filename": "pyfil-0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "74a813144276661a871de975246029da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16745, "upload_time": "2016-09-06T19:40:00", "url": "https://files.pythonhosted.org/packages/7e/46/06c8feee97b852126eff96a156b76ec4e26c3266c28d312912528f691481/pyfil-0.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f3cc1598bb10d193c1cab01270c1879", "sha256": "c6669a9a76804b9c78a550d3239d45004e6b0c04959c6c46ac814dd2f8d08abf" }, "downloads": -1, "filename": "pyfil-0.12.tar.gz", "has_sig": false, "md5_digest": "3f3cc1598bb10d193c1cab01270c1879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12051, "upload_time": "2016-09-06T19:49:46", "url": "https://files.pythonhosted.org/packages/ce/ac/db8a6e20d9df227cca14a0c17e6e712dfc033ec6df8be69f45fedbde09bd/pyfil-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "62d75387239e4ccbcd0eda45f023b51a", "sha256": "7b52afeae3463082281da84bdb22bbdaf2ab1d2816819c06c0267772bb0c8198" }, "downloads": -1, "filename": "pyfil-0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "62d75387239e4ccbcd0eda45f023b51a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16742, "upload_time": "2016-09-06T19:58:38", "url": "https://files.pythonhosted.org/packages/7d/ac/93fc152476965eeb5e0fe7635542ad378c2e1d5db163ab3d4028bb7e240a/pyfil-0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0dd534c0e58d56cbf75c2ae2b3649bc", "sha256": "c5a93c556e2e0edac41d27f4c3f02bf86ea21e0c2ba34f5c79c1083f0f741556" }, "downloads": -1, "filename": "pyfil-0.13.tar.gz", "has_sig": false, "md5_digest": "d0dd534c0e58d56cbf75c2ae2b3649bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12049, "upload_time": "2016-09-06T19:59:16", "url": "https://files.pythonhosted.org/packages/c5/79/6030063ff63b2c511df1bb4a6d9386fff1d4c5c2836629d7a400450ec0b3/pyfil-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "44bfdb9bd1cf248af577b3584f3ecfa1", "sha256": "1d3ef688f9c3efd3ea9eb2598217366751e2ed6194bf60a21beced2dfe0253f8" }, "downloads": -1, "filename": "pyfil-0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "44bfdb9bd1cf248af577b3584f3ecfa1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17894, "upload_time": "2016-09-07T01:30:53", "url": "https://files.pythonhosted.org/packages/c1/b7/d7bc663e353eb58eb4bba4bf44381ecf8baf9225db11cdda6fe14fc8690e/pyfil-0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6be0de55557cdda556d962abd1710cc7", "sha256": "f35191cfa698179dc2c005ef38bed8f3d82af6226addf91285f170b28b580d54" }, "downloads": -1, "filename": "pyfil-0.14.tar.gz", "has_sig": false, "md5_digest": "6be0de55557cdda556d962abd1710cc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12849, "upload_time": "2016-09-07T01:30:57", "url": "https://files.pythonhosted.org/packages/31/35/14a379b7a9413eca8a956cb95b93bd3b3c9f47a258fb0cdef2d229450343/pyfil-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "7dcf023308b065e1aea772fb92c698d9", "sha256": "ee77a6f098c312ee8bdbafff3de4483d712c452df34407f7634a6b244526c2db" }, "downloads": -1, "filename": "pyfil-0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "7dcf023308b065e1aea772fb92c698d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19293, "upload_time": "2016-09-07T13:58:29", "url": "https://files.pythonhosted.org/packages/0c/03/abb62d0270cbf859aa5628d55ea8ae587a6243452ac0847e27ed668345ff/pyfil-0.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d81d8a3875ebe5509af51b9b6ae8fdc", "sha256": "50796eb5db0ebcc2936d7d02780d251abbd67bde68116314e7b2084b92a69d57" }, "downloads": -1, "filename": "pyfil-0.15.tar.gz", "has_sig": false, "md5_digest": "7d81d8a3875ebe5509af51b9b6ae8fdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13909, "upload_time": "2016-09-07T13:58:31", "url": "https://files.pythonhosted.org/packages/3f/29/f5f01eb334d17e15598b39f1833737154e9a94bef2e7717261c6223fa493/pyfil-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "c211f427a2fe2df743b99fcc46bfb6d4", "sha256": "d22bacc694bee06c0c45506f21680e046ade66e5198bf74906f16d1f67ce8441" }, "downloads": -1, "filename": "pyfil-0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "c211f427a2fe2df743b99fcc46bfb6d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19541, "upload_time": "2016-09-07T14:52:40", "url": "https://files.pythonhosted.org/packages/f0/85/85ce59509bd8ba402f5e35ea76445fa4f92f686bb538a73e02e941bd4f52/pyfil-0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40fdc4e466477a9d1fc2e3002f18337c", "sha256": "ec1060c86b341c3cb15afce7b0f0568bae49375e72ddf5cd0c562e8364e800e5" }, "downloads": -1, "filename": "pyfil-0.16.tar.gz", "has_sig": false, "md5_digest": "40fdc4e466477a9d1fc2e3002f18337c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14104, "upload_time": "2016-09-07T14:52:43", "url": "https://files.pythonhosted.org/packages/9e/f9/94c24a17fdecea1e051b758c4a94808f9eb3b36fe9cd8136a574a2bf6f7a/pyfil-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "05cb8d91b3877e523cab885770185211", "sha256": "e1e0d57bc28512042e85b27df9f90e032b29e8b0bc1be083e95fa4cd18602a4e" }, "downloads": -1, "filename": "pyfil-0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "05cb8d91b3877e523cab885770185211", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19569, "upload_time": "2016-09-08T18:28:32", "url": "https://files.pythonhosted.org/packages/ec/70/a6f76afce87ded8be39b165f3b0f450b6c61aedb6a15a364f802ed6d1642/pyfil-0.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f2b96e7cf3f328dfb217a4de33a9e6d", "sha256": "8f32453138b6970cfbdbfb446a745ee6b990ab8c0bae40b183f8a51321dc99c4" }, "downloads": -1, "filename": "pyfil-0.17.tar.gz", "has_sig": false, "md5_digest": "3f2b96e7cf3f328dfb217a4de33a9e6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14145, "upload_time": "2016-09-08T18:28:35", "url": "https://files.pythonhosted.org/packages/d8/e6/99fceb6d2423d6f7e9a8b31e412727a3a7604349afc425b9f61aa8e1c548/pyfil-0.17.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "cbfb5f05fe4d9442a67327f36e28d845", "sha256": "6f6a7984ee87861555ae63da0b788782ffb816a3e52356da4fa59c735d568f4c" }, "downloads": -1, "filename": "pyfil-0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "cbfb5f05fe4d9442a67327f36e28d845", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8698, "upload_time": "2016-09-03T22:04:26", "url": "https://files.pythonhosted.org/packages/23/9d/27eb56e3a102995f6fc2ab12b5856a989b0ad0cfcfbf2b8c68cece5d263d/pyfil-0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "233e1352933abe1827c648f747bde607", "sha256": "200b87d2916d723d852057d471db99e7d677f4a623c84775e08236be95050bdb" }, "downloads": -1, "filename": "pyfil-0.2.tar.gz", "has_sig": false, "md5_digest": "233e1352933abe1827c648f747bde607", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4822, "upload_time": "2016-09-03T22:04:28", "url": "https://files.pythonhosted.org/packages/ed/4f/7891f06a59194c13a772a352fc151f6d7871c5af52927784a1ebb32cab00/pyfil-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "0018816a7ac351e80cf88f2e278e007b", "sha256": "65a11f1dc2ac9d9c65b0b3f5920b3ccdaa06fc0e317fd0b3273007f8a6408643" }, "downloads": -1, "filename": "pyfil-0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0018816a7ac351e80cf88f2e278e007b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8795, "upload_time": "2016-09-03T22:46:38", "url": "https://files.pythonhosted.org/packages/57/4d/78bbb14a57a889580a8b52a6f8c291c0c93a261e6b04a76b6be240efb0b7/pyfil-0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47a5969131d9c000272236cc0014d138", "sha256": "78dac911b2bfc734c9d0d4d25df4fef1ef04270885d247270719564c7a50b62c" }, "downloads": -1, "filename": "pyfil-0.3.tar.gz", "has_sig": false, "md5_digest": "47a5969131d9c000272236cc0014d138", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4925, "upload_time": "2016-09-03T22:46:41", "url": "https://files.pythonhosted.org/packages/c0/cd/817f0e22f1ae6b1dba587845f941125f3d4d47df21ab52b0d471347489df/pyfil-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "fd8046cb03881914bd106e1e0f262fea", "sha256": "609295a8c1b15e0c7f71b8cea8273b741f678138d9990fda36677075cd44fb40" }, "downloads": -1, "filename": "pyfil-0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fd8046cb03881914bd106e1e0f262fea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12626, "upload_time": "2016-09-04T23:00:11", "url": "https://files.pythonhosted.org/packages/e7/fe/3a8fe8837b77d02efb2ba73295904098de8a82736b499e3fe5d63a3a04ee/pyfil-0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5254ffc2d8b1cd48930fbf2cda04fcf", "sha256": "0c79e2beb26bd86821c79d880f759866dbed4d6e0414a1d58d4702029b7dddf9" }, "downloads": -1, "filename": "pyfil-0.4.tar.gz", "has_sig": false, "md5_digest": "f5254ffc2d8b1cd48930fbf2cda04fcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7367, "upload_time": "2016-09-04T23:00:14", "url": "https://files.pythonhosted.org/packages/d5/46/af61d6d91f4e493671c753ecac6ed65733e0751b4aa3906b6b0d2a84a00d/pyfil-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "7c779a3817ad1347fc966ae11ba054d1", "sha256": "6c5ac094db123d3ab501f9f0fd1001d123f9d0a143cc37aa1196d0ff62d68d38" }, "downloads": -1, "filename": "pyfil-0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "7c779a3817ad1347fc966ae11ba054d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12798, "upload_time": "2016-09-05T03:47:46", "url": "https://files.pythonhosted.org/packages/cc/9e/f650ac80d605d545dab2d536498f8982c99f24934fa2070080f6bf1e4691/pyfil-0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba9aaa0d00a92a4bc9859fbf06adc3ee", "sha256": "3850103ad55636d05e6daf9cfac585de8a7f18f70610f81b47c6bdc5febd8f85" }, "downloads": -1, "filename": "pyfil-0.5.tar.gz", "has_sig": false, "md5_digest": "ba9aaa0d00a92a4bc9859fbf06adc3ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7602, "upload_time": "2016-09-05T03:47:49", "url": "https://files.pythonhosted.org/packages/2e/7a/75a5da812ad8ee8467e2e83016ba52d359f763c2e40e9e37727d6d6c47b5/pyfil-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "cb8293773d41bf60ece56a94aea242bc", "sha256": "6faa326cc6e965e2d5a993756e580a503c673af6a28d5a64d32a8aa22dacb5ab" }, "downloads": -1, "filename": "pyfil-0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "cb8293773d41bf60ece56a94aea242bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14484, "upload_time": "2016-09-05T16:48:38", "url": "https://files.pythonhosted.org/packages/f3/00/c1508ece52a2ef4bf108162d81f74e69fafb6725ef196a33e1d0bef681c3/pyfil-0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b07c5f18eab54abee0d4779877922a32", "sha256": "b0822c25cd148cbdaa6c2bd5fc6da744cc22181fdc8e19f6d97712af9ee21982" }, "downloads": -1, "filename": "pyfil-0.6.tar.gz", "has_sig": false, "md5_digest": "b07c5f18eab54abee0d4779877922a32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9908, "upload_time": "2016-09-05T16:48:41", "url": "https://files.pythonhosted.org/packages/d0/a1/924b4d01869d2cb134cc7542771f7a7d062ce46d390ba2096d809f88d2e7/pyfil-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "660f8c54f114e56f1b84f05585286097", "sha256": "0e72b24fcbacd896313d895def6b02ad31ef69feceb7958b01e14ebddedfea90" }, "downloads": -1, "filename": "pyfil-0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "660f8c54f114e56f1b84f05585286097", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14527, "upload_time": "2016-09-05T21:07:52", "url": "https://files.pythonhosted.org/packages/d2/58/25f9a8416506e69fb13ccdeed996c3dc7523f9979fbf808ffcc1a1b1c3fa/pyfil-0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d94e5f17d76d7c054dfa33f889feecac", "sha256": "d4366eb5b5ecc6414e3d040eeabf1b608be3dae3af698adfb11181c456b8bb34" }, "downloads": -1, "filename": "pyfil-0.7.tar.gz", "has_sig": false, "md5_digest": "d94e5f17d76d7c054dfa33f889feecac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9924, "upload_time": "2016-09-05T21:07:55", "url": "https://files.pythonhosted.org/packages/77/26/2d8ea5f9aa3265811093c22486bf1ffc4181fbccdd78f129055eeecb5aea/pyfil-0.7.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "d0569751c73763ce8d6cd19ae90a4aef", "sha256": "2b18e6d8418b8a7f3d0f53e682f38c2bdc8a9a02603c554e20e11816947597ec" }, "downloads": -1, "filename": "pyfil-0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "d0569751c73763ce8d6cd19ae90a4aef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16436, "upload_time": "2016-09-06T10:27:54", "url": "https://files.pythonhosted.org/packages/55/20/14198a9b5cf3f1d475d70cd1a6b10d99b9d1d1ea585251ca068f8fe65eed/pyfil-0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2906a75e7ded34ee8fbe020f1c63c81", "sha256": "1559f142f00d44a0c3fe63f49216870e3cd8fed05dfe2e88a33f5f716d779760" }, "downloads": -1, "filename": "pyfil-0.9.tar.gz", "has_sig": false, "md5_digest": "d2906a75e7ded34ee8fbe020f1c63c81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11732, "upload_time": "2016-09-06T10:27:57", "url": "https://files.pythonhosted.org/packages/c3/c4/04ac7cdc73cb00757188ae38c2540d56a6fcbadadbe0d6514b50e217b336/pyfil-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "76986c86dafce6b38ec56d2f8f77ff08", "sha256": "dbd4d639912b1579f2503fa56541279574b33938d06e28a370a6d347156c137f" }, "downloads": -1, "filename": "pyfil-1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "76986c86dafce6b38ec56d2f8f77ff08", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19528, "upload_time": "2016-11-06T20:10:57", "url": "https://files.pythonhosted.org/packages/7d/4a/7e4b251146c8452878a01c6496579d68e136dd3248e131e7d38c6ca9d2b8/pyfil-1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee90c99023807dd0fc81e6e1327e912c", "sha256": "f8f3953b792386eb9b5bfcef8ebee156002b0c22fa6a8574e1c466a437f7f56a" }, "downloads": -1, "filename": "pyfil-1.0.tar.gz", "has_sig": false, "md5_digest": "ee90c99023807dd0fc81e6e1327e912c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18654, "upload_time": "2016-11-06T20:11:02", "url": "https://files.pythonhosted.org/packages/ed/3e/fd7e66bb005d1d23a60c6ee17ea54b7d65a9eca0435d222845a61fda8708/pyfil-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "5fbf6db69cc753ee4be0934c51ff9bcb", "sha256": "1e35e95791b42f0d5bc9af3869e1e277fc53f518a6464be0d685b75766292e80" }, "downloads": -1, "filename": "pyfil-1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5fbf6db69cc753ee4be0934c51ff9bcb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19587, "upload_time": "2016-11-07T09:18:41", "url": "https://files.pythonhosted.org/packages/c8/0c/e1896fdd09d12c9bfb743d7e5255356f91a63ac275333caac54db0821d65/pyfil-1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc7d1cf80cbbb6d47d308486a0dc44a2", "sha256": "3ae339322977ca2f2f2cfa8b89676df5bffeda19a00410458b67475b253e16fe" }, "downloads": -1, "filename": "pyfil-1.1.tar.gz", "has_sig": false, "md5_digest": "bc7d1cf80cbbb6d47d308486a0dc44a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17252, "upload_time": "2016-11-07T09:18:45", "url": "https://files.pythonhosted.org/packages/b9/2e/aa3b0f89d44a360e550d4568e058569dd3adaacf6a4c454e9c6acc4e5191/pyfil-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "5d4d861718674bf83c9ee3a310bda14f", "sha256": "5c66af97ce1fb73894b5c44996327927c93cacd5963b0703dfc3056f1d855765" }, "downloads": -1, "filename": "pyfil-1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5d4d861718674bf83c9ee3a310bda14f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19598, "upload_time": "2016-11-13T09:17:38", "url": "https://files.pythonhosted.org/packages/fa/03/37ee4da961a102c61b65dea7672679166d54815ecb279ba7295c3df90650/pyfil-1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db177e26d11801943d75d1e9bc4e7044", "sha256": "b33b77c36fe6907c1e887e2a54928ff0770c479df06dc4bb08ec9c0e652f01a6" }, "downloads": -1, "filename": "pyfil-1.2.tar.gz", "has_sig": false, "md5_digest": "db177e26d11801943d75d1e9bc4e7044", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18738, "upload_time": "2016-11-13T09:17:42", "url": "https://files.pythonhosted.org/packages/f3/e8/8d3e122de89e2afbf88369fdd39771c5f314a4ffc4e90107f9cef2abc36f/pyfil-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "3ba1bae1e337990db3c6220406610ca2", "sha256": "d240e8f616dceffe75b913ae9d623c13ac1be51641d6a52e764703949c9b50ab" }, "downloads": -1, "filename": "pyfil-1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "3ba1bae1e337990db3c6220406610ca2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19593, "upload_time": "2016-11-14T08:23:43", "url": "https://files.pythonhosted.org/packages/23/ee/2e7c057fe90b4f1a30b6d2357fbab2ece389b3f1e3ba959c84613c8ec6fc/pyfil-1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7051f70d1c9b707d5ad824dd0a9d68a", "sha256": "a12c534f11997c2a5aaa697e908a5819791442c94827b49868ebee475dc8de8c" }, "downloads": -1, "filename": "pyfil-1.3.tar.gz", "has_sig": false, "md5_digest": "c7051f70d1c9b707d5ad824dd0a9d68a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18736, "upload_time": "2016-11-14T08:23:46", "url": "https://files.pythonhosted.org/packages/22/db/99542e145c97161c25759f0cd2d575189e2ca8e959ba2914c09ff1d528c7/pyfil-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "cb73228ac2d5d52239ce41e629d85595", "sha256": "30ddd3f53ca549101a0c8c651ca20cc01c65f7be3e13c25f1ce4b3b6080496ee" }, "downloads": -1, "filename": "pyfil-1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "cb73228ac2d5d52239ce41e629d85595", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19594, "upload_time": "2017-08-27T09:03:59", "url": "https://files.pythonhosted.org/packages/55/b9/ab50709ab088927edfc7aac93e53ab0194a630ea3738b80112268127b343/pyfil-1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69d5bd54663b6499fe62cd6719314bc3", "sha256": "ecd5c3b26e1b125800208e76f349632fefb973619a1537ccb40cd1766d66edb2" }, "downloads": -1, "filename": "pyfil-1.4.tar.gz", "has_sig": false, "md5_digest": "69d5bd54663b6499fe62cd6719314bc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18698, "upload_time": "2017-08-27T09:04:01", "url": "https://files.pythonhosted.org/packages/92/81/3d26f2d40c46ba0c89e2a05cf258057aac3f90b825a37571536c1630e688/pyfil-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "bf9e9ad939854fabb62de6ebf5fc2200", "sha256": "7547e8720870526131fc773bdf7e4cd681f5d246ba73c41349576710b179bf76" }, "downloads": -1, "filename": "pyfil-1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "bf9e9ad939854fabb62de6ebf5fc2200", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19681, "upload_time": "2017-10-24T05:48:34", "url": "https://files.pythonhosted.org/packages/d8/34/c4341d4771f916bc680c47dad423c0dce8a535ad59e6321ac636f887c905/pyfil-1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eca71d404a90d9d6afbb1f317fd59fc6", "sha256": "e4d0fb5dda3e9df1c2217901ff040cfbb197c006d6877277441c77e687c49310" }, "downloads": -1, "filename": "pyfil-1.5.tar.gz", "has_sig": false, "md5_digest": "eca71d404a90d9d6afbb1f317fd59fc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17358, "upload_time": "2017-10-24T05:48:35", "url": "https://files.pythonhosted.org/packages/f1/6d/8ba52072308350b151b133419833b555e9c26bd79270c8c86634ae2b2ec6/pyfil-1.5.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "4f257c64193d320136ea1999aadec39e", "sha256": "f941984ad405c56efd0b8b00bf7d4abb46556afa6ba3dcd32524b63847db7a4f" }, "downloads": -1, "filename": "pyfil-1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "4f257c64193d320136ea1999aadec39e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11816, "upload_time": "2018-06-20T10:22:53", "url": "https://files.pythonhosted.org/packages/54/92/d677be52d6cae60ff6ee3751728c59dff2f4befb1e0e1263f2ca27128c3c/pyfil-1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d14d76863695376450d9c415356d41c3", "sha256": "c10785f220e3690e6861b91030a4b51eee5a5ee167a9de94c83ce874cff1d89e" }, "downloads": -1, "filename": "pyfil-1.7.tar.gz", "has_sig": false, "md5_digest": "d14d76863695376450d9c415356d41c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17623, "upload_time": "2018-06-20T10:22:54", "url": "https://files.pythonhosted.org/packages/a4/5a/a0f9cedeb997a21d544816c68b334f7e39f86bdd277e03bd4649139db0ec/pyfil-1.7.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "928d3ba4d88dd9c0fad9fab55c1535b1", "sha256": "a1a9445385a2c93ff59c3de9c2b0c9ca5ec4bbab9a0200f9d937a7fe653d6157" }, "downloads": -1, "filename": "pyfil-1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "928d3ba4d88dd9c0fad9fab55c1535b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13050, "upload_time": "2018-11-09T15:24:40", "url": "https://files.pythonhosted.org/packages/bf/49/b858058704ac874988bc07da3a4cec20a013177ff091932efa6a55e9c965/pyfil-1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0684834e47f4d19477d8964e0dbc52da", "sha256": "6c10c935562243f8c760d85ad936e642bc70cdfa550af26a19e0b6c7b2e4e478" }, "downloads": -1, "filename": "pyfil-1.8.tar.gz", "has_sig": false, "md5_digest": "0684834e47f4d19477d8964e0dbc52da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15576, "upload_time": "2018-11-09T15:24:42", "url": "https://files.pythonhosted.org/packages/84/c4/7a9e05454e08893033313170957b592d2dacbaa82170ac062167a0bfa11c/pyfil-1.8.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "2fb20e5ece7d57d58c7dd6f37f70de8d", "sha256": "ab2cfb4546d37377819835305ceb6d8301be9c0394c09870ce8edfa96198d680" }, "downloads": -1, "filename": "pyfil-1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "2fb20e5ece7d57d58c7dd6f37f70de8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13135, "upload_time": "2018-11-12T00:03:52", "url": "https://files.pythonhosted.org/packages/56/54/6b30a646741386437da811a7618622ce523089798c60975a2d958c53c8c0/pyfil-1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f96c3cbef84e2f5884806c61dcf0bad7", "sha256": "f7430ebcc6e537d612d589c57938604f13f30117a151569eae410a88ffc15632" }, "downloads": -1, "filename": "pyfil-1.9.tar.gz", "has_sig": false, "md5_digest": "f96c3cbef84e2f5884806c61dcf0bad7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15680, "upload_time": "2018-11-12T00:03:54", "url": "https://files.pythonhosted.org/packages/4b/86/f69d8e1f74cde2ff1f6af45f6cc84b3742168a851ccf3c4421ae304838df/pyfil-1.9.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "3c20e8d88a7c211f71558aad6bb765f4", "sha256": "1cc60833535e8c47260a85ce89fcaf419096f8df567de7fe5e5d4e2c0c240801" }, "downloads": -1, "filename": "pyfil-1.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3c20e8d88a7c211f71558aad6bb765f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 20537, "upload_time": "2018-11-19T12:02:19", "url": "https://files.pythonhosted.org/packages/8b/6f/a6616e4b23f414aeac2c9e1b6f5e9698a00fd2029a77d509ca867a585f9c/pyfil-1.9.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e8a321228d84a6bbca8d1a73e3406c1", "sha256": "6e9e4b7fb458abdef862f130089edd49702c3be695662437ebf628456c745f3b" }, "downloads": -1, "filename": "pyfil-1.9.1.tar.gz", "has_sig": false, "md5_digest": "2e8a321228d84a6bbca8d1a73e3406c1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 18429, "upload_time": "2018-11-19T12:02:21", "url": "https://files.pythonhosted.org/packages/da/ef/370e94ca616b1ebc23133fde23fe0e85628cfeda86aef6bded141e771250/pyfil-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "b92f06aeb0503ff3100624aa1c2b17dd", "sha256": "cbb412bca2004673a73a58bebb79cf330d57b3594827c939f6d3eb015da8fe7b" }, "downloads": -1, "filename": "pyfil-1.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b92f06aeb0503ff3100624aa1c2b17dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4,<4.0", "size": 20349, "upload_time": "2018-11-19T12:47:17", "url": "https://files.pythonhosted.org/packages/f3/60/1cb1968bafa660af19eb22cd6ad78643b376ce2c56065d9273a30f924bad/pyfil-1.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b8efbc728576bd75732c86d242946df", "sha256": "28272dd704577ce4402a7fc29ea1135ed8d19be2b232312c6d7b76a3bb9d4292" }, "downloads": -1, "filename": "pyfil-1.9.2.tar.gz", "has_sig": false, "md5_digest": "5b8efbc728576bd75732c86d242946df", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4,<4.0", "size": 18294, "upload_time": "2018-11-19T12:47:18", "url": "https://files.pythonhosted.org/packages/79/1c/ad636d846d083ec26aad739e4e20dd9cb1fda0aba6e8218d72b5590844c7/pyfil-1.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b92f06aeb0503ff3100624aa1c2b17dd", "sha256": "cbb412bca2004673a73a58bebb79cf330d57b3594827c939f6d3eb015da8fe7b" }, "downloads": -1, "filename": "pyfil-1.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b92f06aeb0503ff3100624aa1c2b17dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4,<4.0", "size": 20349, "upload_time": "2018-11-19T12:47:17", "url": "https://files.pythonhosted.org/packages/f3/60/1cb1968bafa660af19eb22cd6ad78643b376ce2c56065d9273a30f924bad/pyfil-1.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b8efbc728576bd75732c86d242946df", "sha256": "28272dd704577ce4402a7fc29ea1135ed8d19be2b232312c6d7b76a3bb9d4292" }, "downloads": -1, "filename": "pyfil-1.9.2.tar.gz", "has_sig": false, "md5_digest": "5b8efbc728576bd75732c86d242946df", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4,<4.0", "size": 18294, "upload_time": "2018-11-19T12:47:18", "url": "https://files.pythonhosted.org/packages/79/1c/ad636d846d083ec26aad739e4e20dd9cb1fda0aba6e8218d72b5590844c7/pyfil-1.9.2.tar.gz" } ] }