{ "info": { "author": "Kevin James", "author_email": "KevinJames@thekev.in", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only" ], "description": "LeagueUtils\n===========\n\nLeagueUtils is a set of utilities for interacting with League of Legends data.\nCurrently, it contains the League ISG (Item Set Generator) and an API for item\ngold efficiency.\n\n|version| |build| |coverage| |codacy| |landscape| |requirements|\n\nISG\n---\n\nThe Item Set Generator is designed to build recommended pages for every\nchampion in every viable role. It does this by pulling date from Riot's API and\nfrom some third party sites, determining which build paths work best, and\nupdating your League config with the results.\n\nUsage\n~~~~~\n\nThe most common use case is to run\n\n::\n\n league-utils-isg\n\nto install the item sets for every champion. The item sets will be installed\nbeside the default Riot recommended pages, but if you have manually downloaded\nitem sets into your config directory before, these may be overwritten. Make\nsure any such files have unique names before running this script! (eg. anything\nother than :code:`${CHAMPION}_${ROLE}.json`).\n\nYou can also run something like\n\n::\n\n league-utils-isg --champ Rumble\n\nto load info on only one champion.\n\nGold Efficiency\n---------------\n\nThe Gold Efficiency project automatically calculates the efficiency of all\nitems by looking at the vallue of the stats they provide. This is a common form\nof `theory crafting`_.\n\nThese stats are calculated in real-time, and thus will always be up-to-date\nwhen a new patch is released.\n\nWhen using this data, keep in mind that some aspects of items such as unique\nabilities will not be taken into account in determining the worth of an item.\nThe ignored stats or abilities will be returned in the result.\n\nUsage\n~~~~~\n\nFor now, this is available only as a REST API. You can access the results for\nany item by ID. For example, to get efficiency data on Overlord's Bloodmail,\nrun\n\n::\n\n curl https://league.thekev.in/item/3084/efficiency\n\nSetup\n-----\n\nInstall from PyPI\n~~~~~~~~~~~~~~~~~\n\nSimply run\n\n::\n\n pip3 install league-utils\n\nInstall from Source\n~~~~~~~~~~~~~~~~~~~\n\nAfter cloning this repo or downloading and un{zip,tar}ing the `most recent\nzipfile or tarball`_.\n\n::\n\n python3 setup.py install\n\nRun without installing\n~~~~~~~~~~~~~~~~~~~~~~\n\nThis project can also be run without installation. After cloning this repo or\ndownloading and un{zip,tar}ing the `most recent zipfile or tarball`_, run\n\n::\n\n pip3 install -r requirements.txt\n\nand use the `league-utils.py` script in the root of this folder. Working in a\n`virtualenv`_ is recommended!\n\nNote that when using this method, the sub-project must be provided as an\nargument. For example:\n\n::\n\n league-utils-isg [options] # becomes: ./league-utils.py isg [options]\n\nFrom a binary\n~~~~~~~~~~~~~\n\nPre-compiled binaries are provided for some Operating Systems. If yours is\nsupported, you can grab the binary for the `latest release`_ and just run that\nwithout installing anything. Note that using this method does not allow you to\neasily update your installation.\n\nIf you use a binary to run :code:`league-utils`, make sure you use the\n:code:`league-utils.py` syntax described above.\n\nRunning Your Own Server\n=======================\n\nSo you want to run your own API server, eh? Well, there's a convenient docker\nfile you can use for that, but it does require just a bit of setup.\n\nYou'll need to get yourself API keys for both Riot's API and champion.gg's.\nOnce you do, simply export them to your shell and use docker-compose to run the\nserver. Roughly speaking, you'll want to:\n\n::\n\n export CHAMPIONGG_TOKEN=foo-asdfasdfasdf\n export LEAGUE_TOKEN=bar-fdsafdsafdsa\n git clone git@github.com:thekevjames/league.git\n cd league\n docker-compose build\n docker-compose up\n\nYou may also be interested in using the `official docker image`_. If you are,\nthe following might make your life easier:\n\n::\n\n curl https://raw.githubusercontent.com/TheKevJames/league/master/docker-compose.yml > docker-compose.yml\n mkdir -p api # docker-compose oddity\n docker-compose pull\n docker-compose up -d\n\nDisclaimer\n==========\n\nThis project probably won't make your computer explode, make your girlfriend\nleave you, or get you fired from your job, but I make no guarantees that\nblindly following its advice won't drop your ELO. You've been warned.\n\n.. |build| image:: https://img.shields.io/circleci/project/TheKevJames/league.svg\n :target: https://circleci.com/gh/TheKevJames/league\n.. |codacy| image:: https://img.shields.io/codacy/a8f370e55fc94d72b92b2b6615ce165b.svg\n :target: https://www.codacy.com/app/KevinJames/league\n.. |coverage| image:: https://img.shields.io/coveralls/TheKevJames/league/master.svg\n :target: https://coveralls.io/github/TheKevJames/league?branch=master\n.. |downloads| image:: https://img.shields.io/pypi/dm/league-utils.svg\n :target: https://pypi.python.org/pypi/league-utils\n.. |landscape| image:: https://landscape.io/github/TheKevJames/league/master/landscape.svg?style=flat\n :target: https://landscape.io/github/TheKevJames/league/master\n.. |requirements| image:: https://pyup.io/repos/github/thekevjames/league/shield.svg\n :target: https://pyup.io/repos/github/thekevjames/league/\n.. |version| image:: https://img.shields.io/pypi/v/league-utils.svg\n :target: https://pypi.python.org/pypi/league-utils\n\n.. _`latest release`: https://github.com/thekevjames/league/releases/latest\n.. _`most recent zipfile or tarball`: https://github.com/thekevjames/league/releases/latest\n.. _`official docker image`: https://hub.docker.com/r/thekevjames/league-utils-api/\n.. _`theory crafting`: http://leagueoflegends.wikia.com/wiki/Gold_efficiency\n.. _`virtualenv`: virtualenvwrapper.readthedocs.org\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/TheKevJames/league.git", "keywords": "league legends game utilities item set generator efficiency isg", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "league-utils", "package_url": "https://pypi.org/project/league-utils/", "platform": "", "project_url": "https://pypi.org/project/league-utils/", "project_urls": { "Homepage": "https://github.com/TheKevJames/league.git" }, "release_url": "https://pypi.org/project/league-utils/1.0.5/", "requires_dist": null, "requires_python": "", "summary": "League of Legends utilities, including an Item Set Generator", "version": "1.0.5" }, "last_serial": 3077632, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4c284b0f9c714c3b205ce89b89c18dfb", "sha256": "4666b320e2b91489e9e7b49b6e25b20de353d9de2562ee9cfc313d0d14505b50" }, "downloads": -1, "filename": "league_utils-0.1.0-py3.4.egg", "has_sig": false, "md5_digest": "4c284b0f9c714c3b205ce89b89c18dfb", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 22240, "upload_time": "2016-04-13T02:03:28", "url": "https://files.pythonhosted.org/packages/d8/82/d8165a35ec994a62c84dc4d0bb7773ac3886256ab8dafc7d7a349bdcc2db/league_utils-0.1.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "37c75b23bb3f96efc4556d3d4a831895", "sha256": "ba5188ab2631bcac50a8372b6be468641c0ca1b1cf45b82745f43fbcdc7e35bf" }, "downloads": -1, "filename": "league_utils-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "37c75b23bb3f96efc4556d3d4a831895", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11024, "upload_time": "2016-04-13T02:03:50", "url": "https://files.pythonhosted.org/packages/41/04/64d5187efd90b030b153a30edcb5d3c69f3c7ebfed6f0e00b27b9444118c/league_utils-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17268a88fdb397f50919509b471904e3", "sha256": "b7527c741a3c4d8852f2da7676ce06a67a871682c16ac4f5a0c77fa5af1a4745" }, "downloads": -1, "filename": "league-utils-0.1.0.tar.gz", "has_sig": false, "md5_digest": "17268a88fdb397f50919509b471904e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6592, "upload_time": "2016-04-13T02:02:56", "url": "https://files.pythonhosted.org/packages/cc/e3/cedbdb91176c676af76a60a02bc2385b8542e2e5881879b7af1e08fe973a/league-utils-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "69855d15dc96a051563250b560547212", "sha256": "75fbcc9dd74eaaf80c6f3ec08f498ac5dc27b187754892b18a396d0af84b997c" }, "downloads": -1, "filename": "league_utils-0.1.1-py2.7.egg", "has_sig": false, "md5_digest": "69855d15dc96a051563250b560547212", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 20962, "upload_time": "2016-04-13T02:07:56", "url": "https://files.pythonhosted.org/packages/c1/cd/31899428822cf6b22beac6591618147b94d9cbc3fd2bc83afc7eaf1efe82/league_utils-0.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bd35040a01f1bc22738c519cea4c9d26", "sha256": "3eb45608393550a5435827e86db8972951e128b430af67e2b0a190a48bb23b84" }, "downloads": -1, "filename": "league_utils-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd35040a01f1bc22738c519cea4c9d26", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 11027, "upload_time": "2016-04-13T02:05:27", "url": "https://files.pythonhosted.org/packages/2a/46/a32aa2797a05b4a5c403cbfafab8966deb92ffeba02ad3513928ca200bcf/league_utils-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ded6137888bf04b9aed15321bdfc7cd", "sha256": "27413bb9bff5038d428cf06b1d74ce8864f6c9ddaf9b0055aa83984555f0f8ed" }, "downloads": -1, "filename": "league_utils-0.1.1-py3.4.egg", "has_sig": false, "md5_digest": "0ded6137888bf04b9aed15321bdfc7cd", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 22246, "upload_time": "2016-04-13T02:05:19", "url": "https://files.pythonhosted.org/packages/2e/57/cf8ce4519005c21a3bc70247b849bafa5b4778b0567ddb44ffb75c128a23/league_utils-0.1.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "e1dd3e4fcee72bc91a6a39d927f54ec7", "sha256": "496771c5fad1e533e4576fc33044c1fbdb4117bfcb72d8907ccc3ddd64060336" }, "downloads": -1, "filename": "league-utils-0.1.1.tar.gz", "has_sig": false, "md5_digest": "e1dd3e4fcee72bc91a6a39d927f54ec7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6619, "upload_time": "2016-04-13T02:05:12", "url": "https://files.pythonhosted.org/packages/17/0f/1d29c497bf5cf37122354fe0367a69c233853198664b5a227e0f54beebdd/league-utils-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "23310f636e6c4540cd5825150fbb3b99", "sha256": "876655510725398423e00b2aa045454655ce39f94ca3b7a780c9f27e00cdce33" }, "downloads": -1, "filename": "league_utils-0.1.2-py2.7.egg", "has_sig": false, "md5_digest": "23310f636e6c4540cd5825150fbb3b99", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23548, "upload_time": "2016-04-14T02:09:42", "url": "https://files.pythonhosted.org/packages/58/67/6126ffb1542e0600aed1c2b1091fb6c5f0f7b3bb250822fd2dd76b649c7a/league_utils-0.1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7421f3f3e76d9c03d6493b6ff996d37e", "sha256": "0ac01400fd6f1c2868bb1b9f990586341b5f36961adc26a8f0b065129d488459" }, "downloads": -1, "filename": "league_utils-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7421f3f3e76d9c03d6493b6ff996d37e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12088, "upload_time": "2016-04-14T02:10:01", "url": "https://files.pythonhosted.org/packages/67/89/bbee8963a86ff68f8575c039abc3264dbdffce25e38cd020526e8a9d6c0d/league_utils-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe935e88212ec1342cc88a2d7d5a9034", "sha256": "57e4ebb36f1729d2fa9c7ec7caec87795b382bae188419584f3fb38a1d7e64b2" }, "downloads": -1, "filename": "league_utils-0.1.2-py3.4.egg", "has_sig": false, "md5_digest": "fe935e88212ec1342cc88a2d7d5a9034", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 25009, "upload_time": "2016-04-14T02:09:54", "url": "https://files.pythonhosted.org/packages/84/49/4bea0469bdbe82ef7f47eec4851a1f0ee4bfccb5075076db7cafe0f9c0cf/league_utils-0.1.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "502fb2d5e430d430401397754a120bd4", "sha256": "f0a5c6ffc30012cea22c71fa0f1540a3381ddd857e08904b055e357d411604e6" }, "downloads": -1, "filename": "league-utils-0.1.2.tar.gz", "has_sig": false, "md5_digest": "502fb2d5e430d430401397754a120bd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8380, "upload_time": "2016-04-14T02:09:35", "url": "https://files.pythonhosted.org/packages/7e/5b/fe793404034f28046e9c53cf7c6c17705b57c0fec4244d53fe0b9238ebee/league-utils-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "bd1b86a1dbe3b9bbfcc735248f87482b", "sha256": "8af8ea22876267320ecd0dc18461a96fbc0037265262ee6e10a2842308e950f6" }, "downloads": -1, "filename": "league_utils-0.1.3-py2.7.egg", "has_sig": false, "md5_digest": "bd1b86a1dbe3b9bbfcc735248f87482b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23528, "upload_time": "2016-04-14T02:28:47", "url": "https://files.pythonhosted.org/packages/db/96/35e1d1e676ff1a032fae294ae35e401532a128b3919b2b22d80fa125573e/league_utils-0.1.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "42703bdeab930de61dd41aafaf91b9ed", "sha256": "5b7a18c2ac13b4200f1b2e4344cce48f200d8d5c40043b4224b67fb4a8719892" }, "downloads": -1, "filename": "league_utils-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42703bdeab930de61dd41aafaf91b9ed", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12085, "upload_time": "2016-04-14T02:29:09", "url": "https://files.pythonhosted.org/packages/be/30/b39f74c519e57b37e2c65a2aed8af5ba2127d79d0ec0048253b97f61ee28/league_utils-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb31b78742a4fa4c58d7bd4ed97d33c4", "sha256": "bf336da2ca8abe95f55310ed80518d868b0ae37076f94b6379ec2a7cb410b2fa" }, "downloads": -1, "filename": "league_utils-0.1.3-py3.4.egg", "has_sig": false, "md5_digest": "bb31b78742a4fa4c58d7bd4ed97d33c4", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 24990, "upload_time": "2016-04-14T02:29:01", "url": "https://files.pythonhosted.org/packages/90/a9/8602165ebccf4d3a1812475bedc46dbb758d69037abc8127cfe4f4a2443f/league_utils-0.1.3-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "d5f95ee52271af47993fd5cc0654e2c9", "sha256": "e286b3a4cd649da553fb430c0c465a92c4aac61820bc4bcd53e71b96007ba7f1" }, "downloads": -1, "filename": "league-utils-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d5f95ee52271af47993fd5cc0654e2c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8370, "upload_time": "2016-04-14T02:28:36", "url": "https://files.pythonhosted.org/packages/1a/15/bb600b7f96fd36633478db5e9630ea34b2d58339632cb16e15663c28fc61/league-utils-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "5ee15e0a68ecf813d61f73aae3d66812", "sha256": "292bfd33e0e87ea88c1efaa022ed46df02ff549aa34c43690b95e336e91e6dc3" }, "downloads": -1, "filename": "league_utils-0.1.4-py2.7.egg", "has_sig": false, "md5_digest": "5ee15e0a68ecf813d61f73aae3d66812", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23556, "upload_time": "2016-04-14T03:51:07", "url": "https://files.pythonhosted.org/packages/e9/0d/ec643bba71b6c9c366df22e117cc45465263c66025ed44412b96be9a1959/league_utils-0.1.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1f64cf5b828e618773314592c173617a", "sha256": "ac6227b25e6e713c2c8832311bb5fe27e6b3a5a4917e25f09f701fbad44ff9ce" }, "downloads": -1, "filename": "league_utils-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f64cf5b828e618773314592c173617a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12108, "upload_time": "2016-04-14T03:51:21", "url": "https://files.pythonhosted.org/packages/20/08/821c92044dc6e559fd217e9b82b691567ed53af07b1f4ac33fb46cd9320e/league_utils-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0510ee192156f322bda6ea5ae30788e8", "sha256": "845966c85150cb24bebfdd486c5b0eaa3db45b174089d51ea48fa049f3b4ad7c" }, "downloads": -1, "filename": "league_utils-0.1.4-py3.4.egg", "has_sig": false, "md5_digest": "0510ee192156f322bda6ea5ae30788e8", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 25024, "upload_time": "2016-04-14T03:51:14", "url": "https://files.pythonhosted.org/packages/42/63/4a177f081e4829c45993e5f6bc291170d7443a22de1bfa1ca3d5e3695180/league_utils-0.1.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "72df445572426798a3fa4f1c3029c8dd", "sha256": "3f04fcd610ec36772fba9b4e32587038a23151baa37a5e0abb0e1bcfc1456ccc" }, "downloads": -1, "filename": "league-utils-0.1.4.tar.gz", "has_sig": false, "md5_digest": "72df445572426798a3fa4f1c3029c8dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8360, "upload_time": "2016-04-14T03:51:01", "url": "https://files.pythonhosted.org/packages/e7/54/391969ed2f8f0567e6cdef95dbfabaf41d571cf0be09f8b2f511fcf70a8e/league-utils-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "30ae77bc3a6b2b3497f568289b2e28b7", "sha256": "c24272e5f96606e204d798988380972e83dedc506efdcd61a885f54d7893e4cf" }, "downloads": -1, "filename": "league_utils-0.1.5-py2.7.egg", "has_sig": false, "md5_digest": "30ae77bc3a6b2b3497f568289b2e28b7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23508, "upload_time": "2016-04-14T03:58:55", "url": "https://files.pythonhosted.org/packages/f0/f1/1cd8882025cd34220f54d5d20280b68262b72de90a468c020a55d81d8517/league_utils-0.1.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2143f23a432abc058acc0e8061a3c46d", "sha256": "9650b79ca9af1bebf91abeee6c858a0b115502f327d8ffc5eb96b2bae5f55e17" }, "downloads": -1, "filename": "league_utils-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2143f23a432abc058acc0e8061a3c46d", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12074, "upload_time": "2016-04-14T03:59:09", "url": "https://files.pythonhosted.org/packages/c9/e0/9d9e0d26dafcda24a00f558070bddb4862dbeffe1bbd4729e90435278b07/league_utils-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d6fd9b1ccbcb512e82f960780885dd5", "sha256": "e2f64c3a7f7721220edc137201946631bb515a21f60d58f3bbc25e0df4ef1f7c" }, "downloads": -1, "filename": "league_utils-0.1.5-py3.4.egg", "has_sig": false, "md5_digest": "6d6fd9b1ccbcb512e82f960780885dd5", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 24976, "upload_time": "2016-04-14T03:59:03", "url": "https://files.pythonhosted.org/packages/31/eb/367cf67c4239fe1765cf68575e0b1d40ebd946866958f7716439d71f4a26/league_utils-0.1.5-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "5c823b0bbad47b0074df1a290612da89", "sha256": "9bb335df0d2e6ca42dbbfcd322e9c2c5a6361d0e9e2562b5254a455ba52e732d" }, "downloads": -1, "filename": "league-utils-0.1.5.tar.gz", "has_sig": false, "md5_digest": "5c823b0bbad47b0074df1a290612da89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8350, "upload_time": "2016-04-14T03:58:48", "url": "https://files.pythonhosted.org/packages/e5/f0/b1812e4001536bf63725877f508267093f4e05c4a1a040d00ef699da4a1e/league-utils-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "a8b4f0da414947f1e997448a2f45a3bc", "sha256": "e6c07417356ce4256470e0b74df53b232789aea61cf959459b3217f714c20618" }, "downloads": -1, "filename": "league_utils-0.1.6-py2.7.egg", "has_sig": false, "md5_digest": "a8b4f0da414947f1e997448a2f45a3bc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23502, "upload_time": "2016-04-14T05:45:48", "url": "https://files.pythonhosted.org/packages/ad/0f/eebe29de1d30e5f7fecc4d8a26665e68efb04c0d6bc04cde025d0fecaa0c/league_utils-0.1.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4f475aa7873a4197638abbf5e6a14b9c", "sha256": "ab7409b5060fcbce545e72879c2399cfce83362e7d5d03e96adce4374cf38d07" }, "downloads": -1, "filename": "league_utils-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4f475aa7873a4197638abbf5e6a14b9c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12075, "upload_time": "2016-04-14T05:46:02", "url": "https://files.pythonhosted.org/packages/f2/4d/5e8756bc681c42d57f56a616423b2533e96a271ba72d49f70e0808cfef65/league_utils-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a60f6a0dcc6a25763a8b67e3e8bb82b", "sha256": "f3f9d1bb875e04eeb0ac2aeb44ac3e17eed4586aef56e02bc0dcd0c9d5ceef3b" }, "downloads": -1, "filename": "league_utils-0.1.6-py3.4.egg", "has_sig": false, "md5_digest": "9a60f6a0dcc6a25763a8b67e3e8bb82b", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 24971, "upload_time": "2016-04-14T05:45:55", "url": "https://files.pythonhosted.org/packages/aa/b6/75c73c8646730d86535893bc292ee41afb1d699c311db2f572a0785025f2/league_utils-0.1.6-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "5ee5f662663a3b2b9ca3d4097e716b94", "sha256": "5e64cd8a8983c5d05a0ce1db0661445f17ebf4f37a3dcd639ab7acbd060cbfcc" }, "downloads": -1, "filename": "league-utils-0.1.6.tar.gz", "has_sig": false, "md5_digest": "5ee5f662663a3b2b9ca3d4097e716b94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8358, "upload_time": "2016-04-14T05:45:37", "url": "https://files.pythonhosted.org/packages/af/7c/311f777166dd35d1ca0fcf2a91e393f45dcdf2e99bfddb3aa59cb4455068/league-utils-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "75a4927670c49f74eddeab19bc1a0f3b", "sha256": "3a7f521c2d3d41f61e3dc8d797717a860a11e70f351fdd3436c1f0ddf1cbe5cc" }, "downloads": -1, "filename": "league_utils-0.1.7-py2.7.egg", "has_sig": false, "md5_digest": "75a4927670c49f74eddeab19bc1a0f3b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23988, "upload_time": "2016-04-15T02:20:50", "url": "https://files.pythonhosted.org/packages/9b/b0/8bf6596db696b145c121a2446d1cc228eefc658130f623767f592f040dde/league_utils-0.1.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "78d3c60bd6c5308464198927a54fa5de", "sha256": "8171f6c2c00bc03eb873ad4c35e954a71eadb70192d4bc231c9eb0c53adb0ae6" }, "downloads": -1, "filename": "league_utils-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "78d3c60bd6c5308464198927a54fa5de", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12236, "upload_time": "2016-04-15T02:21:19", "url": "https://files.pythonhosted.org/packages/d4/8e/734112c57547291622ba7aa2fccfc9fdeb0fec9f5c30c3dec37df20f45e4/league_utils-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7437b49ea3b2d454f9b2297650c9f70", "sha256": "0ff3530e93b6a75e6d86ffe1085b2e2c43482a0b8e8a2cfa43c95b0bbdffcd6c" }, "downloads": -1, "filename": "league_utils-0.1.7-py3.4.egg", "has_sig": false, "md5_digest": "c7437b49ea3b2d454f9b2297650c9f70", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 25529, "upload_time": "2016-04-15T02:20:59", "url": "https://files.pythonhosted.org/packages/d2/de/ff990bb48cc78dcacec294c2df954747680edc4af012d0f7baedc1280d36/league_utils-0.1.7-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "528cc79afc0bd7de38e81e26eca2b7c1", "sha256": "ce80cccc482815a542b80e55455f543fa2a5b5b2e1a82387310dbb78b163a5c8" }, "downloads": -1, "filename": "league-utils-0.1.7.tar.gz", "has_sig": false, "md5_digest": "528cc79afc0bd7de38e81e26eca2b7c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8905, "upload_time": "2016-04-15T02:20:40", "url": "https://files.pythonhosted.org/packages/d7/5e/68f1001d45ba79ca57b23980c8874464f3a4577f28aaa21c579b161a121d/league-utils-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "e5b75f7d48cfa76a947f1531637e33b5", "sha256": "6c7830a0d4a7ec172d426aa879cf0c820bf2bfe42d8f0b3982f57e45aab35304" }, "downloads": -1, "filename": "league_utils-0.1.8-py2.7.egg", "has_sig": false, "md5_digest": "e5b75f7d48cfa76a947f1531637e33b5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23973, "upload_time": "2016-04-15T06:10:00", "url": "https://files.pythonhosted.org/packages/af/4f/7a7efde3daf90ebefecf2a81bda8b5c5440f431cdf949d2a3ab2f6aa5e23/league_utils-0.1.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1ee95fd90cba29a6d57d6fd30873a145", "sha256": "00e6b7e624542be4063cb43baf4907ca0d8ce83f329b4892b85cf6bf0a00c8ff" }, "downloads": -1, "filename": "league_utils-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ee95fd90cba29a6d57d6fd30873a145", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12239, "upload_time": "2016-04-15T06:10:44", "url": "https://files.pythonhosted.org/packages/87/db/a20fb3a136505f2c725321316b06ee4282a4f63383c95660cb576004ff5d/league_utils-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8cad74f6bd33b60b62b8481d274c96f4", "sha256": "edb46b4628a4cfad3a727f77d6abcee2ca665d649098046519dcc6c8a9f339b5" }, "downloads": -1, "filename": "league_utils-0.1.8-py3.4.egg", "has_sig": false, "md5_digest": "8cad74f6bd33b60b62b8481d274c96f4", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 25512, "upload_time": "2016-04-15T06:10:33", "url": "https://files.pythonhosted.org/packages/35/c3/f126e0b58c72bd2cfdcc599dd1fce9dddc7230bed5535753c8c937635d9b/league_utils-0.1.8-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "652650c1934d44b156042f0d1703426b", "sha256": "74d922e1fc370e5bd97118d30f0035aa4a9fb9b822093dbe3ce94cded87b352d" }, "downloads": -1, "filename": "league-utils-0.1.8.tar.gz", "has_sig": false, "md5_digest": "652650c1934d44b156042f0d1703426b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8909, "upload_time": "2016-04-15T06:09:47", "url": "https://files.pythonhosted.org/packages/d1/89/f46d7046e88b333ae459850e9f784a57f34887356ec8d4b966082d6c6ff3/league-utils-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "d40dc77bc8418d90128b32922fc01b26", "sha256": "b446b3baf343dcf872046060ca98da9bf5d27039623c0dfb635b3d4198d701fa" }, "downloads": -1, "filename": "league_utils-0.1.9-py2.7.egg", "has_sig": false, "md5_digest": "d40dc77bc8418d90128b32922fc01b26", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24146, "upload_time": "2016-04-16T02:39:19", "url": "https://files.pythonhosted.org/packages/24/31/0907901810e220bf45cca8c730dbfbb675e3a40a8acad06e29659eaa12a6/league_utils-0.1.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cc0aa0a2214a424f0bf33bf6563efb62", "sha256": "cb41981cede98c9f9fb8220365fc486f61fe4ec8e699842dede8741b12571f27" }, "downloads": -1, "filename": "league_utils-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc0aa0a2214a424f0bf33bf6563efb62", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12301, "upload_time": "2016-04-16T02:39:32", "url": "https://files.pythonhosted.org/packages/f1/c0/5f022a9bbccf46221ef85a6b858c492dba2c4538a23e1844bf96e47eb718/league_utils-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e851798730351daa923c485de22bf123", "sha256": "cb0b5d89ce4d6befde4756d7e5ce370558b8821604642a61b86d85be1f93e8e3" }, "downloads": -1, "filename": "league_utils-0.1.9-py3.4.egg", "has_sig": false, "md5_digest": "e851798730351daa923c485de22bf123", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 25682, "upload_time": "2016-04-16T02:39:26", "url": "https://files.pythonhosted.org/packages/8a/f3/363a90ce83a525a5f0a5055ad1dad81e5a0e5556c5d6292b2c1cf19a1563/league_utils-0.1.9-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "a3ac86e47fabe13f6aa57106a4a60171", "sha256": "5c38de9c2c0ae1e53cd508efa2651628159e1e475b3ff19f5a8f1806aaca24f4" }, "downloads": -1, "filename": "league-utils-0.1.9.tar.gz", "has_sig": false, "md5_digest": "a3ac86e47fabe13f6aa57106a4a60171", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8956, "upload_time": "2016-04-16T02:39:12", "url": "https://files.pythonhosted.org/packages/c7/1f/42d7263288812aa885124fa4081efbcfb6edb864fc10794f7bdd8f71eeaa/league-utils-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "3201aefa95f188d36cb5f78f7dd7c626", "sha256": "744e8e13f9fe0a2e7ac02a56fd0315ecf678a704ed679f4b55c018726a7c3cff" }, "downloads": -1, "filename": "league_utils-0.2.0-py2.7.egg", "has_sig": false, "md5_digest": "3201aefa95f188d36cb5f78f7dd7c626", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25536, "upload_time": "2016-04-17T05:49:18", "url": "https://files.pythonhosted.org/packages/b8/55/0385e343c644961aca6fc5fcdc8c67622eb8a5ef34ef27a4d2deec4cc422/league_utils-0.2.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9fe7e372095f1b991837c56bfb875e35", "sha256": "e6f3c72933590b1849ab7b1e5296a38ae29c987efc37658fd90f3e5ee3f802a6" }, "downloads": -1, "filename": "league_utils-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9fe7e372095f1b991837c56bfb875e35", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12733, "upload_time": "2016-04-17T05:50:32", "url": "https://files.pythonhosted.org/packages/db/89/1e31665ba190c850190ba37e630632607eec699f49698b5058a1f0b934cb/league_utils-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f51b049c9204015972f0b3123c50d9e3", "sha256": "695260d325fef6795b551922346e49a1a948693d250e109714d4bb10f106b361" }, "downloads": -1, "filename": "league_utils-0.2.0-py3.4.egg", "has_sig": false, "md5_digest": "f51b049c9204015972f0b3123c50d9e3", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 27190, "upload_time": "2016-04-17T05:49:58", "url": "https://files.pythonhosted.org/packages/6b/1f/777a7a6345c2f5a8199b0ec0f508e6667b3a5a812a0c140d49c3a125eaba/league_utils-0.2.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "92fe12b27625887832b2e2081f26882d", "sha256": "8c45e8d2885714b777d4a0dc32c379176d47a987abc9ea4a39db272a9ce39b17" }, "downloads": -1, "filename": "league-utils-0.2.0.tar.gz", "has_sig": false, "md5_digest": "92fe12b27625887832b2e2081f26882d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9838, "upload_time": "2016-04-17T05:41:28", "url": "https://files.pythonhosted.org/packages/26/8d/5ca242b0c72ec21868a177a2ddd38b4dc700682f849fd447e66c147edd0a/league-utils-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "a5b9e90f48c1a4740af5002d8e691522", "sha256": "a402f82cc98ac05e0d9af1db1cdd1f9a0d682a232b7e0321c20cf4c7d9616419" }, "downloads": -1, "filename": "league_utils-0.2.1-py2.7.egg", "has_sig": false, "md5_digest": "a5b9e90f48c1a4740af5002d8e691522", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25149, "upload_time": "2016-04-18T02:15:31", "url": "https://files.pythonhosted.org/packages/80/57/161eb69e51b39114ef7eb64b9f067c303da9fd8dbf28ac29ea09ba75e92c/league_utils-0.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0b231c942a6200eaa656ba81c8cf4686", "sha256": "758645413ccf1637b4cd9ea4344a819d181c3cfdfd394e63c8bce03f32ef7743" }, "downloads": -1, "filename": "league_utils-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b231c942a6200eaa656ba81c8cf4686", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12548, "upload_time": "2016-04-18T02:15:50", "url": "https://files.pythonhosted.org/packages/ad/6b/53afecef23735046f19dba70bb6a951eb94d61179869c788d70837f4da0a/league_utils-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3622a912b6857d2eca86eb8e0693b2a7", "sha256": "91852aa6810e899832b6a67f400d9b13ad8966172c63032b6b127ead9387251c" }, "downloads": -1, "filename": "league_utils-0.2.1-py3.4.egg", "has_sig": false, "md5_digest": "3622a912b6857d2eca86eb8e0693b2a7", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26768, "upload_time": "2016-04-18T02:15:41", "url": "https://files.pythonhosted.org/packages/a9/74/be63b52aed05ead74cae956eb487c88685db332d6e702dee01ebf6348da8/league_utils-0.2.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "42b1510ca35b9903607bf948b0873b24", "sha256": "c21b5510b8a307fd17ad26b95b20618c68ebbae08972f486bc54000575f6a902" }, "downloads": -1, "filename": "league-utils-0.2.1.tar.gz", "has_sig": false, "md5_digest": "42b1510ca35b9903607bf948b0873b24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9844, "upload_time": "2016-04-18T02:15:23", "url": "https://files.pythonhosted.org/packages/fc/0e/efec52c2c2a184729ab00c94400d0e97acb62c75cf82b567c522dc4d4f45/league-utils-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "21ccbdc9674f1a5774b9308b0b39c583", "sha256": "ea87ca2c711250b83a50be4a8b3aca6327088f02fda5798f39b219be8eb1daad" }, "downloads": -1, "filename": "league_utils-0.2.10-py2.7.egg", "has_sig": false, "md5_digest": "21ccbdc9674f1a5774b9308b0b39c583", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25641, "upload_time": "2016-07-11T05:53:03", "url": "https://files.pythonhosted.org/packages/f6/bf/b059ea685c3d4c42272dc9d54c041a8a72a0f063106b1f450304483961d6/league_utils-0.2.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "646e5a6652827a55218fb76de6633822", "sha256": "5f84fe02ed294110d3bb04f1f6e962dbd017f7790b0948ecb04a74ff8941e44c" }, "downloads": -1, "filename": "league_utils-0.2.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "646e5a6652827a55218fb76de6633822", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12803, "upload_time": "2016-07-11T05:53:14", "url": "https://files.pythonhosted.org/packages/33/da/29a79d3e74fab3ffd921c60b60b5b76550cb3cec5c5320dc94acb8279741/league_utils-0.2.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5d0b60b615838e4c38c330225679e09", "sha256": "f3b65693eb8dd7dacca4b39589001908bd28f14f99ea6bdbb362753ffb9294d7" }, "downloads": -1, "filename": "league_utils-0.2.10-py3.4.egg", "has_sig": false, "md5_digest": "a5d0b60b615838e4c38c330225679e09", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 27254, "upload_time": "2016-07-11T05:53:08", "url": "https://files.pythonhosted.org/packages/d2/68/875fe1fefed855fb8c8ff7b826115f440ee48fe5ce33d8b26fd2d325b210/league_utils-0.2.10-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "630c4691caad85a06cc618b177c4c61f", "sha256": "562f99bac6b12140dc3a34128b1c737184b55652b7436dc58e9f3440ed76b2d2" }, "downloads": -1, "filename": "league-utils-0.2.10.tar.gz", "has_sig": false, "md5_digest": "630c4691caad85a06cc618b177c4c61f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11009, "upload_time": "2016-07-11T05:52:57", "url": "https://files.pythonhosted.org/packages/48/b1/ef895816f4e82bcf16e2afe3c48c0bb170ae2a4e2429f9e828463ed797d8/league-utils-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "5d67173ca8ae7f2a4ed13a9ca97cc08b", "sha256": "4a3985e0b41337841cc99e03ac7d0004bad2aef9bc2e6f91fcc182c789e2b341" }, "downloads": -1, "filename": "league_utils-0.2.11-py2.7.egg", "has_sig": false, "md5_digest": "5d67173ca8ae7f2a4ed13a9ca97cc08b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25766, "upload_time": "2016-08-18T14:04:55", "url": "https://files.pythonhosted.org/packages/e0/e5/29675840a0ffd3a08c55c8aa914319075ebd71de403ec6b23d96f49becae/league_utils-0.2.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9acaeb7a592bbdd543d4fabd2e7966fe", "sha256": "d3e499a2f532ff513ddfa4140ab4b18ca363a718e313e2b88b4baf3ac79811de" }, "downloads": -1, "filename": "league_utils-0.2.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9acaeb7a592bbdd543d4fabd2e7966fe", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12851, "upload_time": "2016-08-18T14:05:03", "url": "https://files.pythonhosted.org/packages/15/c2/227624f6cf5dce6d2e5cdefb8a8b576babb7b2d7014e84061044f2dc5412/league_utils-0.2.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd7e664fd319a81814aa5debe28afaa2", "sha256": "febfa66751e879dcde1579249c44f3cbcba099eec875bffffabfa69de412b7f2" }, "downloads": -1, "filename": "league_utils-0.2.11-py3.4.egg", "has_sig": false, "md5_digest": "dd7e664fd319a81814aa5debe28afaa2", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 27393, "upload_time": "2016-08-18T14:04:58", "url": "https://files.pythonhosted.org/packages/39/5b/04c65b5921806ba6fc3b0a216d202726043f99c36dab1e2343baf8aa6655/league_utils-0.2.11-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "8023592b501baed022988fdb64e4dc86", "sha256": "4ba3614900602da5f14acb4f8a4ba350b47b5ac552e2a1586ca87e2331b99912" }, "downloads": -1, "filename": "league-utils-0.2.11.tar.gz", "has_sig": false, "md5_digest": "8023592b501baed022988fdb64e4dc86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11171, "upload_time": "2016-08-18T14:04:50", "url": "https://files.pythonhosted.org/packages/f0/bc/3dcc03f33f6aa62ef52250a71a927f9927313964c5e1a2b7d224550589dd/league-utils-0.2.11.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "85473b3f3f30f5fdf98c83c7ecb1ee0f", "sha256": "189ba22792426f99d88b8c6609f7f697bd30225c54aaf5337fbc26d5f89bb1b0" }, "downloads": -1, "filename": "league_utils-0.2.2-py2.7.egg", "has_sig": false, "md5_digest": "85473b3f3f30f5fdf98c83c7ecb1ee0f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25183, "upload_time": "2016-04-18T23:33:38", "url": "https://files.pythonhosted.org/packages/bf/5c/64911cb613473ec901bdf87668efc3334aed7aa6b30fef585506116ec693/league_utils-0.2.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3656aa5adec30cb7a7732a6e7479150b", "sha256": "6c4165c342bdfaae568a48e752d80a94a95723d3391362a45c17426dd80ccf66" }, "downloads": -1, "filename": "league_utils-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3656aa5adec30cb7a7732a6e7479150b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12564, "upload_time": "2016-04-18T23:33:50", "url": "https://files.pythonhosted.org/packages/c4/77/3a70ec9473d6f53b72d20d1a4240f562d93331151e4e500820814acc6934/league_utils-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18979552a2737d5f9028f6d826156278", "sha256": "97eb568d1e281212e5f04906c0200bfb258d6ac2d3af79876cc7c94d850a8c4a" }, "downloads": -1, "filename": "league_utils-0.2.2-py3.4.egg", "has_sig": false, "md5_digest": "18979552a2737d5f9028f6d826156278", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26806, "upload_time": "2016-04-18T23:33:44", "url": "https://files.pythonhosted.org/packages/fa/7c/dabd7532cf18fdd751c2ef70fcc4ee1de970c0f4cba57e57b66d7f8f9e85/league_utils-0.2.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "83180607444edae259cc378d5f340ab1", "sha256": "067fc015ce448d2fdc7ef384e0ac3b8da6c49f72e2fb3d7614ac1fe83425bc06" }, "downloads": -1, "filename": "league-utils-0.2.2.tar.gz", "has_sig": false, "md5_digest": "83180607444edae259cc378d5f340ab1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9848, "upload_time": "2016-04-18T23:33:29", "url": "https://files.pythonhosted.org/packages/f4/c1/c4d6e49aa2545b20ddac61386115f31e54db2cdbecb97b830553b40c055b/league-utils-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "7c69aa0a57a5a3949f6260d6dc567164", "sha256": "c7170bae8b9d4ba668c7b8b120763cdc0876c9e885c7de1c9a54e5f2d11e543d" }, "downloads": -1, "filename": "league_utils-0.2.3-py2.7.egg", "has_sig": false, "md5_digest": "7c69aa0a57a5a3949f6260d6dc567164", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25304, "upload_time": "2016-05-09T13:13:03", "url": "https://files.pythonhosted.org/packages/c1/d6/3980f8b4eaad21ca66632ea61fdcce4ad8f03fc1c19acae19befe464257e/league_utils-0.2.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1cc3485392f46361ac5f27a208126730", "sha256": "945f3933dd1eeeb17f06d0431b70d8e17f181059a3fe832ce60d6c84b116ad6e" }, "downloads": -1, "filename": "league_utils-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1cc3485392f46361ac5f27a208126730", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12638, "upload_time": "2016-05-09T13:13:27", "url": "https://files.pythonhosted.org/packages/2e/14/20e177ba12a26d502217ae0b94923e3498a69458fda7c58d30c404652dc6/league_utils-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3702035c53e538cae7383f22cd255989", "sha256": "f0cc7d440b812be2f59f1d6f599a16689553e1c4b7607d73e2abbc6d36b06ee8" }, "downloads": -1, "filename": "league_utils-0.2.3-py3.4.egg", "has_sig": false, "md5_digest": "3702035c53e538cae7383f22cd255989", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26907, "upload_time": "2016-05-09T13:13:16", "url": "https://files.pythonhosted.org/packages/ba/2d/eb96721785fbf22e6467555ecde9dc45c564367c14aec4fbcce2cfe18419/league_utils-0.2.3-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "83ea166879063447f75855883d656712", "sha256": "97269e04dba411d3f3e393b68161bc59a44fe95d5c3d60a524c7c586524cdb95" }, "downloads": -1, "filename": "league-utils-0.2.3.tar.gz", "has_sig": false, "md5_digest": "83ea166879063447f75855883d656712", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9915, "upload_time": "2016-05-09T13:12:44", "url": "https://files.pythonhosted.org/packages/2c/b4/0d0693bd92df05e2b1f0afab82e9394f7ceb467d751fa70ee5d92af76e37/league-utils-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "f3e6d86841d3e5a48f7bf21b76275f6b", "sha256": "065b91f67868b43bf00e3d96731485db186ade9e687598df9abcba388121ac19" }, "downloads": -1, "filename": "league_utils-0.2.4-py2.7.egg", "has_sig": false, "md5_digest": "f3e6d86841d3e5a48f7bf21b76275f6b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25298, "upload_time": "2016-05-10T18:21:41", "url": "https://files.pythonhosted.org/packages/de/a5/c157af82d5d88edcae2594c52aba1d8f7b1e7bc38055f4170264f02473c3/league_utils-0.2.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "4685087139af8e9318312244581f1259", "sha256": "b90d3b7eb2542ae2392991dc872a2ff85674c3d8ec0d3b21257d836540e4e018" }, "downloads": -1, "filename": "league_utils-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4685087139af8e9318312244581f1259", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12642, "upload_time": "2016-05-10T18:21:58", "url": "https://files.pythonhosted.org/packages/e8/ee/a2253a0e78bb1f7690426d5c8675bcc7344189e7373ce30c05f3f37ecf8b/league_utils-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2f98589195c2ef1c0ecd374d00124dc", "sha256": "ed76b26debc10c6d5a84cd966cbfdb0471320da254bd883db60e3a995be8ae96" }, "downloads": -1, "filename": "league_utils-0.2.4-py3.4.egg", "has_sig": false, "md5_digest": "c2f98589195c2ef1c0ecd374d00124dc", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26907, "upload_time": "2016-05-10T18:21:49", "url": "https://files.pythonhosted.org/packages/e1/64/fe841c3dd3e0d89af4d2c5633507328485df6c9cc973be09f42bd06663db/league_utils-0.2.4-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "f0d780475e6c81b32c8aa6e7f61a7df9", "sha256": "9d59913b8638e28c8c4c235fad56bac8ffe8f5195e9ac37f4c62f02c79f1a1b8" }, "downloads": -1, "filename": "league-utils-0.2.4.tar.gz", "has_sig": false, "md5_digest": "f0d780475e6c81b32c8aa6e7f61a7df9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10479, "upload_time": "2016-05-10T18:21:33", "url": "https://files.pythonhosted.org/packages/49/4b/d202cee53a799986545bd68c844c63edd2af111ee8b6aad0dc8ebfaf046b/league-utils-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "31fb79163d1084da72a713a8c51726c3", "sha256": "61c28400c9bab5f2d6875d2a891730a6bc87d30a1b5f870b25db529a3da2e76b" }, "downloads": -1, "filename": "league_utils-0.2.5-py2.7.egg", "has_sig": false, "md5_digest": "31fb79163d1084da72a713a8c51726c3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25300, "upload_time": "2016-05-10T18:30:50", "url": "https://files.pythonhosted.org/packages/a3/e2/76d82ac319f20977de62ad3e14f361f3207526998918cba0cede2c4b45dd/league_utils-0.2.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2e0b91ae819a5f69fab176d262fbd714", "sha256": "3443f38e697efc0fcb35c81acc594937ed012b0aa19a01bb10a5aeae28091297" }, "downloads": -1, "filename": "league_utils-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e0b91ae819a5f69fab176d262fbd714", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12641, "upload_time": "2016-05-10T18:31:05", "url": "https://files.pythonhosted.org/packages/97/66/94c4c63984143641e40ab01aa3c4e541e54dfb9d084d79b628b969e22d30/league_utils-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c0338aef11f73c5c44ffb7777caf60e1", "sha256": "45ece6ac09aa27bc1c8f0e499acf66d699b56accb3e50ed790a1f79a4abb8137" }, "downloads": -1, "filename": "league_utils-0.2.5-py3.4.egg", "has_sig": false, "md5_digest": "c0338aef11f73c5c44ffb7777caf60e1", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26917, "upload_time": "2016-05-10T18:30:57", "url": "https://files.pythonhosted.org/packages/e9/53/bcee345a13928bdb7dd5bbe218922451f38aa59fbed997264b769fd94e2f/league_utils-0.2.5-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "e6c12b1e3bdc5260c52273b0b01581fd", "sha256": "16a85c73e6baf5cf95163f784e5d559eea25983f56f8b93da83efc2a3dee928f" }, "downloads": -1, "filename": "league-utils-0.2.5.tar.gz", "has_sig": false, "md5_digest": "e6c12b1e3bdc5260c52273b0b01581fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10487, "upload_time": "2016-05-10T18:30:37", "url": "https://files.pythonhosted.org/packages/fc/5c/5bb2bcb7792cd6b5f5d1f6488be5423fcd0475c72c46e9c38b6c30729215/league-utils-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "2bed7ba37ea603cc36ad32e13f2c4a19", "sha256": "14944cb768b4043b5a49a1554e12a72c0437b291b5157199b2c17d77670fe44c" }, "downloads": -1, "filename": "league_utils-0.2.6-py2.7.egg", "has_sig": false, "md5_digest": "2bed7ba37ea603cc36ad32e13f2c4a19", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25297, "upload_time": "2016-05-10T18:37:53", "url": "https://files.pythonhosted.org/packages/1b/5c/27ce1fab0359be96be00e8e846d935b30ecf84a3040474a0f08349b326d4/league_utils-0.2.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ab5ad7542c2f427ea7df6d42fe462ecb", "sha256": "bc90cbfc9a567c5767d56f51eb54fc53a788d9398ac610b92b807e05623d80cd" }, "downloads": -1, "filename": "league_utils-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab5ad7542c2f427ea7df6d42fe462ecb", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12638, "upload_time": "2016-05-10T18:38:19", "url": "https://files.pythonhosted.org/packages/bf/fd/926b1e2e5865ba12d1793d6ae7ccaf32a98db610e31f7bb7ff181271e6eb/league_utils-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "544fa59bcb80e4edac74cba3059e0746", "sha256": "c8e3b8b1694e8387b23a6d827c36559f574c7b2f99892fdc88630b74cb6da37b" }, "downloads": -1, "filename": "league_utils-0.2.6-py3.4.egg", "has_sig": false, "md5_digest": "544fa59bcb80e4edac74cba3059e0746", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26901, "upload_time": "2016-05-10T18:38:04", "url": "https://files.pythonhosted.org/packages/c0/a8/289cdce4e94f64f3f6dcd95ebff8adab79aacecc20cb0269aa4cda823573/league_utils-0.2.6-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "111d94f431c43534e364ccb1b2032525", "sha256": "36864e7aa97922ba4d1cf23c139347a8f291078cb1d6caf451297592a1c09d77" }, "downloads": -1, "filename": "league-utils-0.2.6.tar.gz", "has_sig": false, "md5_digest": "111d94f431c43534e364ccb1b2032525", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10487, "upload_time": "2016-05-10T18:37:31", "url": "https://files.pythonhosted.org/packages/46/ee/3d7cf1bba24ed9b550bf680896453cdf49572c4d8921ddac07e5d981fece/league-utils-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "f0e4c38d0efa092e65bf7057eb4e4578", "sha256": "2d1a89a5da0ab1fb49534a16fdf861f56db38ccaff935bb8c5649adc9f2a079f" }, "downloads": -1, "filename": "league_utils-0.2.7-py2.7.egg", "has_sig": false, "md5_digest": "f0e4c38d0efa092e65bf7057eb4e4578", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25294, "upload_time": "2016-05-10T18:45:49", "url": "https://files.pythonhosted.org/packages/ae/68/959cffeb4ac42bb5849ab934aeaf86a13d9fa57ded22d5d3ba26bf12fea6/league_utils-0.2.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "688864f4fec1af1a11f0508fbd21c6a7", "sha256": "06521aa4136d3fd98a337b6630897ec8dbf77054d17fb1d9fbb155dac793d45f" }, "downloads": -1, "filename": "league_utils-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "688864f4fec1af1a11f0508fbd21c6a7", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12641, "upload_time": "2016-05-10T18:46:09", "url": "https://files.pythonhosted.org/packages/7d/e1/c9b90915124c4e95d227ce2b2aeb4c172ef70f6ff6901156ec455f3785b7/league_utils-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0f772d079957acda3aa2ece11301bbf", "sha256": "5adbd5bf7047c149deaf94b884833111cfb7bea1907f57be14de024cad7924c5" }, "downloads": -1, "filename": "league_utils-0.2.7-py3.4.egg", "has_sig": false, "md5_digest": "a0f772d079957acda3aa2ece11301bbf", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26903, "upload_time": "2016-05-10T18:45:57", "url": "https://files.pythonhosted.org/packages/09/cf/61aa5520addf78c0b475676961bf722a752d3e5b3a0925426df858526d1a/league_utils-0.2.7-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "e6f01cee0a32b34b0d487a808a7bf702", "sha256": "fbfa360932ccedbda1769cb21c906cadd3d807f08a2360f4f0a33dbc8e47ae1b" }, "downloads": -1, "filename": "league-utils-0.2.7.tar.gz", "has_sig": false, "md5_digest": "e6f01cee0a32b34b0d487a808a7bf702", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10485, "upload_time": "2016-05-10T18:45:36", "url": "https://files.pythonhosted.org/packages/6e/9b/c06fe1c6eee714fa00bb6e81a280df74734b51101a483d97062b0d340013/league-utils-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "adff8e0ed5d0ae16b7aa5f368ecab587", "sha256": "74b82ea3da1f69396a063404e4eb248639430db9faa2d0cae86da548fb5a500a" }, "downloads": -1, "filename": "league_utils-0.2.8-py2.7.egg", "has_sig": false, "md5_digest": "adff8e0ed5d0ae16b7aa5f368ecab587", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25327, "upload_time": "2016-05-10T19:48:30", "url": "https://files.pythonhosted.org/packages/36/ba/a4f4047f025c979e3c1ff25bd08ed718c67d91bf7f25bef4898955227bed/league_utils-0.2.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8fed715965d5fe319b1f994daa8b63cd", "sha256": "91f15f5f1b2cd569aeb4df232321396c17c7e44fcc987818fd976c3989537e54" }, "downloads": -1, "filename": "league_utils-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8fed715965d5fe319b1f994daa8b63cd", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12643, "upload_time": "2016-05-10T19:48:43", "url": "https://files.pythonhosted.org/packages/af/30/a095866381b725f34df0f9581dc10ee44104b919211c002d97874d28c7ce/league_utils-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e26b0283628696fc375263278924d1f8", "sha256": "7d630846c9515e1359d5ea98daa8d0d86826b0fb218a2247f5d0639abdad2871" }, "downloads": -1, "filename": "league_utils-0.2.8-py3.4.egg", "has_sig": false, "md5_digest": "e26b0283628696fc375263278924d1f8", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26926, "upload_time": "2016-05-10T19:48:36", "url": "https://files.pythonhosted.org/packages/f7/38/4bb181381e27da2be548d7eed6a1b4bb1444f0914a4bea689dced7b4928d/league_utils-0.2.8-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "45f5bc236a3222b3dc39adc49411af23", "sha256": "11494cd38e319bb16666c337ad32ca502e1f15d1fcd51897c09986d98a891878" }, "downloads": -1, "filename": "league-utils-0.2.8.tar.gz", "has_sig": false, "md5_digest": "45f5bc236a3222b3dc39adc49411af23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10497, "upload_time": "2016-05-10T19:48:22", "url": "https://files.pythonhosted.org/packages/22/c6/dcd8bd5f00072025a2e69c7cb8692517919c3bf627af1b3660923b48d113/league-utils-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "9b407d45a857f61383d27aa8ac7ab8a5", "sha256": "04ed2718f3bb3ff038b8566d90c73ae358a69e235f4d38c6765fd660d20ea521" }, "downloads": -1, "filename": "league_utils-0.2.9-py2.7.egg", "has_sig": false, "md5_digest": "9b407d45a857f61383d27aa8ac7ab8a5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25322, "upload_time": "2016-05-10T20:01:18", "url": "https://files.pythonhosted.org/packages/6e/40/5aabd968b1b96db645463518bdad029055ed412e4df17a403c807c0fe603/league_utils-0.2.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8463021239ae34ff8ed6cdf264d96c98", "sha256": "58cf16efca33f22955dcea515e4b96f4252725d48c23542f5b3541239d65d294" }, "downloads": -1, "filename": "league_utils-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8463021239ae34ff8ed6cdf264d96c98", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 12640, "upload_time": "2016-05-10T20:01:44", "url": "https://files.pythonhosted.org/packages/86/ad/8756cedb50e987f06f3b7bb06c4278bdd6960f48b5664aaaa32cf9c5a3c1/league_utils-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a7323e9dd34f8e1d1577dc7cb27418a", "sha256": "dd85e34ab369efea8cc782fea365bccb6f84312ab2d9436ad1abbfab86567e70" }, "downloads": -1, "filename": "league_utils-0.2.9-py3.4.egg", "has_sig": false, "md5_digest": "7a7323e9dd34f8e1d1577dc7cb27418a", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 26917, "upload_time": "2016-05-10T20:01:35", "url": "https://files.pythonhosted.org/packages/50/04/a8a6ddda99ea27e8d77945d8cb51bc71cb0ccc381351c0e54db1734109a4/league_utils-0.2.9-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "e96cdd3760c29e52af5cdd732df565c3", "sha256": "1df9613ad2dacab0cce5558b60182526ef690d5e73c37f502e25d8bd2c3ea0df" }, "downloads": -1, "filename": "league-utils-0.2.9.tar.gz", "has_sig": false, "md5_digest": "e96cdd3760c29e52af5cdd732df565c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10495, "upload_time": "2016-05-10T20:00:52", "url": "https://files.pythonhosted.org/packages/a5/7d/a9a617f4c63eab371bc89ae5c78421e75dca64d87451016521b7a43200fa/league-utils-0.2.9.tar.gz" }, { "comment_text": "", "digests": { "md5": "9f00e118413efb8a4c5bd2e2cfac6054", "sha256": "4f9e0376f247a7ae35942313a9dd1ef82c8f1fc26a21e4f351516ea1c9a310b9" }, "downloads": -1, "filename": "league-utils-0.2.9.win32.exe", "has_sig": false, "md5_digest": "9f00e118413efb8a4c5bd2e2cfac6054", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 240045, "upload_time": "2016-05-10T20:04:12", "url": "https://files.pythonhosted.org/packages/f2/53/9f7d39559c1eafc44ed9c3d4fcc33a61f1177b361dbf88b209c63d0c8efb/league-utils-0.2.9.win32.exe" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "2da0872cfca03d9f0aa9a64ea65c2195", "sha256": "b3d596621fb4866e8d50c62da5a5cab8e32db5b59a696a3c7422a95e3c8e0f66" }, "downloads": -1, "filename": "league_utils-0.3.0-py2.7.egg", "has_sig": false, "md5_digest": "2da0872cfca03d9f0aa9a64ea65c2195", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40308, "upload_time": "2016-11-04T17:35:07", "url": "https://files.pythonhosted.org/packages/70/b9/5fd1d85618bb6d0ecdcd1c78feb05c3ea6f2d6b74d7edb70945c9f96d6a7/league_utils-0.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "26fc9021d5cef8a64bf910dcb6db4a3c", "sha256": "64504f3956d27fa219d3848564294461d002f666f1f623df5f5ea77e036b7935" }, "downloads": -1, "filename": "league_utils-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "26fc9021d5cef8a64bf910dcb6db4a3c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 18590, "upload_time": "2016-11-04T17:35:17", "url": "https://files.pythonhosted.org/packages/83/b1/89ce9fc14cc861739c9d8fa894ec3f0d227cde4c38e39b025eb6de7d574b/league_utils-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85d705bfa5ffd86b9d208473de334428", "sha256": "e3061a954ab42c982cd52afe280fe6a1de5127f19ac9956400a93b3c2b26a19d" }, "downloads": -1, "filename": "league_utils-0.3.0-py3.4.egg", "has_sig": false, "md5_digest": "85d705bfa5ffd86b9d208473de334428", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 42534, "upload_time": "2016-11-04T17:35:12", "url": "https://files.pythonhosted.org/packages/b1/e6/385600ec95d06f41c5e20adb4e5837824faaaf247ff7f59827e10d9cd325/league_utils-0.3.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "f14624e9c13b6ff604817a860f07e879", "sha256": "f59137916caa1d68835a9203f28fee642a0742534fd3d23dc1b7047aa5998545" }, "downloads": -1, "filename": "league-utils-0.3.0.tar.gz", "has_sig": false, "md5_digest": "f14624e9c13b6ff604817a860f07e879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17100, "upload_time": "2016-11-04T17:35:00", "url": "https://files.pythonhosted.org/packages/34/83/2b7cd506160ce32431b98a2a727d068bff5de82fee79e6f8e5cce972aca0/league-utils-0.3.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "0f3cde5070e8ac63bc799437a9c0b89e", "sha256": "69de70b9c157b6fea117949bc5024cd4238fc58677828cb2f5500ca66c38fe33" }, "downloads": -1, "filename": "league-utils-0.3.0.win32.exe", "has_sig": false, "md5_digest": "0f3cde5070e8ac63bc799437a9c0b89e", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 245944, "upload_time": "2016-11-04T17:33:51", "url": "https://files.pythonhosted.org/packages/69/85/f335669cb33b9246b67f2eb7148401dd62743d5f3d10db12a5c58ad0762a/league-utils-0.3.0.win32.exe" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "85eae639e2e577b998474b3b53da4927", "sha256": "58e002bd477a1eadcbc5ca954881b068f2b5d6c558b9b666e3cadd004ebc4110" }, "downloads": -1, "filename": "league_utils-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "85eae639e2e577b998474b3b53da4927", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 40355, "upload_time": "2016-11-04T17:57:49", "url": "https://files.pythonhosted.org/packages/bd/e0/fccf6f3834f489b2c1c101048d75472dd26cc3baff5ead8df6709a9ea920/league_utils-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "aa39016531a49260ef5850c384392a66", "sha256": "bc75b83142da888296a1f420dbcc54972895a764c1aaa188aabaa655e8da5c23" }, "downloads": -1, "filename": "league_utils-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa39016531a49260ef5850c384392a66", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 18591, "upload_time": "2016-11-04T17:58:01", "url": "https://files.pythonhosted.org/packages/24/e8/45cf47a5fb4934eeac7bcf04040c1f3ec3b18932088034be8efb6484d7d2/league_utils-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c298062716d2c429750b53c42190b5d4", "sha256": "4d929504ee65949b3c345a80bbe18b9bd198d18f7f9d771372d6bf2b3c5ae963" }, "downloads": -1, "filename": "league_utils-0.3.1-py3.4.egg", "has_sig": false, "md5_digest": "c298062716d2c429750b53c42190b5d4", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 42569, "upload_time": "2016-11-04T17:57:55", "url": "https://files.pythonhosted.org/packages/b2/15/409c8fb83694960a367927bde1e9159c9f3045be0598845ad6df96b743cd/league_utils-0.3.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "681dfbafa1d815f02eaf7eccf2961903", "sha256": "9b2d2fb392d947e50302c109f076615544b3aaf7aa11ab9181c3efa3d937af77" }, "downloads": -1, "filename": "league-utils-0.3.1.tar.gz", "has_sig": false, "md5_digest": "681dfbafa1d815f02eaf7eccf2961903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17093, "upload_time": "2016-11-04T17:57:43", "url": "https://files.pythonhosted.org/packages/d7/43/e7b176bd05a2f53d2f0d6eb8ff9d58d9c9417c600cd1dd1770574f493944/league-utils-0.3.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "6064b21abee37a574987f0dd61b8be43", "sha256": "a3800bdedf9d238d941c19dacc3525d95bb851ae2090c0eb8b3fd2df7f91ddda" }, "downloads": -1, "filename": "league-utils-0.3.1.win32.exe", "has_sig": false, "md5_digest": "6064b21abee37a574987f0dd61b8be43", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 245943, "upload_time": "2016-11-04T17:56:24", "url": "https://files.pythonhosted.org/packages/1d/10/6b016a0ecdf4128f8af72b53251bc8ab4d64c77a9014cae07e4c7ce6fab0/league-utils-0.3.1.win32.exe" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "ff1787375dd79b13ec5f08ba04560001", "sha256": "1ef0b56b95b2cfdbc54819944c609f4776e924cc04e43119215a10bcced7385c" }, "downloads": -1, "filename": "league_utils-0.3.2-py2.7.egg", "has_sig": false, "md5_digest": "ff1787375dd79b13ec5f08ba04560001", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 41407, "upload_time": "2016-12-13T03:14:53", "url": "https://files.pythonhosted.org/packages/c4/9c/3062e52fc8d29d830b1a1ad36d089add12892feaf303931a7009e603ee8b/league_utils-0.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "06fa0fad06fd11c00844230ea70e3c5d", "sha256": "4677ea6fe5afee3de8b9cdfbafd495f3ece2875908450609887577de42bf1e7c" }, "downloads": -1, "filename": "league_utils-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06fa0fad06fd11c00844230ea70e3c5d", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 19171, "upload_time": "2016-12-13T03:14:59", "url": "https://files.pythonhosted.org/packages/c4/06/6171e98c1c7b3de095f8e34cda71e3939e5039a7d33a03ba7583f37d65f0/league_utils-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a485f8e5c93fefb447afe9c29b2f0615", "sha256": "5f1c9fa0c9cd6b9ac9187f6f4f1484fc7b097cbfd88dd082f65cc111d4067017" }, "downloads": -1, "filename": "league_utils-0.3.2-py3.4.egg", "has_sig": false, "md5_digest": "a485f8e5c93fefb447afe9c29b2f0615", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 43625, "upload_time": "2016-12-13T03:14:56", "url": "https://files.pythonhosted.org/packages/f9/db/2b75fd94769ffa2f3b913a5986f02ab8ade88d6782f26959925c550d0f54/league_utils-0.3.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "f9cda87eb784bc0be55a8de88e07035f", "sha256": "7a956348123c6d52794f0cb3f07a5a8a66ab8e4c45793a9284f782b3b42bf945" }, "downloads": -1, "filename": "league-utils-0.3.2.tar.gz", "has_sig": false, "md5_digest": "f9cda87eb784bc0be55a8de88e07035f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17742, "upload_time": "2016-12-13T03:14:48", "url": "https://files.pythonhosted.org/packages/25/8f/ab82ae04c42a3fc72287222fb9c4122f98d2f2a6fbc46fadde5be3ce5a94/league-utils-0.3.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "ad3b56958f444c56130beb1143194180", "sha256": "703af8f5263d7ed5c0554230b450e84f46e832f17116ef9e39601418f640baaf" }, "downloads": -1, "filename": "league-utils-0.3.2.win32.exe", "has_sig": false, "md5_digest": "ad3b56958f444c56130beb1143194180", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 246534, "upload_time": "2016-12-13T03:14:12", "url": "https://files.pythonhosted.org/packages/84/75/e11bad9b3e9774ce1ff40312851a157972944f938c4d2b483e10d08139ef/league-utils-0.3.2.win32.exe" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "49f09f6b217abe2f00eb985d6613c11d", "sha256": "268530907a09589a958cf065ff625082c0eab9b844ca2aa79744fef01fa1fc93" }, "downloads": -1, "filename": "league_utils-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49f09f6b217abe2f00eb985d6613c11d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 23315, "upload_time": "2017-01-29T17:51:10", "url": "https://files.pythonhosted.org/packages/04/46/171e1958aed65f39ba6b32a8116e007adca8c2e76b096acbc8d02899bbb6/league_utils-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "625d9d5f4c37ff5d46e66bca26da226f", "sha256": "4a4da0aec20535b5ad51b6da193085cc924ace5597c1fbcb3fa3cbed0b4de7e1" }, "downloads": -1, "filename": "league_utils-1.0.0-py3.5.egg", "has_sig": false, "md5_digest": "625d9d5f4c37ff5d46e66bca26da226f", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 45778, "upload_time": "2017-01-29T17:51:07", "url": "https://files.pythonhosted.org/packages/11/e2/5bb71b2e071a4daae530340d80b39a10536b4c4227036ab9969b78d09158/league_utils-1.0.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "cc2bd3178b6d6495572e9cf6e5d26094", "sha256": "8e94216cb8b9d76830a838bfedc1cc225be73f24185a0b35331987349a816bfa" }, "downloads": -1, "filename": "league-utils-1.0.0.tar.gz", "has_sig": false, "md5_digest": "cc2bd3178b6d6495572e9cf6e5d26094", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14855, "upload_time": "2017-01-29T17:51:03", "url": "https://files.pythonhosted.org/packages/49/6c/5b1d309467cfc8de1300aca97320787559c86245e4f91a7d0e284a86f0b0/league-utils-1.0.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "aa01f4f732f2737df9639ab946f0172d", "sha256": "7f275d05a73bb3841191b2eddd306bab278abb1a9c08725c930aba7a0792af6c" }, "downloads": -1, "filename": "league-utils-1.0.0.win32.exe", "has_sig": false, "md5_digest": "aa01f4f732f2737df9639ab946f0172d", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560495, "upload_time": "2017-01-29T17:50:17", "url": "https://files.pythonhosted.org/packages/94/80/a3e40032857e06db8e0f5f9f932f72b90866d532106af00b64816b7f88d5/league-utils-1.0.0.win32.exe" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "368e1b632aa21aebfa5853c75bad6681", "sha256": "ae8bfe0898736b2cc2058710ea47f1c9e72589da863eda11aa14c450800fd16b" }, "downloads": -1, "filename": "league-utils-1.0.1.win32.exe", "has_sig": false, "md5_digest": "368e1b632aa21aebfa5853c75bad6681", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560427, "upload_time": "2017-08-07T05:35:44", "url": "https://files.pythonhosted.org/packages/73/9b/fb6ca48a4781150ec3e57ed187696da081bd14bbf00ba34843c37c422721/league-utils-1.0.1.win32.exe" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "4de7834067bb65100177721c743c52ce", "sha256": "bc949073b00761f5aba5b233ce734e586488d11c9c10058ef634cc3184307123" }, "downloads": -1, "filename": "league-utils-1.0.2.win32.exe", "has_sig": false, "md5_digest": "4de7834067bb65100177721c743c52ce", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560430, "upload_time": "2017-08-07T05:45:54", "url": "https://files.pythonhosted.org/packages/21/a6/c233d2d5266823c96e14d8b45d026c6841daca37b8bb560a11deac974c14/league-utils-1.0.2.win32.exe" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "b5e8046ac9b2192cb51ff4b317890637", "sha256": "7ef6d47225941adf838aa7060b4e73140d7d069c608c6159da7d88dc5fe7ce12" }, "downloads": -1, "filename": "league-utils-1.0.3.win32.exe", "has_sig": false, "md5_digest": "b5e8046ac9b2192cb51ff4b317890637", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560432, "upload_time": "2017-08-07T05:59:32", "url": "https://files.pythonhosted.org/packages/69/87/f27211429884238b9e865338e3e1179760d28d5470ad619dacb0051b0c08/league-utils-1.0.3.win32.exe" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "0835f037be8d5a6e68a43f713b00989d", "sha256": "9d7ee70d5d6db62ac7cb114cb788411430128c6bee0d75a78f26a02cec63d87b" }, "downloads": -1, "filename": "league-utils-1.0.4.tar.gz", "has_sig": false, "md5_digest": "0835f037be8d5a6e68a43f713b00989d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18538, "upload_time": "2017-08-07T06:19:13", "url": "https://files.pythonhosted.org/packages/fe/e4/7d12bc35473351f236e941c01c3404b764bef0424da5ef1c9034d4ead0d2/league-utils-1.0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "5599e2ad71cd51996fa7b2ec5043cf8e", "sha256": "39600b8926cbbdaac6cb8bc565b40e0a3d4a6706dcca09c584ed4c766a9c7a6d" }, "downloads": -1, "filename": "league-utils-1.0.4.win32.exe", "has_sig": false, "md5_digest": "5599e2ad71cd51996fa7b2ec5043cf8e", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560431, "upload_time": "2017-08-07T06:17:24", "url": "https://files.pythonhosted.org/packages/d4/83/561e4bc19561f5552709d268bf532a0c36a0bf3b17c47ce07f0cdaa54f94/league-utils-1.0.4.win32.exe" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "06a44da76a9f77312f6b9b016912ab54", "sha256": "e70b23b90880b05ab80e3c1e4fc67d0af3ffeeb9f1744fb426e3f80b259e1a71" }, "downloads": -1, "filename": "league_utils-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06a44da76a9f77312f6b9b016912ab54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25234, "upload_time": "2017-08-07T06:33:23", "url": "https://files.pythonhosted.org/packages/c6/dc/f146981c7d085fe2f94cc68469370892bb6245f1a512b67edb1b75ed0b3a/league_utils-1.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01116e51a3022c38a255157ef9394e1f", "sha256": "a1aa634c170de20e7f0981809a065b1c08b39e7874a1746ad0591246d0b17277" }, "downloads": -1, "filename": "league_utils-1.0.5-py3.5.egg", "has_sig": false, "md5_digest": "01116e51a3022c38a255157ef9394e1f", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 50591, "upload_time": "2017-08-07T06:33:26", "url": "https://files.pythonhosted.org/packages/6c/ec/a73d4a2adcf4b681a186f9a2c6c9d65351735f871128fd9134af6bc1a476/league_utils-1.0.5-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "958e0a6124915b1e9c1c237a14e8b389", "sha256": "913724f44db72ecdf1f371ae50e03f9b2b324c077e535a2dc5828aec419e1ef7" }, "downloads": -1, "filename": "league_utils-1.0.5-py3.6.egg", "has_sig": false, "md5_digest": "958e0a6124915b1e9c1c237a14e8b389", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 49610, "upload_time": "2017-08-07T06:33:27", "url": "https://files.pythonhosted.org/packages/0d/5b/5efaa4a177eded837e380b296cff7d2b82062dfef8848cba2652a83abd17/league_utils-1.0.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "2959e04ae42f0c3f89d0f905ff2cf2d5", "sha256": "ab5dde3d8b620fca8a920e8fe161ee5719886d0016cd96f717fdee4087d4bf98" }, "downloads": -1, "filename": "league-utils-1.0.5.tar.gz", "has_sig": false, "md5_digest": "2959e04ae42f0c3f89d0f905ff2cf2d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18541, "upload_time": "2017-08-07T06:33:25", "url": "https://files.pythonhosted.org/packages/91/1c/036c18ee6c6ce1d08a89ca4fe31e907f0cbabb6fd0e2e77881df53239e80/league-utils-1.0.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "9024998e31562ead53800d1b14fbd6d4", "sha256": "6a0f28420f5a0a68bd16c9cf4fabbc93af54fd88675a7a82a0bc4f77af980e2f" }, "downloads": -1, "filename": "league-utils-1.0.5.win32.exe", "has_sig": false, "md5_digest": "9024998e31562ead53800d1b14fbd6d4", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560432, "upload_time": "2017-08-07T06:28:07", "url": "https://files.pythonhosted.org/packages/77/fc/aa9078fab547e43b3e449ed188023b9470d0c4412386b9b307f905a9432c/league-utils-1.0.5.win32.exe" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "06a44da76a9f77312f6b9b016912ab54", "sha256": "e70b23b90880b05ab80e3c1e4fc67d0af3ffeeb9f1744fb426e3f80b259e1a71" }, "downloads": -1, "filename": "league_utils-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06a44da76a9f77312f6b9b016912ab54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25234, "upload_time": "2017-08-07T06:33:23", "url": "https://files.pythonhosted.org/packages/c6/dc/f146981c7d085fe2f94cc68469370892bb6245f1a512b67edb1b75ed0b3a/league_utils-1.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01116e51a3022c38a255157ef9394e1f", "sha256": "a1aa634c170de20e7f0981809a065b1c08b39e7874a1746ad0591246d0b17277" }, "downloads": -1, "filename": "league_utils-1.0.5-py3.5.egg", "has_sig": false, "md5_digest": "01116e51a3022c38a255157ef9394e1f", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 50591, "upload_time": "2017-08-07T06:33:26", "url": "https://files.pythonhosted.org/packages/6c/ec/a73d4a2adcf4b681a186f9a2c6c9d65351735f871128fd9134af6bc1a476/league_utils-1.0.5-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "958e0a6124915b1e9c1c237a14e8b389", "sha256": "913724f44db72ecdf1f371ae50e03f9b2b324c077e535a2dc5828aec419e1ef7" }, "downloads": -1, "filename": "league_utils-1.0.5-py3.6.egg", "has_sig": false, "md5_digest": "958e0a6124915b1e9c1c237a14e8b389", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 49610, "upload_time": "2017-08-07T06:33:27", "url": "https://files.pythonhosted.org/packages/0d/5b/5efaa4a177eded837e380b296cff7d2b82062dfef8848cba2652a83abd17/league_utils-1.0.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "2959e04ae42f0c3f89d0f905ff2cf2d5", "sha256": "ab5dde3d8b620fca8a920e8fe161ee5719886d0016cd96f717fdee4087d4bf98" }, "downloads": -1, "filename": "league-utils-1.0.5.tar.gz", "has_sig": false, "md5_digest": "2959e04ae42f0c3f89d0f905ff2cf2d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18541, "upload_time": "2017-08-07T06:33:25", "url": "https://files.pythonhosted.org/packages/91/1c/036c18ee6c6ce1d08a89ca4fe31e907f0cbabb6fd0e2e77881df53239e80/league-utils-1.0.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "9024998e31562ead53800d1b14fbd6d4", "sha256": "6a0f28420f5a0a68bd16c9cf4fabbc93af54fd88675a7a82a0bc4f77af980e2f" }, "downloads": -1, "filename": "league-utils-1.0.5.win32.exe", "has_sig": false, "md5_digest": "9024998e31562ead53800d1b14fbd6d4", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 560432, "upload_time": "2017-08-07T06:28:07", "url": "https://files.pythonhosted.org/packages/77/fc/aa9078fab547e43b3e449ed188023b9470d0c4412386b9b307f905a9432c/league-utils-1.0.5.win32.exe" } ] }