{ "info": { "author": "jlugao", "author_email": "joaolhullier@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "

Sauron Rule engine - One engine to rule them all

\n

\n \n \n Coverage Status\n\n\"GitHub\"\n \n \"Twitter:\n \n

\n\n[![Build Status](https://dev.azure.com/jlugao/Sauron%20Engine/_apis/build/status/jlugao.sauron-rule-engine?branchName=master)](https://dev.azure.com/jlugao/Sauron%20Engine/_build/latest?definitionId=1&branchName=master)\n\n> A simple rule engine to be used in python, it is based on simple rules and actions that can be chained with each other. The idea is to run the rule processor on events and have it mutate data or trigger actions\n\nHeavily inspired on FastAPI. We use type annotations in our engine so that we can export data to other systems or frontends to convey what conditions and actions are possible using that engine\n\n## Install\n\n```sh\npip install sauron-rule-engine\n```\n\n## Concepts\n\nSauron rule engine is based on custom functions that can be called by a rule.\n\n### Condition\n\nCondition to be satisfied in order for the actions to run, they can take some or no parameters at all\nMultiple conditions can be chained in order to create more complex ones, currently all chained conditions must be satisfied\n\n### Action\n\nAn Action is the intented result. Usually they are there to mutate state or trigger/schedule other kinds of actions in your system. Actions can also be chained and will run in order.\n\n### Rule\n\nA Rule is a dict or json string containing the conditions and actions and the arguments they should be run with. Usually those rules will be built by a frontend to match complex and adaptable business rules from your customer\n\n## Use it\n\nA simple example of the usage\n\n```python\nfrom sauron.rule_engine import RuleEngine\n\nengine = RuleEngine()\n\n\n@engine.condition(\"First Condition\")\ndef first_condition(session,lower_number: int = 10, greater_number: int = 20) -> bool:\n \"\"\"\n Checks if first number is lower than the first\n - lower_number: Number expected to be low\n - higher_number: Number expected to be high\n \"\"\"\n return lower_number < greater_number\n\n\n@engine.condition()\ndef second_condition(session):\n \"\"\"\n Takes no argument and always returns True\n \"\"\"\n return True\n\n\n@engine.action(\"The Action\")\ndef print_the_equation(\n session, lower_number: int = 10, greater_number: int = 20\n) -> None:\n \"\"\"\n Prints a statement Asserting that the first number is lower than the second number\n - lower_number: Number expected to be low\n - higher_number: Number expected to be high\n \"\"\"\n print(f\"{lower_number} < {greater_number}\")\n\n\nrule = {\n \"conditions\": [\n {\n \"name\": \"first_condition\",\n \"args\": {\"lower_number\": 3, \"greater_number\": 10},\n }\n ],\n \"actions\": [\n {\n \"name\": \"print_the_equation\",\n \"args\": {\"lower_number\": 3, \"greater_number\": 10},\n }\n ],\n}\n\n\nengine.run(rule)\n```\n\n## Choices Fields\n\nChoices fields are supported through python's built-in Enum type. Example:\n\n```python\nfrom sauron.rule_engine import RuleEngine\nfrom enum import Enum\n\nclass Color(str, Enum):\n red = \"R\"\n green = \"G\"\n blue = \"B\"\n\n\n@engine.condition(\"is it red?\")\ndef is_red(session, color: Color) -> bool:\n \"\"\"\n Checks if the color is red\n \"\"\"\n return color == color.red\n\n```\n\n## Export Conditions and Actions\n\nYou can use the function export_metadata to export your data in a dict or as a json string (just pass `json=True`). Here is an Example and the output:\n\n```python\nfrom sauron_rule_engine.rule_engine import RuleEngine\nfrom enum import Enum\n\nengine = RuleEngine()\n\n\n@engine.condition(\"First Condition\")\ndef first_condition(lower_number: int = 10, greater_number: int = 20) -> bool:\n \"\"\"\n Checks if first number is lower than the first\n - lower_number: Number expected to be low\n - higher_number: Number expected to be high\n \"\"\"\n return lower_number < greater_number\n\n\n@engine.condition()\ndef second_condition():\n \"\"\"\n Takes no argument and always returns True\n \"\"\"\n return True\n\n\n@engine.action(\"The Action\")\ndef print_the_equation(\n lower_number: int = 10, greater_number: int = 20\n) -> None:\n \"\"\"\n Prints a statement Asserting that the first number is lower than the second number\n - lower_number: Number expected to be low\n - higher_number: Number expected to be high\n \"\"\"\n print(f\"{lower_number} < {greater_number}\")\n\n\nclass Color(str, Enum):\n red = \"R\"\n green = \"G\"\n blue = \"B\"\n\n\n@engine.condition(\"is it red?\")\ndef is_red(color: Color) -> bool:\n \"\"\"\n Checks if the color is red\n \"\"\"\n return color == color.red\n\n\nmetadata = engine.export_metadata(json=True)\nprint(metadata)\n\n```\n\nResults in the following json to be served to your frontend:\n\n```json\n{\n \"actions\": {\n \"print_the_equation\": {\n \"args\": {\n \"lower_number\": { \"default\": 10, \"type\": \"int\", \"choices\": null },\n \"greater_number\": { \"default\": 20, \"type\": \"int\", \"choices\": null }\n },\n \"doc\": \"Prints a statement Asserting that the first number is lower than the second number\\n- lower_number: Number expected to be low\\n- higher_number: Number expected to be high\",\n \"name\": \"The Action\"\n }\n },\n \"conditions\": {\n \"first_condition\": {\n \"args\": {\n \"lower_number\": { \"default\": 10, \"type\": \"int\", \"choices\": null },\n \"greater_number\": { \"default\": 20, \"type\": \"int\", \"choices\": null }\n },\n \"doc\": \"Checks if first number is lower than the first\\n- lower_number: Number expected to be low\\n- higher_number: Number expected to be high\",\n \"name\": \"First Condition\"\n },\n \"second_condition\": {\n \"args\": {},\n \"doc\": \"Takes no argument and always returns True\",\n \"name\": \"second_condition\"\n },\n \"is_red\": {\n \"args\": {\n \"color\": {\n \"default\": null,\n \"type\": \"Color\",\n \"choices\": [\"red\", \"green\", \"blue\"]\n }\n },\n \"doc\": \"Checks if the color is red\",\n \"name\": \"is it red?\"\n }\n }\n}\n```\n\n## Sessions\n\nResults are stored in a result stack inside the session, so that jobs can share data with each other. \n\n\n## More Features coming to town\n\n- Support pydantic types\n- Support for complex types with hints to the frontend (like a range for an int type)\n\n## Contribute\n\n- We need all the help we can get. Please read [CONTRIBUTE.md](CONTRIBUTING.md) for instructions\n\n## Author\n\n\ud83d\udc64 **Jo\u00e3o Ricardo Lhullier Lug\u00e3o**\n\n- Twitter: [@joaovoce](https://twitter.com/joaovoce)\n- Github: [@jlugao](https://github.com/jlugao)\n\n## Show your support\n\nGive a \u2b50\ufe0f if this project helped you!\n\n---\n\n_This README was generated with \u2764\ufe0f by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jlugao/sauron-rule-engine", "keywords": "", "license": "MIT", "maintainer": "jlugao", "maintainer_email": "joaolhullier@gmail.com", "name": "sauron-rule-engine", "package_url": "https://pypi.org/project/sauron-rule-engine/", "platform": "", "project_url": "https://pypi.org/project/sauron-rule-engine/", "project_urls": { "Homepage": "https://github.com/jlugao/sauron-rule-engine", "Repository": "https://github.com/jlugao/sauron-rule-engine" }, "release_url": "https://pypi.org/project/sauron-rule-engine/1.0.4/", "requires_dist": [ "pydantic (>=0.29.0,<0.30.0)", "mypy (>=0.711.0,<0.712.0)", "ruamel.yaml (>=0.16.5,<0.17.0)" ], "requires_python": ">=3.6,<4.0", "summary": "A simple rule engine implemented in python", "version": "1.0.4" }, "last_serial": 5930756, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "5bcb0e743c7b7639ca7a6a66766e8410", "sha256": "94c19a90c8f52d0228378d3788e0726423175b002a8a91c5cc0f01ee5df89b80" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5bcb0e743c7b7639ca7a6a66766e8410", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 1437, "upload_time": "2019-06-26T02:29:09", "url": "https://files.pythonhosted.org/packages/bb/6d/d213c69792f4082e127cc7a36130874803e5fdec28b193dc5ac06e3a763a/sauron_rule_engine-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4437f706c5227757d3c8275b9f6f465", "sha256": "cb522f496f7db955fff57ec3d53daa5a5204b157597c841b6e052827243178e2" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d4437f706c5227757d3c8275b9f6f465", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 953, "upload_time": "2019-06-26T02:29:07", "url": "https://files.pythonhosted.org/packages/5d/0b/582e77c6f91e780e52fb7c19a87f9f28cc78ae0f4148be6127e0be0f2deb/sauron-rule-engine-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "abea2b1918f20373fbc0c08bf1aff30b", "sha256": "56b5cef4bda0596afcb39e13a9da537667cd59a87c854d8047b365b00d3cbc41" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "abea2b1918f20373fbc0c08bf1aff30b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 1431, "upload_time": "2019-06-26T02:40:14", "url": "https://files.pythonhosted.org/packages/61/5f/5db5255bb449e4094d974398d31d50f943344dc01dfd65e4336794928ecc/sauron_rule_engine-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35a64decebd55b023bba4029356f7e24", "sha256": "0f99ad43b5b7262f416fe7aafa7b57bf63fe16444f7b3d57fd886cbab93b8d10" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.1.tar.gz", "has_sig": false, "md5_digest": "35a64decebd55b023bba4029356f7e24", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 960, "upload_time": "2019-06-26T02:40:12", "url": "https://files.pythonhosted.org/packages/0b/99/4ed83a849d996ee9ed8354bf407d00d7ebb71491b45a0c63070c7162dcdf/sauron-rule-engine-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "845ddd23a89dd8a500770d15f7502860", "sha256": "3f630b9be2bcffa5898595a6cb74fe267e77708a82d9af216544f56a365fe492" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "845ddd23a89dd8a500770d15f7502860", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 1434, "upload_time": "2019-06-26T02:43:17", "url": "https://files.pythonhosted.org/packages/c9/3f/59bb053ec5b5a0a7970fd8500b2245612bf3ef64b3e580263c6cea359219/sauron_rule_engine-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fbfd03eb75317e1067e2fdb1bf9d9ced", "sha256": "74612c95d58e760cc90e98a7227169a4093ab2f3b5939a7d6b6b57be0c06e780" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.2.tar.gz", "has_sig": false, "md5_digest": "fbfd03eb75317e1067e2fdb1bf9d9ced", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 962, "upload_time": "2019-06-26T02:43:15", "url": "https://files.pythonhosted.org/packages/29/7f/1ec526d82c96a353b9cac67f963a228c66c925b7e081346fe73adaa52afb/sauron-rule-engine-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "910d06dc59022116323798fc1e92ba67", "sha256": "16243912258e281791ef334c88c412254a6c5a93acb82d513bfd2282c92445a5" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "910d06dc59022116323798fc1e92ba67", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 2241, "upload_time": "2019-06-26T02:48:50", "url": "https://files.pythonhosted.org/packages/28/82/893c38ddc134c88920a231d7706a8fe8812abbad48a86ff14e24bfec51f1/sauron_rule_engine-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd4b29bcce3406781e04d53076c8c7b9", "sha256": "4511895899bdb41d9d507c7189c396a28746782f2eb1b657bff1bbc5a5b5f096" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.3.tar.gz", "has_sig": false, "md5_digest": "dd4b29bcce3406781e04d53076c8c7b9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 2059, "upload_time": "2019-06-26T02:48:49", "url": "https://files.pythonhosted.org/packages/72/26/859aa0a09eab1cf48212fc99756deea45dd4461e867632079f0ac99a31be/sauron-rule-engine-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "13dcc2be7a8d640ca2068ce1908bdf58", "sha256": "168406f43e5ba6557dbcaddfd2355f1a0433f7883f245fc4cc445e5211e39508" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "13dcc2be7a8d640ca2068ce1908bdf58", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 3302, "upload_time": "2019-06-26T20:47:10", "url": "https://files.pythonhosted.org/packages/6b/98/580745b0bf735329c8efcbc5a0cc41fdee051e6f5a780a2efeeacde817c2/sauron_rule_engine-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "203764b93423fd38937c22b74b6130d8", "sha256": "6d34159e9f54f22c20c8ecb884bd616688c9dd4aea94714515b62643c834900e" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.4.tar.gz", "has_sig": false, "md5_digest": "203764b93423fd38937c22b74b6130d8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 3004, "upload_time": "2019-06-26T20:47:08", "url": "https://files.pythonhosted.org/packages/aa/73/b25eda2768405c227cc191f4a382af1c1382ceca35801193e925b9adf190/sauron-rule-engine-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "adaa1bb119eb1f91980f01937aeb947e", "sha256": "644e3f889e10e02c20304f063f0b09076832cf6c12370d627c2e4188893ef720" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "adaa1bb119eb1f91980f01937aeb947e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 4584, "upload_time": "2019-06-27T00:40:29", "url": "https://files.pythonhosted.org/packages/7c/e3/2338e573a047f849bf1d586edf713f0c58d46582ecf489a02777becc7416/sauron_rule_engine-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6b3e6ba8a5acc48735fc31a9d7d7b2d", "sha256": "96ea4fe14942a9126ffa3a3ee0f1480014e9bba249976138b1e21e871c299ac5" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.5.tar.gz", "has_sig": false, "md5_digest": "f6b3e6ba8a5acc48735fc31a9d7d7b2d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 4359, "upload_time": "2019-06-27T00:40:27", "url": "https://files.pythonhosted.org/packages/6a/d6/0a5e1916f752a241681e602d0ab2dcdb473ae7c5bccf609c75ba9d79852e/sauron-rule-engine-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "ebe1b14d89e6555ddac990aa72326958", "sha256": "db3ea6c4e0e3fd72ceeebecbcc1b84b0cf6394927c6eedfe72ce4af43f920579" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "ebe1b14d89e6555ddac990aa72326958", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 6286, "upload_time": "2019-06-29T02:59:15", "url": "https://files.pythonhosted.org/packages/a7/c1/0c75eea2c8318e7d6c465ce36d3335c4aeec5a277867942c78c1daf64306/sauron_rule_engine-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dffa7a992e2f5cd7e1031d93459da18d", "sha256": "f3d7e13ec7adb96c712ca487a110d762c5577171ab66d912418b492f4c7528ea" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.6.tar.gz", "has_sig": false, "md5_digest": "dffa7a992e2f5cd7e1031d93459da18d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 6446, "upload_time": "2019-06-29T02:59:13", "url": "https://files.pythonhosted.org/packages/8b/3a/c9fc91af7114689a3904fac4b6723bd4f683d770bcbb7ca5a1186d0795ae/sauron-rule-engine-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "d10f141d371abd917674333793c78c06", "sha256": "f055b06f616398b19554e4d5ba4186fba0a445a1a95eb0b7b209084b25201fc2" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "d10f141d371abd917674333793c78c06", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 6569, "upload_time": "2019-09-25T00:44:09", "url": "https://files.pythonhosted.org/packages/05/3a/073244d2afd0764eeec4d6f792b3d419e45c4b2ffeedd1ba72d92ecaa9a1/sauron_rule_engine-0.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "388515be3f4114eed5c69063b0a81fcd", "sha256": "b6bfc5b18c311c629afcd04c1fcbffda1267c27548bcd9ddb38e11b41cbdf798" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.7.tar.gz", "has_sig": false, "md5_digest": "388515be3f4114eed5c69063b0a81fcd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 7157, "upload_time": "2019-09-25T00:44:07", "url": "https://files.pythonhosted.org/packages/32/36/49667b4fae6f263aae6a8fdc44e5f627647767eea1a17180a80909c72fdc/sauron-rule-engine-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "d210e9d75f65615b0376e2ebf1d47f57", "sha256": "28c288199db5db94b7fd2c6e385db886875313014177da2e3b2141e907b73552" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "d210e9d75f65615b0376e2ebf1d47f57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 6571, "upload_time": "2019-10-02T22:29:34", "url": "https://files.pythonhosted.org/packages/a7/6e/53faf75001a8a9edef8bed5bac765cef2709924c88a2ff47d2979af3668d/sauron_rule_engine-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59cde7495596cc83aa768b64843728d2", "sha256": "27eccefcc69f6e9595fafa17792b8dbf4c985d613f412a9234a6900f43ab7281" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.8.tar.gz", "has_sig": false, "md5_digest": "59cde7495596cc83aa768b64843728d2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 7205, "upload_time": "2019-10-02T22:29:31", "url": "https://files.pythonhosted.org/packages/8b/f4/a14f87f258e66924315713761521daaeca92148daf06f556a1e5350b9170/sauron-rule-engine-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "2e3b950dd3e3164e85bf203147b11708", "sha256": "40cf44a4c6d9ba5f7bdde875809e26e93e049efcf3fcb00cde57470cfa9f1c80" }, "downloads": -1, "filename": "sauron_rule_engine-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "2e3b950dd3e3164e85bf203147b11708", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 6568, "upload_time": "2019-10-04T23:04:12", "url": "https://files.pythonhosted.org/packages/34/e0/65371cdabb52f2f790f873fba5b60f2fbbcf4506b84ed79aebf06b319ba3/sauron_rule_engine-0.1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2709b1e70d2072807b3fb914b44bcb6", "sha256": "c24b20de000b9f949ae4a5bc78ec7618856486bb644dcc0d8193e84a7b5a1274" }, "downloads": -1, "filename": "sauron-rule-engine-0.1.9.tar.gz", "has_sig": false, "md5_digest": "c2709b1e70d2072807b3fb914b44bcb6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 7181, "upload_time": "2019-10-04T23:04:10", "url": "https://files.pythonhosted.org/packages/b6/fb/3b6a79d24d8ade5e6cf184c31bf1134703cf8709c7d929c6707404d19fc8/sauron-rule-engine-0.1.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b9e1ec44087d6b30edf1060b632fe419", "sha256": "99d129bd4cacf945988d79693c64c46cb2343a359173854cc3b526dea44304b6" }, "downloads": -1, "filename": "sauron_rule_engine-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b9e1ec44087d6b30edf1060b632fe419", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8680, "upload_time": "2019-10-04T23:10:49", "url": "https://files.pythonhosted.org/packages/8b/c2/53eb8e7904a7fc8650150128f74bacb2e1d1315e435f4b6a1901eec6048e/sauron_rule_engine-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19af087c5e5d47ad57c2f1ab51ec1c8e", "sha256": "ec064a18dc46d30cc8e77dea58b9fa9b395116e1b16cf755c661a0671da7a1cf" }, "downloads": -1, "filename": "sauron-rule-engine-1.0.0.tar.gz", "has_sig": false, "md5_digest": "19af087c5e5d47ad57c2f1ab51ec1c8e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 9734, "upload_time": "2019-10-04T23:10:47", "url": "https://files.pythonhosted.org/packages/6b/01/cd055b9515a1922a6d934f49cac818ea895bdd3c76ae9420cd1ecbf8e02d/sauron-rule-engine-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5a06158ff4bc2c8ded09f2b9359c8416", "sha256": "ed806b04340c9fb26e9cd079403dec94afbdf5cd92535e68f74db7a38b9f3bc1" }, "downloads": -1, "filename": "sauron_rule_engine-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5a06158ff4bc2c8ded09f2b9359c8416", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8683, "upload_time": "2019-10-04T23:16:49", "url": "https://files.pythonhosted.org/packages/d2/60/21895e69f3d9dd3ab7de7e42029f7a885984ab811e0184de909012c89c02/sauron_rule_engine-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "268cee45e7749e330d935f9df97a9f95", "sha256": "8b3e3fb2a1d4b0183fdf0b69f8daea77c61595f2ad9fc1a39a83b90c95af8b3c" }, "downloads": -1, "filename": "sauron-rule-engine-1.0.1.tar.gz", "has_sig": false, "md5_digest": "268cee45e7749e330d935f9df97a9f95", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 9736, "upload_time": "2019-10-04T23:16:47", "url": "https://files.pythonhosted.org/packages/06/a8/d541012ea2af6cdce30e550ad3c67586056c6f070ffb12513dbbda25a652/sauron-rule-engine-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "6363690e441bc6dc9a467df475266ec4", "sha256": "4e033765d93eca3062e2f92b1d429cfc26ca45281bfd69eb53afa23e45e1a679" }, "downloads": -1, "filename": "sauron_rule_engine-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "6363690e441bc6dc9a467df475266ec4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 11067, "upload_time": "2019-10-04T23:21:00", "url": "https://files.pythonhosted.org/packages/4e/65/1e9cd28ef947cc629d36c102ae59dc4338025d817859420a2f410442e08d/sauron_rule_engine-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a1431e9e29a43e2f2e7d9b8f911f2d6", "sha256": "2ac84b5f0a57325c02de185068d6c6d6211cf9001f2c08da768223f64f7855b9" }, "downloads": -1, "filename": "sauron-rule-engine-1.0.2.tar.gz", "has_sig": false, "md5_digest": "7a1431e9e29a43e2f2e7d9b8f911f2d6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 11071, "upload_time": "2019-10-04T23:20:58", "url": "https://files.pythonhosted.org/packages/76/81/d0e418257cd76272eb867bbbe91d65a036406fae79ab33fe09a3e11f0116/sauron-rule-engine-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "2414dbc8ed5afc5b32a58e98ce537385", "sha256": "792f9737b178ffdfda9f968a37ec18ec18be2083282960b955659b9c6034638e" }, "downloads": -1, "filename": "sauron_rule_engine-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2414dbc8ed5afc5b32a58e98ce537385", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 11067, "upload_time": "2019-10-05T00:31:45", "url": "https://files.pythonhosted.org/packages/08/20/ea41c17d9bba001ddfa5d90b4c4ae930e4227c1ea45ec0cf85c2941ca3bb/sauron_rule_engine-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c07330089c1bcba26d0d1af5c9a2d164", "sha256": "39ca262ec9d54d37c350285b344a876e17e9a8d7ef5b3b348c12340a80baa150" }, "downloads": -1, "filename": "sauron-rule-engine-1.0.3.tar.gz", "has_sig": false, "md5_digest": "c07330089c1bcba26d0d1af5c9a2d164", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 11074, "upload_time": "2019-10-05T00:31:43", "url": "https://files.pythonhosted.org/packages/e3/72/3d7cf11f0e6cbf2eb2a3ef14ec8526142f0d67df15c58e3a377e049dc988/sauron-rule-engine-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "9930550b14ccbbc21ed73cbeaa7eb4c8", "sha256": "673254cee17abdb3c4eb6e155c2346ec252aeb77857309031ca7e4521459e05e" }, "downloads": -1, "filename": "sauron_rule_engine-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9930550b14ccbbc21ed73cbeaa7eb4c8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 11067, "upload_time": "2019-10-05T00:34:42", "url": "https://files.pythonhosted.org/packages/ac/c7/9c5769f9cce82a0fed755d1c38565140f80846eac790883666b3606973fb/sauron_rule_engine-1.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5cd4ad61df1e421a625d018ababf52d8", "sha256": "ddebf20ecc3bc4d1508a1bede2d2659bab152132dad1eeafa987ef73aa50f9fb" }, "downloads": -1, "filename": "sauron-rule-engine-1.0.4.tar.gz", "has_sig": false, "md5_digest": "5cd4ad61df1e421a625d018ababf52d8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 11092, "upload_time": "2019-10-05T00:34:40", "url": "https://files.pythonhosted.org/packages/c7/a2/a95036642a59fcadc13c477f406a2cdad747df01779ae3e615db239a4a4e/sauron-rule-engine-1.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9930550b14ccbbc21ed73cbeaa7eb4c8", "sha256": "673254cee17abdb3c4eb6e155c2346ec252aeb77857309031ca7e4521459e05e" }, "downloads": -1, "filename": "sauron_rule_engine-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9930550b14ccbbc21ed73cbeaa7eb4c8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 11067, "upload_time": "2019-10-05T00:34:42", "url": "https://files.pythonhosted.org/packages/ac/c7/9c5769f9cce82a0fed755d1c38565140f80846eac790883666b3606973fb/sauron_rule_engine-1.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5cd4ad61df1e421a625d018ababf52d8", "sha256": "ddebf20ecc3bc4d1508a1bede2d2659bab152132dad1eeafa987ef73aa50f9fb" }, "downloads": -1, "filename": "sauron-rule-engine-1.0.4.tar.gz", "has_sig": false, "md5_digest": "5cd4ad61df1e421a625d018ababf52d8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 11092, "upload_time": "2019-10-05T00:34:40", "url": "https://files.pythonhosted.org/packages/c7/a2/a95036642a59fcadc13c477f406a2cdad747df01779ae3e615db239a4a4e/sauron-rule-engine-1.0.4.tar.gz" } ] }