{ "info": { "author": "Daniel Fairhead", "author_email": "danthedeckie@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "simpleeval (Simple Eval)\n========================\n\n.. image:: https://travis-ci.org/danthedeckie/simpleeval.svg?branch=master\n :target: https://travis-ci.org/danthedeckie/simpleeval\n :alt: Build Status\n\n.. image:: https://coveralls.io/repos/github/danthedeckie/simpleeval/badge.svg?branch=master\n :target: https://coveralls.io/r/danthedeckie/simpleeval?branch=master\n :alt: Coverage Status\n\n.. image:: https://badge.fury.io/py/simpleeval.svg\n :target: https://badge.fury.io/py/simpleeval\n :alt: PyPI Version\n\nA quick single file library for easily adding evaluatable expressions into\npython projects. Say you want to allow a user to set an alarm volume, which\ncould depend on the time of day, alarm level, how many previous alarms had gone\noff, and if there is music playing at the time.\n\nOr if you want to allow simple formulae in a web application, but don't want to\ngive full eval() access, or don't want to run in javascript on the client side.\n\nIt's deliberately very simple, pull it in from PyPI (pip or easy_install), or\neven just a single file you can dump into a project.\n\nInternally, it's using the amazing python ``ast`` module to parse the\nexpression, which allows very fine control of what is and isn't allowed. It\nshould be completely safe in terms of what operations can be performed by the\nexpression.\n\nThe only issue I know to be aware of is that you can create an expression which\ntakes a long time to evaluate, or which evaluating requires an awful lot of\nmemory, which leaves the potential for DOS attacks. There is basic protection\nagainst this, and you can lock it down further if you desire. (see the\nOperators_ section below)\n\nYou should be aware of this when deploying in a public setting.\n\nThe defaults are pretty locked down and basic, and it's very easy to add\nwhatever extra specific functionality you need (your own functions,\nvariable/name lookup, etc).\n\nBasic Usage\n-----------\n\nTo get very simple evaluating:\n\n.. code-block:: python\n\n from simpleeval import simple_eval\n\n simple_eval(\"21 + 21\")\n\nreturns ``42``.\n\nExpressions can be as complex and convoluted as you want:\n\n.. code-block:: python\n\n simple_eval(\"21 + 19 / 7 + (8 % 3) ** 9\")\n\nreturns ``535.714285714``.\n\nYou can add your own functions in as well.\n\n.. code-block:: python\n\n simple_eval(\"square(11)\", functions={\"square\": lambda x: x*x})\n\nreturns ``121``.\n\nFor more details of working with functions, read further down.\n\nNote:\n~~~~~\nall further examples use ``>>>`` to designate python code, as if you are using\nthe python interactive prompt.\n\n.. _Operators:\n\nOperators\n---------\nYou can add operators yourself, using the ``operators`` argument, but these are\nthe defaults:\n\n+--------+------------------------------------+\n| ``+`` | add two things. ``x + y`` |\n| | ``1 + 1`` -> ``2`` |\n+--------+------------------------------------+\n| ``-`` | subtract two things ``x - y`` |\n| | ``100 - 1`` -> ``99`` |\n+--------+------------------------------------+\n| ``/`` | divide one thing by another |\n| | ``x / y`` |\n| | ``100/10`` -> ``10`` |\n+--------+------------------------------------+\n| ``*`` | multiple one thing by another |\n| | ``x * y`` |\n| | ``10 * 10`` -> ``100`` |\n+--------+------------------------------------+\n| ``**`` | 'to the power of' ``x**y`` |\n| | ``2 ** 10`` -> ``1024`` |\n+--------+------------------------------------+\n| ``%`` | modulus. (remainder) ``x % y`` |\n| | ``15 % 4`` -> ``3`` |\n+--------+------------------------------------+\n| ``==`` | equals ``x == y`` |\n| | ``15 == 4`` -> ``False`` |\n+--------+------------------------------------+\n| ``<`` | Less than. ``x < y`` |\n| | ``1 < 4`` -> ``True`` |\n+--------+------------------------------------+\n| ``>`` | Greater than. ``x > y`` |\n| | ``1 > 4`` -> ``False`` |\n+--------+------------------------------------+\n| ``<=`` | Less than or Equal to. ``x <= y`` |\n| | ``1 < 4`` -> ``True`` |\n+--------+------------------------------------+\n| ``>=`` | Greater or Equal to ``x >= 21`` |\n| | ``1 >= 4`` -> ``False`` |\n+--------+------------------------------------+\n| ``in`` | is something contained within |\n| | something else. |\n| | ``\"spam\" in \"my breakfast\"`` |\n| | -> ``False`` |\n+--------+------------------------------------+\n\n\nThe ``^`` operator is notably missing - not because it's hard, but because it\nis often mistaken for a exponent operator, not the bitwise operation that it is\nin python. It's trivial to add back in again if you wish (using the class\nbased evaluator explained below):\n\n.. code-block:: python\n\n >>> import ast\n >>> import operator\n\n >>> s = SimpleEval()\n >>> s.operators[ast.BitXor] = operator.xor\n\n >>> s.eval(\"2 ^ 10\")\n 8\n\nLimited Power\n~~~~~~~~~~~~~\n\nAlso note, the ``**`` operator has been locked down by default to have a\nmaximum input value of ``4000000``, which makes it somewhat harder to make\nexpressions which go on for ever. You can change this limit by changing the\n``simpleeval.POWER_MAX`` module level value to whatever is an appropriate value\nfor you (and the hardware that you're running on) or if you want to completely\nremove all limitations, you can set the ``s.operators[ast.Pow] = operator.pow``\nor make your own function.\n\nOn my computer, ``9**9**5`` evaluates almost instantly, but ``9**9**6`` takes\nover 30 seconds. Since ``9**7`` is ``4782969``, and so over the ``POWER_MAX``\nlimit, it throws a ``NumberTooHigh`` exception for you. (Otherwise it would go\non for hours, or until the computer runs out of memory)\n\nStrings (and other Iterables) Safety\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThere are also limits on string length (100000 characters,\n``MAX_STRING_LENGTH``). This can be changed if you wish.\n\nRelated to this, if you try to create a silly long string/bytes/list, by doing\n``'i want to break free'.split() * 9999999999`` for instance, it will block you.\n\nIf Expressions\n--------------\n\nYou can use python style ``if x then y else z`` type expressions:\n\n.. code-block:: python\n\n >>> simple_eval(\"'equal' if x == y else 'not equal'\",\n names={\"x\": 1, \"y\": 2})\n 'not equal'\n\nwhich, of course, can be nested:\n\n.. code-block:: python\n\n >>> simple_eval(\"'a' if 1 == 2 else 'b' if 2 == 3 else 'c'\")\n 'c'\n\n\nFunctions\n---------\n\nYou can define functions which you'd like the expresssions to have access to:\n\n.. code-block:: python\n\n >>> simple_eval(\"double(21)\", functions={\"double\": lambda x:x*2})\n 42\n\nYou can define \"real\" functions to pass in rather than lambdas, of course too,\nand even re-name them so that expressions can be shorter\n\n.. code-block:: python\n\n >>> def double(x):\n return x * 2\n >>> simple_eval(\"d(100) + double(1)\", functions={\"d\": double, \"double\":double})\n 202\n\nIf you don't provide your own ``functions`` dict, then the the following defaults\nare provided in the ``DEFAULT_FUNCTIONS`` dict:\n\n+----------------+--------------------------------------------------+\n| ``randint(x)`` | Return a random ``int`` below ``x`` |\n+----------------+--------------------------------------------------+\n| ``rand()`` | Return a random ``float`` between 0 and 1 |\n+----------------+--------------------------------------------------+\n| ``int(x)`` | Convert ``x`` to an ``int``. |\n+----------------+--------------------------------------------------+\n| ``float(x)`` | Convert ``x`` to a ``float``. |\n+----------------+--------------------------------------------------+\n| ``str(x)`` | Convert ``x`` to a ``str`` (``unicode`` in py2) |\n+----------------+--------------------------------------------------+\n\nIf you want to provide a list of functions, but want to keep these as well,\nthen you can do a normal python ``.copy()`` & ``.update``:\n\n.. code-block:: python\n\n >>> my_functions = simpleeval.DEFAULT_FUNCTIONS.copy()\n >>> my_functions.update(\n square=(lambda x:x*x),\n double=(lambda x:x+x),\n )\n >>> simple_eval('square(randint(100))', functions=my_functions)\n\nNames\n-----\n\nSometimes it's useful to have variables available, which in python terminology\nare called 'names'.\n\n.. code-block:: python\n\n >>> simple_eval(\"a + b\", names={\"a\": 11, \"b\": 100})\n 111\n\nYou can also hand the handling of names over to a function, if you prefer:\n\n\n.. code-block:: python\n\n >>> def name_handler(node):\n return ord(node.id[0].lower(a))-96\n\n >>> simple_eval('a + b', names=name_handler)\n 3\n\nThat was a bit of a silly example, but you could use this for pulling values\nfrom a database or file, say, or doing some kind of caching system.\n\nThe two default names that are provided are ``True`` and ``False``. So if you want to provide your own names, but want ``True`` and ``False`` to keep working, either provide them yourself, or ``.copy()`` and ``.update`` the ``DEFAULT_NAMES``. (See functions example above).\n\nCreating an Evaluator Class\n---------------------------\n\nRather than creating a new evaluator each time, if you are doing a lot of\nevaluations, you can create a SimpleEval object, and pass it expressions each\ntime (which should be a bit quicker, and certainly more convenient for some use\ncases):\n\n.. code-block:: python\n\n >>> s = SimpleEval()\n\n >>> s.eval(\"1 + 1\")\n 2\n\n >>> s.eval('100 * 10')\n 1000\n\n # and so on...\n\nYou can assign / edit the various options of the ``SimpleEval`` object if you\nwant to. Either assign them during creation (like the ``simple_eval``\nfunction)\n\n.. code-block:: python\n\n def boo():\n return 'Boo!'\n\n s = SimpleEval(functions={\"boo\": boo})\n\nor edit them after creation:\n\n.. code-block:: python\n\n s.names['fortytwo'] = 42\n\nthis actually means you can modify names (or functions) with functions, if you\nreally feel so inclined:\n\n.. code-block:: python\n\n s = SimpleEval()\n def set_val(name, value):\n s.names[name.value] = value.value\n return value.value\n\n s.functions = {'set': set_val}\n\n s.eval(\"set('age', 111)\")\n\nSay. This would allow a certain level of 'scriptyness' if you had these\nevaluations happening as callbacks in a program. Although you really are\nreaching the end of what this library is intended for at this stage.\n\nCompound Types\n--------------\n\nCompound types (``dict``, ``tuple``, ``list``, ``set``) in general just work if\nyou pass them in as named objects. If you want to allow creation of these, the\n``EvalWithCompoundTypes`` class works. Just replace any use of ``SimpleEval`` with\nthat.\n\nThe ``EvalWithCompoundTypes`` class also contains support for simple comprehensions.\neg: ``[x + 1 for x in [1,2,3]]``. There's a safety `MAX_COMPREHENSION_LENGTH` to control\nhow many items it'll allow before bailing too. This also takes into account nested\ncomprehensions.\n\nSince the primary intention of this library is short expressions - an extra 'sweetener' is\nenabled by default. You can access a dict (or similar's) keys using the .attr syntax:\n\n.. code-block:: python\n\n >>> simple_eval(\"foo.bar\", names={\"foo\": {\"bar\": 42}})\n 42\n\nfor instance. You can turn this off either by setting the module global `ATTR_INDEX_FALLBACK`\nto `False`, or on the ``SimpleEval`` instance itself. e.g. ``evaller.ATTR_INDEX_FALLBACK=False``.\n\nExtending\n---------\n\nThe ``SimpleEval`` class is pretty easy to extend. For instance, to create a\nversion that disallows method invocation on objects:\n\n.. code-block:: python\n\n import ast\n import simpleeval\n\n class EvalNoMethods(simpleeval.SimpleEval):\n def _eval_call(self, node):\n if isinstance(node.func, ast.Attribute):\n raise simpleeval.FeatureNotAvailable(\"No methods please, we're British\")\n return super(EvalNoMethods, self)._eval_call(node)\n\nand then use ``EvalNoMethods`` instead of the ``SimpleEval`` class.\n\nOther...\n--------\n\nThe library supports both python 2 and 3.\n\nObject attributes that start with ``_`` or ``func_`` are disallowed by default.\nIf you really need that (BE CAREFUL!), then modify the module global\n``simpleeval.DISALLOW_PREFIXES``.\n\nThe initial idea came from J.F. Sebastian on Stack Overflow\n( http://stackoverflow.com/a/9558001/1973500 ) with modifications and many improvements,\nsee the head of the main file for contributors list.\n\nPlease read the ``test_simpleeval.py`` file for other potential gotchas or\ndetails. I'm very happy to accept pull requests, suggestions, or other issues.\nEnjoy!\n\nDeveloping\n----------\n\nRun tests::\n\n $ make test\n\nOr to set the tests running on every file change:\n\n $ make autotest\n\n(requires ``entr``)", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "https://github.com/danthedeckie/simpleeval/tarball/0.9.8", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/danthedeckie/simpleeval", "keywords": "eval,simple,expression,parse,ast", "license": "", "maintainer": "", "maintainer_email": "", "name": "simpleeval", "package_url": "https://pypi.org/project/simpleeval/", "platform": "", "project_url": "https://pypi.org/project/simpleeval/", "project_urls": { "Download": "https://github.com/danthedeckie/simpleeval/tarball/0.9.8", "Homepage": "https://github.com/danthedeckie/simpleeval" }, "release_url": "https://pypi.org/project/simpleeval/0.9.8/", "requires_dist": null, "requires_python": "", "summary": "A simple, safe single expression evaluator library.", "version": "0.9.8" }, "last_serial": 4392433, "releases": { "0.8.1": [ { "comment_text": "built for Linux-3.2.0-4-amd64-x86_64-with-glibc2.7", "digests": { "md5": "272e15b386169ad86399027bd68216d4", "sha256": "7e84c8c2ec7b15fc66ad9dc91dd893b1aee15f3b5c9ed928322c418f94824bfb" }, "downloads": -1, "filename": "simpleeval-0.8.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "272e15b386169ad86399027bd68216d4", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 9527, "upload_time": "2014-05-28T09:45:13", "url": "https://files.pythonhosted.org/packages/c9/7f/9b562893d1f248db6871d0f59261da45603b25b48342f29457856b90bb7a/simpleeval-0.8.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "2f4427fb9bf5ffff9bd7326ca8397faf", "sha256": "a9aa9fac3dd68b73be7e3d4ceaf5a880d2c43a264bbff0986a68060c40551dee" }, "downloads": -1, "filename": "simpleeval-0.8.1.tar.gz", "has_sig": false, "md5_digest": "2f4427fb9bf5ffff9bd7326ca8397faf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7625, "upload_time": "2014-05-28T09:45:08", "url": "https://files.pythonhosted.org/packages/cc/40/b79d2640c9a6244ba759f7465df78e07b7b6e41a53c6a8bbedba1f6ff75d/simpleeval-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "dc070c46f1e7ee1745b71100e5a1bcfe", "sha256": "828e79056ae2083ff6091dd8d33855974300241c3dd7d4a173faf901a17c7b09" }, "downloads": -1, "filename": "simpleeval-0.8.2.tar.gz", "has_sig": false, "md5_digest": "dc070c46f1e7ee1745b71100e5a1bcfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8282, "upload_time": "2014-06-30T14:44:47", "url": "https://files.pythonhosted.org/packages/6e/13/9e7600e455646ac3205cf8497011b1c22635ba25bd707bd7848b589cb23f/simpleeval-0.8.2.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "956abdc0fef6670b5a346e03488a286b", "sha256": "76fb692abfc45c57a25540b976ddb4b3029162015e4f13735ac783bc4437a99b" }, "downloads": -1, "filename": "simpleeval-0.8.5.tar.gz", "has_sig": false, "md5_digest": "956abdc0fef6670b5a346e03488a286b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13858, "upload_time": "2015-06-07T19:33:01", "url": "https://files.pythonhosted.org/packages/43/c7/1cb99c542d4b0ad902daf0744278e433c13bbb9dcc180908c7bace3d4fcf/simpleeval-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "acbea6f1bc8e4c872c4a4b12a8886ab8", "sha256": "914194aec141d560e149f55749796e4556e3360919def7a09be90a27c06ee0d4" }, "downloads": -1, "filename": "simpleeval-0.8.6.tar.gz", "has_sig": false, "md5_digest": "acbea6f1bc8e4c872c4a4b12a8886ab8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11378, "upload_time": "2015-10-08T14:06:40", "url": "https://files.pythonhosted.org/packages/ab/13/61c62c26481e6ffb6fe45e30661cb75425dd11dbc253805ede20146c6f92/simpleeval-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "0eab012ce13d1fed1e5dc4db043dfa4f", "sha256": "ea13bcbe38178eebb4d374cdcb6591e0cc281a63669c29c99a6aa4fec7640117" }, "downloads": -1, "filename": "simpleeval-0.8.7.tar.gz", "has_sig": false, "md5_digest": "0eab012ce13d1fed1e5dc4db043dfa4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11654, "upload_time": "2015-11-06T13:29:12", "url": "https://files.pythonhosted.org/packages/08/c3/b3f53dcb59764d25cd5304f1f6adcbd237b033b4248dd9a80a78464088ee/simpleeval-0.8.7.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "089296085059c317ecfbbc7c271e3ca1", "sha256": "2c09597358df28875435b04040a713c869165c3f7d8089562910d5ae1cfd0e7c" }, "downloads": -1, "filename": "simpleeval-0.9.0.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "089296085059c317ecfbbc7c271e3ca1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11526, "upload_time": "2016-11-09T11:10:29", "url": "https://files.pythonhosted.org/packages/d3/0a/215f526dce1d3139329b8f73f23a02ec122ab1184f9a068d9c391e5b020a/simpleeval-0.9.0.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "8c0387248ceb8e51979d40cdfa7b0855", "sha256": "c520dfee749ea70128a5201387df3449cdb3df233cf15a422614c98cf1061a2f" }, "downloads": -1, "filename": "simpleeval-0.9.0.tar.gz", "has_sig": false, "md5_digest": "8c0387248ceb8e51979d40cdfa7b0855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12616, "upload_time": "2016-11-09T11:10:30", "url": "https://files.pythonhosted.org/packages/29/dc/bec84bd8fdbda0e0944abced8851f0ae2f0f3a445d50724dc8c2de555346/simpleeval-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "7891cc79e60d8d04539e326a49e39f45", "sha256": "e519b3ead77df5a1bf13e3e083fed3cd1092285d42a82795e6b08af0d0db057e" }, "downloads": -1, "filename": "simpleeval-0.9.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "7891cc79e60d8d04539e326a49e39f45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11730, "upload_time": "2016-11-09T11:57:12", "url": "https://files.pythonhosted.org/packages/e6/00/6bac6389ee411c385a8cfb2678b9be58d85a6fcd38ed0584da485bbbf580/simpleeval-0.9.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "f6be6d49744f644383f1989e4f0644fa", "sha256": "c6887a4bfc1d3a99888cad01604f4f63d5b9ba47320711b27a8f624c1aa86f53" }, "downloads": -1, "filename": "simpleeval-0.9.1.tar.gz", "has_sig": false, "md5_digest": "f6be6d49744f644383f1989e4f0644fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12915, "upload_time": "2016-11-09T11:57:14", "url": "https://files.pythonhosted.org/packages/39/3f/13ada62fd711554c82c26e29f5dbeb0817328a79e658e1023e9d9d0545f6/simpleeval-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "183dbc4663e15b704b137fba190db3e1", "sha256": "3aa2dfd40a591e3e7bf861c6ccdb8d4dc8b07a5b6a59883bc68037506f026417" }, "downloads": -1, "filename": "simpleeval-0.9.2.tar.gz", "has_sig": false, "md5_digest": "183dbc4663e15b704b137fba190db3e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14216, "upload_time": "2017-01-16T13:39:53", "url": "https://files.pythonhosted.org/packages/a6/db/ccf0072d5ad953b7f6953ec2b011d772f0d51667d8b0faaa40f6793b51bc/simpleeval-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "25c1ed20ca483387d5ee75dcd86fa69c", "sha256": "6dafe47d4ccc062fa4fed50ce1b991d169aebafb68182e1a6fd7a048bd4892c1" }, "downloads": -1, "filename": "simpleeval-0.9.3.tar.gz", "has_sig": false, "md5_digest": "25c1ed20ca483387d5ee75dcd86fa69c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14582, "upload_time": "2017-01-23T15:22:09", "url": "https://files.pythonhosted.org/packages/1f/c3/6945c4738e7131c93d13c07a44d0bc067f469f2bcc671943d63d6f26cd59/simpleeval-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "9105849252938e1fad5addd1c70591c8", "sha256": "79f915a00779b8fb5b1e6f09f5535e50df971bb0c0b77eb8b8c47d4e5a962965" }, "downloads": -1, "filename": "simpleeval-0.9.4.tar.gz", "has_sig": false, "md5_digest": "9105849252938e1fad5addd1c70591c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15774, "upload_time": "2017-02-03T11:41:36", "url": "https://files.pythonhosted.org/packages/5f/cd/765ee411b1b2d131d48322f0a0d68a6d070f456dee228680ef854bbf32c2/simpleeval-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "d2d2ca4e07e0fb810eff09a7f96caa8d", "sha256": "2306c97328bd3ba97f662322ae5275e6e9bfba55ae7e164f9084a687d708aa69" }, "downloads": -1, "filename": "simpleeval-0.9.5.tar.gz", "has_sig": false, "md5_digest": "d2d2ca4e07e0fb810eff09a7f96caa8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16893, "upload_time": "2017-02-09T13:14:28", "url": "https://files.pythonhosted.org/packages/2b/33/6a505170edcac76b6b51d091924ee6998dc499f2e22cb3b85cd6338106fb/simpleeval-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "370cfc52056d36b62252b016130257e3", "sha256": "848fdb9ee5f30cf93b9f0d840db6e7562633d20abf7d67c2382a0a2162a79410" }, "downloads": -1, "filename": "simpleeval-0.9.6.tar.gz", "has_sig": false, "md5_digest": "370cfc52056d36b62252b016130257e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21024, "upload_time": "2018-08-08T19:14:35", "url": "https://files.pythonhosted.org/packages/cd/1d/4890d49a61a08d71831aa3eef7c21d71ce6e2b200c711f2776d88ea486a0/simpleeval-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "7f81e8ca7016fba378bcdf4a19b5e7f6", "sha256": "0e286a98c3addcaaacc2aef5d4e57c67eeeae8be60ec8be0c46e359c68ce29ba" }, "downloads": -1, "filename": "simpleeval-0.9.7.tar.gz", "has_sig": false, "md5_digest": "7f81e8ca7016fba378bcdf4a19b5e7f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24534, "upload_time": "2018-10-18T02:41:04", "url": "https://files.pythonhosted.org/packages/22/34/9258ceae3d9ef37b8a5453bdce2dfc5031d10d74ab5ab0ce9554c50cfff4/simpleeval-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "71c4817da2e411b9eb67e155b962f288", "sha256": "85e2ce60869790053fa4d6cacea05a38228c6678ffadfa5db59aa2f4e4e2df01" }, "downloads": -1, "filename": "simpleeval-0.9.8.tar.gz", "has_sig": false, "md5_digest": "71c4817da2e411b9eb67e155b962f288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24554, "upload_time": "2018-10-19T01:31:13", "url": "https://files.pythonhosted.org/packages/28/a9/488431e04c7f39a140e0db8a898543968e6949df9c01cb2c6be78445bb73/simpleeval-0.9.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "71c4817da2e411b9eb67e155b962f288", "sha256": "85e2ce60869790053fa4d6cacea05a38228c6678ffadfa5db59aa2f4e4e2df01" }, "downloads": -1, "filename": "simpleeval-0.9.8.tar.gz", "has_sig": false, "md5_digest": "71c4817da2e411b9eb67e155b962f288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24554, "upload_time": "2018-10-19T01:31:13", "url": "https://files.pythonhosted.org/packages/28/a9/488431e04c7f39a140e0db8a898543968e6949df9c01cb2c6be78445bb73/simpleeval-0.9.8.tar.gz" } ] }