{ "info": { "author": "Joshua Downer", "author_email": "joshua.downer@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development", "Topic :: Software Development :: Version Control", "Topic :: Utilities" ], "description": "==================================================\nGIST\n==================================================\n\n'gist' is a command line interface for working with github gists. It provides\nseveral methods for inspecting a users gists, and the ability to easily create\nthem.\n\n.. image:: https://travis-ci.org/jdowner/gist.svg?branch=master\n :target: https://travis-ci.org/jdowner/gist\n\nInstallation\n--------------------------------------------------\n\nTo install 'gist' you can either use,\n\n::\n\n $ sudo pip install python-gist\n\nor,\n\n::\n\n $ sudo python setup.py install\n\nor,\n\n::\n\n $ sudo make install\n\nThis will install the python package 'gist' to the standard location for your\nsystem and copy the license, readme, and some shell scripts into\n/usr/share/gist.\n\nThere are also script to provide tab-completion for bash, fish, and zsh shells.\nThe scripts are installed in /usr/local/share/gist.\n\nThere are 3 different scripts for tab-completion in bash: gist.bash,\ngist-fzf.bash, and gist-fzsl.bash. The first, provides simple tab completion and\ncan be enable by adding the following to your .bashrc file,\n\n::\n\n source /usr/local/share/gist/gist.bash\n\nThe other scripts, gist-fzf.bash and fist-fzsl.bash, provide fuzzy matching of\ngists using an ncurses interface (NB: these scripts require fzf and fzsl,\nrespectively, to be installed -- see Dependencies).\n\nThe gist.fish script provides tab completion for the fish shell, and should be\ncopied to ~/.config/fish/completions.\n\nThe gist.zsh script provides tab completion for the zsh shell, and should be\ncopied to ~/.zsh as _gist. If not already in your ~/.zshrc file, you should add\n\n::\n\n fpath=(${HOME}/.zsh $fpath)\n\nTo check that 'gist' is operating correctly, you can run the unit tests with,\n\n::\n\n $ python setup.py test\n\n\nGetting started\n--------------------------------------------------\n\n'gist' requires a personal access token for authentication. To create a token,\ngo to https://github.com/settings/tokens. The token needs to then be added\nto a 'gist' configuration file that should have the form,\n\n::\n\n [gist]\n token: \n editor: \n\nThe editor field is optional. If the default editor is specified through some\nother mechanism 'gist' will try to infer it. Otherwise, you can use the config\nfile to ensure that 'gist' uses the editor you want it to use.\n\nThe configuration file must be in one of the following,\n\n::\n\n ${XDG_DATA_HOME}/gist\n ${HOME}/.config/gist\n ${HOME}/.gist\n\nIf more than one of these files exist, this is also the order of preference,\ni.e. a configuration that is found in the ``${XDG_DATA_HOME}`` directory will be\ntaken in preference to ``${HOME}/.config/gist``.\n\nAlso, 'gist' assumes that you have set up your github account to use SSH keys so\nthat you can access your repositories without needing to provide a password.\nHere__ is a link on setting up SSH keys with github.\n\n__ https://help.github.com/articles/connecting-to-github-with-ssh/\n\n\nUsage\n--------------------------------------------------\n\n'gist' is intended to make it easy to manage and use github gists from the\ncommand line. There are several commands available:\n\n::\n\n gist create - creates a new gist\n gist edit - edit the files in your gist\n gist description - updates the description of your gist\n gist list - prints a list of your gists\n gist clone - clones a gist\n gist delete - deletes a gist or list of gists from github\n gist files - prints a list of the files in a gist\n gist archive - downloads a gist and creates a tarball\n gist content - prints the content of the gist to stdout\n gist info - prints detailed information about a gist\n gist version - prints the current version\n\n\n**gist create**\n\nMost of the 'gist' commands are pretty simple and limited in what they can do.\n'gist create' is a little different and offers more flexibility in how the user\ncan create the gist.\n\nIf you have a set of existing files that you want to turn into a gist,\n\n::\n\n $ gist create \"divide et impera\" foo.txt bar.txt\n\nwhere the quoted string is the description of the gist. Or, you may find it\nuseful to create a gist from content on your clipboard (say, using xclip),\n\n::\n\n $ xclip -o | gist create \"ipsa scientia potestas est\"\n\nAnother option is to pipe the input into 'gist create' and have it automatically\nput the content on github,\n\n::\n\n $ echo $(cat) | gist create \"credo quia absurdum est\"\n\nFinally, you can just call,\n\n::\n\n $ gist create \"a posse ad esse\"\n\nwhich will launch your default editor (defined by the EDITOR environment\nvariable).\n\nIn addition to creating gists using the above methods, it is also possible to\nencrypt a gist if you have gnupg installed. Any of the above methods can be used\nto create encrypted gists by simply adding the --encrypt flag to invocation.\nFor example,\n\n::\n\n $ gist create \"arcana imperii\" --encrypt\n\nwill open the editor allowing you to create the content of the gist, which is\nthen encrypted and added to github. See the Configuration section for\ninformation on how to enable gnupg support.\n\n\n**gist edit**\n\nYou can edit your gists directly with the 'edit' command. This command will\nclone the gist to a temporary directory and open up the default editor (defined\nby the EDITOR environment variable) to edit the files in the gist. When the\neditor is exited the user is prompted to commit the changes, which are then\npushed back to the remote.\n\n**gist description**\n\nYou can update the description of your gist with the 'description' command.\nYou need to supply the gist ID and the new description. For example -\n\n::\n\n $ gist description e1f5e95a1705cbfde144 \"This is a new description\"\n\n\n**gist list**\n\nReturns a list of your gists. The gists are returned as,\n\n::\n\n 2b1823252e8433ef8682 - mathematical divagations\n a485ee9ddf6828d697be - notes on defenestration\n 589071c7a02b1823252e + abecedarian pericombobulations\n\nThe first column is the gists unique identifier; The second column indicates\nwhether the gist is public ('+') or private ('-'); The third column is the\ndescription in the gist, which may be empty.\n\n\n**gist clone**\n\nClones a gist to the current directory. This command will clone any gist based\non its unique identifier (i.e. not just the users) to the current directory.\n\n\n**gist delete**\n\nDeletes the specified gists from github.\n\n\n**gist files**\n\nReturns a list of the files in the specified gist.\n\n\n**gist archive**\n\nDownloads the specified gist to a temporary directory and adds it to a tarball,\nwhich is then moved to the current directory.\n\n\n**gist content**\n\nWrites the content of each file in the specified gist to the terminal, e.g.\n\n::\n\n $ gist content c971fca7997aed65ddc9\n foo.txt:\n this is foo\n\n\n bar.txt:\n this is bar\n\n\nFor each file in the gist the first line is the name of the file followed by a\ncolon, and then the content of that file is written to the terminal.\n\nIf a filename is given, only the content of the specified filename will be\nprinted.\n\n::\n\n $ gist content de42344a4ecb6250d6cea00d9da6d83a file1\n content of file 1\n\n\nIf the contents of the gist is encrypted, it can be viewed in its decrypted\nform by adding the --decrypt flag, e.g.\n\n::\n\n $ gist content --decrypt 8fe557fb3771aa74edfd\n foo.txt.asc (decrypted):\n this is a secret\n\n\nSee the Configuration section for information on how to enable gnupg support.\n\n\n**gist info**\n\nThis command provides a complete dump of the information about the gist as a\nJSON object. It is mostly useful for debugging.\n\n\n**gist version**\n\nSimply prints the current version.\n\n\nConfiguration\n--------------------------------------------------\n\nThere are several parameters that can be added to a configuration file to\ndetermine the behavior of gist. The configuration file itself is expected to\nbe one of the following paths,\n\n::\n\n ${HOME}/.gist\n ${HOME}/.config/gist\n ${XDG_DATA_HOME}/gist\n\nThe configuration file follows the .ini style. The following is an example,\n\n::\n\n [gist]\n token: dde7b84d1e0edf7454ab354934b6ab36b01bf00f\n editor: /usr/bin/vim\n gnupg-homedir: /home/user/.gnupg\n gnupg-fingerprint: 179F9650D9FC1BFE391620B4B13A7829D8DE8623\n delete-tempfiles: False\n\nThe only essential field in the configuration file is the token. This is the\nauthentication token from github that grants gist permission to access your\ngists. The editor is the editor to use if the EDITOR environment is not set or\nyou wish to use a different editor. 'gnupg-homedir' is the directory where your\ngnupg data are stored, and 'gnupg-fingerprint' is the fingerprint of the key to\nuse to encrypt data in your gists. Both gnupg fields are required to support\nencryption/decryption.\n\nThe 'delete-tempfiles' option is used when gists are created from an editor.\nThe editor writes its contents to a temporary file, which is deleted by\ndefault. The default behavior can be overridden by using the 'delete-tempfiles'\nflag.\n\n\nDependencies\n--------------------------------------------------\n\n'gist' currently depends on,\n\n* docopts\n* >=python-gnupg-0.4.1\n* requests\n* simplejson\n\nThe following packages are required for testing,\n\n* responses\n* tox\n* pep8\n\nOptional packages (for fuzzy matching)\n\n* fzf (https://github.com/junegunn/fzf)\n* fzsl (https://github.com/jsbronder/fzsl)\n\n\nContributors\n--------------------------------------------------\n\nThank you to the following people for contributing to 'gist'!\n\n* Eren Inan Canpolat (https://github.com/canpolat)\n* Kaan Gen\u00e7 (https://github.com/SeriousBug)\n* Eric James Michael Ritz (https://github.com/ejmr)\n* Karan Parikh (https://github.com/karanparikh)\n* Konstantin Krastev (https://github.com/grizmin)\n* Brandon Davidson (https://github.com/brandond)\n* jq170727 (https://github.com/jq170727)\n* jsbronder (https://github.com/jsbronder)\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/jdowner/gist", "keywords": "gist github git", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "python-gist", "package_url": "https://pypi.org/project/python-gist/", "platform": "Unix", "project_url": "https://pypi.org/project/python-gist/", "project_urls": { "Homepage": "http://github.com/jdowner/gist" }, "release_url": "https://pypi.org/project/python-gist/0.7.0/", "requires_dist": [ "docopt", "python-gnupg (>=0.4.1)", "requests", "simplejson", "pycodestyle; extra == 'dev'", "responses; extra == 'dev'" ], "requires_python": "", "summary": "Manage github gists", "version": "0.7.0" }, "last_serial": 5221940, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "7346e5594d2d2056b02c77faf55914f2", "sha256": "d69fae38d8934c8f539d464b782fccde9f21a6a76a7943095a8816b36599edd9" }, "downloads": -1, "filename": "python-gist-0.1.0.tar.gz", "has_sig": false, "md5_digest": "7346e5594d2d2056b02c77faf55914f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8034, "upload_time": "2015-02-21T14:25:09", "url": "https://files.pythonhosted.org/packages/32/16/01a1de29695587a937cbf7e2ad3357848be19b4b2ddae1a980938e44e3a1/python-gist-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "6320a0cf0ad3f1e8e28273459dca6167", "sha256": "cfdc4d5c63442967042b6c42918900202a81c844b816a94a63910952be8b8d4b" }, "downloads": -1, "filename": "python-gist-0.1.1.tar.gz", "has_sig": false, "md5_digest": "6320a0cf0ad3f1e8e28273459dca6167", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8643, "upload_time": "2015-02-21T14:28:02", "url": "https://files.pythonhosted.org/packages/af/ce/dc2011e4feb63f0917a123adf022d702b6a59c67fa91a4d385ce813c6068/python-gist-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "a8c4d7e229503fb592982e854ce9e975", "sha256": "105108e5749a364aa3664dd70bb0b46b69e4c47784e831c29ca2e86e988dff32" }, "downloads": -1, "filename": "python-gist-0.1.10.tar.gz", "has_sig": false, "md5_digest": "a8c4d7e229503fb592982e854ce9e975", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9582, "upload_time": "2015-02-21T22:47:55", "url": "https://files.pythonhosted.org/packages/3d/63/c0259c1d803b752930f39349fff66d16b84833423642ac89f6cd9b5b2e87/python-gist-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "88a5748c806465649524583b9482a27b", "sha256": "6080d0503dd905405cc84165417850026ee90877aa7d25e95e2b75734fd6c9bf" }, "downloads": -1, "filename": "python-gist-0.1.11.tar.gz", "has_sig": false, "md5_digest": "88a5748c806465649524583b9482a27b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10526, "upload_time": "2015-03-07T15:07:53", "url": "https://files.pythonhosted.org/packages/e5/02/88abccfe6d7558d6319051c8ca2a8346803ec100006091095d8471abc10b/python-gist-0.1.11.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "e7ffa44555d6c1ebaea24b2ea73b53e1", "sha256": "98d5b3135f7f2115bae5855bad52790c9572b4303deea83dbfc1ded0cf205f0b" }, "downloads": -1, "filename": "python-gist-0.1.2.tar.gz", "has_sig": false, "md5_digest": "e7ffa44555d6c1ebaea24b2ea73b53e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8645, "upload_time": "2015-02-21T14:29:47", "url": "https://files.pythonhosted.org/packages/1a/a9/6c990d8c545f05f8c371e11e675ce918ef50d34c2352edb4a2381c4db768/python-gist-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "dbe3f8d08812fda78477ea57ad15f385", "sha256": "a7fffe52e0c431f6a7fb67fab8eb7c46813e709a510eb87ba3a8ff50d4e4e5b4" }, "downloads": -1, "filename": "python-gist-0.1.3.tar.gz", "has_sig": false, "md5_digest": "dbe3f8d08812fda78477ea57ad15f385", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9107, "upload_time": "2015-02-21T14:34:17", "url": "https://files.pythonhosted.org/packages/8e/c0/2c239e8393d7c38561ec1188d74a146984483ba12a107d5e7c3c66202a20/python-gist-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "7cca3b83d99be982182542473238fe72", "sha256": "d26ad3e6bdbbe97973240181ab36c08f336980f51d01852d1a54c997730aa293" }, "downloads": -1, "filename": "python-gist-0.1.4.tar.gz", "has_sig": false, "md5_digest": "7cca3b83d99be982182542473238fe72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9069, "upload_time": "2015-02-21T14:47:20", "url": "https://files.pythonhosted.org/packages/98/bc/3a1bd2b9c559940e3d5886092bea8f13e8c68ab73a6b45236f5eb6af62ef/python-gist-0.1.4.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "54d6ef62ee97fbae1162baf1abe8c0ac", "sha256": "0e287d1aa3535aaa1f0b0087989f7bc193ffa3fbd4a990bcbd28d71b1a0a9962" }, "downloads": -1, "filename": "python-gist-0.1.7.tar.gz", "has_sig": false, "md5_digest": "54d6ef62ee97fbae1162baf1abe8c0ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9100, "upload_time": "2015-02-21T14:55:50", "url": "https://files.pythonhosted.org/packages/80/d9/e7ea38964736d059cbe06b5dcd65acdc12d7bb834f5342188b16bcc97251/python-gist-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "9254212babd4832b7e09c28c761d2c98", "sha256": "a332fc31ad8c4232b91c39d13de1fc2e0db0b9c9adca4677fc39e03bae044210" }, "downloads": -1, "filename": "python-gist-0.1.8.tar.gz", "has_sig": false, "md5_digest": "9254212babd4832b7e09c28c761d2c98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9098, "upload_time": "2015-02-21T14:56:48", "url": "https://files.pythonhosted.org/packages/31/54/1ebf85ff82de2add8a6e9a3b11d675e8224a611faf49c7e7710e44a86e05/python-gist-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "ab24b489b171fa99466998ac4e5bcf80", "sha256": "62ce74142be729df0638ce399fbab31ff880b776a9d5c933768b463516b63b3d" }, "downloads": -1, "filename": "python-gist-0.1.9.tar.gz", "has_sig": false, "md5_digest": "ab24b489b171fa99466998ac4e5bcf80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9151, "upload_time": "2015-02-21T15:05:31", "url": "https://files.pythonhosted.org/packages/b3/e3/63e919933f23ce4062a631ed03186ddcfa92db4d6f6dc0ead9b92754699b/python-gist-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f5c69ac9c5e8cbbccfb92a5b5c5374cb", "sha256": "3ed1d6e087aa714ca5c2377d1a0f97a33e54de30f94894abc19e7238106b73f7" }, "downloads": -1, "filename": "python-gist-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f5c69ac9c5e8cbbccfb92a5b5c5374cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15605, "upload_time": "2015-03-18T23:59:45", "url": "https://files.pythonhosted.org/packages/04/41/3876aaa4ca88167dddc4f7e9b4c037d640ecd6524b03a28d3016496f4f36/python-gist-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "44ade230399fe0cb8da1706ae28c1d2e", "sha256": "de1fba9da7996c5f287df9b65df3753e27c66b7b6287a8cbf6cf82bf9e164f21" }, "downloads": -1, "filename": "python-gist-0.2.1.tar.gz", "has_sig": false, "md5_digest": "44ade230399fe0cb8da1706ae28c1d2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15637, "upload_time": "2015-03-19T10:38:00", "url": "https://files.pythonhosted.org/packages/bf/17/7a0ece4c0f936538c22f9fb76b62006c84b9e198655dfacff46d1b18fea3/python-gist-0.2.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "47b0b5f32501d0bf0ae4a8a0810a5917", "sha256": "9e09e8b2c889cedaed75369e11bed4b1bd98b3381a457a07a90409b0b9a3621b" }, "downloads": -1, "filename": "python-gist-0.3.2.tar.gz", "has_sig": false, "md5_digest": "47b0b5f32501d0bf0ae4a8a0810a5917", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16468, "upload_time": "2015-04-04T08:32:35", "url": "https://files.pythonhosted.org/packages/8d/c5/6b5bbcac2320d0098e2ce348d0c88789d711d0aaf29af87d2b9d573789d2/python-gist-0.3.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1298deab62fb97cd5fdf55cb80652f57", "sha256": "471217fb2f9c62fb29d786a8cd8cc2b56335485af9857779e9650c7b5e338db8" }, "downloads": -1, "filename": "python-gist-0.4.0.tar.gz", "has_sig": false, "md5_digest": "1298deab62fb97cd5fdf55cb80652f57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16690, "upload_time": "2016-08-11T11:34:08", "url": "https://files.pythonhosted.org/packages/61/4d/4040646ce151364d9601be419de973a6203c6ec7b4fda66c6631a08b82ab/python-gist-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "c3bb628e13c6d456cfc1de87edcfd860", "sha256": "81657420614631ce3e6ecab4614e3a7d2ef55300a9ca6d08646cd06e73812149" }, "downloads": -1, "filename": "python-gist-0.4.1.tar.gz", "has_sig": false, "md5_digest": "c3bb628e13c6d456cfc1de87edcfd860", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16822, "upload_time": "2016-08-21T13:15:15", "url": "https://files.pythonhosted.org/packages/c1/0f/8a11cce69f450b60f8d705e7556da34929563e904a1222ee5b7c5e1a4058/python-gist-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "9c31064e93f2415d7b168115e65ec8c8", "sha256": "a62bd995c34b82fb5908dfd4da06ca63e490da22c1fcec76f4bca75f480b0c96" }, "downloads": -1, "filename": "python-gist-0.4.2.tar.gz", "has_sig": false, "md5_digest": "9c31064e93f2415d7b168115e65ec8c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16844, "upload_time": "2016-12-01T15:13:26", "url": "https://files.pythonhosted.org/packages/3b/f8/9c89e13db9107da6ea7a0dec5cae6c36bf6733fc873331f0ceec9973e64e/python-gist-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "85a7440a62b2528b6b8a5eae97a7e218", "sha256": "09aa80313189078a79c457abd12e52da48ae575f1d69b53ab4cadc396e241122" }, "downloads": -1, "filename": "python-gist-0.4.3.tar.gz", "has_sig": false, "md5_digest": "85a7440a62b2528b6b8a5eae97a7e218", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16928, "upload_time": "2016-12-04T14:44:22", "url": "https://files.pythonhosted.org/packages/41/66/b133effb2b6932a1044ab018597c39c9864888e2f397fd4e10b3b77bad02/python-gist-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "c528efaf6d5bf2ae22c91dd7ca77ea18", "sha256": "4570f89c8d3bd02b75eab26067b2e41623a5af2b7f24de333942c39a05bb0946" }, "downloads": -1, "filename": "python-gist-0.4.4.tar.gz", "has_sig": false, "md5_digest": "c528efaf6d5bf2ae22c91dd7ca77ea18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16958, "upload_time": "2016-12-10T11:50:07", "url": "https://files.pythonhosted.org/packages/8b/b0/109fed6135fce06578e052f362a9253462fd558b33837fa0fa20847d8fcc/python-gist-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "febc7493f554f23ec6743b6b69fba576", "sha256": "053668589e91d83b6706b6791d8b92455ea3ed347a5d497fb0f4163a1f221581" }, "downloads": -1, "filename": "python-gist-0.4.5.tar.gz", "has_sig": false, "md5_digest": "febc7493f554f23ec6743b6b69fba576", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16970, "upload_time": "2016-12-10T11:53:16", "url": "https://files.pythonhosted.org/packages/fd/24/7b716d70fe1420b24dbbe7e693d05baefcdfe9897de28dda24b693345c06/python-gist-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "373d1661ccf5d52db037794e89f60e1a", "sha256": "ff89a034de6fbabd9e8df7f3d9625122a30f6208f6eb65862f1ec07c3d08690c" }, "downloads": -1, "filename": "python-gist-0.4.6.tar.gz", "has_sig": false, "md5_digest": "373d1661ccf5d52db037794e89f60e1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17251, "upload_time": "2017-01-12T13:14:59", "url": "https://files.pythonhosted.org/packages/80/82/09f47823c0162cea94738f5670874ee5d8231e2f7487c75a3ef835adb5f5/python-gist-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "f50255d5f269b6d19c9d30542cdb087c", "sha256": "f2fb022071fc26466f95ec69024d45fc83a6b296916ced73a2c26ac1f8994ef0" }, "downloads": -1, "filename": "python-gist-0.4.7.tar.gz", "has_sig": false, "md5_digest": "f50255d5f269b6d19c9d30542cdb087c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17245, "upload_time": "2017-01-12T13:24:31", "url": "https://files.pythonhosted.org/packages/3a/5f/973e789f7e368f2b7c6317d26a6159d6e79bae296a30f810121deba33b46/python-gist-0.4.7.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "86d9be98146a582ba1b65a732d28342e", "sha256": "cbbd9c07484931bb45ca46bbf57121d3badfeef7bf9892f571cf02ef7511fdd6" }, "downloads": -1, "filename": "python_gist-0.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "86d9be98146a582ba1b65a732d28342e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24507, "upload_time": "2017-08-13T10:52:43", "url": "https://files.pythonhosted.org/packages/bf/16/d57b27ca93c5f75963aaea81ee5ae7b6458070289f932073f985e9d36286/python_gist-0.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8acaed7ba9fe8b035946b2636b4f9d80", "sha256": "ab43630c010a92fc5da5a6c3bf73552fac4fc0116f5ee969873fdbb74a9e39f1" }, "downloads": -1, "filename": "python-gist-0.5.0.tar.gz", "has_sig": false, "md5_digest": "8acaed7ba9fe8b035946b2636b4f9d80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17399, "upload_time": "2017-08-13T10:52:45", "url": "https://files.pythonhosted.org/packages/0e/b6/7899da9281b5b778935c74e416367091dd1cdaf8187b261d45ffd80aec87/python-gist-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "a44b4c815ccf29d7e1acaca946bd46d1", "sha256": "1820a1176f93ff2619c3e03547ad2250667f81069fe6505dd1c103875c6dacec" }, "downloads": -1, "filename": "python_gist-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a44b4c815ccf29d7e1acaca946bd46d1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24508, "upload_time": "2017-08-13T10:59:02", "url": "https://files.pythonhosted.org/packages/97/54/be03634e1140a2f6a3432500d37037b84e33694d6cb7cfd1a9159d3d8dcc/python_gist-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ded1e28708649bdb391e6a9d9cfb713a", "sha256": "6c610ca29db855a676813ed23a42ae58774064267a091f1e0c3bae8286b230c6" }, "downloads": -1, "filename": "python-gist-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ded1e28708649bdb391e6a9d9cfb713a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17388, "upload_time": "2017-08-13T10:59:03", "url": "https://files.pythonhosted.org/packages/1e/31/bfe91803d1157af72dd57a9caa8f534d00b921ce51f6189971a5e81c842e/python-gist-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "0fa9bb35d4d6ce7dc13b9016ee4f90d8", "sha256": "a8fdf5dab20102f562883e7ec0a7f5422fb9b92965e48a933974c7748e69188c" }, "downloads": -1, "filename": "python_gist-0.5.2-py2-none-any.whl", "has_sig": false, "md5_digest": "0fa9bb35d4d6ce7dc13b9016ee4f90d8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24592, "upload_time": "2017-10-29T13:54:57", "url": "https://files.pythonhosted.org/packages/1c/db/b05f9db67faa1d333680d92acaabeb8f964f5435da0af5246d18880914e0/python_gist-0.5.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "984a115ad170b3b2b79585420be6e6bc", "sha256": "d1b5923d2f581c82b937af828d140c8dd43f7d71e421d969264afdb1db558bc7" }, "downloads": -1, "filename": "python-gist-0.5.2.tar.gz", "has_sig": false, "md5_digest": "984a115ad170b3b2b79585420be6e6bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17466, "upload_time": "2017-10-29T13:55:00", "url": "https://files.pythonhosted.org/packages/90/7e/161225357681d15754d3a86385b1fc0df858f00e4f6520c1d9b82ac0b15e/python-gist-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "bfd66c00bb5318ba8d789d283164dbf4", "sha256": "d2f1683cc837be538664f2a147a1f3c3478f681aff316ba70c24fc4678026816" }, "downloads": -1, "filename": "python_gist-0.5.3-py2-none-any.whl", "has_sig": false, "md5_digest": "bfd66c00bb5318ba8d789d283164dbf4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24598, "upload_time": "2017-11-03T13:54:19", "url": "https://files.pythonhosted.org/packages/aa/5f/411e5c38ee1a88444cc0bf7188b39eff0336ac7994644a661613030fcf38/python_gist-0.5.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "894f64dfc40b15415b07b7b2acc98568", "sha256": "23f02a8831722763e35501a7af762c46a08a5c8262f034b79072655bc9e2de12" }, "downloads": -1, "filename": "python-gist-0.5.3.tar.gz", "has_sig": false, "md5_digest": "894f64dfc40b15415b07b7b2acc98568", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17492, "upload_time": "2017-11-03T13:54:20", "url": "https://files.pythonhosted.org/packages/55/65/d43c28aa0fc80de6effcacda97eeb5ba83723181e4b414126c8780bd7e59/python-gist-0.5.3.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0538da88789deeee919b3313529ec513", "sha256": "aca501037c0b232f10a326856588d55f774ffb34d69087151588e8ff0a577c88" }, "downloads": -1, "filename": "python_gist-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "0538da88789deeee919b3313529ec513", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24665, "upload_time": "2017-11-05T20:22:49", "url": "https://files.pythonhosted.org/packages/54/eb/3041ce139441d847dcef2349a164ba6077b593f6f4ca6a434565d3157ba0/python_gist-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21fe92c0ec077458c6a4416c861a97df", "sha256": "1b74a31d2cb3c44bb10a9fbba1663642662b0fbe56b069a0dbb906ea7adf29b1" }, "downloads": -1, "filename": "python-gist-0.6.0.tar.gz", "has_sig": false, "md5_digest": "21fe92c0ec077458c6a4416c861a97df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17543, "upload_time": "2017-11-05T20:22:51", "url": "https://files.pythonhosted.org/packages/5e/14/eaf9dc71717fd049ec3e9feb240569dec74be2852c023465e19564c1704b/python-gist-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "c440a324bee462973cc4bc2baa83fca0", "sha256": "810a9eaac3fc5e525c760ca711f3a04727441a7fc6abaa366481f470999b0a72" }, "downloads": -1, "filename": "python_gist-0.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "c440a324bee462973cc4bc2baa83fca0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 19977, "upload_time": "2018-05-08T23:12:48", "url": "https://files.pythonhosted.org/packages/20/1a/39f14f4aea5486f17fa49917773a93d5f24eea75d024a33ca82ac02a4f9d/python_gist-0.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae499ca5ce9f1400e7029d044d95f2f1", "sha256": "36bee847666946cb13ddafbc2d199559ed545df007956792c8fc385081b62dc0" }, "downloads": -1, "filename": "python_gist-0.6.1-py3.6.egg", "has_sig": false, "md5_digest": "ae499ca5ce9f1400e7029d044d95f2f1", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 24362, "upload_time": "2019-03-31T10:06:20", "url": "https://files.pythonhosted.org/packages/8f/64/81523a20fe71ad39c700f6f267f600927c939cbcac677fd17bef8f2e87cc/python_gist-0.6.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "ce880e3efde7f91e8f3a5203fda2ebf5", "sha256": "00e72790f9f2b618e4c5bd298164d7fe3be34b1437dc15a8d2ba20bc43d4040e" }, "downloads": -1, "filename": "python-gist-0.6.1.tar.gz", "has_sig": false, "md5_digest": "ce880e3efde7f91e8f3a5203fda2ebf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17605, "upload_time": "2018-05-08T23:12:49", "url": "https://files.pythonhosted.org/packages/1d/5f/67753becc0da517b4bd47cdc63aaa3f7c14e785d4be001ad5eee35ff73d6/python-gist-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "2a2d39c44881024cb81a0a71286e9f64", "sha256": "4ab3ea3374e58032e727f4524f60291b57f43303961efd61a100231954774d6d" }, "downloads": -1, "filename": "python_gist-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2a2d39c44881024cb81a0a71286e9f64", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24771, "upload_time": "2019-03-31T10:06:16", "url": "https://files.pythonhosted.org/packages/d1/15/b97c3fe27cc7ea3c8fb5483a966cb2a5772101ca79ba94055fa1b186c415/python_gist-0.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46781dc9921a9b60e80d9684992eae33", "sha256": "19e970cd5f1d43314c354ef68cf16207f7ee18596acf3f621eb1de10e0f4fee9" }, "downloads": -1, "filename": "python-gist-0.6.2.tar.gz", "has_sig": false, "md5_digest": "46781dc9921a9b60e80d9684992eae33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20309, "upload_time": "2019-03-31T10:06:18", "url": "https://files.pythonhosted.org/packages/9c/9a/3dc330ac8b16753a8daae6ab39374a24ee6dfa6150d573410e86c9017221/python-gist-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "85ec8957e935ee0238331b0382981b5f", "sha256": "c3d71b9fa450bc752079ad797ecf948096fca16f9a5efbca4775e6cdabefcfd5" }, "downloads": -1, "filename": "python_gist-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "85ec8957e935ee0238331b0382981b5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25294, "upload_time": "2019-05-03T13:43:55", "url": "https://files.pythonhosted.org/packages/fc/d7/3ed8df6e69c570b7caccff191fdc6f6a0288a83e982d1a4dc0b84b8af657/python_gist-0.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fca078b90532e162b1850fbdb848d9d", "sha256": "169faabc673a7ea8903e32a49e14460fdfc6eca58f3206885cfc30286e17d6ec" }, "downloads": -1, "filename": "python-gist-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0fca078b90532e162b1850fbdb848d9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23195, "upload_time": "2019-05-03T13:43:56", "url": "https://files.pythonhosted.org/packages/e8/09/045678896da6c5c274d9138253aab3295e6fdba866fa07adf117bb4a0ef0/python-gist-0.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "85ec8957e935ee0238331b0382981b5f", "sha256": "c3d71b9fa450bc752079ad797ecf948096fca16f9a5efbca4775e6cdabefcfd5" }, "downloads": -1, "filename": "python_gist-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "85ec8957e935ee0238331b0382981b5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25294, "upload_time": "2019-05-03T13:43:55", "url": "https://files.pythonhosted.org/packages/fc/d7/3ed8df6e69c570b7caccff191fdc6f6a0288a83e982d1a4dc0b84b8af657/python_gist-0.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fca078b90532e162b1850fbdb848d9d", "sha256": "169faabc673a7ea8903e32a49e14460fdfc6eca58f3206885cfc30286e17d6ec" }, "downloads": -1, "filename": "python-gist-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0fca078b90532e162b1850fbdb848d9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23195, "upload_time": "2019-05-03T13:43:56", "url": "https://files.pythonhosted.org/packages/e8/09/045678896da6c5c274d9138253aab3295e6fdba866fa07adf117bb4a0ef0/python-gist-0.7.0.tar.gz" } ] }