{ "info": { "author": "Hideshi Ogoshi", "author_email": "hideshi.ogoshi@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Programming Language :: Python :: 3.5", "Topic :: Documentation", "Topic :: Software Development :: Code Generators", "Topic :: Software Development :: Documentation" ], "description": "Pyagram\n=======\n\nDiagram Generator \n\nThis is a command line tool, which generates finite state machine diagram for web and mobile application development from a source file through graphviz. \n\nThe finite state machine diagram is a kind of diagram, which describes screen transitions and flows of the processes. \n\nThe source file is written in a specific format, which enables us to write a code easier than using only graphviz, since Pyagram generates graphviz code as an intermediate file. \n\nSince graphviz provides 3 kinds of image formats, such as gif, png and svg, Pyagram provides these kinds of file format as well. \n\nThere are several kinds of objects in the diagram. \n\n* Title of a diagram\n* Double circle represents a view.\n* Gray background circle represents a server side process including action.\n* Dashed arrow represents a screen transition between views.\n* Straight arrow represents flow of the process, such as accepting a request, validation, database access and so on.\n* Straight arrow is able to have an label, which describes an action and a result of the process, such as clicking a button, success, error and so on.\n\n\nHow to write source file\n------------------------\n\nFirstly you can define a title of the diagram with @ sign. \n \n\n @[title]\n CRUD View Diagram\n \n\nNext you can define views with # sign and its screen transitions with --> sign. \n\nNow we have 3 views, such as List View, Add View and Server Error View. \n\nList View and Add View are connected one another. \n\nYou can define its own path below the view name as well. \n\nI highly recommend you to define those views first, since that would help you when you are trying to define server processes as a guide. \n \n\n #[List View]\n /index\n \n --> Add View\n \n #[Add View]\n /add\n \n --> List View\n \n --> Add View\n\n #[Server Error]\n\n\nThen you can define server processes with ==> sign connecting source process and destination process. \n\nAs you can see, process is able to have multiple flows. Each flow has its own destination. \n\nYou can add results of the processes, such as Valid, Invalid, Success, Database Error and so on. It will be used as labels placed beside the straight arrows. \n\n\n $[GET /index]\n ==> List View\n \n $[GET /add]\n ==> Add View\n \n $[POST /add]\n ==> Validate\n \n $[Validate]\n Valid\n ==> Save\n \n Invalid\n ==> Add View\n \n $[Save]\n ==> Add View\n \n $[Save]\n Success\n ==> List View\n \n Database error\n ==> Server Error\n \n \nNow that you can define the flows between the views and the processes with ==> sign. \n\n\n #[List View]\n /index\n \n --> Add View\n \n Click add button\n ==> GET /add\n \n\n #[Add View]\n /add\n \n --> List View\n \n --> Add View\n\n Click back button\n ==> GET /index\n \n Click submit button\n ==> POST /add\n\n\nHow to install\n--------------\n\npip3 command installs depending library, such as pyparsing automatically. \n\nAfter the installation, executable pyagram command will be placed in a bin directory, such as /usr/local/bin/pyagram. \n\n\n pip3 install pyagram\n\n\nHow to execute\n--------------\n\npyagram command accepts 2 kinds of options. \n\nt option represents image type, which accepts gif, png and svg. \n\nd option represents diagram type, which accepts std and erd. \n\nf option represents font name, which accepts font names in your operation system if it exists or uses default font. \n\no option represents output path, which accepts path. \n\ni option represents source file, which accepts text file. \n\nv option represents verbose mode, which prints various information useful for debugging.\n\nOutput file is placed in the same place as the source file. \n\n\n pyagram -t {image type} -d {diagram type} -f {font name} -o {output path} -i {source file}", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/hideshi", "keywords": null, "license": "MIT License", "maintainer": null, "maintainer_email": null, "name": "pyagram", "package_url": "https://pypi.org/project/pyagram/", "platform": "MacOS", "project_url": "https://pypi.org/project/pyagram/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/hideshi" }, "release_url": "https://pypi.org/project/pyagram/1.4.3/", "requires_dist": null, "requires_python": null, "summary": "Pyagram: Diagram Generator", "version": "1.4.3" }, "last_serial": 2265414, "releases": { "1.0.0": [], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5f93f1778634ecbd256f3a0043dcfa8a", "sha256": "882a69342fdc6fb7fdedd5ae804e2d22475c464818b4864aae560833e29cafe8" }, "downloads": -1, "filename": "pyagram-1.0.1.tar.gz", "has_sig": false, "md5_digest": "5f93f1778634ecbd256f3a0043dcfa8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2208, "upload_time": "2016-07-21T00:46:11", "url": "https://files.pythonhosted.org/packages/97/84/eb4952e9ba6bbdbbdd4aba70f880617f6a88013add063c435dcdbc290081/pyagram-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "f33282856ca73b03a85f95e80d3c13e4", "sha256": "fc6223fff8e3a9a1b0f99243ddb941be7ab5ac51850a84ee22eba5844ccc1f4b" }, "downloads": -1, "filename": "pyagram-1.0.2.tar.gz", "has_sig": false, "md5_digest": "f33282856ca73b03a85f95e80d3c13e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2309, "upload_time": "2016-07-21T10:13:13", "url": "https://files.pythonhosted.org/packages/02/5f/9fd4e069a823b84e4a539cab63a85b2fcbb329e94621c5a5e18b891a8f83/pyagram-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "6edaed7eac48320a351a3ce543c16bac", "sha256": "8590a9f3e5af743ad52a690a7800d251ebcf4b9ff0ac73e7552540c26f09ca20" }, "downloads": -1, "filename": "pyagram-1.0.3.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "6edaed7eac48320a351a3ce543c16bac", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 4580, "upload_time": "2016-07-21T10:16:15", "url": "https://files.pythonhosted.org/packages/ee/f8/b09129fabc71b83578b020f90b5d70baab9edc7070a0efeba2e7848f025f/pyagram-1.0.3.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "7ac6b01712f496514e0f47b9d4b1e70d", "sha256": "51d07282700b7d49689cbb771ff7f2d8b416cfd7128e2096ddb39fc30295f7e8" }, "downloads": -1, "filename": "pyagram-1.0.3-py2.7.egg", "has_sig": false, "md5_digest": "7ac6b01712f496514e0f47b9d4b1e70d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 5490, "upload_time": "2016-07-21T10:16:18", "url": "https://files.pythonhosted.org/packages/00/47/06e7c8d2d9c820ec3ac29ccdf4781e4fff3aefa86b0d005fcc8ac0b87141/pyagram-1.0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5cf6570ea3e370b2614a9b594db77ebd", "sha256": "71a373c06fc99954da211716884222674e6a1bf3c3708ce2ec8d367357625a24" }, "downloads": -1, "filename": "pyagram-1.0.3.tar.gz", "has_sig": false, "md5_digest": "5cf6570ea3e370b2614a9b594db77ebd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2310, "upload_time": "2016-07-21T10:16:11", "url": "https://files.pythonhosted.org/packages/06/e3/fe6335592c286a09a963ebcd3549a3591adcead3466653c74b2ff4ef95a7/pyagram-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "ea3b7629abaa5db24e5341b8e2b85af4", "sha256": "17b46a03b1bab2d93d07acfe34ef3db9ee8560afb20d167c1e584d7d1646f431" }, "downloads": -1, "filename": "pyagram-1.0.4.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "ea3b7629abaa5db24e5341b8e2b85af4", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6119, "upload_time": "2016-07-21T14:22:45", "url": "https://files.pythonhosted.org/packages/c5/4b/760d317ca4392d26cf5835587547816eb809aed94700cd184db98c224718/pyagram-1.0.4.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "0242c431a8b4068b654227ccfb1a86fd", "sha256": "28bbbcf0b2389af102d91aa3504f028b4bf3b74e3ba99d160cdd824b2f571480" }, "downloads": -1, "filename": "pyagram-1.0.4-py2.7.egg", "has_sig": false, "md5_digest": "0242c431a8b4068b654227ccfb1a86fd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 7019, "upload_time": "2016-07-21T14:22:55", "url": "https://files.pythonhosted.org/packages/d9/57/59eb9952948fc99778bcd7a47e1c461a81df5c8b4202cad58fc69928e1e4/pyagram-1.0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "66b320eb34c21bc717321f102e6a786d", "sha256": "6357f19c5b88ec4918da637771dfe0c9167dfb6f1847d05d4dff1d6233c7e7b2" }, "downloads": -1, "filename": "pyagram-1.0.4.tar.gz", "has_sig": false, "md5_digest": "66b320eb34c21bc717321f102e6a786d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4039, "upload_time": "2016-07-21T14:22:35", "url": "https://files.pythonhosted.org/packages/17/f3/cb07d62b40e08443164ded2a1049a08673be40420ccfde2c1553f6823d7c/pyagram-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "927ccb743e3e05f6a96426bbe1981dcb", "sha256": "8f66dece5800f0454ddebcea926b8445a622f7a44ea4265328efd7c7d4cd9048" }, "downloads": -1, "filename": "pyagram-1.0.5.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "927ccb743e3e05f6a96426bbe1981dcb", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6119, "upload_time": "2016-07-21T14:29:01", "url": "https://files.pythonhosted.org/packages/0f/d1/fa0f7a637cba03d959efed608032238b9b6a5183fa8e8a94637f5aee7eba/pyagram-1.0.5.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "6a6652c765cb8b34b9a382195fbfcdea", "sha256": "70eba033b1d1856530490b42c9f4de04a982fadfe5e80c104f0149a6db495b6f" }, "downloads": -1, "filename": "pyagram-1.0.5-py3.5.egg", "has_sig": false, "md5_digest": "6a6652c765cb8b34b9a382195fbfcdea", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7073, "upload_time": "2016-07-21T14:29:08", "url": "https://files.pythonhosted.org/packages/a5/47/ec6671f89b590fbd0c368bfe178713b9a48e500621f942cba6e9e76d5a23/pyagram-1.0.5-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "a6bc9ca9e966273545d4927a0acdc33a", "sha256": "f75252c8b1fc8befa10bfa3f27285232928bd443d967d89e8cca4c40f6e02dd7" }, "downloads": -1, "filename": "pyagram-1.0.5.tar.gz", "has_sig": false, "md5_digest": "a6bc9ca9e966273545d4927a0acdc33a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4043, "upload_time": "2016-07-21T14:28:56", "url": "https://files.pythonhosted.org/packages/2b/9e/9bda4a444cc6f1e1db7e264d17dd02f38b11e32ef17309df61757e8a6558/pyagram-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "51f7af5ee770608af3bcd4555b011654", "sha256": "e5946c23b3e042f49fe3b66df38291641c1c0644b63f1abc8358f17a26899002" }, "downloads": -1, "filename": "pyagram-1.0.6.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "51f7af5ee770608af3bcd4555b011654", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6207, "upload_time": "2016-07-22T12:07:20", "url": "https://files.pythonhosted.org/packages/1a/f7/7a6efe04f3418be395d4b1b2f8a18cb67fb06dda7acd037ec147a6343b88/pyagram-1.0.6.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b13435012051c59f86b2fa44fd210bb5", "sha256": "a2ae8ec72449626acc91c01860efb9de81d39a8bdeb5cb262d459b8f2d2d267b" }, "downloads": -1, "filename": "pyagram-1.0.6-py3.5.egg", "has_sig": false, "md5_digest": "b13435012051c59f86b2fa44fd210bb5", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7246, "upload_time": "2016-07-22T12:07:24", "url": "https://files.pythonhosted.org/packages/81/e0/841662a91acd4e5018c186e3930c994ac1b4ce8cba7d92743fc3f795c665/pyagram-1.0.6-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "09a5b3f7c3e40d5698b89bec1d744232", "sha256": "60a4947a3a782944892a961850591469ac0c26795e260a5d57d7ee72d775e9d0" }, "downloads": -1, "filename": "pyagram-1.0.6.tar.gz", "has_sig": false, "md5_digest": "09a5b3f7c3e40d5698b89bec1d744232", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4142, "upload_time": "2016-07-22T12:07:09", "url": "https://files.pythonhosted.org/packages/1f/e0/840fc738f0be6f840e703c1c459beb6492f9a3fca90d454f5300c376d982/pyagram-1.0.6.tar.gz" } ], "1.1.0": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "1ef44ceba37c3e82820488e62dcef8f9", "sha256": "8fcd481ca5edc2cf978a37ea6b6206b44df8e558dce0fa304f7ae19a2d0caf51" }, "downloads": -1, "filename": "pyagram-1.1.0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "1ef44ceba37c3e82820488e62dcef8f9", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6205, "upload_time": "2016-07-22T12:10:36", "url": "https://files.pythonhosted.org/packages/03/1d/2db77caacf457c0eb11594e94ab631461ff436cf60d2d02783dd7cf9818a/pyagram-1.1.0.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "474bb6bd1b66c421f7ab0160e08dbe14", "sha256": "eaea52375a0a0c4582285fec9a82d85a1715d483c5ae4d52c8f67193ddd634dc" }, "downloads": -1, "filename": "pyagram-1.1.0-py3.5.egg", "has_sig": false, "md5_digest": "474bb6bd1b66c421f7ab0160e08dbe14", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7247, "upload_time": "2016-07-22T12:10:40", "url": "https://files.pythonhosted.org/packages/3b/91/1cb90a2c0a4af7e54ca5ce57f2bf8706113be8789542213b62184f12e11d/pyagram-1.1.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "83167d8a15fdba1b2a680dc9c222369c", "sha256": "f40c1814ab287d332a99eda3286934d672ea1e41c599426da60590d1100527e3" }, "downloads": -1, "filename": "pyagram-1.1.0.tar.gz", "has_sig": false, "md5_digest": "83167d8a15fdba1b2a680dc9c222369c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4140, "upload_time": "2016-07-22T12:10:32", "url": "https://files.pythonhosted.org/packages/af/1e/e643d52946741b87964ec46901189260644cccc2e13bfe934d14eed301c3/pyagram-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "726c54085308b0ccdf27adc376b4964f", "sha256": "97743de7cd4c043c127f4cccd93161f0942731a3f7b7ded8d8d93b34344f12c2" }, "downloads": -1, "filename": "pyagram-1.1.1.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "726c54085308b0ccdf27adc376b4964f", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6166, "upload_time": "2016-07-22T12:18:59", "url": "https://files.pythonhosted.org/packages/40/c0/8f9bf312b9617cab1d72729c258278246e4ec27e9861cde366422e44fd50/pyagram-1.1.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "7d8cbb4178ead7f0adce0bf5d4ad393b", "sha256": "9d6ce4f7ea5111596a97d1993a5e2e3d52d17f09ec64c795a5ef4e688b91766d" }, "downloads": -1, "filename": "pyagram-1.1.1-py3.5.egg", "has_sig": false, "md5_digest": "7d8cbb4178ead7f0adce0bf5d4ad393b", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7207, "upload_time": "2016-07-22T12:19:04", "url": "https://files.pythonhosted.org/packages/ec/25/089891bee08efee6af2f57769895cab0d66dec57faef3f5b2e02fbfd347b/pyagram-1.1.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "f53f135c7a505796f0120fa00d642140", "sha256": "93df6e60a636bc0245da44b4b81480ed72d7ffcf2c2a76cfe49474c0eb515952" }, "downloads": -1, "filename": "pyagram-1.1.1.tar.gz", "has_sig": false, "md5_digest": "f53f135c7a505796f0120fa00d642140", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4408, "upload_time": "2016-07-22T12:18:55", "url": "https://files.pythonhosted.org/packages/39/26/a44b41edab515fd3d7e2f82896986af76e62d36d2d96f399571008967edd/pyagram-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "721fd47d7cbc8aee9b748de0f1fd98bb", "sha256": "99bf6256ff749374f913af5c384467367ae4d1096a86fc36f67f8429574b6269" }, "downloads": -1, "filename": "pyagram-1.1.2.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "721fd47d7cbc8aee9b748de0f1fd98bb", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6155, "upload_time": "2016-07-22T12:36:38", "url": "https://files.pythonhosted.org/packages/5a/61/ca0c347ed4b3ad8bb27e2e4f551db8e3b11751b0bd6d8f6972c682e266ce/pyagram-1.1.2.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "057542cfd087c36c6b941f617e3e80f4", "sha256": "73cd67f545356b94fc1a85850096ed35f879e67d612f15e6c283b23d89ee5270" }, "downloads": -1, "filename": "pyagram-1.1.2-py3.5.egg", "has_sig": false, "md5_digest": "057542cfd087c36c6b941f617e3e80f4", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7193, "upload_time": "2016-07-22T12:36:42", "url": "https://files.pythonhosted.org/packages/1d/e4/c6461583f727132e1a4da03e0d215f752d871c7460c72835c9667ac5dec7/pyagram-1.1.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "a90fba3e4eb6c73c1dc671de64a4b610", "sha256": "9583f810fc584a76e281475b503c780e78e334db706cc3147691135bb39e1147" }, "downloads": -1, "filename": "pyagram-1.1.2.tar.gz", "has_sig": false, "md5_digest": "a90fba3e4eb6c73c1dc671de64a4b610", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4407, "upload_time": "2016-07-22T12:36:34", "url": "https://files.pythonhosted.org/packages/2e/87/f25e8b57070df78f9cfa1872f37b413fb422433383ffee9de0eeea95424f/pyagram-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "c9666208a6196f23afdb4548c7867f47", "sha256": "67ed646ce72ee55d5849bcf6aa0c1e7e7171e451063917efd4925cdfdc661d52" }, "downloads": -1, "filename": "pyagram-1.1.3.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "c9666208a6196f23afdb4548c7867f47", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6170, "upload_time": "2016-07-22T15:06:50", "url": "https://files.pythonhosted.org/packages/0d/2f/382b414a3fb4405b3d3787c31f448d52537c57cf5ea68cd0480018480686/pyagram-1.1.3.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "5889741a6a4209310e739645d3534e0b", "sha256": "02804a6fb6176029119bd714ff7ec620fd6af530358eb08e853364adec91193f" }, "downloads": -1, "filename": "pyagram-1.1.3-py3.5.egg", "has_sig": false, "md5_digest": "5889741a6a4209310e739645d3534e0b", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7218, "upload_time": "2016-07-22T15:06:58", "url": "https://files.pythonhosted.org/packages/a1/38/5e38f2b02c391dc246ee4fe50e9637b2eca69ee65e430077c371121afd9e/pyagram-1.1.3-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "59e90b9d6289df61ab5c18caca70cee4", "sha256": "640ffa5d9c57ec936f32393aaa0a7055dbbb125ab7a8b500b69b64a0b3763976" }, "downloads": -1, "filename": "pyagram-1.1.3.tar.gz", "has_sig": false, "md5_digest": "59e90b9d6289df61ab5c18caca70cee4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4397, "upload_time": "2016-07-22T15:06:43", "url": "https://files.pythonhosted.org/packages/20/fc/7602e963175d8298a572667a1cc43a1d5908a010bea1b11b2c5de58ad768/pyagram-1.1.3.tar.gz" } ], "1.2.0": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "3dfb3be6338a413b67e8682b7e09bef6", "sha256": "da6630b5cd1f8fd1e93bd4b4ee2038bd3a1bec4eda933732fd0f5475d85a1d40" }, "downloads": -1, "filename": "pyagram-1.2.0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "3dfb3be6338a413b67e8682b7e09bef6", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6534, "upload_time": "2016-07-24T03:20:27", "url": "https://files.pythonhosted.org/packages/9d/96/ecfd449a0d5f324e172d2106d76b5d28cb0441ed698321d39eaa203733b9/pyagram-1.2.0.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e0ddd7c785513317c3c13a165ca967b1", "sha256": "58b09995da50f9eab40fe21f684697281ad76545563c0b7c72a58cfa1b2325d2" }, "downloads": -1, "filename": "pyagram-1.2.0-py3.5.egg", "has_sig": false, "md5_digest": "e0ddd7c785513317c3c13a165ca967b1", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7610, "upload_time": "2016-07-24T03:20:31", "url": "https://files.pythonhosted.org/packages/ca/0b/966462c3d2c850cec45c065adfaf48ef46c5bd1862c780733248d172f7ed/pyagram-1.2.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "e5472101c9a9b211641999ddd8ea2eb6", "sha256": "8de51e72464a33503b9785e6987cf9b539019e70c5d50548e0ca0b8b462f662d" }, "downloads": -1, "filename": "pyagram-1.2.0.tar.gz", "has_sig": false, "md5_digest": "e5472101c9a9b211641999ddd8ea2eb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4552, "upload_time": "2016-07-24T03:20:23", "url": "https://files.pythonhosted.org/packages/7f/f7/d631373be28308bbaf68b6694a0c8bd3b047c70770ce447aba54ed18ad3c/pyagram-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "b415cca53de6a0a7a8aa8c927f517bbc", "sha256": "1b00f89c6f05ef9ccfd71491961b5c9f2eba1eef9b49490fa3fd8ee10a957472" }, "downloads": -1, "filename": "pyagram-1.2.1.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "b415cca53de6a0a7a8aa8c927f517bbc", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 6754, "upload_time": "2016-07-25T01:06:07", "url": "https://files.pythonhosted.org/packages/ea/d1/540c225f88d29b65513d37a47dc0c4ddcc0072072f5a3fb6456480a2cae1/pyagram-1.2.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e04b4c5c69c3f3ef625f3e28865147fb", "sha256": "c1ec532ae3075f514715a545ff730d26da50772184e882dbb94ff87d344cbabd" }, "downloads": -1, "filename": "pyagram-1.2.1-py3.5.egg", "has_sig": false, "md5_digest": "e04b4c5c69c3f3ef625f3e28865147fb", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 7833, "upload_time": "2016-07-25T01:06:10", "url": "https://files.pythonhosted.org/packages/40/3d/fa1c78e33f485b09af4de2507e07f9c16ffa533d3016069f0d9189a605b2/pyagram-1.2.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "98c49a5a23c5b46bde54d6180ce83c35", "sha256": "849d070d3780ac7cae51817b1563c06cea1e0c23af75e4362995c413c7ff35a8" }, "downloads": -1, "filename": "pyagram-1.2.1.tar.gz", "has_sig": false, "md5_digest": "98c49a5a23c5b46bde54d6180ce83c35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4641, "upload_time": "2016-07-25T01:06:03", "url": "https://files.pythonhosted.org/packages/01/cd/1f2e89a5b366acdaca2fd52f636c695f9662e24ac93728fddae97f9a1191/pyagram-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "built for Darwin-15.5.0", "digests": { "md5": "3c5c059ba4e1649f5acc08c79f8807f6", "sha256": "ee54039743588a4b7a1374ca6495291ded8885a121f5c90697f0958d4335a60a" }, "downloads": -1, "filename": "pyagram-1.3.0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "3c5c059ba4e1649f5acc08c79f8807f6", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 7053, "upload_time": "2016-07-28T11:02:43", "url": "https://files.pythonhosted.org/packages/a2/a9/4e816a3a5d61f7731c8251be5c49997d66cad8561c5b6cd45d7607d060ae/pyagram-1.3.0.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "36d186c0f4ca4990b2f2acffa3983437", "sha256": "9ce5ca4f2e9b19dd3b049a7a28bf7e356d132eafad77317e2b19fc6012ce7f5c" }, "downloads": -1, "filename": "pyagram-1.3.0-py3.5.egg", "has_sig": false, "md5_digest": "36d186c0f4ca4990b2f2acffa3983437", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 8154, "upload_time": "2016-07-28T11:02:46", "url": "https://files.pythonhosted.org/packages/eb/42/b764de040c45431da413465936be18a7916479b09aaefe6937655b8fac76/pyagram-1.3.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "fa92368020419a5a72419e57a025576d", "sha256": "f3a017d51614b60b24d44e610750ee1d74c753531ec428549dcf3edce18a554f" }, "downloads": -1, "filename": "pyagram-1.3.0.tar.gz", "has_sig": false, "md5_digest": "fa92368020419a5a72419e57a025576d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4826, "upload_time": "2016-07-28T11:02:40", "url": "https://files.pythonhosted.org/packages/7e/10/f6fa2fdf1f7070ad4525fbd09f16d17b55cbeb2ae6dabe416400c762ef75/pyagram-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "53c313b29c18c10ea1ff8852ff0891e1", "sha256": "709725e087d6bb2ae63a882c1ff39d44717831f230f45415a45860c52eebafd1" }, "downloads": -1, "filename": "pyagram-1.3.1.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "53c313b29c18c10ea1ff8852ff0891e1", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 7071, "upload_time": "2016-07-30T01:59:01", "url": "https://files.pythonhosted.org/packages/17/ff/06964fc9faa7538cc0be5d8f3f7cd888b04e223ce127b12b1fb80dce3312/pyagram-1.3.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "89aedf186949b8c626eaa45a267afd2b", "sha256": "82f606fa06a6fb4a1409226a25a2dc1e65c1bc8197c1180457238c563e432645" }, "downloads": -1, "filename": "pyagram-1.3.1-py3.5.egg", "has_sig": false, "md5_digest": "89aedf186949b8c626eaa45a267afd2b", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 8182, "upload_time": "2016-07-30T01:59:04", "url": "https://files.pythonhosted.org/packages/03/51/50884fc883b34bfeefb4b4c83fbe770c9912e1555668135792c299c2d64d/pyagram-1.3.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "41045d9f784f61c5cc813032ed599b53", "sha256": "051765f2c7ccad9738491dfb65ad99f1f15c8022e887e61533ebb2aa0dea9694" }, "downloads": -1, "filename": "pyagram-1.3.1.tar.gz", "has_sig": false, "md5_digest": "41045d9f784f61c5cc813032ed599b53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4846, "upload_time": "2016-07-30T01:58:57", "url": "https://files.pythonhosted.org/packages/50/79/482a530c09d67c215ada192da5b7aa0a4a5c0132c1f228cccf9bfd01e8ab/pyagram-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "3b583868d9426a397ded4a2580da66c7", "sha256": "83e5370a70b26cdbd641432fc534d086171722efca0be65acad1a7a970e0aeef" }, "downloads": -1, "filename": "pyagram-1.4.0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "3b583868d9426a397ded4a2580da66c7", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 10749, "upload_time": "2016-07-31T13:13:21", "url": "https://files.pythonhosted.org/packages/4b/37/5530f0f74a7aa7a5feebcc1eca22a5cc7430b1fd48150c4ab8b171ce5b6e/pyagram-1.4.0.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "bcef1a4dcbc6029c268694149993e3ee", "sha256": "3fd873c295d27e4b2339f69b9074e5e4d1ee4dd7ab89d78c97c12d4660f9aac4" }, "downloads": -1, "filename": "pyagram-1.4.0-py3.5.egg", "has_sig": false, "md5_digest": "bcef1a4dcbc6029c268694149993e3ee", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 14028, "upload_time": "2016-07-31T13:13:25", "url": "https://files.pythonhosted.org/packages/46/21/f3f5b25496bfefa5689d00ad843aff1215c54b86d164ded3262dba1a883a/pyagram-1.4.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "15e11b79378f1d4bacaeeccc31adacad", "sha256": "ec967f45c11368c4c36123f0963ef45841df7c2e6722c1db23440d9265da5123" }, "downloads": -1, "filename": "pyagram-1.4.0.tar.gz", "has_sig": false, "md5_digest": "15e11b79378f1d4bacaeeccc31adacad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6278, "upload_time": "2016-07-31T13:13:18", "url": "https://files.pythonhosted.org/packages/a0/9c/16350159ae0456fa9acd4d7c966ac305ac18b9ccb74256ae7fb68b432160/pyagram-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "6eaa74066c85e03aa2d56c9a6510ab7c", "sha256": "b2d19094724c29082686ffea1303504eb5b613c2d5fb64fea0b73bda751c920a" }, "downloads": -1, "filename": "pyagram-1.4.1.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "6eaa74066c85e03aa2d56c9a6510ab7c", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 10770, "upload_time": "2016-07-31T13:23:00", "url": "https://files.pythonhosted.org/packages/9f/b3/985eda83a378ae9f7e46aa65461b706efef72fbe11dfc87350d525954219/pyagram-1.4.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "3104f1b7ee6660c27e27e592e9ae82ca", "sha256": "25f6faa5d5de03393ffdb1d43fe50d03567d2c433d46c73b2f7aa1ef1e9c9e21" }, "downloads": -1, "filename": "pyagram-1.4.1-py3.5.egg", "has_sig": false, "md5_digest": "3104f1b7ee6660c27e27e592e9ae82ca", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 14050, "upload_time": "2016-07-31T13:23:04", "url": "https://files.pythonhosted.org/packages/95/95/09575fe7deffdf1096b6bf3e7834e2137a41de7abbbc75ee34ad19c0f464/pyagram-1.4.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "27572f606abc52d2a544911e9d7085b0", "sha256": "7adb66ea0a6d06a0162c92f91f492f7c3679d50ca1c12718144a3671ee0cb7b0" }, "downloads": -1, "filename": "pyagram-1.4.1.tar.gz", "has_sig": false, "md5_digest": "27572f606abc52d2a544911e9d7085b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6282, "upload_time": "2016-07-31T13:22:57", "url": "https://files.pythonhosted.org/packages/df/ba/db77ec649b57fa65e5166dc063cf22537629e435da4d0b41e1a2664e15a1/pyagram-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "9a28806b23dd9cb3f763011fcaf3d494", "sha256": "83c57c931f78831680659983689d1826a98b2f2193ad8d6ff584de8bf8ffa6d2" }, "downloads": -1, "filename": "pyagram-1.4.2.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "9a28806b23dd9cb3f763011fcaf3d494", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 10835, "upload_time": "2016-08-02T04:12:19", "url": "https://files.pythonhosted.org/packages/f0/e0/3a29252b3c1b39de33a50e98f01798560c4cf1a743aa0986768ba99fd54f/pyagram-1.4.2.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "0f1616adf7df6103a9c7d13dabffa170", "sha256": "3fb86663ae2fe2e2eb7d9a2dfa6aa1840269df630815f2a39012d7f34a15a707" }, "downloads": -1, "filename": "pyagram-1.4.2-py3.5.egg", "has_sig": false, "md5_digest": "0f1616adf7df6103a9c7d13dabffa170", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 14109, "upload_time": "2016-08-02T04:12:22", "url": "https://files.pythonhosted.org/packages/a7/2d/43b4f1e3b6c630a404314278acab89e25671bfff469d385e2b68cb5ef0bf/pyagram-1.4.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "30f025175fdbf1e2cbd27eda0a6d4de3", "sha256": "63dfb42d16bc0b2d61d98af343a1cac9a811d765b243283f4344c8cb7027e6ca" }, "downloads": -1, "filename": "pyagram-1.4.2.tar.gz", "has_sig": false, "md5_digest": "30f025175fdbf1e2cbd27eda0a6d4de3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6315, "upload_time": "2016-08-02T04:12:16", "url": "https://files.pythonhosted.org/packages/a0/fe/10fbebf2856301559c6e687191e04d783a64b8cb687a8aa5081362fa0e10/pyagram-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "5516de7ab3feb0f1064245b7b346fac6", "sha256": "26968a590f6bd6df8484d2964df7c12466fc0ad3ee3e651be6ebe423150de3d2" }, "downloads": -1, "filename": "pyagram-1.4.3.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "5516de7ab3feb0f1064245b7b346fac6", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 11125, "upload_time": "2016-08-06T07:54:01", "url": "https://files.pythonhosted.org/packages/be/06/eb48b1b61641174a08f248e3bccda8765668d9f85650e4d3591b4234fe1f/pyagram-1.4.3.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "6b08f81902ec77edbefe4729fa809c99", "sha256": "ed406864fa78d35121d81011e13ded7f5a5cbfa20f4f274dfef4a3f7a64e61e6" }, "downloads": -1, "filename": "pyagram-1.4.3-py3.5.egg", "has_sig": false, "md5_digest": "6b08f81902ec77edbefe4729fa809c99", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 14447, "upload_time": "2016-08-06T07:54:04", "url": "https://files.pythonhosted.org/packages/ab/0a/949dd28e7e2bac61bc2133ece1933ee5001f30d2f98192e7338f081ade34/pyagram-1.4.3-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "35a7fdaa673e3d1d241fa21bd21000e7", "sha256": "883507cd58ca6c12453aa86dcc88355fe3906228d3a893a84af5330cb98f255a" }, "downloads": -1, "filename": "pyagram-1.4.3.tar.gz", "has_sig": false, "md5_digest": "35a7fdaa673e3d1d241fa21bd21000e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6442, "upload_time": "2016-08-06T07:53:58", "url": "https://files.pythonhosted.org/packages/55/c9/a0d1b3bf501688ae53489f6c149517189a01beb5d0b7972b1e63a5f3fe3f/pyagram-1.4.3.tar.gz" } ] }, "urls": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "5516de7ab3feb0f1064245b7b346fac6", "sha256": "26968a590f6bd6df8484d2964df7c12466fc0ad3ee3e651be6ebe423150de3d2" }, "downloads": -1, "filename": "pyagram-1.4.3.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "5516de7ab3feb0f1064245b7b346fac6", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 11125, "upload_time": "2016-08-06T07:54:01", "url": "https://files.pythonhosted.org/packages/be/06/eb48b1b61641174a08f248e3bccda8765668d9f85650e4d3591b4234fe1f/pyagram-1.4.3.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "6b08f81902ec77edbefe4729fa809c99", "sha256": "ed406864fa78d35121d81011e13ded7f5a5cbfa20f4f274dfef4a3f7a64e61e6" }, "downloads": -1, "filename": "pyagram-1.4.3-py3.5.egg", "has_sig": false, "md5_digest": "6b08f81902ec77edbefe4729fa809c99", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 14447, "upload_time": "2016-08-06T07:54:04", "url": "https://files.pythonhosted.org/packages/ab/0a/949dd28e7e2bac61bc2133ece1933ee5001f30d2f98192e7338f081ade34/pyagram-1.4.3-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "35a7fdaa673e3d1d241fa21bd21000e7", "sha256": "883507cd58ca6c12453aa86dcc88355fe3906228d3a893a84af5330cb98f255a" }, "downloads": -1, "filename": "pyagram-1.4.3.tar.gz", "has_sig": false, "md5_digest": "35a7fdaa673e3d1d241fa21bd21000e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6442, "upload_time": "2016-08-06T07:53:58", "url": "https://files.pythonhosted.org/packages/55/c9/a0d1b3bf501688ae53489f6c149517189a01beb5d0b7972b1e63a5f3fe3f/pyagram-1.4.3.tar.gz" } ] }