{ "info": { "author": "Toby St Clere Smithe", "author_email": "pyviennacl@tsmithe.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Other Audience", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: C++", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Physics" ], "description": "*****************\nPyViennaCL Readme\n*****************\n\n\nPyViennaCL around the web\n=========================\n\n* `Home page `_\n* `Documentation `_\n* `GitHub `_ (`Issue tracker `_)\n\n\nAbout PyViennaCL\n================\n\n*PyViennaCL* aims to make fast, powerful GPGPU and heterogeneous\nscientific computing really transparently easy, especially for users\nalready using NumPy for representing matrices.\n\nPyViennaCL does this by harnessing the `ViennaCL\n`_ linear algebra and numerical computation\nlibrary for GPGPU and heterogeneous systems, thereby making available to Python\nprogrammers ViennaCL\u2019s fast *OpenCL* and *CUDA* algorithms. PyViennaCL does\nthis in a way that is idiomatic and compatible with the Python community\u2019s most\npopular scientific packages, *NumPy* and *SciPy*.\n\nPyViennaCL exposes the following functionality:\n\n* sparse (compressed, co-ordinate, ELL, and hybrid) and dense\n (row-major and column-major) matrices, vectors and scalars on your\n compute device using OpenCL;\n* standard arithmetic operations and mathematical functions;\n* fast matrix products for sparse and dense matrices, and inner and\n outer products for vectors;\n* direct solvers for dense triangular systems;\n* iterative solvers for sparse and dense systems, using the BiCGStab,\n CG, and GMRES algorithms;\n* iterative algorithms for eigenvalue estimation problems.\n\n\nRequirements\n============\n\nPyViennaCL requires the following build dependencies:\n\n* a C++ compiler;\n* *Python* (2.7+) with *setuptools* [see below];\n* *NumPy* (1.7+);\n* *Sphinx* (1.0+) [if you want to build HTML documentation].\n\nIt is also highly recommended to have an available *OpenCL*\nimplementation, since PyViennaCL was designed for this case. If you do\nnot have OpenCL available, then PyViennaCL will still build and\nfunction, but will not perform to full effect.\n\nIf you have a Boost installation on your system, then PyViennaCL can\nalso optionally use that, rather than the Boost subset shipped with\nthe PyViennaCL sources.\n\nsetuptools\n----------\n\nPyViennaCL uses the Python package `setuptools\n`_ for installation. Unless you\nare using **Python 3.4**, which comes with the required pieces, you\nmay need to install setuptools. The **best way to do so**, which will\nalso ensure you have the Python package manager *pip* installed, is to\nfollow `the instructions here\n`_.\n\nOpenCL\n------\n\nBy default, you will need an OpenCL implementation. PyViennaCL can\nstill build and function without one, but will not perform to full\neffect.\n\nFor information on how to get an OpenCL implementation on Linux, see this\n`howto `_.\nSee also the installation section in the\n`ViennaCL Manual `_\non installation hints for Windows.\n\nIf you have an OpenCL installation that you installed and is not\nmanaged by your system's package manager, then it is likely you will\nneed to use the '--cl-lib-dir' configure option.\n\nIf you do not wish to use OpenCL, then follow the *Custom\ninstallation* instructions below, and use the '--no-use-opencl'\nconfigure option.\n\nExtra requirements for building from source on Windows systems\n--------------------------------------------------------------\n\nIn addition to the components required above, Windows builds require\nthe use of the Windows SDK version specific to the version of your\nPython installation. For instance, when you run Python, if you see the\nfollowing::\n\n Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32\n\nthen you are using a release of Python 2.7 and you are building for a\n32-bit installation of that version. You must therefore choose the SDK\nversion and set the build environment accordingly.\n\nIf you are building for a standard distribution (such as described in\nthe example above) of Python 2.6, 2.7, 3.0, 3.1 or 3.2 (either 32- or\n64-bit), you will need the `Microsoft Windows SDK v7.0 for Windows 7\nand .NET Framework 3.5 SP1\n`_.\n\nIf you are building for a standard distribution of Python 3.3 or later\n(32- or 64-bit), you will need the `Microsoft Windows SDK v7.1 for\nWindows 7 and .NET Framework 4\n`_.\n\nHaving installed the correct SDK version, you will need to open an SDK\ncommand prompt and issue the following commands, according the\narchitecture of your Python installation.\n\nIf you are building for a 32-bit Python installation, use::\n\n $> set DISTUTILS_USE_SDK=1\n $> setenv /x86 /release\n\nIf you are building for a 64-bit Python installation, use::\n\n $> set DISTUTILS_USE_SDK=1\n $> setenv /x64 /release\n\nAt this point, you will be able to follow the instructions detailed\nbelow under *Installation*. Issue all commands from within the SDK\ncommand window.\n\nYou might also be interested in the `Python Tools for Visual Studio\n`_, though these are not required\neither for building or using PyViennaCL.\n\n\nInstallation\n============\n\nPlease note that the commands below assume that the various programs\ninvoked are available in your system PATH; if they are not, please\nprovide the full path to the executable on invocation.\n\nThis is especially relevant on Windows systems, where Python is not by\ndefault installed into the path. So, in this case, you might have to\nrun something like::\n\n $> C:\\Python2.7\\python -m pip install pyviennacl\n\ninstead of just::\n\n $> pip install pyviennacl\n\nQuick installation using pip\n----------------------------\n\nThe following command should usually be enough to install PyViennaCL,\nas long as you have setuptools and pip installed (see above)::\n\n $> pip install pyviennacl\n\nIf you have a recent installation of Python (2.7 or 3.3+), and a\nrecent installation of pip (1.4+), then this should be painless.\n\nNote that this command assumes you have OpenCL available, and if you\nare on Linux, an OpenCL SDK.\n\nIf this does not succeed, follow the instructions below.\n\nCustom installation\n-------------------\n\nThese instructions assume a UNIX-like platform (such as a Linux\ndistribution or Mac OS X), but will work on a well-configured Windows\nsystem with little modification.\n\nIf you are building from the release package, move on to the next paragraph.\nIf you are building from git, then before doing anything else,\nnavigate to your PyViennaCL folder and get the external submodules with::\n\n $> git submodule update --init\n\n(On Windows you usually want to use the git bash for this)\n\nIf you are in a hurry, then the following should just work::\n\n $> python setup.py build\n $> sudo python setup.py install\n\nOtherwise, read the configuration options, configure, build and\ninstall::\n\n $> ./configure.py --help\n $> ./configure.py --some-options\n $> python setup.py build\n $> sudo python setup.py install\n\nTo build the HTML documentation using Sphinx, first install PyViennaCL\nas above, and then run::\n\n $> cd doc\n $> make html\n\nafter which HTML documentation will be in doc/_build/html. Or you can\njust access the documentation from within the Python interpreter after\ninstallation::\n\n >>> import pyviennacl\n >>> help(pyviennacl)\n\n\nAuthors and Contact\n===================\n\nPyViennaCL was developed during the 2013 *Google Summer of Code* by \n`Toby St Clere Smithe `_.\n\nViennaCL was developed under the aegis of the *Institute for Microelectronics*\nat the *Vienna University of Technology*.\n\nFor any technical questions related to ViennaCL, please use `our\nmailing list `_.\n\n\nLicence\n=======\n\n(Py)ViennaCL is distributed under the MIT (X11) License. See the file\nLICENSE in the source root directory.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://viennacl.sourceforge.net/pyviennacl.html", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "pyviennacl", "package_url": "https://pypi.org/project/pyviennacl/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pyviennacl/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://viennacl.sourceforge.net/pyviennacl.html" }, "release_url": "https://pypi.org/project/pyviennacl/1.0.3/", "requires_dist": null, "requires_python": null, "summary": "Sparse/dense linear algebra on GPUs and CPUs using OpenCL", "version": "1.0.3" }, "last_serial": 1097801, "releases": { "1.0.1": [ { "comment_text": "Wheel distribution for win32", "digests": { "md5": "69f87071116b1620f4f815f317258e4b", "sha256": "24e3af6d34378a2ebea17fe5e888865f48ea1a654b704d757bbf1715ed11ed2b" }, "downloads": -1, "filename": "pyviennacl-1.0.1-cp27-none-win32.whl", "has_sig": false, "md5_digest": "69f87071116b1620f4f815f317258e4b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1122482, "upload_time": "2014-03-10T11:32:56", "url": "https://files.pythonhosted.org/packages/3b/cb/c0da209247a6d078c0f668da0088db35cb38c7886bbd6e7ae1d50baa124e/pyviennacl-1.0.1-cp27-none-win32.whl" }, { "comment_text": "Wheel distribution for win_amd64", "digests": { "md5": "7f3a676cf3dca7bbb286b83170011931", "sha256": "34bf2b3bd6bc4d3b8fce47cc204e0ae96d15f8c7f2e81222dadf3b2e9f03e684" }, "downloads": -1, "filename": "pyviennacl-1.0.1-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "7f3a676cf3dca7bbb286b83170011931", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1598326, "upload_time": "2014-03-10T11:33:49", "url": "https://files.pythonhosted.org/packages/bb/d6/82205390873f793431a2cc0888dfa3a4f6ea0e38c84b48849ae8534f9472/pyviennacl-1.0.1-cp27-none-win_amd64.whl" }, { "comment_text": "Wheel distribution for win32", "digests": { "md5": "7a7848332eefe4785e1b7bf5141d3d74", "sha256": "579e6af44433c8f7b0ecb1d0c282fa95515dca6c467543ff28521c226f5004c0" }, "downloads": -1, "filename": "pyviennacl-1.0.1-cp33-none-win32.whl", "has_sig": false, "md5_digest": "7a7848332eefe4785e1b7bf5141d3d74", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 1292018, "upload_time": "2014-03-10T11:34:43", "url": "https://files.pythonhosted.org/packages/10/00/2b9869f644db1cf6bd9efd8c2929f16640aade35bbd2fee123441b63b456/pyviennacl-1.0.1-cp33-none-win32.whl" }, { "comment_text": "Wheel distribution for win_amd64", "digests": { "md5": "b88dd2864f88834a5078ce08f14cf7f6", "sha256": "47191628e9d67d1ca8a62edcb099de4c9629b49e629af34c7399a301dcc8a23a" }, "downloads": -1, "filename": "pyviennacl-1.0.1-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "b88dd2864f88834a5078ce08f14cf7f6", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 1558179, "upload_time": "2014-03-10T11:35:34", "url": "https://files.pythonhosted.org/packages/20/7e/d7c07ff471d304745c0d367a4f0a582aa7e098d69a895b50124dbd9f7e35/pyviennacl-1.0.1-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "789292d481da9c58445743f213c8f97c", "sha256": "f6ae335478a3752830a622029058d5e29dd495205d04f3d61836cc7edd18874d" }, "downloads": -1, "filename": "pyviennacl-1.0.1.tar.gz", "has_sig": false, "md5_digest": "789292d481da9c58445743f213c8f97c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3309614, "upload_time": "2014-03-10T17:56:36", "url": "https://files.pythonhosted.org/packages/39/a2/ef2d50743b1de082cddcef76c98104a4920a22bb08d60beded085b0cef77/pyviennacl-1.0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "e0eeb938b3335a76d3e9c7d566886fc8", "sha256": "26903b45c5456c745643f76143cbbea9cea83a675927f4a6aaebf35b0fd69bf1" }, "downloads": -1, "filename": "pyviennacl-1.0.1.win32-py2.7.exe", "has_sig": false, "md5_digest": "e0eeb938b3335a76d3e9c7d566886fc8", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 1347403, "upload_time": "2014-03-09T14:52:19", "url": "https://files.pythonhosted.org/packages/6e/60/d1d706a65d60a50370b476522d6f9f5374f4d79e75ae2f496c64a28616ae/pyviennacl-1.0.1.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "0e7f0f09c46acffb923f6e89677b4010", "sha256": "7db2d8ed4c1fb24daf7426f43d12808f1c96b17dfe20c7f8121219eed40cb89a" }, "downloads": -1, "filename": "pyviennacl-1.0.1.win32-py3.3.exe", "has_sig": false, "md5_digest": "0e7f0f09c46acffb923f6e89677b4010", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 1511867, "upload_time": "2014-03-10T00:47:26", "url": "https://files.pythonhosted.org/packages/94/e9/59adc1cf7a156c3a5d0043dfbcd4a9a3840fafb9921831f324bd10c0c955/pyviennacl-1.0.1.win32-py3.3.exe" }, { "comment_text": "For x86_64 (amd64) Windows systems", "digests": { "md5": "924d29d5c45eb6f8975002d818b0bd4f", "sha256": "9cb0cd75c6dcf9b06d93411c8763d18bb2fc8c2e29819ff8fd574a2db6fa050f" }, "downloads": -1, "filename": "pyviennacl-1.0.1.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "924d29d5c45eb6f8975002d818b0bd4f", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 1850892, "upload_time": "2014-03-10T00:48:11", "url": "https://files.pythonhosted.org/packages/36/6e/1dd95a09c1ecac9119f2e3acf10dde185a257a5cfbbd43075e1ef4643e69/pyviennacl-1.0.1.win-amd64-py2.7.exe" }, { "comment_text": "For x86_64 (amd64) Windows systems", "digests": { "md5": "fa931142aac9a0f262d04e15db73fe5e", "sha256": "dc1f6530bf4efc143d8fb57edfb863ffee60c9bc669daa4ea1a365b6c6749f85" }, "downloads": -1, "filename": "pyviennacl-1.0.1.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "fa931142aac9a0f262d04e15db73fe5e", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 1809250, "upload_time": "2014-03-10T00:48:47", "url": "https://files.pythonhosted.org/packages/79/85/f2d9149bd44756b3ec0bcb125e17eb487e8e7f8d301380dc7428f821c65f/pyviennacl-1.0.1.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "4b67ca9d49c1d8774b3a8152fe1a1934", "sha256": "bbf266cf8d78f638ff18ef1fb74d9896aa3bea1c8ee8d77b4c4f47c125ba5d9a" }, "downloads": -1, "filename": "pyviennacl-1.0.1.zip", "has_sig": false, "md5_digest": "4b67ca9d49c1d8774b3a8152fe1a1934", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6023344, "upload_time": "2014-03-10T17:57:00", "url": "https://files.pythonhosted.org/packages/ff/c5/7be5a7b574300d7e04fe58b5b4063a15bb77e137e5d660ab0646ad2ea7b2/pyviennacl-1.0.1.zip" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "891e247ad9e4f054ec51a14e3f61c4fd", "sha256": "3eb0d034af3162bb07c67114c1031a29e66069f76aba6d78bb6f34e0ae7afe3e" }, "downloads": -1, "filename": "pyviennacl-1.0.2.tar.gz", "has_sig": false, "md5_digest": "891e247ad9e4f054ec51a14e3f61c4fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3310587, "upload_time": "2014-05-06T22:20:43", "url": "https://files.pythonhosted.org/packages/f7/ee/f69a8644606cc9990f0550da17e04ae9aebe3d4c3df16684e3eac97646a6/pyviennacl-1.0.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "3d65c1f9352054a61c5be5a0d84f4a47", "sha256": "e38dc8f2765fe4118bc304c5e1b53558df7bdf93c7a8c08f4f39d2b8a1dd8dae" }, "downloads": -1, "filename": "pyviennacl-1.0.2.zip", "has_sig": false, "md5_digest": "3d65c1f9352054a61c5be5a0d84f4a47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6024208, "upload_time": "2014-05-06T22:22:10", "url": "https://files.pythonhosted.org/packages/cf/e3/2f1fc5989ee2e6f45bdd0053d3821c0bcb44078ea9db03ddf5bd0f9776ea/pyviennacl-1.0.2.zip" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "d3b464c45a7c2ef1e0c38bc31245f882", "sha256": "982e1ecbc9a6a0302fc9f0d162f72f1e8b2908abff1fed67e10c61cbba05e0e0" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d3b464c45a7c2ef1e0c38bc31245f882", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2991238, "upload_time": "2014-05-19T23:13:39", "url": "https://files.pythonhosted.org/packages/75/ee/d8ff029492d43a5c2f2c54d9adb867809ca151498813cefd62d82b3c34eb/pyviennacl-1.0.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f5efd4844eb3612abb880be76a1e58ec", "sha256": "66d412e3b69d02f8d8c85414d4d1f582f0a8d6425aa5fe8433ae8cff870ee072" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp27-none-win32.whl", "has_sig": false, "md5_digest": "f5efd4844eb3612abb880be76a1e58ec", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1219557, "upload_time": "2014-05-17T17:14:58", "url": "https://files.pythonhosted.org/packages/23/8b/63f0926f2f155116a5ee0454e823137917e0d2ce050e359bbf4204ae0bb2/pyviennacl-1.0.3-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "23b978017b7a73e04f034476c237655e", "sha256": "039048e86b2aefe38f58b43b72fdc39d61e2de8c419f2310ba4304873a78037e" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "23b978017b7a73e04f034476c237655e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1746346, "upload_time": "2014-05-17T17:15:24", "url": "https://files.pythonhosted.org/packages/c3/68/2ed04ad7253e083d6aa2ded1585c29adde766ac6026cfbe69104b4308e8b/pyviennacl-1.0.3-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c89be068583c697910300d57c8a94234", "sha256": "aca670c198911b51eb95f46cd6838d665a30e868f0519d968622494ca4d99409" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp32-none-win32.whl", "has_sig": false, "md5_digest": "c89be068583c697910300d57c8a94234", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 1217535, "upload_time": "2014-05-17T17:15:46", "url": "https://files.pythonhosted.org/packages/4b/db/907ab5c190bccd90efdeafb16fefcd8a008d7d2919abb38a9d3c984010a9/pyviennacl-1.0.3-cp32-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "e9498aee90713abfb6cd59a5321c838a", "sha256": "ce3effd4004783550530c2b7fa3912d6a90656f4ee77916ca4e1ba26173f8fc1" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp32-none-win_amd64.whl", "has_sig": false, "md5_digest": "e9498aee90713abfb6cd59a5321c838a", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 1746245, "upload_time": "2014-05-17T17:16:25", "url": "https://files.pythonhosted.org/packages/af/ef/470a66ef5cc91fe7614edb751edcd784ffd75df86475d9f7afa045ef06d3/pyviennacl-1.0.3-cp32-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "819b4dc7b4b94b4b670096f7548b8d79", "sha256": "3f67f3f5bb235817edcf7e0b97b11231422d6bde3a007e79bd50df40bf40c9b4" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "819b4dc7b4b94b4b670096f7548b8d79", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 2986886, "upload_time": "2014-05-19T23:14:17", "url": "https://files.pythonhosted.org/packages/3a/5e/c820e988e064f6c67d917b765594bdc340424bfac42f69e9e9d84d1464b2/pyviennacl-1.0.3-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a15d4b52dbd64402dbbdf33bf076db30", "sha256": "31a0572a0e0736805be7f6bdbf76483d298c997f3111ceb5552a0cfbb9cae8e6" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp33-none-win32.whl", "has_sig": false, "md5_digest": "a15d4b52dbd64402dbbdf33bf076db30", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 1409444, "upload_time": "2014-05-17T17:17:03", "url": "https://files.pythonhosted.org/packages/90/0e/bbef464e8b891dacea1a517681d1c4b648accf64b844751756ef3cba5d84/pyviennacl-1.0.3-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "8f4d6493885ac1d3a2aac8cdcccb8333", "sha256": "06775dc1176750f9dba4e8ac69a42fe40733dd1e659cf0d9adfd8c9f2b8649b1" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "8f4d6493885ac1d3a2aac8cdcccb8333", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 1685082, "upload_time": "2014-05-17T17:17:28", "url": "https://files.pythonhosted.org/packages/97/32/d0621d092e956d5893e2b1e8c1522b9227f64659889033cd15dcfc5d59ce/pyviennacl-1.0.3-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "254dcdde7b5cae04d967f490efbf2624", "sha256": "a5bba253332545e56ed8fddba425e7e20ddfd8b63495de24d56c2da8af5a23b2" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "254dcdde7b5cae04d967f490efbf2624", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 2963241, "upload_time": "2014-05-19T23:14:44", "url": "https://files.pythonhosted.org/packages/a9/83/105c38b70d0329aa1668020a09b4c7c15fcc53687c4fd9f518cff48d83a9/pyviennacl-1.0.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "95469cd1e1eb5c975ea7c160699447dc", "sha256": "a7e8e152dd2157fa5cf1bf7e15004bb624b5aab96a4c46003cd847dd7a1da907" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp34-none-win32.whl", "has_sig": false, "md5_digest": "95469cd1e1eb5c975ea7c160699447dc", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1406413, "upload_time": "2014-05-17T17:18:09", "url": "https://files.pythonhosted.org/packages/bb/4a/5faf09eb6cf6d16fa093da660bab64af050c35c022df18d15adb126e5db7/pyviennacl-1.0.3-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "c419474a29be055b77c194f35e80972c", "sha256": "b2e011e644e9cf57384551e71462b108b2c11f7651e34c261e28f60fd2026379" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "c419474a29be055b77c194f35e80972c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1684150, "upload_time": "2014-05-17T17:18:34", "url": "https://files.pythonhosted.org/packages/d5/cc/8950e34dc1966cdd87887dbc2630df5bea1b84e68e273b27e13b5868169b/pyviennacl-1.0.3-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3a1b12b38e71f244052e496b0b7f031a", "sha256": "cc56a018a047c1a4e05fb03a8df5251ab5d87c1cb0bbf5daf86283879cb55743" }, "downloads": -1, "filename": "pyviennacl-1.0.3.tar.gz", "has_sig": false, "md5_digest": "3a1b12b38e71f244052e496b0b7f031a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3312347, "upload_time": "2014-05-18T22:38:28", "url": "https://files.pythonhosted.org/packages/77/0e/26c906ab08cc44e3519b9d761463c1cbc9c677f036712ca7c763993d91c6/pyviennacl-1.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "923ea6131586fe5bd30a918177b0aec3", "sha256": "ef28630baf8dec3eaa9e6ab65b3db904a5e8f43634b0f2b4d22eee0d842a9ad0" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "923ea6131586fe5bd30a918177b0aec3", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 1444247, "upload_time": "2014-05-17T17:09:25", "url": "https://files.pythonhosted.org/packages/43/1d/384768cf6ea020c7555d19f96b97025b4f1351d098dbf764c38febc68792/pyviennacl-1.0.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "5a6f4cff0c13ab7fc0a1a5d977269041", "sha256": "112a54827d59ce00c9b40bffb595efc18920152ca30b629d5b3ebbefc63f6534" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py3.2.exe", "has_sig": false, "md5_digest": "5a6f4cff0c13ab7fc0a1a5d977269041", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 1442274, "upload_time": "2014-05-17T17:10:26", "url": "https://files.pythonhosted.org/packages/c9/aa/a19875c621f8390013e222c9ddde6799fd87cbbb3731bfc6abc69b059f50/pyviennacl-1.0.3.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "968fe0235dc54829f6fb449f115df89e", "sha256": "d9c73e12448669ee13cbd5e9afa793decea8fb7fa75e942f24def4185b4f79c6" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py3.3.exe", "has_sig": false, "md5_digest": "968fe0235dc54829f6fb449f115df89e", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 1629064, "upload_time": "2014-05-17T17:12:06", "url": "https://files.pythonhosted.org/packages/78/60/61730c138121317f3b8fdc098329900dc7928331bc0ace27e4e0d7aa8229/pyviennacl-1.0.3.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "498c95f95aef9507dde5d371c57f5468", "sha256": "4f733f31f937587b477b2f9841652862657d6b8c29d7b06d67520188b562e3f8" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py3.4.exe", "has_sig": false, "md5_digest": "498c95f95aef9507dde5d371c57f5468", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 1626035, "upload_time": "2014-05-17T17:12:28", "url": "https://files.pythonhosted.org/packages/7f/7e/b24ab3a46a7a4b2caeadb899a1875c1be3d76399f00abd423802dee5f7e6/pyviennacl-1.0.3.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "9fe455df4239edac21c899f195795afc", "sha256": "0c846cde2c53cafd2863e077da75a2e9265e8a28edc13ed14460d143c5d9d0ac" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "9fe455df4239edac21c899f195795afc", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 1998681, "upload_time": "2014-05-17T17:12:54", "url": "https://files.pythonhosted.org/packages/15/5d/6bd2e42e508633b186e2f5bc857400157322a492a92b7a8485ebd51fe918/pyviennacl-1.0.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "575129afbec9d8673841e3044440d293", "sha256": "8a74573e56a4f3646fb2b70e8ed0db85c9f3bf6087a129f1037399d19ae2b797" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "575129afbec9d8673841e3044440d293", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 1999064, "upload_time": "2014-05-17T17:13:22", "url": "https://files.pythonhosted.org/packages/d8/4a/668171d8ecdee1edc33ce5ba5b83f200b9dc76a2939e9191ac44df09c151/pyviennacl-1.0.3.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "857636f0d6af3164fd925030831064d3", "sha256": "b4f78bdf7374a5f953dfacbf196cc55c9836fb246f2d400a0820fdd791971dc0" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "857636f0d6af3164fd925030831064d3", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 1935932, "upload_time": "2014-05-17T17:13:44", "url": "https://files.pythonhosted.org/packages/d4/87/4bb6dec31751265d8ec0fa1a6a0633f5d85b7c6c3c752ed96a6c23bfdef9/pyviennacl-1.0.3.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "2824391de7a58809d081f56838dc817a", "sha256": "45cd5a1b5f751dcc74b2e38ce741599fe1a482a46476f76e2189e3943f90f19f" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "2824391de7a58809d081f56838dc817a", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 1934998, "upload_time": "2014-05-17T17:14:14", "url": "https://files.pythonhosted.org/packages/60/f1/c4e6c53aceb05f39156a104b04086090438f291863d8f2c161e955f5db95/pyviennacl-1.0.3.win-amd64-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "4f75eb93980f593f227a26f81d6ea72d", "sha256": "84e6487a95d867db2a4e88e73a65794d7f490a6ec1011997c210b6a539dbf987" }, "downloads": -1, "filename": "pyviennacl-1.0.3.zip", "has_sig": false, "md5_digest": "4f75eb93980f593f227a26f81d6ea72d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6026011, "upload_time": "2014-05-18T22:39:00", "url": "https://files.pythonhosted.org/packages/33/66/d340bb8f3611e3ca4dd443148e0331f33506d8355c362129037fdd72806b/pyviennacl-1.0.3.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d3b464c45a7c2ef1e0c38bc31245f882", "sha256": "982e1ecbc9a6a0302fc9f0d162f72f1e8b2908abff1fed67e10c61cbba05e0e0" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d3b464c45a7c2ef1e0c38bc31245f882", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 2991238, "upload_time": "2014-05-19T23:13:39", "url": "https://files.pythonhosted.org/packages/75/ee/d8ff029492d43a5c2f2c54d9adb867809ca151498813cefd62d82b3c34eb/pyviennacl-1.0.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f5efd4844eb3612abb880be76a1e58ec", "sha256": "66d412e3b69d02f8d8c85414d4d1f582f0a8d6425aa5fe8433ae8cff870ee072" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp27-none-win32.whl", "has_sig": false, "md5_digest": "f5efd4844eb3612abb880be76a1e58ec", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1219557, "upload_time": "2014-05-17T17:14:58", "url": "https://files.pythonhosted.org/packages/23/8b/63f0926f2f155116a5ee0454e823137917e0d2ce050e359bbf4204ae0bb2/pyviennacl-1.0.3-cp27-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "23b978017b7a73e04f034476c237655e", "sha256": "039048e86b2aefe38f58b43b72fdc39d61e2de8c419f2310ba4304873a78037e" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp27-none-win_amd64.whl", "has_sig": false, "md5_digest": "23b978017b7a73e04f034476c237655e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1746346, "upload_time": "2014-05-17T17:15:24", "url": "https://files.pythonhosted.org/packages/c3/68/2ed04ad7253e083d6aa2ded1585c29adde766ac6026cfbe69104b4308e8b/pyviennacl-1.0.3-cp27-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c89be068583c697910300d57c8a94234", "sha256": "aca670c198911b51eb95f46cd6838d665a30e868f0519d968622494ca4d99409" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp32-none-win32.whl", "has_sig": false, "md5_digest": "c89be068583c697910300d57c8a94234", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 1217535, "upload_time": "2014-05-17T17:15:46", "url": "https://files.pythonhosted.org/packages/4b/db/907ab5c190bccd90efdeafb16fefcd8a008d7d2919abb38a9d3c984010a9/pyviennacl-1.0.3-cp32-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "e9498aee90713abfb6cd59a5321c838a", "sha256": "ce3effd4004783550530c2b7fa3912d6a90656f4ee77916ca4e1ba26173f8fc1" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp32-none-win_amd64.whl", "has_sig": false, "md5_digest": "e9498aee90713abfb6cd59a5321c838a", "packagetype": "bdist_wheel", "python_version": "3.2", "requires_python": null, "size": 1746245, "upload_time": "2014-05-17T17:16:25", "url": "https://files.pythonhosted.org/packages/af/ef/470a66ef5cc91fe7614edb751edcd784ffd75df86475d9f7afa045ef06d3/pyviennacl-1.0.3-cp32-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "819b4dc7b4b94b4b670096f7548b8d79", "sha256": "3f67f3f5bb235817edcf7e0b97b11231422d6bde3a007e79bd50df40bf40c9b4" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "819b4dc7b4b94b4b670096f7548b8d79", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 2986886, "upload_time": "2014-05-19T23:14:17", "url": "https://files.pythonhosted.org/packages/3a/5e/c820e988e064f6c67d917b765594bdc340424bfac42f69e9e9d84d1464b2/pyviennacl-1.0.3-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a15d4b52dbd64402dbbdf33bf076db30", "sha256": "31a0572a0e0736805be7f6bdbf76483d298c997f3111ceb5552a0cfbb9cae8e6" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp33-none-win32.whl", "has_sig": false, "md5_digest": "a15d4b52dbd64402dbbdf33bf076db30", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 1409444, "upload_time": "2014-05-17T17:17:03", "url": "https://files.pythonhosted.org/packages/90/0e/bbef464e8b891dacea1a517681d1c4b648accf64b844751756ef3cba5d84/pyviennacl-1.0.3-cp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "8f4d6493885ac1d3a2aac8cdcccb8333", "sha256": "06775dc1176750f9dba4e8ac69a42fe40733dd1e659cf0d9adfd8c9f2b8649b1" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "8f4d6493885ac1d3a2aac8cdcccb8333", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 1685082, "upload_time": "2014-05-17T17:17:28", "url": "https://files.pythonhosted.org/packages/97/32/d0621d092e956d5893e2b1e8c1522b9227f64659889033cd15dcfc5d59ce/pyviennacl-1.0.3-cp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "254dcdde7b5cae04d967f490efbf2624", "sha256": "a5bba253332545e56ed8fddba425e7e20ddfd8b63495de24d56c2da8af5a23b2" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "254dcdde7b5cae04d967f490efbf2624", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 2963241, "upload_time": "2014-05-19T23:14:44", "url": "https://files.pythonhosted.org/packages/a9/83/105c38b70d0329aa1668020a09b4c7c15fcc53687c4fd9f518cff48d83a9/pyviennacl-1.0.3-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "95469cd1e1eb5c975ea7c160699447dc", "sha256": "a7e8e152dd2157fa5cf1bf7e15004bb624b5aab96a4c46003cd847dd7a1da907" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp34-none-win32.whl", "has_sig": false, "md5_digest": "95469cd1e1eb5c975ea7c160699447dc", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1406413, "upload_time": "2014-05-17T17:18:09", "url": "https://files.pythonhosted.org/packages/bb/4a/5faf09eb6cf6d16fa093da660bab64af050c35c022df18d15adb126e5db7/pyviennacl-1.0.3-cp34-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "c419474a29be055b77c194f35e80972c", "sha256": "b2e011e644e9cf57384551e71462b108b2c11f7651e34c261e28f60fd2026379" }, "downloads": -1, "filename": "pyviennacl-1.0.3-cp34-none-win_amd64.whl", "has_sig": false, "md5_digest": "c419474a29be055b77c194f35e80972c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1684150, "upload_time": "2014-05-17T17:18:34", "url": "https://files.pythonhosted.org/packages/d5/cc/8950e34dc1966cdd87887dbc2630df5bea1b84e68e273b27e13b5868169b/pyviennacl-1.0.3-cp34-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3a1b12b38e71f244052e496b0b7f031a", "sha256": "cc56a018a047c1a4e05fb03a8df5251ab5d87c1cb0bbf5daf86283879cb55743" }, "downloads": -1, "filename": "pyviennacl-1.0.3.tar.gz", "has_sig": false, "md5_digest": "3a1b12b38e71f244052e496b0b7f031a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3312347, "upload_time": "2014-05-18T22:38:28", "url": "https://files.pythonhosted.org/packages/77/0e/26c906ab08cc44e3519b9d761463c1cbc9c677f036712ca7c763993d91c6/pyviennacl-1.0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "923ea6131586fe5bd30a918177b0aec3", "sha256": "ef28630baf8dec3eaa9e6ab65b3db904a5e8f43634b0f2b4d22eee0d842a9ad0" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py2.7.exe", "has_sig": false, "md5_digest": "923ea6131586fe5bd30a918177b0aec3", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 1444247, "upload_time": "2014-05-17T17:09:25", "url": "https://files.pythonhosted.org/packages/43/1d/384768cf6ea020c7555d19f96b97025b4f1351d098dbf764c38febc68792/pyviennacl-1.0.3.win32-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "5a6f4cff0c13ab7fc0a1a5d977269041", "sha256": "112a54827d59ce00c9b40bffb595efc18920152ca30b629d5b3ebbefc63f6534" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py3.2.exe", "has_sig": false, "md5_digest": "5a6f4cff0c13ab7fc0a1a5d977269041", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 1442274, "upload_time": "2014-05-17T17:10:26", "url": "https://files.pythonhosted.org/packages/c9/aa/a19875c621f8390013e222c9ddde6799fd87cbbb3731bfc6abc69b059f50/pyviennacl-1.0.3.win32-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "968fe0235dc54829f6fb449f115df89e", "sha256": "d9c73e12448669ee13cbd5e9afa793decea8fb7fa75e942f24def4185b4f79c6" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py3.3.exe", "has_sig": false, "md5_digest": "968fe0235dc54829f6fb449f115df89e", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 1629064, "upload_time": "2014-05-17T17:12:06", "url": "https://files.pythonhosted.org/packages/78/60/61730c138121317f3b8fdc098329900dc7928331bc0ace27e4e0d7aa8229/pyviennacl-1.0.3.win32-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "498c95f95aef9507dde5d371c57f5468", "sha256": "4f733f31f937587b477b2f9841652862657d6b8c29d7b06d67520188b562e3f8" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win32-py3.4.exe", "has_sig": false, "md5_digest": "498c95f95aef9507dde5d371c57f5468", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 1626035, "upload_time": "2014-05-17T17:12:28", "url": "https://files.pythonhosted.org/packages/7f/7e/b24ab3a46a7a4b2caeadb899a1875c1be3d76399f00abd423802dee5f7e6/pyviennacl-1.0.3.win32-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "9fe455df4239edac21c899f195795afc", "sha256": "0c846cde2c53cafd2863e077da75a2e9265e8a28edc13ed14460d143c5d9d0ac" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py2.7.exe", "has_sig": false, "md5_digest": "9fe455df4239edac21c899f195795afc", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 1998681, "upload_time": "2014-05-17T17:12:54", "url": "https://files.pythonhosted.org/packages/15/5d/6bd2e42e508633b186e2f5bc857400157322a492a92b7a8485ebd51fe918/pyviennacl-1.0.3.win-amd64-py2.7.exe" }, { "comment_text": "", "digests": { "md5": "575129afbec9d8673841e3044440d293", "sha256": "8a74573e56a4f3646fb2b70e8ed0db85c9f3bf6087a129f1037399d19ae2b797" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py3.2.exe", "has_sig": false, "md5_digest": "575129afbec9d8673841e3044440d293", "packagetype": "bdist_wininst", "python_version": "3.2", "requires_python": null, "size": 1999064, "upload_time": "2014-05-17T17:13:22", "url": "https://files.pythonhosted.org/packages/d8/4a/668171d8ecdee1edc33ce5ba5b83f200b9dc76a2939e9191ac44df09c151/pyviennacl-1.0.3.win-amd64-py3.2.exe" }, { "comment_text": "", "digests": { "md5": "857636f0d6af3164fd925030831064d3", "sha256": "b4f78bdf7374a5f953dfacbf196cc55c9836fb246f2d400a0820fdd791971dc0" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py3.3.exe", "has_sig": false, "md5_digest": "857636f0d6af3164fd925030831064d3", "packagetype": "bdist_wininst", "python_version": "3.3", "requires_python": null, "size": 1935932, "upload_time": "2014-05-17T17:13:44", "url": "https://files.pythonhosted.org/packages/d4/87/4bb6dec31751265d8ec0fa1a6a0633f5d85b7c6c3c752ed96a6c23bfdef9/pyviennacl-1.0.3.win-amd64-py3.3.exe" }, { "comment_text": "", "digests": { "md5": "2824391de7a58809d081f56838dc817a", "sha256": "45cd5a1b5f751dcc74b2e38ce741599fe1a482a46476f76e2189e3943f90f19f" }, "downloads": -1, "filename": "pyviennacl-1.0.3.win-amd64-py3.4.exe", "has_sig": false, "md5_digest": "2824391de7a58809d081f56838dc817a", "packagetype": "bdist_wininst", "python_version": "3.4", "requires_python": null, "size": 1934998, "upload_time": "2014-05-17T17:14:14", "url": "https://files.pythonhosted.org/packages/60/f1/c4e6c53aceb05f39156a104b04086090438f291863d8f2c161e955f5db95/pyviennacl-1.0.3.win-amd64-py3.4.exe" }, { "comment_text": "", "digests": { "md5": "4f75eb93980f593f227a26f81d6ea72d", "sha256": "84e6487a95d867db2a4e88e73a65794d7f490a6ec1011997c210b6a539dbf987" }, "downloads": -1, "filename": "pyviennacl-1.0.3.zip", "has_sig": false, "md5_digest": "4f75eb93980f593f227a26f81d6ea72d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6026011, "upload_time": "2014-05-18T22:39:00", "url": "https://files.pythonhosted.org/packages/33/66/d340bb8f3611e3ca4dd443148e0331f33506d8355c362129037fdd72806b/pyviennacl-1.0.3.zip" } ] }