{ "info": { "author": "Lele Gaifax", "author_email": "lele@metapensiero.it", "bugtrack_url": null, "classifiers": [ "Framework :: Pyramid", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Natural Language :: Italian", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Games/Entertainment", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" ], "description": ".. -*- coding: utf-8 -*-\n.. :Project: SoL -- Introduction\n.. :Created: gio 9 ott 2008 11:40:17 CET\n.. :Author: Lele Gaifax \n.. :License: GNU General Public License version 3 or later\n.. :Copyright: \u00a9 2008, 2009, 2010, 2013, 2014, 2015, 2016 Lele Gaifax\n..\n\n======================\n Scarry On Lin{e|ux}\u00b3\n======================\n\n-------------------------------------------------------------\nPowerful and complete solution to manage Carrom championships\n-------------------------------------------------------------\n\nThis project contains some tools that make it easier the organization of a championship of\nCarrom_ tournaments using a variant of the `Swiss system`__, or even *everyone against\neveryone* events.\n\n__ https://en.wikipedia.org/wiki/Swiss-system_tournament\n\nThe main component is a Pyramid_ application serving two distinct user interfaces:\n\n1. A very light, HTML only, read only view of the whole database, where you can actually browse\n thru the clubs, championships, tourneys, players and ratings. You can see it in action on\n the public SoL instance at http://sol3.arstecnica.it/lit/.\n\n2. A complete ExtJS_ based desktop-like application, that exposes all the functionalities\n described below__ in an easy to manage interface, that you can try out visiting\n http://sol3.arstecnica.it/.\n\n.. attention:: SoL 3 **requires** Python 3.3 or higher, it does **not** work with Python 2\n\n.. warning:: SoL 3.1+ **requires** SQLite 3.8 or higher\n\n__ Goals_\n\n.. _Carrom: http://en.wikipedia.org/wiki/Carrom\n.. _Pyramid: http://www.pylonsproject.org/\n.. _ExtJS: http://www.sencha.com/products/extjs/\n\n.. contents:: :depth: 2\n\n\nGoals\n=====\n\nThese are the key points:\n\n1. Multilingual application\n\n Scarry spoke only Italian, because the i18n mechanism in Delphi (and in general under\n Windows) sucks. Most of the code was written and commented in Italian too, and that made it\n very difficult to get foreign contributions\n\n2. Multiuser\n\n There is a *super user* (named \u201cadmin\u201d by default) that can do everything, in particular\n assign a *nickname* and a *password* to any player, who can then log in and manage her own\n tournaments, but can't change information owned by other users\n\n3. Real database\n\n Scarry used Paradox tables, but we are in the third millennium, now: SoL uses a real, even\n if simple and light, SQL database under its skin\n\n4. Easy to use\n\n The application is usually driven by computer-illiterated guys, so little to no surprises\n\n5. Easy to deploy\n\n Gods know how many hours went in building f*cking installers with BDE goodies\n\n6. Bring back the fun\n\n Programming in Python is just that, since the beginning\n\n\nHigh level description\n----------------------\n\nThe application implements the following features:\n\n* basic tables editing, like adding a new player, opening a new championship, manually tweaking\n the scores, and so on;\n\n* handle a single tourney\n\n a. compose a list of `competitors`: usually this is just a single player, but there are two\n people in doubles, or more (teams)\n\n b. set up the first round, made up of `matches`, each pairing two distinct `competitors`: if\n the tournament is associated with a `rating` this considers the Glicko2__ rate of each\n player, otherwise uses a random pairing; either way, the tournament secretary is able to\n manually change the combinations\n\n c. print the game sheets, where the player will write the scores\n\n d. possibly show a countdown, to alert the end of the game\n\n e. insert the score of each match\n\n f. compute the new ranking\n\n g. print the current ranking\n\n h. possibly offer a way to withdraw some competitors, or to add a new competitor\n\n i. compute the next round\n\n j. repeat steps c. thru i. usually up to seven rounds\n\n k. possibly offer a way to go back, delete last round, correct a score and repeat\n\n l. if required, play up to three final rounds between the first two competitors\n\n m. recompute the ranking, assigning prizes\n\n n. update the `rating` the tournament is associated to\n\n* handle a championship of tourneys\n\n * each tourney is associated to one championship\n\n * print the championship ranking\n\n* data exchange, to import/export whole tourneys in a portable way\n\n__ http://en.wikipedia.org/wiki/Glicko_rating_system\n\n\nInstallation and Setup\n======================\n\nThe very first requirement to install an instance of SoL on your own machine is getting Python\n3.5 or better\\ [#]_. This step obviously depends on the operating system you are using: on most\nGNU/Linux distributions it is already available\\ [#]_, for example on Debian and derivatives\nlike Ubuntu the following command will do the task::\n\n $ apt-get install python3\n\nIf instead you are using M$-Windows, you should select the right installer from the downloads__\npage on http://www.python.org/.\n\n.. topic:: Non *pure Python* packages and Windows\n\n The most problematic thing on Windows is being able to install all the required packages:\n a few of them are actually written in ``C`` and there are chances that your particular\n combination of Python version and Windows version (32bit vs 64bit in particular) isn't\n supported by the respective authors.\n\n If the installation fails because a suitable package cannot be found, your only option\n (other than bugging me) is to install the needed development tools on your machine and\n retry the installation: the installer should be able to figure out the details and compile\n the modules.\n\n Since a couple of years Microsoft started to pay attention to the Python world, and actually\n released a trimmed down version of its development suites expressly to `compile Python 2\n extension modules`__, but nothing equivalent is available for Python 3 yet. Instead, you\n need to install the complete `Visual Studio` suite in particular, for Python 3.5, the\n `Visual Studio 2015 Community Edition`__.\n\nAnother recommended, although optional, add-on is the `DejaVu fonts`__ set, to support a rather\nwide range of `glyphs`__ when producing the PDFs printouts. As usual, on GNU/Linux it's a\nmatter of executing the following command\n\n::\n\n $ apt-get install fonts-dejavu\n\nor equivalent for your distribution, while on M$-Windows you need to download__ them and\nextract the archive in the right location which usually is ``C:\\Windows\\Fonts``.\n\n__ http://www.python.org/downloads/windows/\n__ https://www.microsoft.com/en-us/download/details.aspx?id=44266\n__ http://www.visualstudio.com/downloads/\n__ http://dejavu-fonts.org/wiki/Main_Page\n__ https://en.wikipedia.org/wiki/Glyph\n__ http://sourceforge.net/projects/dejavu/files/dejavu/2.35/dejavu-fonts-ttf-2.35.zip\n\n\nEasiest way, SoLista\n--------------------\n\nThe easiest way is using SoLista_, a buildout_ configuration that will perform most of the\nneeded steps with a few clicks: this is particularly indicated if you are *not* fluent with the\ncommand line interface of your operating system.\n\nFollow the hopefully clear enough steps in SoLista's `README`__.\n\n.. _SoLista: https://bitbucket.org/lele/solista/\n.. _buildout: http://www.buildout.org/en/latest/\n__ https://bitbucket.org/lele/solista/src/master/README.rst\n\n\nPre-built Docker image\n----------------------\n\n.. note:: This is a work-in-progress facility: better documentation and helper tools are on the\n way! It targets brave souls willing to face a *bleeding edge* experience.\n\n Current state is based on the work contributed by `Amar Sanakal`__, thank you!\n\nAnother option, if you have a 64bit computer, is to run the pre-built Docker_ image.\n\n__ https://bitbucket.org/amar-sanakal/solista\n.. _Docker: https://www.docker.com/\n\nRequirements\n~~~~~~~~~~~~\n\nFirst of all, you must enable the *hardware virtualization* in the ``BIOS`` of your computer.\n\nThen you can proceed to install the ``Docker Engine`` for your particular operating system\n(that is, `GNU/Linux`__, `Windows`__ or `Mac OS X`__).\n\nAfter you have tested the install in the ``Docker Quickstart terminal`` (for example as\ndepicted here__), run the following command in the same window::\n\n docker run -d -p 80:6996 --name sol amarsanakal/solista\n\nThis will start the software and is now accessible on port 80. You can access it as\n``http://``.\n\nThe ```` is the ip address of the docker machine running on your PC. This would\nhave been displayed to you when you launched the Docker Quickstart terminal. You can check it\nanytime by running::\n\n docker-machine ls\n\nthe ip address is shown under the URL column. Use that without the port number shown there. See\nhttps://docs.docker.com/machine/get-started/ for more details.\n\n__ https://docs.docker.com/linux/\n__ https://docs.docker.com/windows/\n__ https://docs.docker.com/mac/\n__ https://docs.docker.com/windows/step_three/\n\nDeveloper's playground\n~~~~~~~~~~~~~~~~~~~~~~\n\nIf you are a developer and want to play with Docker_, you can checkout SoL sources and\n\n* build an image with ``make docker-build``\n* change the admin credentials with ``make docker-change-admin``\n* start SoL within a Docker container with ``make docker-start``, then visit\n ``http://localhost:6996/`` as usual\n\nSee ``Makefile.docker`` for other related targets.\n\nRoadmap\n~~~~~~~\n\n1. Provide some *Unix shell scripts* and *Windows batch files* to make the end users happier\n2. Complete this section\n3. Figure out how to build a new image on hub.docker.com whenever a new SoL release happens\n\n\nThe good old way\n----------------\n\n1. Install ``SoL`` using ``pip``::\n\n pip install SoL\n\n that will download the latest version of SoL from PyPI__ and all its dependencies as well\n\n __ https://pypi.python.org/pypi/SoL\n\n2. Install ExtJS_ 4.2.1::\n\n python3 -m metapensiero.extjs.desktop\n\n3. Create a standard config file::\n\n soladmin create-config config.ini\n\n and edit it as appropriate; you can also directly specify the name and the password of the\n *super user* (by default the name is ``admin`` and the password will be asked\n interactively)::\n\n soladmin create-config --admin differentone --password str4nge\n\n4. Setup the database::\n\n soladmin initialize-db config.ini\n\n5. Load official data::\n\n soladmin restore config.ini\n\n6. Run the application server::\n\n pserve config.ini\n\n7. Enjoy!\n ::\n\n firefox http://localhost:6996/\n\n or, for poor Window$ users or just because using Python makes you\n happier::\n\n python -m webbrowser http://localhost:6996/\n\n\nDevelopment\n===========\n\nThe complete sources are available on Bitbucket__ and can be downloaded with the following\ncommand::\n\n git clone https://bitbucket.org/lele/sol\n\nI recommend using a *virtual environment* to keep you isolated from the system packages::\n\n python3 -m venv env\n source env/bin/activate\n\nAfter that, you can setup a development environment by executing the command::\n\n pip install -r requirements/development.txt\n\nYou must then install the required ExtJS 4 sources executing::\n\n python -m metapensiero.extjs.desktop --src\n\nIf you are a developer, you are encouraged to create your own `fork` of the software and\npossibly open a `pull request`: I will happily merge your changes!\n\nYou can run the test suite with either\n\n::\n\n make test\n\nor\n\n::\n\n python setup.py nosetests\n\n__ https://bitbucket.org/lele/sol\n\n\nI18N / L10N\n-----------\n\nCurrently SoL is translated in English\\ [#]_, French and Italian. If you know other languages\nand want to contribute, the easiest way to create a new translation is to create an account on\nthe Weblate__ site and follow its `translators guide`__.\n\n.. image:: https://hosted.weblate.org/widgets/sol/-/287x66-white.png\n :target: https://hosted.weblate.org/engage/sol/\n :alt: Translation status\n :align: center\n\nOtherwise if like me you prefer using more traditional tools\\ [#]_ you can extract a copy of\nthe sources and operate directly on the local catalogs under the directory ``src/sol/locale``.\n\nTo extract translatable messages use the following command::\n\n make update-catalogs\n\nTo check your work you must compile them with::\n\n make compile-catalogs\n\n__ https://hosted.weblate.org/projects/sol/\n__ http://docs.weblate.org/en/latest/user/index.html\n\n\nFeedback and support\n--------------------\n\nIf you run in troubles, or want to suggest something, or simply a desire of saying *\u201cThank\nyou\u201d* raises up, feel free to contact me via email as ``lele at metapensiero dot it``.\n\nConsider also joining the `dedicated mailing list`__ where you can get in contact with other\nusers of the application. There is also an `issues tracker`__ where you can open a new tickets\nabout bugs or enhancements.\n\n__ https://groups.google.com/d/forum/sol-users\n__ https://bitbucket.org/lele/sol/issues\n\n-----\n\n.. [#] As of this writing I'm using version 3.5.1 and I'd recommend using that, but SoL used to\n work great with Python 3.3 and Python 3.4 as well.\n\n.. [#] In fact it may even be already installed!\n\n.. [#] The are actually two distinct catalogs, to take into account US and UK variants.\n\n.. [#] GNU Emacs comes to mind of course, but there are zillions of them: start looking at the\n `gettext page `_ on Wikipedia.\n\n\n.. -*- coding: utf-8 -*-\n\nChanges\n-------\n\n3.39 (2017-03-16)\n~~~~~~~~~~~~~~~~~\n\n* Re-release to workaround a `buildout issue`__ with non-normalized requirements\n\n__ https://github.com/buildout/buildout/issues/317\n\n\n3.38 (2017-03-16)\n~~~~~~~~~~~~~~~~~\n\n* Do not allow deletion of players who are responsible of something\n\n* Prevent silly cycle between championships\n\n* Fix translation of player's name in the matches panel\n\n\n3.37 (2016-08-03)\n~~~~~~~~~~~~~~~~~\n\n* Tweak the layout of the \"boards\" view to make it more readable expecially for team events\n\n* Allow manual re-pairing of any round, not just the first\n\n* Prevent insertion of \"empty\" names and descriptions\n\n\n3.36 (2016-06-21)\n~~~~~~~~~~~~~~~~~\n\n* Allow removal of the player's nickname (reported by Daniele)\n\n* Fix scorecards printout, avoiding final page full of empty scorecards (thanks again to\n Daniele)\n\n* Take into account merged players when serving the lit pages to Google\n\n* New lit page listing players associated to a particular club\n\n\n3.35 (2016-06-08)\n~~~~~~~~~~~~~~~~~\n\n* The default filter on players subscription now shows only those who played at least one\n tourney organized by the current club in the last year (see `issue 12`__)\n\n* Workaround to overly caching behaviour on some browsers\n\n__ https://bitbucket.org/lele/sol/issues/12/more-effective-way-of-filtering-potential\n\n\n3.34 (2016-05-31)\n~~~~~~~~~~~~~~~~~\n\n* The local IP address of the machine running SoL will be displayed on the console when the\n instance starts, when possible\n\n* Print \"page X of Y\" on all printouts (asked by Daniele)\n\n* Reduce waste of paper filling the last scorecards printout page with blank cards (asked by\n Daniele)\n\n\n3.33 (2016-05-29)\n~~~~~~~~~~~~~~~~~\n\n* Show an hyperlinked QRCode on the header of most printouts that opens the corresponding Lit\n page\n\n* When a round is playing, show a link to the countdown on the tourney's Lit page\n\n\n3.32 (2016-05-15)\n~~~~~~~~~~~~~~~~~\n\n* Reimplement the `clock` window with a new `pre-countdown`, to be shown while preparing the\n next round (see `issue 11`__)\n\n__ https://bitbucket.org/lele/sol/issues/11/new-ideas-for-the-clock\n\n\n3.31 (2016-04-26)\n~~~~~~~~~~~~~~~~~\n\n* Re-release due to PyPI fault\n\n\n3.30 (2016-04-26)\n~~~~~~~~~~~~~~~~~\n\n* New \"all\" pairing method, to allow playing tournaments with less than eight competitors\n without occasional show-stoppers\n\n\n3.29 (2016-04-19)\n~~~~~~~~~~~~~~~~~\n\n* Disallow reorder on the matches panel while user is inserting scores\n\n* Don't show competitor's rate when there is not associated rating\n\n\n3.28 (2016-04-01)\n~~~~~~~~~~~~~~~~~\n\n* Add a ``--data-dir`` option to ``soladmin create-config`` to specify a different location of\n persistent state\n\n* Recommend Python 3.5\n\n* Initial&incomplete Docker image setup: needs further documentation and some helper tools\n\n\n3.27 (2016-03-23)\n~~~~~~~~~~~~~~~~~\n\n* Fix problem that prevented loading SoL 2 dumps containing a tourney associated with old\n championship\n\n* In the matches panel, highlight the winning competitor\n\n\n3.26 (2016-02-16)\n~~~~~~~~~~~~~~~~~\n\n* ``soladmin create-config`` and ``soladmin update-config`` can change the name and the\n password of the super user\n\n* The final badges show the player's points, bucholz and netscore\n\n\n3.25 (2015-12-06)\n~~~~~~~~~~~~~~~~~\n\n* Now the admin password can be passed as an option to ``soladmin create-config``\n\n* Request JSON format backup in ``soladmin restore`` (**N.B.**: this requires that the remote\n server is at least at version 3.23)\n\n\n3.24 (2015-12-01)\n~~~~~~~~~~~~~~~~~\n\n* Fix translation glitch\n\n\n3.23 (2015-12-01)\n~~~~~~~~~~~~~~~~~\n\n* Faster alternative JSON-based dumps and backups, the default is still YAML though\n\n* Always use the serial pairing method when there are less than eight competitors\n\n\n3.22 (2015-11-27)\n~~~~~~~~~~~~~~~~~\n\n* Re-release due to PyPI fault\n\n\n3.21 (2015-11-27)\n~~~~~~~~~~~~~~~~~\n\n* Refresh package dependencies\n\n\n3.20 (2015-06-07)\n~~~~~~~~~~~~~~~~~\n\n* New menu action to assign ownership of multiple records at once\n\n* New \"owners admin\" permission to permit normal users to adjust ownership of everything\n\n\n3.19 (2015-05-26)\n~~~~~~~~~~~~~~~~~\n\n* Fix URL generation when filtering active players\n\n* Do not fail badly when trying to merge players while importing data\n\n* Handle the case of retired players, while recomputing the rating\n\n\n3.18 (2015-04-04)\n~~~~~~~~~~~~~~~~~\n\n* Handle the \"around midnight\" case when asking the estimated start time\n\n* Fix a long standing bug with dictionary-based field editors\n\n\n3.17 (2015-03-22)\n~~~~~~~~~~~~~~~~~\n\n* Fix the ordering used to compute the next round when delay of top players pairing is disabled\n\n* Ask the estimated start time when printing the scorecards\n\n* Quicker interaction with the grid filters when adding players to a tournament\n\n\n3.16 (2015-02-28)\n~~~~~~~~~~~~~~~~~\n\n* Allow rectification of any round results\n\n* Fix visualization of notification windows\n\n\n3.15 (2015-02-20)\n~~~~~~~~~~~~~~~~~\n\n* Fix default values in several places\n\n* Rectify assignment of highest numbered board to phantom matches\n\n* Use single click to edit values when entering scores and final bounties\n\n* Show the actual rank used to compute the next turn\n\n\n3.14 (2015-01-21)\n~~~~~~~~~~~~~~~~~\n\n* Fix distribution, including the new robots.txt file\n\n\n3.13 (2015-01-20)\n~~~~~~~~~~~~~~~~~\n\n* Use the OGG format instead of MP3 for the sound files\n\n* Fix tourney replication\n\n* Always assign the highest numbered board to phantom matches\n\n\n3.12 (2014-12-24)\n~~~~~~~~~~~~~~~~~\n\n* Integrate the initial French translation, thanks to St\u00e9phane Cano\n\n* Fix visibility of buttons after deletion of final round\n\n* Use \"bounty\" instead of \"final prize\", hopefully reducing confusion\n\n\n3.11 (2014-12-06)\n~~~~~~~~~~~~~~~~~\n\n* Fix import of championships chain\n\n* Workaround to an annoying bug in ExtJS 4.2.1 grid TAB handling\n\n* Fix strange problem with logout quickly followed by a new login (experienced by Elisa)\n\n* Add missing article related to the Queen to the italian rules (reported by Daniele)\n\n\n3.10 (2014-11-21)\n~~~~~~~~~~~~~~~~~\n\n* Fix ratings modelization that prevented database dumps\n\n* Rectify opponents matches Lit page, showing only direct matches\n\n\n3.9 (2014-11-08)\n~~~~~~~~~~~~~~~~\n\n* Fix glitch in victories computation in the wins trend chart\n\n\n3.8 (2014-11-08)\n~~~~~~~~~~~~~~~~\n\n* Allow to restrict rating usage to a single club\n\n* Add player's opponents summaries to the Lit interface\n\n\n3.7 (2014-10-19)\n~~~~~~~~~~~~~~~~\n\n* Fix matches panel title, when focusing on a single competitor\n\n* Properly populate the responsible field when showing duplicated players\n\n* Disallow merging of not owned players\n\n\n3.6 (2014-09-13)\n~~~~~~~~~~~~~~~~\n\n* Raise the pageSize parameter of the Board view to 999\n\n\n3.5 (2014-09-12)\n~~~~~~~~~~~~~~~~\n\n* Do not show \"my\" items shortcuts for the guest user\n\n\n3.4 (2014-09-11)\n~~~~~~~~~~~~~~~~\n\n* Fix localization issues related to reloading the translations catalog, when the user's\n language is different from the browser's default\n\n* Fix ranking printouts, widening the prize column\n\n* Omit the QRCode after more than three days since the event's date\n\n* New actions to easily open tourney's championship and championship's club\n\n\n3.3 (2014-09-10)\n~~~~~~~~~~~~~~~~\n\n* Add a QRCode on the first page of some printouts, pointing to the \"equivalent\" Lit page\n\n* Minor tweaks to the font sizes of the personal badges printout\n\n\n3.2 (2014-09-07)\n~~~~~~~~~~~~~~~~\n\n* Filter out future tourneys by default, to avoid confusion\n\n* Change the \"asis\" prizing method: it now assigns a decreasing sequence of integer numbers\n\n* New \"centesimal\" prizing method: similar to the millesimal, but starting from 100\n\n* New variant of top level windows, showing \"my\" items, launched by shortcuts on the desktop\n\n\n3.1 (2014-09-04)\n~~~~~~~~~~~~~~~~\n\n* Protect the clock against accidental stops\n\n* Store the timestamp of the countdown start in the database\n\n* Reset the filters when showing possibly duplicated players\n\n* Handle tournament finals, either simple ones or \"best of three\" matches\n\n* Parametrize the delay of top players pairing\n\n\n3.0 (2014-08-31)\n~~~~~~~~~~~~~~~~\n\n* Tiny fix to the italian translation catalog\n\n* Final 3.0 release, at last!\n\n\nPrevious changes are here__.\n\n__ https://bitbucket.org/lele/sol/master/OLDERCHANGES.rst\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/lele/sol", "keywords": "web", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "SoL", "package_url": "https://pypi.org/project/SoL/", "platform": "", "project_url": "https://pypi.org/project/SoL/", "project_urls": { "Homepage": "https://bitbucket.org/lele/sol" }, "release_url": "https://pypi.org/project/SoL/3.39/", "requires_dist": null, "requires_python": "", "summary": "Carrom tournaments management", "version": "3.39" }, "last_serial": 4141614, "releases": { "3.0": [ { "comment_text": "", "digests": { "md5": "77641f7943d86b35120aa4d82188956d", "sha256": "029b50d91415504fec210d239df4bb559d79ee331177ef79e67ea8a3f3d6fbba" }, "downloads": -1, "filename": "SoL-3.0-py3.3.egg", "has_sig": false, "md5_digest": "77641f7943d86b35120aa4d82188956d", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3562193, "upload_time": "2014-08-31T16:05:45", "url": "https://files.pythonhosted.org/packages/e8/65/bfd688d241681a22fc5ca1df6170bea1c98cd32198b8c894d2e8e7970114/SoL-3.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "ee4f11a34f1415895e1880b80edcd833", "sha256": "bac272973b53e3531d3fe399b6e434f25d8139c405a5086437d5e5f438e34dd4" }, "downloads": -1, "filename": "SoL-3.0.tar.gz", "has_sig": false, "md5_digest": "ee4f11a34f1415895e1880b80edcd833", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4897302, "upload_time": "2014-08-31T16:04:35", "url": "https://files.pythonhosted.org/packages/92/a6/f30f85b0c0194aaa11551dc4a2133716dd5b29965f21f065be0bbf4073d6/SoL-3.0.tar.gz" } ], "3.0a1": [ { "comment_text": "", "digests": { "md5": "ec578bcfded6e162c071120110fce924", "sha256": "a2766dc8884cd67205bbcbce961b3cfe3962d4ba614775b81cbd485e8e1f1fff" }, "downloads": -1, "filename": "SoL-3.0a1-py3.3.egg", "has_sig": false, "md5_digest": "ec578bcfded6e162c071120110fce924", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3393175, "upload_time": "2014-03-03T21:32:42", "url": "https://files.pythonhosted.org/packages/50/31/65b19bf45281fda96bd569b4582be99e7bfef86e864fcb2d053f101016db/SoL-3.0a1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "bb12b0fcbe908977cfd92339ccce737d", "sha256": "dce2d07c3d4372f969ba86173cb055b0501ecae87bebed5b86090c3a8105a1ec" }, "downloads": -1, "filename": "SoL-3.0a1.tar.gz", "has_sig": false, "md5_digest": "bb12b0fcbe908977cfd92339ccce737d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6207421, "upload_time": "2014-03-03T21:31:35", "url": "https://files.pythonhosted.org/packages/f7/dc/5a650206a931042215730d3277e6333bb504efe98ca2f7bca0b74c32712b/SoL-3.0a1.tar.gz" } ], "3.0a10": [ { "comment_text": "", "digests": { "md5": "9eb33da80f2f4b7e8adc946168ace8d6", "sha256": "79db64961899a6d37f08056c89ac0c511f95ca04a50008b518b2854bd3cf45e5" }, "downloads": -1, "filename": "SoL-3.0a10-py3.3.egg", "has_sig": false, "md5_digest": "9eb33da80f2f4b7e8adc946168ace8d6", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3472528, "upload_time": "2014-03-31T19:37:10", "url": "https://files.pythonhosted.org/packages/21/83/1f69b93b3789b1c02b3a8ad7aa2d92103c754355e5122c10600dd4d93c6d/SoL-3.0a10-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "79591f94c2bdcbd3cc68019917ba3de9", "sha256": "1090bae37772be84a994de6ab03583b6bc73131f6993b18003620a6dee8b0480" }, "downloads": -1, "filename": "SoL-3.0a10.tar.gz", "has_sig": false, "md5_digest": "79591f94c2bdcbd3cc68019917ba3de9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4824631, "upload_time": "2014-03-31T19:35:59", "url": "https://files.pythonhosted.org/packages/e0/44/9f7c516e332681d013a0d6df16e36659f5b74209b5c9a47fa6dc3bc32e13/SoL-3.0a10.tar.gz" } ], "3.0a11": [ { "comment_text": "", "digests": { "md5": "059e80986c95e5e2888bbb60513fefc8", "sha256": "4bf50d4b0a2efb37a8be1b723f2f911c53c537c5194544c569a1d508c4505828" }, "downloads": -1, "filename": "SoL-3.0a11-py3.3.egg", "has_sig": false, "md5_digest": "059e80986c95e5e2888bbb60513fefc8", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3477836, "upload_time": "2014-04-04T13:03:30", "url": "https://files.pythonhosted.org/packages/74/26/c320b591cc1db8f1967ba0c3f8c48c5e11d92789fb70f78a3b67d4960e00/SoL-3.0a11-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "e6de8cf1efb82dcbdfd7d4e07bbc4aae", "sha256": "321d63bb862ed0adebc45f4126c128de8adcdb8934cb7fd0927b4ae8aef453c5" }, "downloads": -1, "filename": "SoL-3.0a11.tar.gz", "has_sig": false, "md5_digest": "e6de8cf1efb82dcbdfd7d4e07bbc4aae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4834030, "upload_time": "2014-04-04T13:02:21", "url": "https://files.pythonhosted.org/packages/57/42/608e14a179c7ad4e90ba13d388a4a09d34a54adf3a7ee53ffa0c940c5b59/SoL-3.0a11.tar.gz" } ], "3.0a12": [ { "comment_text": "", "digests": { "md5": "7d8a69b85f18fa280051551d4f0d845d", "sha256": "2302c2c8fe58da1c4e10c1565754676cd92faf81c266fccff7d166777670d970" }, "downloads": -1, "filename": "SoL-3.0a12-py3.3.egg", "has_sig": false, "md5_digest": "7d8a69b85f18fa280051551d4f0d845d", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3478037, "upload_time": "2014-04-04T14:12:12", "url": "https://files.pythonhosted.org/packages/16/c0/c1b0e756406616be7c8dca7c0e6a0d5be413e9a8bcde3ce5660954e2dde9/SoL-3.0a12-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "6e997eb1d285b1af9f37a70bbb1bd06e", "sha256": "f22359597790a0da86f9bcb9b294ca28f73ebba42fede562e9a7c918119fd3fc" }, "downloads": -1, "filename": "SoL-3.0a12.tar.gz", "has_sig": false, "md5_digest": "6e997eb1d285b1af9f37a70bbb1bd06e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4834213, "upload_time": "2014-04-04T14:11:04", "url": "https://files.pythonhosted.org/packages/70/a1/a01513e5e8b4deb3b608dab6d009a62cc435631e4354122e0168aab83737/SoL-3.0a12.tar.gz" } ], "3.0a13": [ { "comment_text": "", "digests": { "md5": "0d36671ad0716b3fe58d336109cf1cc0", "sha256": "8b99d6f5ecbe4796a121d2e6d2521fd621379f1d5bd4a769d0b4e5311bdb626e" }, "downloads": -1, "filename": "SoL-3.0a13-py3.3.egg", "has_sig": false, "md5_digest": "0d36671ad0716b3fe58d336109cf1cc0", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3477875, "upload_time": "2014-04-05T18:17:37", "url": "https://files.pythonhosted.org/packages/49/e5/35fbbf18b57d7d2260a514d2655622ccf1c6f52010d2167f6b92877c4ca6/SoL-3.0a13-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "c528f3bb5b28aa026fb9faa787411c97", "sha256": "275f0900707f67ea1621fb54e164c115e68bde94c8e35fb98c5896d585cd575b" }, "downloads": -1, "filename": "SoL-3.0a13.tar.gz", "has_sig": false, "md5_digest": "c528f3bb5b28aa026fb9faa787411c97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4834088, "upload_time": "2014-04-05T18:16:29", "url": "https://files.pythonhosted.org/packages/5e/ff/dcf3eb6fa96fb478ab7b80b09c49f98b5799488b8dee8095033e98093bc1/SoL-3.0a13.tar.gz" } ], "3.0a14": [ { "comment_text": "", "digests": { "md5": "78f4ec789bd55136a16c85327a02c924", "sha256": "0747f3465e106aacdaaa7bcf188ff6621d664b2739058745d004e9b487e50d18" }, "downloads": -1, "filename": "SoL-3.0a14-py3.3.egg", "has_sig": false, "md5_digest": "78f4ec789bd55136a16c85327a02c924", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3478072, "upload_time": "2014-04-06T12:20:16", "url": "https://files.pythonhosted.org/packages/46/9c/7c054d4660da1abb86e124f911000654cba35353c75181be0bf56362301e/SoL-3.0a14-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "7e81566697cf4b4f4e3afe7b07d83008", "sha256": "b3cb17370833f9ca03178c2b0f4674ea927a204dd43a1b09d3113c5fec65d58e" }, "downloads": -1, "filename": "SoL-3.0a14.tar.gz", "has_sig": false, "md5_digest": "7e81566697cf4b4f4e3afe7b07d83008", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4834248, "upload_time": "2014-04-06T12:19:08", "url": "https://files.pythonhosted.org/packages/1e/ad/d00a1dbe9514ae78cf32532b06a15cc8a56dc7b3bf316904413dfea81ad1/SoL-3.0a14.tar.gz" } ], "3.0a15": [ { "comment_text": "", "digests": { "md5": "a6d95071045ca81a4e0a69ee2434ef94", "sha256": "5fc85f93071161ab80655331197bdaacefdf47ed283f17a858cafdcdad507c99" }, "downloads": -1, "filename": "SoL-3.0a15-py3.3.egg", "has_sig": false, "md5_digest": "a6d95071045ca81a4e0a69ee2434ef94", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3535300, "upload_time": "2014-04-25T08:06:37", "url": "https://files.pythonhosted.org/packages/43/de/6959255268b0a2aca0b0a99882b74c7a1b983e97903c3efef895aa9505a7/SoL-3.0a15-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "9d9bd040a2145ba4ffaf16f6198c29ef", "sha256": "ac2ae53556652fa2fdff1937643e34c842a36b30bd113492ec2fbbb810a621db" }, "downloads": -1, "filename": "SoL-3.0a15.tar.gz", "has_sig": false, "md5_digest": "9d9bd040a2145ba4ffaf16f6198c29ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4902400, "upload_time": "2014-04-25T08:05:27", "url": "https://files.pythonhosted.org/packages/16/d8/3262e5b35de9771943474d1186a9f43970ddf4b4b129862ad97bd6ed1a48/SoL-3.0a15.tar.gz" } ], "3.0a16": [ { "comment_text": "", "digests": { "md5": "49373c30da7b1552154eb36e3d04b1f8", "sha256": "33e26453bb2279d31c77b76ce87142f0c188ba248bbdcaa529c7a973735da61e" }, "downloads": -1, "filename": "SoL-3.0a16-py3.3.egg", "has_sig": false, "md5_digest": "49373c30da7b1552154eb36e3d04b1f8", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3538051, "upload_time": "2014-05-16T12:43:13", "url": "https://files.pythonhosted.org/packages/99/7a/e56d1ab44a305bbc321452a3b508e585fb5a6821029048a2da276981ac8a/SoL-3.0a16-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "21dba65f761e1c186d051dd26844b522", "sha256": "41b221102292786f834de059241ee2b11c58ad425e606d5c364ac82bf92ad50f" }, "downloads": -1, "filename": "SoL-3.0a16.tar.gz", "has_sig": false, "md5_digest": "21dba65f761e1c186d051dd26844b522", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4903638, "upload_time": "2014-05-16T12:42:04", "url": "https://files.pythonhosted.org/packages/28/2c/a5471b24414a15e0ed14211b3e219398c3d41069837d64b9b79104ed078b/SoL-3.0a16.tar.gz" } ], "3.0a17": [ { "comment_text": "", "digests": { "md5": "c20ee3fa209f694c5e2ef70b108471e7", "sha256": "095854f6c53d945f5a09893d96f16de5ee1e5896344e574ac3c0594974f5205a" }, "downloads": -1, "filename": "SoL-3.0a17-py3.3.egg", "has_sig": false, "md5_digest": "c20ee3fa209f694c5e2ef70b108471e7", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3539289, "upload_time": "2014-05-16T13:28:47", "url": "https://files.pythonhosted.org/packages/00/20/4707409f306bac41df8468e45ed5379c168526f8aa142fed2a54f61aff96/SoL-3.0a17-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "f33807c892945d99c498cf500c3417c7", "sha256": "8986cc736a2481e3271edfa5d063fef4194b18ac7a9518d5a4b75a3ef9868510" }, "downloads": -1, "filename": "SoL-3.0a17.tar.gz", "has_sig": false, "md5_digest": "f33807c892945d99c498cf500c3417c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4904549, "upload_time": "2014-05-16T13:27:37", "url": "https://files.pythonhosted.org/packages/28/4b/4a938c83fa226797d2afffdeb121758501459607d3bccdbedb7b5f2db576/SoL-3.0a17.tar.gz" } ], "3.0a18": [ { "comment_text": "", "digests": { "md5": "67b75bce5891812159162d0f82ea872b", "sha256": "93cb3710d7d958486acee260a62bb0d11566ae713d1eb3fbae09d7f96580e18f" }, "downloads": -1, "filename": "SoL-3.0a18-py3.3.egg", "has_sig": false, "md5_digest": "67b75bce5891812159162d0f82ea872b", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3539869, "upload_time": "2014-05-24T12:16:54", "url": "https://files.pythonhosted.org/packages/1b/6b/1618a3866dad55b7918b1174bdf274214501d3859a74f67f403e230fc9f1/SoL-3.0a18-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "fd5d4b2df39228b4db15204d40dabb51", "sha256": "f12fb2df2022e82e7f57d69e38d4df9bc55a87c5d8ee6b29e54b68f5ee9975d9" }, "downloads": -1, "filename": "SoL-3.0a18.tar.gz", "has_sig": false, "md5_digest": "fd5d4b2df39228b4db15204d40dabb51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4904672, "upload_time": "2014-05-24T12:15:45", "url": "https://files.pythonhosted.org/packages/2f/2f/3c5b6f091fe8cae056ec264548adfea4bc95343611cde5a8607bb487fe10/SoL-3.0a18.tar.gz" } ], "3.0a19": [ { "comment_text": "", "digests": { "md5": "2629f773603fde80975d410ebca37e9b", "sha256": "266a57aadf3c28efec7cb4056d20c5bf0cb57843cba252e3a2861fb27562a63c" }, "downloads": -1, "filename": "SoL-3.0a19-py3.3.egg", "has_sig": false, "md5_digest": "2629f773603fde80975d410ebca37e9b", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3544801, "upload_time": "2014-06-10T20:31:35", "url": "https://files.pythonhosted.org/packages/95/4d/7565d53372bcd15750238ec5be298fa47837b205652baa0dfb431223dece/SoL-3.0a19-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "6c39fe84d260c7856231848102789800", "sha256": "f2e8cf51ef9d35eecc5b315dfb6989673599353aa46dafe3552f7b2277d5b0b6" }, "downloads": -1, "filename": "SoL-3.0a19.tar.gz", "has_sig": false, "md5_digest": "6c39fe84d260c7856231848102789800", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4907455, "upload_time": "2014-06-10T20:30:24", "url": "https://files.pythonhosted.org/packages/6d/e7/c52dc187332c3416812cada414b426e890b33e366fda5712f92653aaa0c4/SoL-3.0a19.tar.gz" } ], "3.0a2": [ { "comment_text": "", "digests": { "md5": "de82191e61cff381faad6a6c93edbd70", "sha256": "73bfbd86a8dfd0791b9ed04e1a6e807a5fb4076ee9e0f84589b3ea3eff284fff" }, "downloads": -1, "filename": "SoL-3.0a2-py3.3.egg", "has_sig": false, "md5_digest": "de82191e61cff381faad6a6c93edbd70", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3393081, "upload_time": "2014-03-04T08:48:11", "url": "https://files.pythonhosted.org/packages/81/2b/6bcac731f786451fb9faafbacccce7ac3bb11b07f069e6ffc1c0a80dd18e/SoL-3.0a2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "cd7679305bc57cad93eed0f49602f77d", "sha256": "e792ba6d0728909517dd2a5bb98654673d2c21c37d4a813b72652ff23c76b88c" }, "downloads": -1, "filename": "SoL-3.0a2.tar.gz", "has_sig": false, "md5_digest": "cd7679305bc57cad93eed0f49602f77d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6207034, "upload_time": "2014-03-04T08:47:04", "url": "https://files.pythonhosted.org/packages/49/4f/8f00a43fe595f754d641edfd92a80590bc6215a7ad6973921921f99e1c53/SoL-3.0a2.tar.gz" } ], "3.0a20": [ { "comment_text": "", "digests": { "md5": "7ef4c810448ff1e92d7c71e3076bd2ce", "sha256": "b08bbbb521dec679446795b4f5bdaba8c204e1087de3916c6c11ff48c50be7c6" }, "downloads": -1, "filename": "SoL-3.0a20-py3.3.egg", "has_sig": false, "md5_digest": "7ef4c810448ff1e92d7c71e3076bd2ce", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3545914, "upload_time": "2014-06-12T07:46:07", "url": "https://files.pythonhosted.org/packages/b6/bc/f46e378f7d86650739ce249df586e92db42e5672196700dfead8d5c4f3ba/SoL-3.0a20-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "a3fbf1a2901f0b4745cec7ebd0009d60", "sha256": "9c2c1ceedf19d724e02a7bc5f1025c18ce78e6963ff6a199813bb76a932c65cf" }, "downloads": -1, "filename": "SoL-3.0a20.tar.gz", "has_sig": false, "md5_digest": "a3fbf1a2901f0b4745cec7ebd0009d60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4907787, "upload_time": "2014-06-12T07:44:57", "url": "https://files.pythonhosted.org/packages/4d/ea/7bcbe123367ea261927a9d39013b6059b420a65a9fe020ef69c6814f4f83/SoL-3.0a20.tar.gz" } ], "3.0a21": [ { "comment_text": "", "digests": { "md5": "04e3a9c535ce5356c093a7a0c386480b", "sha256": "11ba9d8b9cba0f072fd8ee6125fa0322f9f51e2c3485654a90ba5735bb4013e2" }, "downloads": -1, "filename": "SoL-3.0a21-py3.3.egg", "has_sig": false, "md5_digest": "04e3a9c535ce5356c093a7a0c386480b", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3545096, "upload_time": "2014-06-13T06:31:56", "url": "https://files.pythonhosted.org/packages/1b/a7/bd4310891129db17ec03d40d8167c295414aa149954d53fc1163b195e645/SoL-3.0a21-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "e654a78f703b7de4f272a0a48a537898", "sha256": "4f12e8eaccb2c6967854f072560962684de95ff8d3eaeaceacced6e640e3696d" }, "downloads": -1, "filename": "SoL-3.0a21.tar.gz", "has_sig": false, "md5_digest": "e654a78f703b7de4f272a0a48a537898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4907335, "upload_time": "2014-06-13T06:30:47", "url": "https://files.pythonhosted.org/packages/cf/ab/2fc5628cf5e07cbdad38dea87808ed2e86bf0cdd85dfb339f4737d09d836/SoL-3.0a21.tar.gz" } ], "3.0a22": [ { "comment_text": "", "digests": { "md5": "dac927eb1c36ee455d73ccc9d5f351b7", "sha256": "077b0816abb61ae12af3ab00a5a37d9da43d162cb1e43c42f1068776d84bfe88" }, "downloads": -1, "filename": "SoL-3.0a22-py3.3.egg", "has_sig": false, "md5_digest": "dac927eb1c36ee455d73ccc9d5f351b7", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3562239, "upload_time": "2014-06-16T20:04:16", "url": "https://files.pythonhosted.org/packages/af/3d/5b37a71cda3c55a2d4b02b04834548858f198371b1c3bf566ec18846bce9/SoL-3.0a22-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "595e8d246e6cca2990873d9758ff4485", "sha256": "df4efc05c347c3e70ff17a42e075bbd55cb187717974d9b5a48b3410141b0624" }, "downloads": -1, "filename": "SoL-3.0a22.tar.gz", "has_sig": false, "md5_digest": "595e8d246e6cca2990873d9758ff4485", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4921615, "upload_time": "2014-06-16T20:03:06", "url": "https://files.pythonhosted.org/packages/db/35/05d4a1b56a33ba616d4076a610fd48c4f4f7e6f4b5cfca243ba84bb625fc/SoL-3.0a22.tar.gz" } ], "3.0a23": [ { "comment_text": "", "digests": { "md5": "982647ac97496516cef77d7bb82f75f7", "sha256": "133385d8fb228e56c16d93e175100bc627448bcf1b893b951a2f0dcd5f0886d2" }, "downloads": -1, "filename": "SoL-3.0a23-py3.3.egg", "has_sig": false, "md5_digest": "982647ac97496516cef77d7bb82f75f7", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3579811, "upload_time": "2014-07-06T11:41:25", "url": "https://files.pythonhosted.org/packages/8a/c8/189b9d9cd419baadc1dc8f0c66595650ef480d846949e231221dd316ec1b/SoL-3.0a23-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "524d68a27f5a7f80d85648ff4b1a933f", "sha256": "929584da8e94b4705d0a5973ff0d1194b96353b37a8d7bcc7033c94b83910824" }, "downloads": -1, "filename": "SoL-3.0a23.tar.gz", "has_sig": false, "md5_digest": "524d68a27f5a7f80d85648ff4b1a933f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4936260, "upload_time": "2014-07-06T11:40:13", "url": "https://files.pythonhosted.org/packages/89/a2/7ac95fb90f3515bcbaaa478858b43887b34443ce950c758ddc848be93336/SoL-3.0a23.tar.gz" } ], "3.0a24": [ { "comment_text": "", "digests": { "md5": "0bc111d967cb8d5d286cc251b0ee08a5", "sha256": "990e5c02dc9b45a21b06e88d6ac1b4d64b2bf7d41915e24b0f750718d7c4aa6f" }, "downloads": -1, "filename": "SoL-3.0a24-py3.3.egg", "has_sig": false, "md5_digest": "0bc111d967cb8d5d286cc251b0ee08a5", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3582439, "upload_time": "2014-07-08T09:14:44", "url": "https://files.pythonhosted.org/packages/b0/c6/0507a0bc9e6a56debd0eb95749b1b9523f35d3919c0182101322278f952d/SoL-3.0a24-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "f9c9dc548166306276141490fb10b45b", "sha256": "6906ea18605bd61c43e0f522701d4cff7fa9ccfd245fd12cd08bec7698e252fd" }, "downloads": -1, "filename": "SoL-3.0a24.tar.gz", "has_sig": false, "md5_digest": "f9c9dc548166306276141490fb10b45b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4937619, "upload_time": "2014-07-08T09:13:33", "url": "https://files.pythonhosted.org/packages/fa/f8/e362e8dd810d2dbe4f5959497981406e4b8469712d4da80487214ec4dcb0/SoL-3.0a24.tar.gz" } ], "3.0a25": [ { "comment_text": "", "digests": { "md5": "8802deb9e39fe16fbde16166525275e7", "sha256": "d30cbf84afa86e58bd34913183b794e65a67e3b07dd59077f02416c67c0e18b3" }, "downloads": -1, "filename": "SoL-3.0a25-py3.3.egg", "has_sig": false, "md5_digest": "8802deb9e39fe16fbde16166525275e7", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3596454, "upload_time": "2014-07-10T15:59:56", "url": "https://files.pythonhosted.org/packages/b4/94/2d4d038e97f94bf9c0c6503881ff0e671bfea27b32f67966d585beac9769/SoL-3.0a25-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "02f1809e9a0590aad3698798dd5df070", "sha256": "70975bc27b83dbf290a427e94743b1dee75e143122f885e7b1fcde7a2990e18f" }, "downloads": -1, "filename": "SoL-3.0a25.tar.gz", "has_sig": false, "md5_digest": "02f1809e9a0590aad3698798dd5df070", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4941339, "upload_time": "2014-07-10T15:58:45", "url": "https://files.pythonhosted.org/packages/ac/3a/12ce448b5b254674f4e8f59497cce3e5055998af85e20b475072d0ac37c0/SoL-3.0a25.tar.gz" } ], "3.0a26": [ { "comment_text": "", "digests": { "md5": "5cd58eeb659d0aca9732207f5b4972b0", "sha256": "07777a75f6b76062879a73357522f236f45337bc319e21476f639e200df86275" }, "downloads": -1, "filename": "SoL-3.0a26-py3.3.egg", "has_sig": false, "md5_digest": "5cd58eeb659d0aca9732207f5b4972b0", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3603460, "upload_time": "2014-07-10T16:57:34", "url": "https://files.pythonhosted.org/packages/ef/2f/063a241f8234b970dadaa2d47dbd02f4f5be302f7ae86857b44735fa231f/SoL-3.0a26-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "a74113f1769b8b2032419911c72916a3", "sha256": "1ffc69a17314be68e5802fcfbadff22a4054a4f17046bc17ff3fd19054286e9e" }, "downloads": -1, "filename": "SoL-3.0a26.tar.gz", "has_sig": false, "md5_digest": "a74113f1769b8b2032419911c72916a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4949830, "upload_time": "2014-07-10T16:56:22", "url": "https://files.pythonhosted.org/packages/58/ad/4963d65870b76db8dd65c6a31671a07cf01b6f77f87bb4cd9483168f375e/SoL-3.0a26.tar.gz" } ], "3.0a27": [ { "comment_text": "", "digests": { "md5": "7ec8966e512c2062936b18a72a75f2c1", "sha256": "f9891dc5e94cf71f5e5d791ceca6633026493946eed88dc0ff4b0224a9b85f17" }, "downloads": -1, "filename": "SoL-3.0a27-py3.3.egg", "has_sig": false, "md5_digest": "7ec8966e512c2062936b18a72a75f2c1", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3602545, "upload_time": "2014-07-10T18:01:41", "url": "https://files.pythonhosted.org/packages/74/10/86b0d291a7ca1f91ff6782c2a18ef64fdda715a21b2aa3a7a5c19150daff/SoL-3.0a27-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "0191ce8c2c10a2e782f1a0b1adfa5953", "sha256": "cb15874794265d672bc7d40480ffed976c61f3853f82b834341ed15496f01fb6" }, "downloads": -1, "filename": "SoL-3.0a27.tar.gz", "has_sig": false, "md5_digest": "0191ce8c2c10a2e782f1a0b1adfa5953", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4948399, "upload_time": "2014-07-10T18:00:28", "url": "https://files.pythonhosted.org/packages/21/52/797bc52ac67c76fe7ab91fb655b5161ad756450d9931a93637f3029f699d/SoL-3.0a27.tar.gz" } ], "3.0a28": [ { "comment_text": "", "digests": { "md5": "a6496bf01c0277e69be273220e423469", "sha256": "cd5ca6b12ce9c88b334809616787cf198f32ad9fe30519949107da620c2e293b" }, "downloads": -1, "filename": "SoL-3.0a28-py3.3.egg", "has_sig": false, "md5_digest": "a6496bf01c0277e69be273220e423469", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3528811, "upload_time": "2014-07-11T23:15:52", "url": "https://files.pythonhosted.org/packages/78/7f/c58dc6070711ca0a166646fd1fa89c06fd6404fd3c4fa41d158061138a8e/SoL-3.0a28-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "60e5dba674b8683983bb5f00864b88e3", "sha256": "9e3ce5c143ecc1d8d196aeaf8764d2cfea87e201060d17efa8d0057facc3076b" }, "downloads": -1, "filename": "SoL-3.0a28.tar.gz", "has_sig": false, "md5_digest": "60e5dba674b8683983bb5f00864b88e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4874619, "upload_time": "2014-07-11T23:14:43", "url": "https://files.pythonhosted.org/packages/41/49/0f129e8515d5817da04fc38b9d1e86e99c14a95a4b17a3cd13bb7072ed38/SoL-3.0a28.tar.gz" } ], "3.0a3": [ { "comment_text": "", "digests": { "md5": "be4cb8f8298b30674ff15cde01cf054a", "sha256": "44552304cd967fee0344b6ab60cdc1031fd54665bf5880923126c8f1d3766104" }, "downloads": -1, "filename": "SoL-3.0a3-py3.3.egg", "has_sig": false, "md5_digest": "be4cb8f8298b30674ff15cde01cf054a", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3467555, "upload_time": "2014-03-06T10:13:10", "url": "https://files.pythonhosted.org/packages/e7/bd/1b3ed86b045fbd8f981e916e1e92a808d8d9aba61a8bef248af4657a0a63/SoL-3.0a3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "bba7b74ac2cd4e68b3a2b99300db03c8", "sha256": "3978235064ca5e40e1f54ffd0a4a3846011f8496c1cc9f5c7f58142a872cd735" }, "downloads": -1, "filename": "SoL-3.0a3.tar.gz", "has_sig": false, "md5_digest": "bba7b74ac2cd4e68b3a2b99300db03c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4820089, "upload_time": "2014-03-06T10:11:59", "url": "https://files.pythonhosted.org/packages/ec/b7/618e3398a78bedcbdf6960fa197efc273e602f37616fe877c016d1d91bf7/SoL-3.0a3.tar.gz" } ], "3.0a4": [ { "comment_text": "", "digests": { "md5": "8ab6bebb55992b77b0b59ce03e930f07", "sha256": "4eedc5cee52a8b64688304fb1fffd175fd02ac5f9a77b83ef7c5ab57cf9ae62d" }, "downloads": -1, "filename": "SoL-3.0a4-py3.3.egg", "has_sig": false, "md5_digest": "8ab6bebb55992b77b0b59ce03e930f07", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3468037, "upload_time": "2014-03-06T18:46:29", "url": "https://files.pythonhosted.org/packages/f8/ac/2a3cd6710f45f55571efc333e118f2aaa770ec31674201b2353af7d874d2/SoL-3.0a4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "daa5aa5a709923d655d7dc544bb84859", "sha256": "b3aeb76e371227ff2f54f57bf76a58fe4b7f179684c3b5c8ccd09067e17ee049" }, "downloads": -1, "filename": "SoL-3.0a4.tar.gz", "has_sig": false, "md5_digest": "daa5aa5a709923d655d7dc544bb84859", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4820888, "upload_time": "2014-03-06T18:45:20", "url": "https://files.pythonhosted.org/packages/17/d2/c1cdb6acd441d50edc5a42a5059d68d0be5749b7915e84a13b5450890b50/SoL-3.0a4.tar.gz" } ], "3.0a5": [ { "comment_text": "", "digests": { "md5": "5730047132dee65a35e5f10375a543b0", "sha256": "1b77664275a7076eca824a33170b41b422b6a38ce23794a0665ef00b6e9be63d" }, "downloads": -1, "filename": "SoL-3.0a5-py3.3.egg", "has_sig": false, "md5_digest": "5730047132dee65a35e5f10375a543b0", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3469042, "upload_time": "2014-03-06T22:15:58", "url": "https://files.pythonhosted.org/packages/46/57/3ebe27816f770fd23fc025fd5a9be44cd7e3cfeb935b31c153ec9e85c1a5/SoL-3.0a5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "b2cfa9e61ce45dc275ab46bbffe2d771", "sha256": "82d0473b641ccd2aee557c408468cc2de7b86dfc1f161b3b85707adb325dc540" }, "downloads": -1, "filename": "SoL-3.0a5.tar.gz", "has_sig": false, "md5_digest": "b2cfa9e61ce45dc275ab46bbffe2d771", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4821111, "upload_time": "2014-03-06T22:14:50", "url": "https://files.pythonhosted.org/packages/bb/83/e141e570e1239deaa3794a0470a101d81dfa29e55ba393e18832151c31f8/SoL-3.0a5.tar.gz" } ], "3.0a6": [ { "comment_text": "", "digests": { "md5": "2f1ef1abceb566cf7467195d0959a2a3", "sha256": "74d9c95e87cdf412c97fc2880992166baeac23340270e09158906e3ce825e830" }, "downloads": -1, "filename": "SoL-3.0a6-py3.3.egg", "has_sig": false, "md5_digest": "2f1ef1abceb566cf7467195d0959a2a3", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3469175, "upload_time": "2014-03-08T09:03:21", "url": "https://files.pythonhosted.org/packages/f1/f8/3f7a8d9a178cceea036ca8b433e97de42f913d099268ae27b542eb3251c6/SoL-3.0a6-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "bdbe0d180fb40a3572a528eba009d00b", "sha256": "ec05fbdf07544b9c1253952c198c724be818708c473c5528fe4a969c6625266e" }, "downloads": -1, "filename": "SoL-3.0a6.tar.gz", "has_sig": false, "md5_digest": "bdbe0d180fb40a3572a528eba009d00b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4821962, "upload_time": "2014-03-08T09:02:13", "url": "https://files.pythonhosted.org/packages/55/03/78d054d5cead4904c450678bc8bc38e6d2de75166fb74480515c9be8d32d/SoL-3.0a6.tar.gz" } ], "3.0a7": [ { "comment_text": "", "digests": { "md5": "c1f7e702f1d796ee056cc1097707ba85", "sha256": "d83385c3bc4c63ad2d712bdf108f3fce22663400d87fee3ad9fce4bebd1ef467" }, "downloads": -1, "filename": "SoL-3.0a7-py3.3.egg", "has_sig": false, "md5_digest": "c1f7e702f1d796ee056cc1097707ba85", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3470476, "upload_time": "2014-03-17T08:45:52", "url": "https://files.pythonhosted.org/packages/3e/e5/6f2dd914d6dfa4e61dc819e360b8376b48d9f9b1daf390700252c47ec32b/SoL-3.0a7-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "db9042aad29b53ed82b311a4a03b6b8a", "sha256": "146d264306403877d9cefb434e68a75e1bd4f25b5e062e34cea4c29cbc4df413" }, "downloads": -1, "filename": "SoL-3.0a7.tar.gz", "has_sig": false, "md5_digest": "db9042aad29b53ed82b311a4a03b6b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4823327, "upload_time": "2014-03-17T08:44:42", "url": "https://files.pythonhosted.org/packages/91/41/f026e646db710730754afb03c4f9273553de8fd144c31497f8f2529e02f4/SoL-3.0a7.tar.gz" } ], "3.0a8": [ { "comment_text": "", "digests": { "md5": "fb19a49963c5b74318508007ac41a247", "sha256": "c63d7d61c3422cccfbdb4cc9d17256d01cd8a46e0c27bac5e4e148d36b5234eb" }, "downloads": -1, "filename": "SoL-3.0a8-py3.3.egg", "has_sig": false, "md5_digest": "fb19a49963c5b74318508007ac41a247", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3469855, "upload_time": "2014-03-22T14:03:51", "url": "https://files.pythonhosted.org/packages/3a/b0/971b2f3b8591118807cc4710355f1482b4a90a40cef9388a2eab6acc9704/SoL-3.0a8-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "57c243cf2456fdb1d0d123e0189479d6", "sha256": "1a2c2ee47208d6ce710c35767a2f5b9f28087a7706035f5e60c9788fb8f7b31f" }, "downloads": -1, "filename": "SoL-3.0a8.tar.gz", "has_sig": false, "md5_digest": "57c243cf2456fdb1d0d123e0189479d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4823114, "upload_time": "2014-03-22T14:02:43", "url": "https://files.pythonhosted.org/packages/8a/85/c44ad89efe06fee2eac32fa038ae88a87b70dd9e0fefbde1eb9f4910b661/SoL-3.0a8.tar.gz" } ], "3.0a9": [ { "comment_text": "", "digests": { "md5": "cfd75317bf827bb2b0761533fc19b03e", "sha256": "f32d83e30f95eee60715128f9225cf6ee7db1ad5bd7104eccacd0277d027f256" }, "downloads": -1, "filename": "SoL-3.0a9-py3.3.egg", "has_sig": false, "md5_digest": "cfd75317bf827bb2b0761533fc19b03e", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3469906, "upload_time": "2014-03-28T08:39:31", "url": "https://files.pythonhosted.org/packages/b5/46/e2e77f3140f7ad0b074685b181f43fd96496b60fcfd90cc8b0e6b2ab05a2/SoL-3.0a9-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "96aa209ecf58fa055abbe97accce88bc", "sha256": "35c1fa0c9b8c807dad90f7fccb662f142e466200deff23d75b5aab7f871d801e" }, "downloads": -1, "filename": "SoL-3.0a9.tar.gz", "has_sig": false, "md5_digest": "96aa209ecf58fa055abbe97accce88bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4823831, "upload_time": "2014-03-28T08:38:21", "url": "https://files.pythonhosted.org/packages/12/1b/91992df6c185ce774643df2febb2375587af85a8776a7caafb50917bda38/SoL-3.0a9.tar.gz" } ], "3.0b1": [ { "comment_text": "", "digests": { "md5": "ab2519cbff1015c03b0f4d31fe653fa2", "sha256": "82fd03cad3e3646f2a5aac728e7c4359072a82e620242422c1c1de8a2ccfc910" }, "downloads": -1, "filename": "SoL-3.0b1-py3.3.egg", "has_sig": false, "md5_digest": "ab2519cbff1015c03b0f4d31fe653fa2", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3539436, "upload_time": "2014-07-13T10:59:11", "url": "https://files.pythonhosted.org/packages/48/06/5bcd571ee4fced3797d61b1d5fb18957af78a201362a983ef4235007037d/SoL-3.0b1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "d40a977ed6c19dffc47ef5547fcbf8e8", "sha256": "d37bbba706615fbe5bc65928ed4cfcd9faebece4102e6caa079b6a8efcb2f421" }, "downloads": -1, "filename": "SoL-3.0b1.tar.gz", "has_sig": false, "md5_digest": "d40a977ed6c19dffc47ef5547fcbf8e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4880976, "upload_time": "2014-07-13T10:58:01", "url": "https://files.pythonhosted.org/packages/d7/3c/a7e015afe5707bf1096210b52da7d126f2aa677c9f0ece0eb72caa0650f9/SoL-3.0b1.tar.gz" } ], "3.0b2": [ { "comment_text": "", "digests": { "md5": "0a15fde9bac49b1c51c60a02d71da78c", "sha256": "4b08a9d5eaeb345a50a5ba0bae249e7082381f4d6b4640614de362e5fe3455ed" }, "downloads": -1, "filename": "SoL-3.0b2-py3.3.egg", "has_sig": false, "md5_digest": "0a15fde9bac49b1c51c60a02d71da78c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3541314, "upload_time": "2014-07-13T19:48:27", "url": "https://files.pythonhosted.org/packages/38/e7/50d00ce7b5a326b102b32dc0b7d287aa19b5455e8701c5fe54c1fcfe5ff6/SoL-3.0b2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "b19d79ebc699fc863bd0a91f8e1771ee", "sha256": "ebf1b6f130bcc55fbbbb40d0512c98d7aa371d3ebaaccb6fc0a4f07c6f45624e" }, "downloads": -1, "filename": "SoL-3.0b2.tar.gz", "has_sig": false, "md5_digest": "b19d79ebc699fc863bd0a91f8e1771ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4882323, "upload_time": "2014-07-13T19:47:17", "url": "https://files.pythonhosted.org/packages/b6/b5/60d047b889d3cb1473ee0e9b8a5cdddba0e0e40ae4b5f1f0acb1d06ac9dd/SoL-3.0b2.tar.gz" } ], "3.0b3": [ { "comment_text": "", "digests": { "md5": "07516b4befdf8a0661783d304c24c34c", "sha256": "5f418511e38234c68304434a9c0e3f1a6763eeffdd5d04385f2593b352b2ec2d" }, "downloads": -1, "filename": "SoL-3.0b3-py3.3.egg", "has_sig": false, "md5_digest": "07516b4befdf8a0661783d304c24c34c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3542945, "upload_time": "2014-07-14T10:10:41", "url": "https://files.pythonhosted.org/packages/4a/c2/565210197a037eeec0aee8d39a83022ffdeb4421dca84f5cfe728ea692ab/SoL-3.0b3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "0a8f844798fa97ea0aec4de480472eb9", "sha256": "0ccf56dfb8977192c9251d61d183074f9ff640830d473dc476a7c967565e6db5" }, "downloads": -1, "filename": "SoL-3.0b3.tar.gz", "has_sig": false, "md5_digest": "0a8f844798fa97ea0aec4de480472eb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4883230, "upload_time": "2014-07-14T10:09:31", "url": "https://files.pythonhosted.org/packages/7a/26/2414902c3e22b64104ec9ab28f6c6d0155c771e48c1aefdfb6e14a1d9d0e/SoL-3.0b3.tar.gz" } ], "3.0b4": [ { "comment_text": "", "digests": { "md5": "a30d1f03842b18b39283830c2614b609", "sha256": "50467eec5c0f9d27272661f8666a7dd0938584ca6e34cea56f39691652d18c8a" }, "downloads": -1, "filename": "SoL-3.0b4-py3.3.egg", "has_sig": false, "md5_digest": "a30d1f03842b18b39283830c2614b609", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3545002, "upload_time": "2014-07-14T16:24:29", "url": "https://files.pythonhosted.org/packages/7f/26/bc5d57281a69b5b7bf807b93c323b0a897544e7d63bb41828570f85630a0/SoL-3.0b4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "d4a4ceb4dc57c2b86b298dcd97f56007", "sha256": "0a0e99621500dcf408b90b892c3b187df5fcb20b7cf518a5deca47287f3db200" }, "downloads": -1, "filename": "SoL-3.0b4.tar.gz", "has_sig": false, "md5_digest": "d4a4ceb4dc57c2b86b298dcd97f56007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4885563, "upload_time": "2014-07-14T16:23:19", "url": "https://files.pythonhosted.org/packages/3a/9a/0a69fc84e3e5d3caca146e4215d6391a1a0dc3c3080f1be3b3eec7d8aee3/SoL-3.0b4.tar.gz" } ], "3.0b5": [ { "comment_text": "", "digests": { "md5": "6cba474539124ccbeb79ad5528eaecc2", "sha256": "5a9ae809a06630df0e7eb063895821ac47663fe34acb1ff0280c267e2b2bdb71" }, "downloads": -1, "filename": "SoL-3.0b5-py3.3.egg", "has_sig": false, "md5_digest": "6cba474539124ccbeb79ad5528eaecc2", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3550305, "upload_time": "2014-07-16T11:57:55", "url": "https://files.pythonhosted.org/packages/b2/f8/8ead43fd02144ba6415624488cd8fda67cbae2ef48aa1542fcab6113b534/SoL-3.0b5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "bdba731eae00725ecf34ccf8606bddba", "sha256": "6389551ef69e3ecf9e150009111154ac06b8a180d0e7fa0368f68eef0e8ecd90" }, "downloads": -1, "filename": "SoL-3.0b5.tar.gz", "has_sig": false, "md5_digest": "bdba731eae00725ecf34ccf8606bddba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4890098, "upload_time": "2014-07-16T11:56:45", "url": "https://files.pythonhosted.org/packages/2e/30/ae4302c8ff3271848e24435b833e863d5b1dc43fc6963d85484dfdcdd4f8/SoL-3.0b5.tar.gz" } ], "3.0b6": [ { "comment_text": "", "digests": { "md5": "aff85bd1a62b9780bfb2316d06ffc8a5", "sha256": "bb895141dbd9e1779e7cd55d513c5e8f53171bbafb26b9db7f856bd534ac6682" }, "downloads": -1, "filename": "SoL-3.0b6-py3.3.egg", "has_sig": false, "md5_digest": "aff85bd1a62b9780bfb2316d06ffc8a5", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3551516, "upload_time": "2014-07-19T11:23:30", "url": "https://files.pythonhosted.org/packages/a0/e2/f736a724d4bed57a126aabedb100229c38639104e99ea481a37da8dde6d6/SoL-3.0b6-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "28cfc13d97292d69a4aa598234de8caa", "sha256": "aabde0aa6b838fb85cd58028f4a5b71a0ec460046c1129966f1ff4c184dd36a5" }, "downloads": -1, "filename": "SoL-3.0b6.tar.gz", "has_sig": false, "md5_digest": "28cfc13d97292d69a4aa598234de8caa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4889777, "upload_time": "2014-07-19T11:22:20", "url": "https://files.pythonhosted.org/packages/21/86/411f6eabdf44f32d77ef7d5e67f9a2f39478da98fd644020e0fb5e4c0159/SoL-3.0b6.tar.gz" } ], "3.0b7": [ { "comment_text": "", "digests": { "md5": "e6560124da77c11230290732feed4521", "sha256": "c1ba288ee03c025b04976997f9209daf6a1414012f4e2e2bb4749cd364f67933" }, "downloads": -1, "filename": "SoL-3.0b7-py3.3.egg", "has_sig": false, "md5_digest": "e6560124da77c11230290732feed4521", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3552459, "upload_time": "2014-07-19T15:51:08", "url": "https://files.pythonhosted.org/packages/29/c8/ac1d42a18c9d4751d2edce307bf14f70b1b52eadd81929f57a885cb93de9/SoL-3.0b7-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "73f5e5d2f2a904bdd9a0f013c0984017", "sha256": "bcec4cceb1e2ec3c237beadb364853880339a59267220a842e37fa35d4c5308c" }, "downloads": -1, "filename": "SoL-3.0b7.tar.gz", "has_sig": false, "md5_digest": "73f5e5d2f2a904bdd9a0f013c0984017", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4890418, "upload_time": "2014-07-19T15:49:58", "url": "https://files.pythonhosted.org/packages/5c/75/7342d71f776e42668f64aca8b526f09c84886fb44fcde206ae409184e762/SoL-3.0b7.tar.gz" } ], "3.0b8": [ { "comment_text": "", "digests": { "md5": "8d3a26a99de1e35dfb4bec776bcc212f", "sha256": "7b105d039d29fd678a56f7f9cd5b0288adfaaef2a5c05d819c94c0b471f04c7f" }, "downloads": -1, "filename": "SoL-3.0b8-py3.3.egg", "has_sig": false, "md5_digest": "8d3a26a99de1e35dfb4bec776bcc212f", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3551453, "upload_time": "2014-07-19T16:02:56", "url": "https://files.pythonhosted.org/packages/73/64/1abd05d7ef22892ed186467f881980dfe666cc6221305090618d5370bd8d/SoL-3.0b8-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "cc5b9515470bf9ddeb4dbba2c36cd6a6", "sha256": "9837834fd3d0578550fe8449cdaff9ff1908b34845408af21c6b66718312b535" }, "downloads": -1, "filename": "SoL-3.0b8.tar.gz", "has_sig": false, "md5_digest": "cc5b9515470bf9ddeb4dbba2c36cd6a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4889813, "upload_time": "2014-07-19T16:01:46", "url": "https://files.pythonhosted.org/packages/e0/f6/6a7dc62a36c83880eacfaa3d2f174785e9e11528a32c87b4a307519ce456/SoL-3.0b8.tar.gz" } ], "3.0b9": [ { "comment_text": "", "digests": { "md5": "e90e94d18fea5423a5291db3b7dd7d22", "sha256": "8afe500bcecd392a2e3adf670ed65ab1f386355179e2759392c8affce1916c5b" }, "downloads": -1, "filename": "SoL-3.0b9-py3.3.egg", "has_sig": false, "md5_digest": "e90e94d18fea5423a5291db3b7dd7d22", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3551410, "upload_time": "2014-07-21T11:02:56", "url": "https://files.pythonhosted.org/packages/56/c8/df50fb58ffa1bd67dcdea121d80cbd8860d6e1be38c26b25ca144149af98/SoL-3.0b9-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "a7545127b215c6d708d99bac2840e6f7", "sha256": "c915d63a94d58223fd6d75dd7f5681669951f6ea2af2e66747e5e3c00ccdff56" }, "downloads": -1, "filename": "SoL-3.0b9.tar.gz", "has_sig": false, "md5_digest": "a7545127b215c6d708d99bac2840e6f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4889723, "upload_time": "2014-07-21T11:01:47", "url": "https://files.pythonhosted.org/packages/24/3a/fd772b0b0e0e5ef71f3b006dec6bf5009eade7de4f139400dd7481bee9a4/SoL-3.0b9.tar.gz" } ], "3.0rc1": [ { "comment_text": "", "digests": { "md5": "68c746a70873070fc9eb5992f7dd7d6f", "sha256": "6cb90dae6f732fd84e6c0fff350b6c0ac14ad8543d388fd9b3298c2107ea7fee" }, "downloads": -1, "filename": "SoL-3.0rc1-py3.3.egg", "has_sig": false, "md5_digest": "68c746a70873070fc9eb5992f7dd7d6f", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3552372, "upload_time": "2014-07-24T08:37:37", "url": "https://files.pythonhosted.org/packages/fd/09/5f0a540d57c40895c6bdd997d534c7724ce877dd7c93bb3e30ee83ac0867/SoL-3.0rc1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "4e33006d7d85309d758d9b683399bb20", "sha256": "84b58fa21800bcdf81a7b4052179cf79c5a392f9f04cbd62803a359124081b7d" }, "downloads": -1, "filename": "SoL-3.0rc1.tar.gz", "has_sig": false, "md5_digest": "4e33006d7d85309d758d9b683399bb20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4890742, "upload_time": "2014-07-24T08:36:24", "url": "https://files.pythonhosted.org/packages/98/f2/041c5f4b24d971d7b77f2170768fb41bf53b31a0694394e375f78d3fb233/SoL-3.0rc1.tar.gz" } ], "3.0rc2": [ { "comment_text": "", "digests": { "md5": "44ed62ed859803a6d36f868954f09c5c", "sha256": "fdcfa10380128e725d4427530fe07743f52e717693bad308b6c81aad0c2ed64b" }, "downloads": -1, "filename": "SoL-3.0rc2-py3.3.egg", "has_sig": false, "md5_digest": "44ed62ed859803a6d36f868954f09c5c", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3551973, "upload_time": "2014-07-24T21:00:30", "url": "https://files.pythonhosted.org/packages/67/fe/f5222e0e8b89de0c5c78ece92a858750f44e3f8fcd414714336dec3e8e3e/SoL-3.0rc2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "53f42d4d42c0e5ffeb5dc14ad6700681", "sha256": "97e5f9887f071177fc40b9cff573763346c93fb6059654f39c0d04e2197c5543" }, "downloads": -1, "filename": "SoL-3.0rc2.tar.gz", "has_sig": false, "md5_digest": "53f42d4d42c0e5ffeb5dc14ad6700681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4890810, "upload_time": "2014-07-24T20:59:20", "url": "https://files.pythonhosted.org/packages/97/07/25d53e0932f34e8b8043e5b6ddc21a041746b1b5d6158d04b35ddf41aa3b/SoL-3.0rc2.tar.gz" } ], "3.0rc3": [ { "comment_text": "", "digests": { "md5": "cdd5aa971920c903acbe980ede966a80", "sha256": "3ac99ba0e7056636ab41735189bb27048b78dd226e48d900b09bf1615d98edc0" }, "downloads": -1, "filename": "SoL-3.0rc3-py3.3.egg", "has_sig": false, "md5_digest": "cdd5aa971920c903acbe980ede966a80", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3560146, "upload_time": "2014-08-17T17:03:26", "url": "https://files.pythonhosted.org/packages/34/7e/fc287cdedcaf073665849c39ddb8a42c5a86aa2c4a92c3636582d1986012/SoL-3.0rc3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "c9c4f79962d328278ed64389e8dda407", "sha256": "14164241a330b32e443dd283c3cf95a86bbba75538caf4f75dc1a0a7fce0f2a6" }, "downloads": -1, "filename": "SoL-3.0rc3.tar.gz", "has_sig": false, "md5_digest": "c9c4f79962d328278ed64389e8dda407", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4896431, "upload_time": "2014-08-17T17:02:16", "url": "https://files.pythonhosted.org/packages/46/12/6a7cbe3e2ceb675780b897a4b4bac04f9ac6bf4dc2e6ddbb943c2269e876/SoL-3.0rc3.tar.gz" } ], "3.0rc4": [ { "comment_text": "", "digests": { "md5": "8fa05db4230629739f80236bf8627088", "sha256": "f27f2dd34deaa125be838e3e9b6c374e90820659c41945c3b898a3febc9ecb32" }, "downloads": -1, "filename": "SoL-3.0rc4-py3.3.egg", "has_sig": false, "md5_digest": "8fa05db4230629739f80236bf8627088", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3562493, "upload_time": "2014-08-21T11:18:09", "url": "https://files.pythonhosted.org/packages/a3/e0/84586d0fa1ba3b95420c501417b7ad1fd0a7b92fd6a80d577dbabbfbab12/SoL-3.0rc4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "dcb36a20368e2cb0cf8ec517eb9a697e", "sha256": "fc5e54d9a93b0aeffc5a7ff68705202dc7aa3d2ef5ae67b6247b851b22e3fa9f" }, "downloads": -1, "filename": "SoL-3.0rc4.tar.gz", "has_sig": false, "md5_digest": "dcb36a20368e2cb0cf8ec517eb9a697e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4898165, "upload_time": "2014-08-21T11:16:59", "url": "https://files.pythonhosted.org/packages/1a/fa/ec86924c72e66549873c4486fe2519545e6a741f167d142e05e2ce468dcb/SoL-3.0rc4.tar.gz" } ], "3.0rc5": [ { "comment_text": "", "digests": { "md5": "5ebe229acff46afda67706b551efaf71", "sha256": "5f0d14de2f1471468c436e35dc75c5af26242a405bd07f5df2b04dc41423e0d3" }, "downloads": -1, "filename": "SoL-3.0rc5-py3.3.egg", "has_sig": false, "md5_digest": "5ebe229acff46afda67706b551efaf71", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3561825, "upload_time": "2014-08-21T18:37:02", "url": "https://files.pythonhosted.org/packages/3d/08/0821f5e48ebb398d3de58c29282a42b705d79b6a0ced43ec6e86acfc1d2d/SoL-3.0rc5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "c42adb2faf6c9a951f5c275e00587154", "sha256": "84d4d5d512253a3ccc391246502b32bf7d3485f6e259e812d82f7b55bf31dad2" }, "downloads": -1, "filename": "SoL-3.0rc5.tar.gz", "has_sig": false, "md5_digest": "c42adb2faf6c9a951f5c275e00587154", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4897088, "upload_time": "2014-08-21T18:35:52", "url": "https://files.pythonhosted.org/packages/e4/62/bd5e6471e21f84a185aa0f2108f8f548e7fd6196b9cef41b8b0441dae164/SoL-3.0rc5.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "1fa7a5e89daccc5eec864e9910638752", "sha256": "4d5bde3a49607abd05b2f12e7ddae3f61ee3cd776b13465506f25354aa6e0d85" }, "downloads": -1, "filename": "SoL-3.1-py3.3.egg", "has_sig": false, "md5_digest": "1fa7a5e89daccc5eec864e9910638752", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3586734, "upload_time": "2014-09-04T17:34:57", "url": "https://files.pythonhosted.org/packages/40/31/ee54fed60316b5fa39f10167a815ddc9e7c171f05bdc6dee1807fbcebfeb/SoL-3.1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "a3c5f86c067b3167918d875a2eabc63b", "sha256": "677ebe1ef094867b592d1cbd1b3fc3e0f111b4f525551273e6312f0d5ac58366" }, "downloads": -1, "filename": "SoL-3.1.tar.gz", "has_sig": false, "md5_digest": "a3c5f86c067b3167918d875a2eabc63b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4918891, "upload_time": "2014-09-04T17:33:45", "url": "https://files.pythonhosted.org/packages/b7/b0/713e80430bc3e7da88559e1e54854eb33e7e6e19b556e6e2e4a9b7c16b03/SoL-3.1.tar.gz" } ], "3.10": [ { "comment_text": "", "digests": { "md5": "16d7d1340e3f4af49bfe138ec54c2255", "sha256": "afde9af4680129a91a89193ef658091b9448f58dfab12f7d441172d497e3cef5" }, "downloads": -1, "filename": "SoL-3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "16d7d1340e3f4af49bfe138ec54c2255", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3453211, "upload_time": "2014-11-20T23:19:57", "url": "https://files.pythonhosted.org/packages/26/ad/a2d3edac0a51710f224249b9226b962a04ee503c8a099aae6eebe00069e6/SoL-3.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5dafb32f4ac78b2c4a4796c56837c806", "sha256": "4ae33951af603cafeb81fa6edfae9d08536901f7a2668cb429b964ca959b3682" }, "downloads": -1, "filename": "SoL-3.10.tar.gz", "has_sig": false, "md5_digest": "5dafb32f4ac78b2c4a4796c56837c806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4946769, "upload_time": "2014-11-20T23:18:48", "url": "https://files.pythonhosted.org/packages/a3/78/e0ad28fe2a50b83cd4528c9f21b7befa02047eada487f6f949de364a73cc/SoL-3.10.tar.gz" } ], "3.11": [ { "comment_text": "", "digests": { "md5": "7477ef48924b58b7926ab5ecac54ae4d", "sha256": "f23cc355235a3f8396136c9b6bd61096ed425d16bc60f58f3e277f5046183f9c" }, "downloads": -1, "filename": "SoL-3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "7477ef48924b58b7926ab5ecac54ae4d", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3454497, "upload_time": "2014-12-06T19:00:50", "url": "https://files.pythonhosted.org/packages/ad/ba/ee2692368763cfa441bafc39fd2e632a6d9125ab7b20f34bb56935ebc2ef/SoL-3.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ab2ee5126d43f8e1f2c681a5253d834", "sha256": "4ac1a54074eda6a9b495ebf6dbb113f362eefd540521c0e21be0664097f61932" }, "downloads": -1, "filename": "SoL-3.11.tar.gz", "has_sig": false, "md5_digest": "3ab2ee5126d43f8e1f2c681a5253d834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4947518, "upload_time": "2014-12-06T18:59:43", "url": "https://files.pythonhosted.org/packages/da/7a/215b2710ae5abf981fd77b8bad9e091209230d71b849841e50037da5f39c/SoL-3.11.tar.gz" } ], "3.12": [ { "comment_text": "", "digests": { "md5": "24f62aefa5a680d73f7858897952b208", "sha256": "31a9bb00089942d8703df8c026518395ebc4f08369744372a8e4d6085d754553" }, "downloads": -1, "filename": "SoL-3.12-py3-none-any.whl", "has_sig": false, "md5_digest": "24f62aefa5a680d73f7858897952b208", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3517060, "upload_time": "2014-12-24T18:14:58", "url": "https://files.pythonhosted.org/packages/cb/86/e6708abadce5b4d7b7d29e5b1b1b9d1df0f548029507efda0848e9f6e9c6/SoL-3.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9d9dfea6ebe946dae8609aa26d79bef", "sha256": "4a655c021a75235bb53d66c2bd3c0a52d8a9f24b1db27b09d4b4b4e397541c53" }, "downloads": -1, "filename": "SoL-3.12.tar.gz", "has_sig": false, "md5_digest": "d9d9dfea6ebe946dae8609aa26d79bef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5002208, "upload_time": "2014-12-24T18:13:49", "url": "https://files.pythonhosted.org/packages/16/d8/edcdd6d66889713084924bfb7eb4c040e384042b5faf2408be1082405c90/SoL-3.12.tar.gz" } ], "3.13": [ { "comment_text": "", "digests": { "md5": "63dbaa60dc0de8494d4fd5e457925319", "sha256": "80089ab12f003037bec44d88ae2354a0eabc5cd6b2a1dd439e831c2a313e454d" }, "downloads": -1, "filename": "SoL-3.13-py3-none-any.whl", "has_sig": false, "md5_digest": "63dbaa60dc0de8494d4fd5e457925319", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3585056, "upload_time": "2015-01-20T12:28:17", "url": "https://files.pythonhosted.org/packages/be/44/f5d44b70f976041ccc5fe4f386dea91b007676923f2d8a86c7ac043d9f21/SoL-3.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "326007bc070acd3add78cb3ac0b6b751", "sha256": "cce1a1444659e92ecac504f6361d97c8ef78b268abd2795381b409712857c7cf" }, "downloads": -1, "filename": "SoL-3.13.tar.gz", "has_sig": false, "md5_digest": "326007bc070acd3add78cb3ac0b6b751", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5062952, "upload_time": "2015-01-20T12:27:06", "url": "https://files.pythonhosted.org/packages/4c/4f/d5401cd968f0491048fa0fe0096b32fbce3fa63643fe2a55e251cf31ea7d/SoL-3.13.tar.gz" } ], "3.14": [ { "comment_text": "", "digests": { "md5": "547fc7091f5f46db53f74cd2d948eacd", "sha256": "2da1fac87c4c751acf8eaff1e61aad53ac541717f6134c861e627fd96c349438" }, "downloads": -1, "filename": "SoL-3.14-py3-none-any.whl", "has_sig": false, "md5_digest": "547fc7091f5f46db53f74cd2d948eacd", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3678932, "upload_time": "2015-01-21T08:51:25", "url": "https://files.pythonhosted.org/packages/9d/be/feb86ff647ec3a2d77267d8ac7bb248ff9baf468931d049fb4f6049d068e/SoL-3.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e958cab2d3e356c7b3f73bba19756f4", "sha256": "c48525894293f8a59ca95c188d48507b13ce38e893b676e3f04bb15db6126d75" }, "downloads": -1, "filename": "SoL-3.14.tar.gz", "has_sig": false, "md5_digest": "1e958cab2d3e356c7b3f73bba19756f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5130848, "upload_time": "2015-01-21T08:50:10", "url": "https://files.pythonhosted.org/packages/4a/d3/53af0a15bf922219b782934b73e2a119de67229ab48247ba598135604082/SoL-3.14.tar.gz" } ], "3.15": [ { "comment_text": "", "digests": { "md5": "08baf1546e3c3db57479d97721901553", "sha256": "12d137d298a7bc1f4b97f6aa7d6b9fabbc05f69f70a55ca057221d840e5fd152" }, "downloads": -1, "filename": "SoL-3.15-py3-none-any.whl", "has_sig": false, "md5_digest": "08baf1546e3c3db57479d97721901553", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3679613, "upload_time": "2015-02-20T15:26:25", "url": "https://files.pythonhosted.org/packages/d3/4f/00de110681865694d052801e8ed79784019fcf97689b65ecac07d7c673e7/SoL-3.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "975eae724631c0a6dcdb4e04c9ad0f52", "sha256": "49ba48c1eda6186e558a91cd4ced910c7cdbf2ba3d50daa9cf2eb7a5d98054d3" }, "downloads": -1, "filename": "SoL-3.15.tar.gz", "has_sig": false, "md5_digest": "975eae724631c0a6dcdb4e04c9ad0f52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5131830, "upload_time": "2015-02-20T15:25:14", "url": "https://files.pythonhosted.org/packages/c3/4a/eb7eb7e085cb19665ad9911b8217d8cd74431b89be2c79e2da6ac341a259/SoL-3.15.tar.gz" } ], "3.16": [ { "comment_text": "", "digests": { "md5": "f21f986582bd2ac8921c109503eddf7f", "sha256": "f69d53348f901ebb49a9f132f330f5358af34538c4a373fd91026250afaff62c" }, "downloads": -1, "filename": "SoL-3.16-py3-none-any.whl", "has_sig": false, "md5_digest": "f21f986582bd2ac8921c109503eddf7f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3683580, "upload_time": "2015-02-28T17:43:20", "url": "https://files.pythonhosted.org/packages/ef/e1/7d7cbaac8222063317b1999a0c7e573360676c09f7315e8866231e29fef1/SoL-3.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de4c344b4b0bf8722a9117b35c421405", "sha256": "a820db7763ee57716258a9de9924e40fe8bf27f300bfcc35fd067265f12e77d6" }, "downloads": -1, "filename": "SoL-3.16.tar.gz", "has_sig": false, "md5_digest": "de4c344b4b0bf8722a9117b35c421405", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5136640, "upload_time": "2015-02-28T17:42:07", "url": "https://files.pythonhosted.org/packages/1e/6f/5c9e37bbf7a0e0d3080bb841f69091aed4f646328ff5f77a2d0d6a44d589/SoL-3.16.tar.gz" } ], "3.17": [ { "comment_text": "", "digests": { "md5": "c060582b7a787b546d1a80110d259283", "sha256": "877e8129cdab23b633847e07a28bcddc85c32335ff93f0c3b4b3f770b16b1d2e" }, "downloads": -1, "filename": "SoL-3.17-py3-none-any.whl", "has_sig": false, "md5_digest": "c060582b7a787b546d1a80110d259283", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3684600, "upload_time": "2015-03-22T08:51:54", "url": "https://files.pythonhosted.org/packages/5e/91/70fd81f6c857dcc21293e1f44d49974ff30e834820847dd99d31e0bce864/SoL-3.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8e26f39e423bc93c8694f9f01fc18e9", "sha256": "781d83a9f9f45d1bfa74277fbacbfdafdf9a5ef5837f4eaf0bad1aa9d805c57a" }, "downloads": -1, "filename": "SoL-3.17.tar.gz", "has_sig": false, "md5_digest": "c8e26f39e423bc93c8694f9f01fc18e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5136310, "upload_time": "2015-03-22T08:50:41", "url": "https://files.pythonhosted.org/packages/4a/62/6a430182169b6ef21b7dba170dc19eab300cf172580c23e30714aad507e7/SoL-3.17.tar.gz" } ], "3.18": [ { "comment_text": "", "digests": { "md5": "eadce8683235b79ac862b71dfda16590", "sha256": "1b1b6a1172b25e156525775226e536e7f9317d7b40d2bc51330b523f708934ed" }, "downloads": -1, "filename": "SoL-3.18-py3-none-any.whl", "has_sig": false, "md5_digest": "eadce8683235b79ac862b71dfda16590", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3685659, "upload_time": "2015-04-04T10:45:23", "url": "https://files.pythonhosted.org/packages/64/7a/fb80f8ae3ec05d20a6c90c160c5acdd51a778c8043657f5ea0bfd946199b/SoL-3.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79c38c92e48e5cdda4f068f09eb81a10", "sha256": "6c132a1119e1353a450ffb3dc4a5da65b1b9105d7bbe7041d28a8dd1945bc434" }, "downloads": -1, "filename": "SoL-3.18.tar.gz", "has_sig": false, "md5_digest": "79c38c92e48e5cdda4f068f09eb81a10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5137569, "upload_time": "2015-04-04T10:44:10", "url": "https://files.pythonhosted.org/packages/cf/c2/4e6e3edf0b9a85dbd71c6ecfa955954a0e40f9ada78fe1def6d81bebbf4e/SoL-3.18.tar.gz" } ], "3.19": [ { "comment_text": "", "digests": { "md5": "3929350e9a7b6b72f67e0e0a5efd1a40", "sha256": "3b07dc948f3641c7d2fc5cef38f9a3c41c916b5f4dda31e18e947c4d962793fd" }, "downloads": -1, "filename": "SoL-3.19-py3-none-any.whl", "has_sig": false, "md5_digest": "3929350e9a7b6b72f67e0e0a5efd1a40", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3690996, "upload_time": "2015-05-26T08:54:31", "url": "https://files.pythonhosted.org/packages/a6/97/bc2694e8a08aa4ca989e05cddf317e6e152aa1228cf4a75f21a0bd7d824a/SoL-3.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9ece3be168dbc940f1f9d083b2ba39c", "sha256": "b6a4d56063f638269a40ccaa742ce3c4e7b2fca37ce4269acb8284202841f378" }, "downloads": -1, "filename": "SoL-3.19.tar.gz", "has_sig": false, "md5_digest": "b9ece3be168dbc940f1f9d083b2ba39c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5139273, "upload_time": "2015-05-26T08:53:15", "url": "https://files.pythonhosted.org/packages/a9/95/31fa3c807b09c64e0d260c0ebbd2c2d5b58bdd7235e2a41333892d70d51b/SoL-3.19.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "71d42117d676808eb4f142d662f7c6b3", "sha256": "d9367c9306af691da7c00be40337ec1db2bf06bb3c06152158d29e675710ab67" }, "downloads": -1, "filename": "SoL-3.2-py3.3.egg", "has_sig": false, "md5_digest": "71d42117d676808eb4f142d662f7c6b3", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3604836, "upload_time": "2014-09-07T14:35:16", "url": "https://files.pythonhosted.org/packages/34/24/4e8e3590d54b9b0b64f6cc7c296587f4c74bca9e04ee5f7ddfc33914d522/SoL-3.2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "7add2958f0ef8f6f20e46a1c27ecf831", "sha256": "a804379c4bf94d59b292cf072b1e820bf47fb0d86478cc187d595b43353abab2" }, "downloads": -1, "filename": "SoL-3.2.tar.gz", "has_sig": false, "md5_digest": "7add2958f0ef8f6f20e46a1c27ecf831", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4936137, "upload_time": "2014-09-07T14:34:06", "url": "https://files.pythonhosted.org/packages/10/cc/107100e1ec105d2fd4ae1f78189b69b451aa65a6a2217bf7579935ba4bf3/SoL-3.2.tar.gz" } ], "3.20": [ { "comment_text": "", "digests": { "md5": "65d80b71a17f24159bedc3f7b83ea6fc", "sha256": "758eb61f0a0eba2ba1baf95a30363227dbca469aee7ec0c9f84214c251124e12" }, "downloads": -1, "filename": "SoL-3.20-py3-none-any.whl", "has_sig": false, "md5_digest": "65d80b71a17f24159bedc3f7b83ea6fc", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3696832, "upload_time": "2015-06-07T08:46:08", "url": "https://files.pythonhosted.org/packages/de/81/8d0fff6155a3ac560e13b26c83649aeb6ceee415b52b2084034b399f7ce5/SoL-3.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b00b693ed0a07da9c8ff7b53566ab2e9", "sha256": "80ed0ab6a39f4aa83ed5ebf002d58d4352eb27b140349788c758872617e6d955" }, "downloads": -1, "filename": "SoL-3.20.tar.gz", "has_sig": false, "md5_digest": "b00b693ed0a07da9c8ff7b53566ab2e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5145258, "upload_time": "2015-06-07T08:44:52", "url": "https://files.pythonhosted.org/packages/8b/11/4f77aa97a7248edce48017f205c7e16e198cc3698856367fb047cbfb1b42/SoL-3.20.tar.gz" } ], "3.21": [ { "comment_text": "", "digests": { "md5": "459795c597d6d3bdc732afd05ed434f2", "sha256": "328a9830a3af153d94b4425b093289be2b1aac2eb1653d5cfb19a30395924045" }, "downloads": -1, "filename": "SoL-3.21.tar.gz", "has_sig": false, "md5_digest": "459795c597d6d3bdc732afd05ed434f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5142953, "upload_time": "2015-11-27T13:19:53", "url": "https://files.pythonhosted.org/packages/c4/df/9d14c36d0f6ee41b31486ef54b4f8f20d12287d237c374ed9db7dc261e5e/SoL-3.21.tar.gz" } ], "3.22": [ { "comment_text": "", "digests": { "md5": "1da8ea7268823f4d00bdc0fc5d75c64d", "sha256": "9845f1429eca76dd8c1b99ceab67bad12e6db2567702ad7ddd44353e86b77a5e" }, "downloads": -1, "filename": "SoL-3.22-py3-none-any.whl", "has_sig": false, "md5_digest": "1da8ea7268823f4d00bdc0fc5d75c64d", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3687947, "upload_time": "2015-11-27T13:29:50", "url": "https://files.pythonhosted.org/packages/9f/be/f70051a1085a0d98d8e9336d0842f362c35eabfbbc2a388bf7d08648fb16/SoL-3.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6113391720d3775090a43f090d8ce053", "sha256": "ee438c1eada12a91c0bc843e87d56288d0691bb9045dffcf73810a802b6967cf" }, "downloads": -1, "filename": "SoL-3.22.tar.gz", "has_sig": false, "md5_digest": "6113391720d3775090a43f090d8ce053", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5141848, "upload_time": "2015-11-27T13:28:12", "url": "https://files.pythonhosted.org/packages/98/5d/e153f0e2f0eba588cfc5af492643a61f4fdd93f08a143e899675730a8e05/SoL-3.22.tar.gz" } ], "3.23": [ { "comment_text": "", "digests": { "md5": "2527b1bcee82f838aac8cc740239127f", "sha256": "31c429571331fe6c4e771eec2f0723c1f27fa66f88c72a2284dc2e2b9785bf76" }, "downloads": -1, "filename": "SoL-3.23-py3-none-any.whl", "has_sig": false, "md5_digest": "2527b1bcee82f838aac8cc740239127f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3690039, "upload_time": "2015-12-01T10:30:48", "url": "https://files.pythonhosted.org/packages/3a/bb/23ab4313f22aa0f7371ceff65ea0fab8a535ef7a94c6d72db671478a56be/SoL-3.23-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8a6643e74611ce9882732f71f05efcb", "sha256": "cc096bb7174959dfeaf5056fda13cedf8024d37d220405f56d43ccd9e9c8e66e" }, "downloads": -1, "filename": "SoL-3.23.tar.gz", "has_sig": false, "md5_digest": "a8a6643e74611ce9882732f71f05efcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5143934, "upload_time": "2015-12-01T10:29:28", "url": "https://files.pythonhosted.org/packages/56/b7/e38faf3212ed3558020717f722ffac08a4133cf1d97b4910dca61543ef87/SoL-3.23.tar.gz" } ], "3.24": [ { "comment_text": "", "digests": { "md5": "ca10332a991804da8497356767c76c65", "sha256": "ad61cd304df74122250eb8f7ea0ecf07498e15a9f6b4b94bbe0b46396ef51ad0" }, "downloads": -1, "filename": "SoL-3.24-py3-none-any.whl", "has_sig": false, "md5_digest": "ca10332a991804da8497356767c76c65", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3690093, "upload_time": "2015-12-01T11:15:47", "url": "https://files.pythonhosted.org/packages/36/b7/3cabeb1dfdd7ad4814a18a44a58118dda87587675dd091badccac65c6147/SoL-3.24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3c80e5f235e3390aec97973436f8b67", "sha256": "b41b99a5710dd915c5d3b6b3a70f12b0645b62f1daf2798278f5e99ef82e4b43" }, "downloads": -1, "filename": "SoL-3.24.tar.gz", "has_sig": false, "md5_digest": "a3c80e5f235e3390aec97973436f8b67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5144159, "upload_time": "2015-12-01T11:14:07", "url": "https://files.pythonhosted.org/packages/3c/0a/47eecdd9ec92660f72ab95cc8861484abefe2820e1d55af3c1c9fd2cf979/SoL-3.24.tar.gz" } ], "3.25": [ { "comment_text": "", "digests": { "md5": "09cb962c8d3d21a47fc0abc36fa3c1d2", "sha256": "a1dc8e07b83b4a66376472550548c6226e293d84e3e8ef627e4c4aaacd8d2660" }, "downloads": -1, "filename": "SoL-3.25-py3-none-any.whl", "has_sig": false, "md5_digest": "09cb962c8d3d21a47fc0abc36fa3c1d2", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3689945, "upload_time": "2015-12-06T10:46:20", "url": "https://files.pythonhosted.org/packages/81/bf/b13412a645ac58da8d8c55633bbaeb12dda8b5f5a9386a9163169d185106/SoL-3.25-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de01d26557e56cb9db1b5eef66ea11e7", "sha256": "b5ed993f02144657e3b017b304faf0ad16c34998a9ffa822fc79e425ba4e6079" }, "downloads": -1, "filename": "SoL-3.25.tar.gz", "has_sig": false, "md5_digest": "de01d26557e56cb9db1b5eef66ea11e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5143865, "upload_time": "2015-12-06T10:45:02", "url": "https://files.pythonhosted.org/packages/d8/50/781448225244a81bf54554c59f9d5d0105f349e715f94dc0739dca09c63f/SoL-3.25.tar.gz" } ], "3.26": [ { "comment_text": "", "digests": { "md5": "55863abcf8d5173abf60f734da4f4987", "sha256": "691d0b95242b60721eb82d5e395f79e20d64e5dec8ef4c6c6e68dc983a2877a8" }, "downloads": -1, "filename": "SoL-3.26-py3-none-any.whl", "has_sig": false, "md5_digest": "55863abcf8d5173abf60f734da4f4987", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3691982, "upload_time": "2016-02-16T15:59:47", "url": "https://files.pythonhosted.org/packages/2b/48/47b3df2664a0245f7b98947ba688fe8e36e12bd02e4fb3bf70c3d736ee00/SoL-3.26-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "761ddf5f4374bb5942ec0a080138b069", "sha256": "16af4bd9d83cfbe1f52cfcb07cc2b7e4107dcd5c6060bc9879d8ebece22cde2a" }, "downloads": -1, "filename": "SoL-3.26.tar.gz", "has_sig": false, "md5_digest": "761ddf5f4374bb5942ec0a080138b069", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5145982, "upload_time": "2016-02-16T15:58:30", "url": "https://files.pythonhosted.org/packages/68/09/e1c16118525ec08905af02fe1f2e153934ff873801eaefeb1e881cb58dea/SoL-3.26.tar.gz" } ], "3.27": [ { "comment_text": "", "digests": { "md5": "a879ec33cecbf48c6c01ffc3c74a8ba6", "sha256": "2fca22c7a88b42171599504ac2c63d0bbb85c2049746e932d7451a783d350136" }, "downloads": -1, "filename": "SoL-3.27-py3-none-any.whl", "has_sig": false, "md5_digest": "a879ec33cecbf48c6c01ffc3c74a8ba6", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3694043, "upload_time": "2016-03-23T10:12:44", "url": "https://files.pythonhosted.org/packages/39/4e/83d0f98951961167e5ef0f96b16020e425017a2b74f2372661151ac13820/SoL-3.27-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c0cc7cc7b84b3c82bb9d73c39192349", "sha256": "33a21aa7a2b3bbe83a0abfe98b21569915a12bb48d774e740d4dc46dfb2c26f0" }, "downloads": -1, "filename": "SoL-3.27.tar.gz", "has_sig": false, "md5_digest": "3c0cc7cc7b84b3c82bb9d73c39192349", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5147893, "upload_time": "2016-03-23T10:11:21", "url": "https://files.pythonhosted.org/packages/d8/e2/c10cbf71727012eca06446fd52312fa54c9638ca69b2d8abbae62a58390c/SoL-3.27.tar.gz" } ], "3.28": [ { "comment_text": "", "digests": { "md5": "8672991b454c42c88025f26279c6d7ee", "sha256": "47799a044b782152faeea4229a5ef867b506fdbdec04a099c39ee2507880ed9b" }, "downloads": -1, "filename": "SoL-3.28-py3-none-any.whl", "has_sig": false, "md5_digest": "8672991b454c42c88025f26279c6d7ee", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3698440, "upload_time": "2016-04-01T08:51:05", "url": "https://files.pythonhosted.org/packages/db/fb/13325d35b4813ea282795ba52b9a9e7afbc6ecea0367c03305221877b364/SoL-3.28-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d60bdf3183ee9f9b4c22dce589ac09ca", "sha256": "6a2c671e71e080b6083c6e17163a986e244b90593ac061390fb88e8f35834348" }, "downloads": -1, "filename": "SoL-3.28.tar.gz", "has_sig": false, "md5_digest": "d60bdf3183ee9f9b4c22dce589ac09ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5152733, "upload_time": "2016-04-01T08:49:46", "url": "https://files.pythonhosted.org/packages/65/1d/6da7608d6a61c66c2753bfaf3ca1cb8093fc9bcd2967d69abd0486b8d2ca/SoL-3.28.tar.gz" } ], "3.29": [ { "comment_text": "", "digests": { "md5": "ccbe00533bb248a6e5e69ed2db905450", "sha256": "9a575434039bf68a0d77254ba8b3b935fff10b03e7101d9a1f5cede2ceda38d4" }, "downloads": -1, "filename": "SoL-3.29-py3-none-any.whl", "has_sig": false, "md5_digest": "ccbe00533bb248a6e5e69ed2db905450", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3698133, "upload_time": "2016-04-19T06:45:51", "url": "https://files.pythonhosted.org/packages/01/6d/8ea5640be8aeddcdc50c164878e5f75c8c6fb9a38672db8b376595d5688e/SoL-3.29-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0731f0610bcffdcc426a2abcc1d9a02b", "sha256": "c065bd8ad891fab429e54df1db0e5f3abf8f35f5e6428f27b504b515e5361c1f" }, "downloads": -1, "filename": "SoL-3.29.tar.gz", "has_sig": false, "md5_digest": "0731f0610bcffdcc426a2abcc1d9a02b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5152587, "upload_time": "2016-04-19T06:44:30", "url": "https://files.pythonhosted.org/packages/d4/0a/aab8302d7fbc02b889cd9fc4b1956626dae9c88ceb625e6245b1007c312b/SoL-3.29.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "b256ac99c082967295d1b84da1d84f88", "sha256": "dad3b2d9e3b23eb75dbddd1fd062190f4c9b5df27b5c380567502243bd55c614" }, "downloads": -1, "filename": "SoL-3.3-py3.3.egg", "has_sig": false, "md5_digest": "b256ac99c082967295d1b84da1d84f88", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3606696, "upload_time": "2014-09-10T15:38:36", "url": "https://files.pythonhosted.org/packages/eb/42/7f61d843d65d5906e5a415afec6b580457783ff7d0536e8140b9b5b76cde/SoL-3.3-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "43bc12c80ba7dd238b490f1302785326", "sha256": "271f96a9e24e1d2634b07e5bb9f49d3000daa5a7dc505340896041e04f32ff44" }, "downloads": -1, "filename": "SoL-3.3.tar.gz", "has_sig": false, "md5_digest": "43bc12c80ba7dd238b490f1302785326", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4937545, "upload_time": "2014-09-10T15:37:24", "url": "https://files.pythonhosted.org/packages/89/37/beead34315a59fdf2646b4c616518ee7c417f12df56d484fcf8733c7c801/SoL-3.3.tar.gz" } ], "3.30": [ { "comment_text": "", "digests": { "md5": "8e752bed32e3a34e65b3e90452d7015a", "sha256": "97a8aef62c49a2753146873d5268d0d49faaba739348dee0ac499ac494b16bc8" }, "downloads": -1, "filename": "SoL-3.30.tar.gz", "has_sig": false, "md5_digest": "8e752bed32e3a34e65b3e90452d7015a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5154190, "upload_time": "2016-04-26T11:21:51", "url": "https://files.pythonhosted.org/packages/3b/da/15da5571e808a7cf0a8bbf74bbfb1cf83a65aa73820e5d01cfa49bb4af12/SoL-3.30.tar.gz" } ], "3.31": [ { "comment_text": "", "digests": { "md5": "f248ab7864c7c7db4c48452c009e8b37", "sha256": "8fa3c3a95f0dad893068c3642ef7e2251955b40557e07a1407635dca31cddaed" }, "downloads": -1, "filename": "SoL-3.31-py3-none-any.whl", "has_sig": false, "md5_digest": "f248ab7864c7c7db4c48452c009e8b37", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3693885, "upload_time": "2016-04-26T11:33:05", "url": "https://files.pythonhosted.org/packages/8a/ee/292d3429c52f28d9ad7e88215e254d5b5bb4ce2520483888eaaf5fcd46f5/SoL-3.31-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9171f2965c6535fd0360a682403ca9b", "sha256": "694eec441eb3d7f024c9211792fb889369ca8720c05ae5b87889cddaf4b60594" }, "downloads": -1, "filename": "SoL-3.31.tar.gz", "has_sig": false, "md5_digest": "a9171f2965c6535fd0360a682403ca9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5154078, "upload_time": "2016-04-26T11:31:37", "url": "https://files.pythonhosted.org/packages/cc/12/6e17d7c14bd461a779801ff73fe66a95a85cccc1ad02d2a26f7bf09eddf7/SoL-3.31.tar.gz" } ], "3.32": [ { "comment_text": "", "digests": { "md5": "77cef3d4c8a768463618cb570c864485", "sha256": "71d96f1e92f50ad2dad872123eb4398441770071bda0f0f5d67d9a2a33493241" }, "downloads": -1, "filename": "SoL-3.32-py3-none-any.whl", "has_sig": false, "md5_digest": "77cef3d4c8a768463618cb570c864485", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3755292, "upload_time": "2016-05-15T15:16:33", "url": "https://files.pythonhosted.org/packages/b6/78/3795374d9724b5a57b0ac459ce817f994b0d17628ef615cc0f20e5c2a6ce/SoL-3.32-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db107c52fa3ff6a8c755b9957a9c5796", "sha256": "3401e9b4a94df00d5207a36f81bfbcf023521fa9ecbc8649e7efce2c6d65d669" }, "downloads": -1, "filename": "SoL-3.32.tar.gz", "has_sig": false, "md5_digest": "db107c52fa3ff6a8c755b9957a9c5796", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5244240, "upload_time": "2016-05-15T15:15:03", "url": "https://files.pythonhosted.org/packages/f3/8a/5e8726e39de2d7e0248a5c2f02161cd63558a3991cdd4bd6915e3b56e806/SoL-3.32.tar.gz" } ], "3.33": [ { "comment_text": "", "digests": { "md5": "e3237c5f100ba085828ed9af2e352e49", "sha256": "0c99dec410dd9f19af14d2c63e2b282154c1d411ba6f58d54ce38784c4dd2f00" }, "downloads": -1, "filename": "SoL-3.33-py3-none-any.whl", "has_sig": false, "md5_digest": "e3237c5f100ba085828ed9af2e352e49", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3787166, "upload_time": "2016-05-29T14:06:31", "url": "https://files.pythonhosted.org/packages/29/1e/6fb0d30fc6edeb5989cf2ed453e6b33a1f160776908c0fff071767959d29/SoL-3.33-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a46db16e01ca7ba57cdf7f46f4d1eb38", "sha256": "17090e01d99bdfee2d2c4797b978cd292742305c4d501650b36ebc0ab7cb4bf0" }, "downloads": -1, "filename": "SoL-3.33.tar.gz", "has_sig": false, "md5_digest": "a46db16e01ca7ba57cdf7f46f4d1eb38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5278137, "upload_time": "2016-05-29T14:05:14", "url": "https://files.pythonhosted.org/packages/d9/00/436dfeda04aa66c2fe21aa670648e4371c93c36771d90017d8cda3ad22e1/SoL-3.33.tar.gz" } ], "3.34": [ { "comment_text": "", "digests": { "md5": "66e297dfcfb4821b060f108285baf7e2", "sha256": "4f580d5b0f1972ac9249851ca4457b4fb6ab2b8d4a91232ee7b506cd6af8a00e" }, "downloads": -1, "filename": "SoL-3.34-py3-none-any.whl", "has_sig": false, "md5_digest": "66e297dfcfb4821b060f108285baf7e2", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3789510, "upload_time": "2016-05-31T08:25:49", "url": "https://files.pythonhosted.org/packages/19/f5/bdc3fde810e268f3a34599f2023136e751c9e2d57ebe3d0f0f1a993fed08/SoL-3.34-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62a804cd4a95d42c37d6f8f13dece900", "sha256": "7eb8228eb928f40849e20ec13186ce9928a10828911c6a32209e4a5252d6f9fe" }, "downloads": -1, "filename": "SoL-3.34.tar.gz", "has_sig": false, "md5_digest": "62a804cd4a95d42c37d6f8f13dece900", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5280411, "upload_time": "2016-05-31T08:24:04", "url": "https://files.pythonhosted.org/packages/54/ec/dc588602c35b8823656d6632e901b511fa4082a4fb9d5398bf98fe0f3f0a/SoL-3.34.tar.gz" } ], "3.35": [ { "comment_text": "", "digests": { "md5": "74a5dc0fef7dad8013711dbb636b341f", "sha256": "38b47ee4ad79d8f2074912c05b13f1e78354b3ea5f334669d302c477fc61da17" }, "downloads": -1, "filename": "SoL-3.35-py3-none-any.whl", "has_sig": false, "md5_digest": "74a5dc0fef7dad8013711dbb636b341f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3796391, "upload_time": "2016-06-07T22:17:48", "url": "https://files.pythonhosted.org/packages/37/16/9295d6de1de1a53bbe5cc9ad028389328188f40195e10d7f9f1db18d9e8b/SoL-3.35-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48cbd71e7c9dc61bbf3ad26af6bbdb71", "sha256": "7fb23425ff41a91125cfd2867f751bbcc2299a9fc796f5fa141b93701e873ded" }, "downloads": -1, "filename": "SoL-3.35.tar.gz", "has_sig": false, "md5_digest": "48cbd71e7c9dc61bbf3ad26af6bbdb71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5283620, "upload_time": "2016-06-07T22:16:31", "url": "https://files.pythonhosted.org/packages/f8/c9/84958b85bde702d9054fa8210d5121c3cb7f2788f7ee7dece7aedd05ed94/SoL-3.35.tar.gz" } ], "3.36": [ { "comment_text": "", "digests": { "md5": "0a1cbf69f2bf9a70352f456ee7080019", "sha256": "6d42d16d27182d23275abc7aca87061cafa038c761cac434e7838f02ae1354b2" }, "downloads": -1, "filename": "SoL-3.36-py3-none-any.whl", "has_sig": false, "md5_digest": "0a1cbf69f2bf9a70352f456ee7080019", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3813246, "upload_time": "2016-06-21T07:03:44", "url": "https://files.pythonhosted.org/packages/4f/09/b771a9ae82ff51feca5e067d1cfc1017247ec440a1191ce501c943f51dfe/SoL-3.36-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ea18122cb225dc54dc46b4ead5f70ed", "sha256": "2d1d8d640276fa1f32d5ca175f753e7ef5a07c88159fa8449d34568f3a47f3fe" }, "downloads": -1, "filename": "SoL-3.36.tar.gz", "has_sig": false, "md5_digest": "7ea18122cb225dc54dc46b4ead5f70ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5288418, "upload_time": "2016-06-21T07:02:22", "url": "https://files.pythonhosted.org/packages/6b/13/e0472813ef7ef2db8908dfeb4b6b09f2c0cc130224912627adc90cb46c1e/SoL-3.36.tar.gz" } ], "3.37": [ { "comment_text": "", "digests": { "md5": "d5cb791dfa6fd975f5d49aee59f81bef", "sha256": "1020f14e22e9bc89da50ca552c489bba1dfb65321c26e3dd33561df4594d9ee1" }, "downloads": -1, "filename": "SoL-3.37-py3-none-any.whl", "has_sig": false, "md5_digest": "d5cb791dfa6fd975f5d49aee59f81bef", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3797795, "upload_time": "2016-08-03T09:52:33", "url": "https://files.pythonhosted.org/packages/af/be/355c23f393c9da5126f3a7d28b784aa20257ff3b3f89afc0f3196e8ba748/SoL-3.37-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f1766641f80db2cf3d08073c8ed5140", "sha256": "87c5d776155953a9bb07f9fb568bd961e068a8f145a9fbd1cb3a918067239242" }, "downloads": -1, "filename": "SoL-3.37.tar.gz", "has_sig": false, "md5_digest": "3f1766641f80db2cf3d08073c8ed5140", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5248968, "upload_time": "2016-08-03T09:51:16", "url": "https://files.pythonhosted.org/packages/42/95/f48f3e030f0420c05917439f9a17409f3f21328b7698c2bcdf364bbb0f37/SoL-3.37.tar.gz" } ], "3.38": [ { "comment_text": "", "digests": { "md5": "6f73698f72c2e1230331750d891746d0", "sha256": "d10c45e96d532eb774be1b6d4b2258fb4fe876b86cd0d0529890f59168841507" }, "downloads": -1, "filename": "SoL-3.38-py3-none-any.whl", "has_sig": false, "md5_digest": "6f73698f72c2e1230331750d891746d0", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3797508, "upload_time": "2017-03-16T10:23:48", "url": "https://files.pythonhosted.org/packages/0c/4d/e10db8b13c8ccd552ec360ef5d8d4f53c35d1c646373f41c95b87c97a629/SoL-3.38-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6911ee88706ab243ae5b797bfd8ee14", "sha256": "3cd29af21625351a57387cb5e5eaffda18509f26a99c1539b0954fc0d833f3fc" }, "downloads": -1, "filename": "SoL-3.38.tar.gz", "has_sig": false, "md5_digest": "e6911ee88706ab243ae5b797bfd8ee14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5251426, "upload_time": "2017-03-16T10:22:33", "url": "https://files.pythonhosted.org/packages/0b/ec/ed11d3e11d71184be5a50161f23764075d6e32de870f8f49e06860b52a5c/SoL-3.38.tar.gz" } ], "3.39": [ { "comment_text": "", "digests": { "md5": "bd0242a18cab62e8778863bb0a6cde71", "sha256": "47c0cbb2226f6c21304392ac07ce0086745c6e02a4bf7c2f0a550eed9992273d" }, "downloads": -1, "filename": "SoL-3.39-py3-none-any.whl", "has_sig": false, "md5_digest": "bd0242a18cab62e8778863bb0a6cde71", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3797009, "upload_time": "2017-03-16T10:47:00", "url": "https://files.pythonhosted.org/packages/a7/d4/2b24e7f50195129339adba7021162d1cd5c25015fad97f930f8e0655fa0a/SoL-3.39-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b483ae1312bd7041e6ba659355694006", "sha256": "b72c229645855e92d6b14bf25abc331b498241b9fe4fac5e15c069a8247daea5" }, "downloads": -1, "filename": "SoL-3.39.tar.gz", "has_sig": false, "md5_digest": "b483ae1312bd7041e6ba659355694006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5250900, "upload_time": "2017-03-16T10:45:42", "url": "https://files.pythonhosted.org/packages/df/70/d966bcd799bd86bbe28ef38fa3e69a38b835a48153cb60e60f6e61a102ce/SoL-3.39.tar.gz" } ], "3.4": [ { "comment_text": "", "digests": { "md5": "88e5ae8c5d5405a26d1d007a331fc4d7", "sha256": "310b0a582f78441281345389ed3abe9373ded822c13e6821feb2253885548b81" }, "downloads": -1, "filename": "SoL-3.4-py3.3.egg", "has_sig": false, "md5_digest": "88e5ae8c5d5405a26d1d007a331fc4d7", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3609400, "upload_time": "2014-09-11T17:52:49", "url": "https://files.pythonhosted.org/packages/4f/b9/98ad32808ea6edfc4672a120adfddb4b0cfd15aa6eec51b5f4caa0767e75/SoL-3.4-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "4d0feb4566a2c8e370b12323bd023afc", "sha256": "b87777eebf62c449fcd6135fa8b8c882df2ff48a1ad1f7e1323e8cb519be02d4" }, "downloads": -1, "filename": "SoL-3.4.tar.gz", "has_sig": false, "md5_digest": "4d0feb4566a2c8e370b12323bd023afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4940165, "upload_time": "2014-09-11T17:51:35", "url": "https://files.pythonhosted.org/packages/81/8d/ccb705925dbf35a2dc61747e5693687c9c8e626990f716cdd9354de15525/SoL-3.4.tar.gz" } ], "3.5": [ { "comment_text": "", "digests": { "md5": "19e405a568d8ff53bde3b8475fed3945", "sha256": "bf76707388909578a7a6ac3b41ae5a5bc2184769577cf86818ce33296c4bd288" }, "downloads": -1, "filename": "SoL-3.5-py3.3.egg", "has_sig": false, "md5_digest": "19e405a568d8ff53bde3b8475fed3945", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 3610085, "upload_time": "2014-09-12T08:07:06", "url": "https://files.pythonhosted.org/packages/17/cd/1eb6f12af576dd4bbec4fa13db3578fac6f103858f769168876bb2104f25/SoL-3.5-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "d155a0a22f05ec9b11f6e7f052ae9045", "sha256": "e9340402219fd8e360ed485bd10076e67df09938b4665e22cf82b3893d08add2" }, "downloads": -1, "filename": "SoL-3.5.tar.gz", "has_sig": false, "md5_digest": "d155a0a22f05ec9b11f6e7f052ae9045", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4940663, "upload_time": "2014-09-12T08:05:55", "url": "https://files.pythonhosted.org/packages/f8/4a/590c477c878a97a3caab730f69916e21ebb4884126084dd062861ab7983f/SoL-3.5.tar.gz" } ], "3.6": [ { "comment_text": "", "digests": { "md5": "7c3fbe916884d5cca51647467123c07a", "sha256": "a16ef2d3a5c08082967c271cbd40f92cdb27dca01ccb6513288d66847b7388b8" }, "downloads": -1, "filename": "SoL-3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "7c3fbe916884d5cca51647467123c07a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3445356, "upload_time": "2014-09-13T16:05:49", "url": "https://files.pythonhosted.org/packages/39/1b/e18cec10b04abe7321dc24c9d1f229a34463ce25f9d18b765f977566e587/SoL-3.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd6d78a20baf75ae236a5c228221cce5", "sha256": "98e159004fc95ee1b178c4642142fa6c9a238d5f163f21bc03ceefa8e4788fb0" }, "downloads": -1, "filename": "SoL-3.6.tar.gz", "has_sig": false, "md5_digest": "bd6d78a20baf75ae236a5c228221cce5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4940929, "upload_time": "2014-09-13T16:04:42", "url": "https://files.pythonhosted.org/packages/8a/ef/d547b5cc79a521900f997e3964826f567a922d59c377f993addecaddfe8d/SoL-3.6.tar.gz" } ], "3.7": [ { "comment_text": "", "digests": { "md5": "a6cc6d02d2969e19b954d02a99ec66b0", "sha256": "1d10a497a245b6dd4a849ff75129030de3018c897aa29abb75f8106cfe43d79e" }, "downloads": -1, "filename": "SoL-3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "a6cc6d02d2969e19b954d02a99ec66b0", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3444165, "upload_time": "2014-10-19T15:10:10", "url": "https://files.pythonhosted.org/packages/dc/3b/556b9206587b9145877a99b35888ec2bc4d76e5ff22ed6c19b62bc7d51ab/SoL-3.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "32290e17d050925ccda77da5663dd35d", "sha256": "d361c67f62c6cca3985a9da177e678b71d507a4b99cce2a2061facd3ad41d4fd" }, "downloads": -1, "filename": "SoL-3.7.tar.gz", "has_sig": false, "md5_digest": "32290e17d050925ccda77da5663dd35d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4939339, "upload_time": "2014-10-19T15:09:01", "url": "https://files.pythonhosted.org/packages/c9/5c/92159e5fabf47241796fd1710d665d4f8e1f0ccb5a7aa4d4c9f91f022ec0/SoL-3.7.tar.gz" } ], "3.8": [ { "comment_text": "", "digests": { "md5": "ad73b857fa19da4c60fdc484644a6c8e", "sha256": "8dcd13adf156305fb679c0117e805382ee2125122b54a68a22e70b4b5987c692" }, "downloads": -1, "filename": "SoL-3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "ad73b857fa19da4c60fdc484644a6c8e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3452360, "upload_time": "2014-11-08T10:57:15", "url": "https://files.pythonhosted.org/packages/d5/01/f714ad54683a59a8de9f7f30763ab75312da7dd49971cde6c073de1a8449/SoL-3.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "385c8698c0439a6361aee72372d750d1", "sha256": "b4169ed6db671393347117d788e104e9060722556112381a18f740c9ce7ea717" }, "downloads": -1, "filename": "SoL-3.8.tar.gz", "has_sig": false, "md5_digest": "385c8698c0439a6361aee72372d750d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4945125, "upload_time": "2014-11-08T10:56:06", "url": "https://files.pythonhosted.org/packages/b1/ee/f07ff79b038a2462c87a1eedb3d3191c3e283bb8595dafc7938a11a0095c/SoL-3.8.tar.gz" } ], "3.9": [ { "comment_text": "", "digests": { "md5": "3238b0e360fb493f57fcdb3d7dccf442", "sha256": "ddf40fb9397d22854229d510e9c00577359e4334fb800c6eadb4f062e7f308b9" }, "downloads": -1, "filename": "SoL-3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "3238b0e360fb493f57fcdb3d7dccf442", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 3452866, "upload_time": "2014-11-08T11:25:28", "url": "https://files.pythonhosted.org/packages/bd/0b/adf57ffe00f5e62fe6099bcb0ff6bc753a750d633c9ac46165029526c462/SoL-3.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79e078a3694e33d3552dc027fe6064ce", "sha256": "0e637e760fdca7b71a4fcc32ab6620b0d1f10f339745fd2ce404d346bec9f312" }, "downloads": -1, "filename": "SoL-3.9.tar.gz", "has_sig": false, "md5_digest": "79e078a3694e33d3552dc027fe6064ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4945827, "upload_time": "2014-11-08T11:24:20", "url": "https://files.pythonhosted.org/packages/8e/3b/4fddb7b2ded85fd50c82f9a3387d998132e58edafebda06a4151906234b2/SoL-3.9.tar.gz" } ], "4.0a1": [ { "comment_text": "", "digests": { "md5": "c93d4fe9724cd066de990ec093f644e4", "sha256": "5337a0dbfa51c406c9d00a141f39b8c2bab032d65468fdabb6e4b73ad28d4550" }, "downloads": -1, "filename": "SoL-4.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "c93d4fe9724cd066de990ec093f644e4", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 3971588, "upload_time": "2018-08-06T19:58:11", "url": "https://files.pythonhosted.org/packages/bf/aa/bc8ef6db278c8b9f7620d6fa6d99c71a32f9272d135b1fc20390e11277e4/SoL-4.0a1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0efea2c5ba170bfb0f6685a917079b6b", "sha256": "fc2fce241844ae3ccdd7427c16b561c1b9561e44af5e4ee6b01745d13fab894f" }, "downloads": -1, "filename": "SoL-4.0a1.tar.gz", "has_sig": false, "md5_digest": "0efea2c5ba170bfb0f6685a917079b6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6156209, "upload_time": "2018-08-06T19:58:06", "url": "https://files.pythonhosted.org/packages/81/e1/989d7672fc0fe6a7f0debdd132e910437105624225fcc73fd152f09ba1e7/SoL-4.0a1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bd0242a18cab62e8778863bb0a6cde71", "sha256": "47c0cbb2226f6c21304392ac07ce0086745c6e02a4bf7c2f0a550eed9992273d" }, "downloads": -1, "filename": "SoL-3.39-py3-none-any.whl", "has_sig": false, "md5_digest": "bd0242a18cab62e8778863bb0a6cde71", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 3797009, "upload_time": "2017-03-16T10:47:00", "url": "https://files.pythonhosted.org/packages/a7/d4/2b24e7f50195129339adba7021162d1cd5c25015fad97f930f8e0655fa0a/SoL-3.39-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b483ae1312bd7041e6ba659355694006", "sha256": "b72c229645855e92d6b14bf25abc331b498241b9fe4fac5e15c069a8247daea5" }, "downloads": -1, "filename": "SoL-3.39.tar.gz", "has_sig": false, "md5_digest": "b483ae1312bd7041e6ba659355694006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5250900, "upload_time": "2017-03-16T10:45:42", "url": "https://files.pythonhosted.org/packages/df/70/d966bcd799bd86bbe28ef38fa3e69a38b835a48153cb60e60f6e61a102ce/SoL-3.39.tar.gz" } ] }