{ "info": { "author": "Marko Manninen", "author_email": "elonmedia@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Software Development :: Libraries" ], "description": "# GRCRiddles\n\nStudy and examination of alphabetical and isopsephical riddles of the Ancient Greeks\n\nInstall:\n\n```bash\npip install grcriddles\n```\n\nUse from Python/IPython console:\n\n```python\n # get words with length 9, isopsephy 1697, consonants 5,\n # and the first three syllables having 2 letters each\n # syllable count is going to be 4 with above parameters\n words = get_database({0: 'Word', 1: 'Count', 3: 'Chars', 4: 'Isopsephy', 5: 'Syllables', 7: 'Vowels', 8: 'Mutes'})\n a = words[words['Isopsephy'] == 1697]\n a = a[a['Chars'] == 9]\n a = a[a['Mutes'] == 5]\n a[a.apply(lambda x: len(x['Syllables'][0]) == 2 and \\\n len(x['Syllables'][1]) == 2 and \\\n len(x['Syllables'][2]) == 2, axis=1)]\n```\n\nOutput:\n\n```txt\n Count Chars Isopsephy Syllables Vowels Mutes\n Word\n \u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a8 1 9 1697 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5\u03a8] 4 5\n \u039b\u0397\u039b\u03a5\u0398\u039f\u03a4\u03a9\u039d 1 9 1697 [\u039b\u0397, \u039b\u03a5, \u0398\u039f, \u03a4\u03a9\u039d] 4 5\n \u039c\u0395\u03a4\u0391\u039d\u0391\u03a3\u03a4\u03a9 1 9 1697 [\u039c\u0395, \u03a4\u0391, \u039d\u0391, \u03a3\u03a4\u03a9] 4 5\n \u03a3\u03a5\u039d\u03a9\u039a\u0399\u03a3\u0398\u0397 13 9 1697 [\u03a3\u03a5, \u039d\u03a9, \u039a\u0399, \u03a3\u0398\u0397] 4 5\n```\n\n```python\n # get words containing \u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5 stem word\n words.filter(like=\"\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\", axis=0)\n```\n\nOutput:\n\n```txt\n Count Chars Isopsephy Syllables Vowels Mutes\nWord\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a0\u03a4\u0395 3 11 1382 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5, \u03a0\u03a4\u0395] 5 6\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a0\u03a4\u039f\u039d 2 12 1497 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5, \u03a0\u03a4\u039f\u039d] 5 7\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a6\u0398\u0397 2 11 1514 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5, \u03a6\u0398\u0397] 5 6\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a8 1 9 1697 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5\u03a8] 4 5\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a8\u0391\u039d 2 11 1748 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5, \u03a8\u0391\u039d] 5 6\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a8\u0395 18 10 1702 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5, \u03a8\u0395] 5 5\n\u0391\u039c\u03a6\u0395\u039a\u0391\u039b\u03a5\u03a8\u0395\u039d 20 11 1752 [\u0391\u039c, \u03a6\u0395, \u039a\u0391, \u039b\u03a5, \u03a8\u0395\u039d] 5 6\n```\n\n### Docs\n\nDeveloper documentation: http://grcriddles.readthedocs.io/en/latest/\n\nGreek Alpha-Numeric Riddle Solver EBook: https://www.gitbook.com/book/markomanninen/isopsephical-riddles-pseudo-sibylline-oracles/details\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/markomanninen/grcriddles/archive/v0.1.9.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/markomanninen/grcriddles", "keywords": "python", "license": "", "maintainer": "", "maintainer_email": "", "name": "grcriddles", "package_url": "https://pypi.org/project/grcriddles/", "platform": "any", "project_url": "https://pypi.org/project/grcriddles/", "project_urls": { "Download": "https://github.com/markomanninen/grcriddles/archive/v0.1.9.tar.gz", "Homepage": "https://github.com/markomanninen/grcriddles" }, "release_url": "https://pypi.org/project/grcriddles/0.1.9/", "requires_dist": null, "requires_python": "", "summary": "GRCRiddle - Study and examination of alphabetical and isopsephical riddles of the Ancient Greeks", "version": "0.1.9" }, "last_serial": 3743941, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "32cbe849162f6702a4dbb0d8d42f5e61", "sha256": "133aaede65a0a7b805ec3108cc49daad7f7d274ef1212fd2b642c01ed9b612ed" }, "downloads": -1, "filename": "grcriddles-0.1.1.tar.gz", "has_sig": false, "md5_digest": "32cbe849162f6702a4dbb0d8d42f5e61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15663003, "upload_time": "2018-04-04T10:07:00", "url": "https://files.pythonhosted.org/packages/e0/37/6494c75ff526630b42ab946894909b23b6b716c65791450954da2545ff8a/grcriddles-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0cb4a27c8dc63f7dccdc08b6afd6a38c", "sha256": "225a6177f709c551aee6391b8082b82c9dd29d3a0d0c88c9e3432938ee7f05b2" }, "downloads": -1, "filename": "grcriddles-0.1.2.tar.gz", "has_sig": false, "md5_digest": "0cb4a27c8dc63f7dccdc08b6afd6a38c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15663785, "upload_time": "2018-04-04T10:38:44", "url": "https://files.pythonhosted.org/packages/d7/70/eb43c84b08439c17b9754afaa306e3537fe4bcf67dc7628702c099d00df4/grcriddles-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "7d619badc311a3971ae179956171e211", "sha256": "b59de486b9b58d0d4b2e7a51d40f45c77fb4f5fde16f9eed25106cf89a0f1509" }, "downloads": -1, "filename": "grcriddles-0.1.3.tar.gz", "has_sig": false, "md5_digest": "7d619badc311a3971ae179956171e211", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15664028, "upload_time": "2018-04-04T12:01:17", "url": "https://files.pythonhosted.org/packages/e9/62/a1e476d96d25e9f2beb90171b0a1ca1ef87726ba8b819ead0449b87091cf/grcriddles-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "4480654fe1e0a12a07e27662a2921a30", "sha256": "26ec08be00edca84ec50a925597c27a889c036f5c887a0d2a059e8fc2a1673d1" }, "downloads": -1, "filename": "grcriddles-0.1.4.tar.gz", "has_sig": false, "md5_digest": "4480654fe1e0a12a07e27662a2921a30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15664040, "upload_time": "2018-04-04T12:21:14", "url": "https://files.pythonhosted.org/packages/6d/98/6a733f34b5daf2b6588255ba84733b312bd119e1b526bad4784d7fe509c9/grcriddles-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "4296cc1e8339e557769908fce82b7417", "sha256": "00132f5d1e682c2d621c6b133a2b8674db09e21e1a5bf5dd35fab3e693844790" }, "downloads": -1, "filename": "grcriddles-0.1.5.tar.gz", "has_sig": false, "md5_digest": "4296cc1e8339e557769908fce82b7417", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31318297, "upload_time": "2018-04-04T12:40:29", "url": "https://files.pythonhosted.org/packages/a2/95/6f89f7c6af2321de606ca0102b39e17a372ad9b4315e0156ce4f99581281/grcriddles-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "3ece18c7ec31076d002b9044f827d800", "sha256": "f32ce4a0f5d6279d1fdaf45f178e6a4a06c9112f66c5540220068d2d8f6f6c86" }, "downloads": -1, "filename": "grcriddles-0.1.6.tar.gz", "has_sig": false, "md5_digest": "3ece18c7ec31076d002b9044f827d800", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31319572, "upload_time": "2018-04-04T17:43:49", "url": "https://files.pythonhosted.org/packages/28/21/b923bc8ef0662298fb46da13f044edcf2e2cc08d3b7cfca0eb7f40e712ce/grcriddles-0.1.6.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "910c0f1c1afdb94f19257a1cba2ccb65", "sha256": "26a4ff185a70cc8112c2fa00c1feaf3c88dc01a483565a17bc55f079ef934549" }, "downloads": -1, "filename": "grcriddles-0.1.8.tar.gz", "has_sig": false, "md5_digest": "910c0f1c1afdb94f19257a1cba2ccb65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31320552, "upload_time": "2018-04-05T11:49:52", "url": "https://files.pythonhosted.org/packages/3b/12/b044a771d1ae893ecbb9d16f17d44073ed77182bd764dcbeef462b19beb9/grcriddles-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "b169a151ab1497dd471c9d1deca3beaf", "sha256": "6ae249f6836120ffba827fa3703aef438af84b20f100c980be35a3c9c40babf5" }, "downloads": -1, "filename": "grcriddles-0.1.9.tar.gz", "has_sig": false, "md5_digest": "b169a151ab1497dd471c9d1deca3beaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31320219, "upload_time": "2018-04-07T17:24:28", "url": "https://files.pythonhosted.org/packages/31/85/95a6241aa697801c503e375abd881aab491f1c7982ac68da5cf40ba519ce/grcriddles-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b169a151ab1497dd471c9d1deca3beaf", "sha256": "6ae249f6836120ffba827fa3703aef438af84b20f100c980be35a3c9c40babf5" }, "downloads": -1, "filename": "grcriddles-0.1.9.tar.gz", "has_sig": false, "md5_digest": "b169a151ab1497dd471c9d1deca3beaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31320219, "upload_time": "2018-04-07T17:24:28", "url": "https://files.pythonhosted.org/packages/31/85/95a6241aa697801c503e375abd881aab491f1c7982ac68da5cf40ba519ce/grcriddles-0.1.9.tar.gz" } ] }