{ "info": { "author": "konstin ", "author_email": "konstin ", "bugtrack_url": null, "classifiers": [], "description": "# Pyo3-pack\n\n[![Linux and Mac Build Status](https://img.shields.io/travis/PyO3/pyo3-pack/master.svg?style=flat-square)](https://travis-ci.org/PyO3/pyo3-pack)\n[![Windows Build status](https://img.shields.io/appveyor/ci/konstin/pyo3-pack/master.svg?style=flat-square)](https://ci.appveyor.com/project/konstin/pyo3-pack/branch/master)\n[![Crates.io](https://img.shields.io/crates/v/pyo3-pack.svg?style=flat-square)](https://crates.io/crates/pyo3-pack)\n[![PyPI](https://img.shields.io/pypi/v/pyo3-pack.svg?style=flat-square)](https://pypi.org/project/pyo3-pack/)\n[![Chat on Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg?style=flat-square)](https://gitter.im/PyO3/Lobby)\n\nBuild and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages.\n\nThis project was meant as a zero configuration replacement for [setuptools-rust](https://github.com/PyO3/setuptools-rust). It supports building wheels for python 3.5+ on windows, linux and mac, can upload them to [pypi](https://pypi.org/) and has basic pypy support.\n\n## Usage\n\nYou can either download binaries from the [latest release](https://github.com/PyO3/pyo3-pack/releases/latest) or install it with pip:\n\n```shell\npip install pyo3-pack\n```\n\nYou can also install pyo3-pack from source, though it's an older version:\n\n```shell\ncargo install pyo3-pack\n```\n\nThere are three main subcommands:\n\n * `publish` builds the crate into python packages and publishes them to pypi.\n * `build` builds the wheels and stores them in a folder (`target/wheels` by default), but doesn't upload them.\n * `develop` builds the crate and install it's as a python module directly in the current virtualenv\n\n`pyo3` and `rust-cpython` bindings are automatically detected, for cffi or binaries you need to pass `-b cffi` or `-b bin`. pyo3-pack needs no extra configuration files, and also doesn't clash with an existing setuptools-rust or milksnake configuration. You can even integrate it with testing tools such as tox (see `get-fourtytwo` for an example).\n\nThe name of the package will be the name of the cargo project, i.e. the name field in the `[package]` section of Cargo.toml. The name of the module, which you are using when importing, will be the `name` value in the `[lib]` section (which defaults to the name of the package). For binaries it's simply the name of the binary generated by cargo.\n\nPip allows adding so called console scripts, which are shell commands that execute some function in you program. You can add console scripts in a section `[package.metadata.pyo3-pack.scripts]`. The keys are the script names while the values are the path to the function in the format `some.module.path:class.function`, where the `class` part is optional. The function is called with no arguments. Example:\n\n```toml\n[package.metadata.pyo3-pack.scripts]\nget_42 = \"get_fourtytwo:DummyClass.get_42\"\n```\n\nYou can also specify [trove classifiers](https://pypi.org/classifiers/) in your Cargo.toml under `package.metadata.pyo3-pack.classifier`, e.g.:\n\n```toml\n[package.metadata.pyo3-pack]\nclassifier = [\"Programming Language :: Python\"]\n```\n\n## pyo3 and rust-cpython\n\nFor pyo3 and rust-cpython, pyo3-pack can only build packages for installed python versions. On linux and mac, all python versions in `PATH` are used. If you don't set your own interpreters with `-i`, a heuristic is used to search for python installations. On windows all versions from the python launcher (which is installed by default by the python.org installer) and all conda environments except base are used. You can check which versions are picked up with the `list-python` subcommand.\n\npyo3 will set the used python interpreter in the environment variable `PYTHON_SYS_EXECUTABLE`, which can be used from custom build scripts.\n\n## Cffi\n\n Cffi wheels are compatible with all python versions, but they need to have `cffi` installed for the python used for building (`pip install cffi`).\n\npyo3-pack will run cbindgen and generate cffi bindings. You can override this with a build script that writes a header to `target/header.h`.\n\n
\nExample of a custom build script\n\n```rust\nuse cbindgen; // Use `extern crate cbindgen` in rust 2015\nuse std::env;\nuse std::path::Path;\n\nfn main() {\n let crate_dir = env::var(\"CARGO_MANIFEST_DIR\").unwrap();\n\n let bindings = cbindgen::Builder::new()\n .with_no_includes()\n .with_language(cbindgen::Language::C)\n .with_crate(crate_dir)\n .generate()\n .unwrap();\n bindings.write_to_file(Path::new(\"target\").join(\"header.h\"));\n}\n```\n\n
\n\n## Manylinux and auditwheel\n\nFor portability reasons, native python modules on linux must only dynamically link a set of very few libraries which are installed basically everywhere, hence the name manylinux. The pypa offers a special docker container and a tool called [auditwheel](https://github.com/pypa/auditwheel/) to ensure compliance with the [manylinux rules](https://www.python.org/dev/peps/pep-0513/#the-manylinux1-policy).\n\npyo3-pack contains a reimplementation of a major part of auditwheel automatically checking the generated library. If you want to disable those checks or build for native linux target, use the `--manylinux` flag.\n\nFor full manylinux compliance you need to compile in a cent os 5 docker container. The [konstin2/pyo3-pack](https://hub.docker.com/r/konstin2/pyo3-pack) image is based on the official manylinux image. You can use it like this:\n\n```\ndocker run --rm -v $(pwd):/io konstin2/pyo3-pack build\n```\n\npyo3-pack itself is manylinux compliant when compiled for the musl target. The binaries on the release pages have additional keyring integration (through the `password-storage` feature), which is not manylinux compliant.\n\n## PyPy\n\npyo3-pack can build wheels for pypy with pyo3. Note that pypy support in pyo3 is unreleased as of this writing. Also note that pypy [is not compatible with manylinux1](https://github.com/antocuni/pypy-wheels#why-not-manylinux1-wheels) and you can't publish pypy wheel to pypi pypy has been only tested manually and on linux. See [#115](https://github.com/PyO3/pyo3-pack/issues/115) for more details.\n\n### Build\n\n```\nFLAGS:\n -h, --help\n Prints help information\n\n --release\n Pass --release to cargo\n\n --skip-auditwheel\n [deprecated, use --manylinux instead] Don't check for manylinux compliance\n\n --strip\n Strip the library for minimum file size\n\n -V, --version\n Prints version information\n\n\nOPTIONS:\n -m, --manifest-path \n The path to the Cargo.toml [default: Cargo.toml]\n\n --target \n The --target option for cargo\n\n -b, --bindings \n Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin\n\n --cargo-extra-args ...\n Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`\n\n Use as `--cargo-extra-args=\"--my-arg\"`\n -i, --interpreter ...\n The python versions to build wheels for, given as the names of the interpreters. Uses autodiscovery if not\n explicitly set.\n --manylinux \n Control the platform tag on linux.\n\n - `1`: Use the manylinux1 tag and check for compliance\n\n - `1-unchecked`: Use the manylinux1 tag without checking for compliance\n\n - `2010`: Use the manylinux2010 tag and check for compliance\n\n - `2010-unchecked`: Use the manylinux1 tag without checking for compliance\n\n - `off`: Use the native linux tag (off)\n\n This option is ignored on all non-linux platforms [default: 1] [possible values: 1, 1-unchecked, 2010,\n 2010-unchecked, off]\n -o, --out \n The directory to store the built wheels in. Defaults to a new \"wheels\" directory in the project's target\n directory\n --rustc-extra-args ...\n Extra arguments that will be passed to rustc as `cargo rustc [...] -- [arg1] [arg2]`\n\n Use as `--rustc-extra-args=\"--my-arg\"`\n```\n\n### Publish\n\n```\nFLAGS:\n --debug\n Do not pass --release to cargo\n\n -h, --help\n Prints help information\n\n --no-strip\n Strip the library for minimum file size\n\n --skip-auditwheel\n [deprecated, use --manylinux instead] Don't check for manylinux compliance\n\n -V, --version\n Prints version information\n\n\nOPTIONS:\n -m, --manifest-path \n The path to the Cargo.toml [default: Cargo.toml]\n\n --target \n The --target option for cargo\n\n -b, --bindings \n Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin\n\n --cargo-extra-args ...\n Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`\n\n Use as `--cargo-extra-args=\"--my-arg\"`\n -i, --interpreter ...\n The python versions to build wheels for, given as the names of the interpreters. Uses autodiscovery if not\n explicitly set.\n --manylinux \n Control the platform tag on linux.\n\n - `1`: Use the manylinux1 tag and check for compliance\n\n - `1-unchecked`: Use the manylinux1 tag without checking for compliance\n\n - `2010`: Use the manylinux2010 tag and check for compliance\n\n - `2010-unchecked`: Use the manylinux1 tag without checking for compliance\n\n - `off`: Use the native linux tag (off)\n\n This option is ignored on all non-linux platforms [default: 1] [possible values: 1, 1-unchecked, 2010,\n 2010-unchecked, off]\n -o, --out \n The directory to store the built wheels in. Defaults to a new \"wheels\" directory in the project's target\n directory\n -p, --password \n Password for pypi or your custom registry. Note that you can also pass the password through\n PYO3_PACK_PASSWORD\n -r, --repository-url \n The url of registry where the wheels are uploaded to [default: https://upload.pypi.org/legacy/]\n\n --rustc-extra-args ...\n Extra arguments that will be passed to rustc as `cargo rustc [...] -- [arg1] [arg2]`\n\n Use as `--rustc-extra-args=\"--my-arg\"`\n -u, --username \n Username for pypi or your custom registry\n```\n\n### Develop\n\n```\nFLAGS:\n -h, --help\n Prints help information\n\n --release\n Pass --release to cargo\n\n --strip\n Strip the library for minimum file size\n\n -V, --version\n Prints version information\n\n\nOPTIONS:\n -b, --bindings \n Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin\n\n --cargo-extra-args ...\n Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`\n\n Use as `--cargo-extra-args=\"--my-arg\"`\n -m, --manifest-path \n The path to the Cargo.toml [default: Cargo.toml]\n\n --rustc-extra-args ...\n Extra arguments that will be passed to rustc as `cargo rustc [...] -- [arg1] [arg2]`\n\n Use as `--rustc-extra-args=\"--my-arg\"`\n```\n\n## Code\n\nThe main part is the pyo3-pack library, which is completely documented and should be well integratable. The accompanying `main.rs` takes care username and password for the pypi upload and otherwise calls into the library.\n\nThere are three different examples, which are also used for integration testing: `get_fourtytwo` with pyo3 bindings, `points` crate with cffi bindings and `hello-world` as a binary. The `sysconfig` folder contains the output of `python -m sysconfig` for different python versions and platform, which is helpful during development.\n\nYou need to install `virtualenv` and `cffi` (`pip install virtualenv cffi`) to run the tests.\n\nYou might want to have look into my [blog post](https://blog.schuetze.link/2018/07/21/a-dive-into-packaging-native-python-extensions.html) which explains the intricacies of building native python packages.\n", "description_content_type": "text/markdown; charset=UTF-8; variant=GFM", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "python cffi packaging pypi pyo3", "license": "MIT OR Apache-2.0", "maintainer": "", "maintainer_email": "", "name": "pyo3-pack", "package_url": "https://pypi.org/project/pyo3-pack/", "platform": "", "project_url": "https://pypi.org/project/pyo3-pack/", "project_urls": null, "release_url": "https://pypi.org/project/pyo3-pack/0.6.1/", "requires_dist": null, "requires_python": "", "summary": "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages", "version": "0.6.1" }, "last_serial": 5760397, "releases": { "0.3.0": [ { "comment_text": "", "digests": { "md5": "bd102c868f78acccbe2bbde971f371d1", "sha256": "7f42ee2e211300675f6b60f207b89d25cbc97af7943ec6c33bb00e3c6fd0aa42" }, "downloads": -1, "filename": "pyo3_pack-0.3.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bd102c868f78acccbe2bbde971f371d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12080860, "upload_time": "2018-09-14T18:48:07", "url": "https://files.pythonhosted.org/packages/72/3a/b9a231259cd5c49a8bf9463678b102d6a637f7ffb0e9455c15f0463a5a34/pyo3_pack-0.3.0-py2.py3-none-manylinux1_x86_64.whl" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "b38bf4b27775b977eb19c337c2055c77", "sha256": "9f31a4b336b34dc6505f7486270d195132ed1492e67258a59ef7cb4296b75ca1" }, "downloads": -1, "filename": "pyo3_pack-0.3.10-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b38bf4b27775b977eb19c337c2055c77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2643421, "upload_time": "2018-11-15T23:19:32", "url": "https://files.pythonhosted.org/packages/e2/62/f62c42e82671546842ae01d170b7957571fd912fa45e8aec0b975543cf49/pyo3_pack-0.3.10-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0140d16324f0eb654f0d7aa1bf6151f4", "sha256": "b411317a587c1284d9e4e6338bca9d7018ca351fc66e0d2843c0eeeef6693003" }, "downloads": -1, "filename": "pyo3_pack-0.3.10-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0140d16324f0eb654f0d7aa1bf6151f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3683230, "upload_time": "2018-11-15T23:14:48", "url": "https://files.pythonhosted.org/packages/d7/49/2576fb8c93463e498b74f7e0e9111b2898c9e0dda739cc2c3a4dd5fd1ca6/pyo3_pack-0.3.10-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "010072f0f1d76c46928db3097df5b613", "sha256": "93f0e3bf55babd654ffa241e645e512b773cd58b1bbeb1f4d8c1205410374b5f" }, "downloads": -1, "filename": "pyo3_pack-0.3.10-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "010072f0f1d76c46928db3097df5b613", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3707932, "upload_time": "2018-11-15T23:10:51", "url": "https://files.pythonhosted.org/packages/e5/7a/edd4a8e70a13f42e57a0a2cf530ee079a1f0e837d9c78997d1b69757e2aa/pyo3_pack-0.3.10-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "789f8d4c466150a6701b1855bcf8fe26", "sha256": "a70a3b1b1108e75c2dda7f9b1e9034095c4b00da5d3e24ab3a4445830f9cd520" }, "downloads": -1, "filename": "pyo3_pack-0.3.10-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "789f8d4c466150a6701b1855bcf8fe26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2186830, "upload_time": "2018-11-15T23:03:09", "url": "https://files.pythonhosted.org/packages/73/4c/0c050b507ffa27e2928a4745e6b8999240eb18742c55485702729c1da53f/pyo3_pack-0.3.10-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "40fde3a71d8f2ccdc070b6ea436bea32", "sha256": "aec69ce598ec629bcabc746f1b0bc61a78615bf234432cf120b3cfbb0e12083d" }, "downloads": -1, "filename": "pyo3_pack-0.3.10-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "40fde3a71d8f2ccdc070b6ea436bea32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2433273, "upload_time": "2018-11-15T23:23:13", "url": "https://files.pythonhosted.org/packages/c1/04/45963bf22cc9e030e9eebb0a361f6a5dabae1c690edf1a3b6cf1159be3fc/pyo3_pack-0.3.10-py2.py3-none-win_amd64.whl" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "64e55f03ec619fbfcd4debda76a1a3c8", "sha256": "e69a370c9575318830185eb9991660d1ce8ad5b45f1d83ffc7531dc5032b8349" }, "downloads": -1, "filename": "pyo3_pack-0.3.3-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "64e55f03ec619fbfcd4debda76a1a3c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7882306, "upload_time": "2018-09-17T00:21:08", "url": "https://files.pythonhosted.org/packages/cb/71/b321319c629a765aaea12d4d1f1e64df09a5f244174e29af24abb4b13c39/pyo3_pack-0.3.3-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fdcd1235b527fca5ccaf2049be65b113", "sha256": "16e3b1be389b670cf8d4b01e61595daf6221eaddbac70231bce8ba54fb801a66" }, "downloads": -1, "filename": "pyo3_pack-0.3.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fdcd1235b527fca5ccaf2049be65b113", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12120363, "upload_time": "2018-09-17T00:15:28", "url": "https://files.pythonhosted.org/packages/70/8b/436731579c2442b7e5265fcd0468dd9090314049e4051bacfef8a0e4e434/pyo3_pack-0.3.3-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "29476fb87e5ce31af90bbb55cdfbb7a3", "sha256": "3349517e98a27fa8cf5a95777c37603e3d198440ae650421e6055c1e1ebe1eaa" }, "downloads": -1, "filename": "pyo3_pack-0.3.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "29476fb87e5ce31af90bbb55cdfbb7a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12132076, "upload_time": "2018-09-17T00:16:08", "url": "https://files.pythonhosted.org/packages/ed/e9/a1521c28c2bc588cea8f0ad00d2e792117f2fa2c7e5fa844a116e1469ce5/pyo3_pack-0.3.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fdbf8cde4023879716ceaacafd9ed14a", "sha256": "8df6665777de2e8d1eb4226e8463117ce08f838cb68760532184f7a47246075f" }, "downloads": -1, "filename": "pyo3_pack-0.3.3-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "fdbf8cde4023879716ceaacafd9ed14a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5203620, "upload_time": "2018-09-16T23:59:34", "url": "https://files.pythonhosted.org/packages/23/5c/2236111891b5436cb6dc78c7bd0f07e45bcdcf70e676c631e7aa0d6e62cd/pyo3_pack-0.3.3-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "5ec80446e8fd5e5050320585a0de40c2", "sha256": "99458b987babbac49e4a95d018f1264d76059d6a43fccdcc140264609ca81ca2" }, "downloads": -1, "filename": "pyo3_pack-0.3.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "5ec80446e8fd5e5050320585a0de40c2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6382252, "upload_time": "2018-09-17T00:07:02", "url": "https://files.pythonhosted.org/packages/8d/1c/02f0b71e2b7f79fa95f4be118d7bdf49c1b4a0988c32d1f531d22cee7b13/pyo3_pack-0.3.3-py2.py3-none-win_amd64.whl" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "8b67bb1aa9b14fd65820756382754352", "sha256": "111b4df82d8ba67ed2602d7859145c960e5d659e7d1763d4ae521826188f99b8" }, "downloads": -1, "filename": "pyo3_pack-0.3.4-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8b67bb1aa9b14fd65820756382754352", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7863710, "upload_time": "2018-09-18T17:37:13", "url": "https://files.pythonhosted.org/packages/b0/a7/f0bc1b07535b11fd5351900d965e2731529e2fe5f282ed00ac702786b5b7/pyo3_pack-0.3.4-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "be795ff527d7b0ef46f303a616a36045", "sha256": "94dcd8e91514b13a2195800cd7c7fd7e342f345b08af39e9909e846383285bae" }, "downloads": -1, "filename": "pyo3_pack-0.3.4-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "be795ff527d7b0ef46f303a616a36045", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13977393, "upload_time": "2018-09-18T17:27:06", "url": "https://files.pythonhosted.org/packages/7d/b8/1c18460e0b427906c058d92f7580973af36ae1c29855c0132a07746d9668/pyo3_pack-0.3.4-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4ad2fb6521f0bed5ac3b1b2fa6d0ebb1", "sha256": "5e4e04c5eb43f0a9cd57e7a19fc1a51cfb9bb73d0e0a33a30ac9d11e1260fe08" }, "downloads": -1, "filename": "pyo3_pack-0.3.4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4ad2fb6521f0bed5ac3b1b2fa6d0ebb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15147118, "upload_time": "2018-09-18T17:28:53", "url": "https://files.pythonhosted.org/packages/97/2c/6b87697b41c2ae4e0e8d82f106e63f7280245b35c76f9c4621a09531223c/pyo3_pack-0.3.4-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fbe97baa6906240af2a9b7a9ed9867c7", "sha256": "a15117bbdeef4a105a39685dfe5ce1b8d92df0d6efa2f472026a777b2e5d1616" }, "downloads": -1, "filename": "pyo3_pack-0.3.4-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "fbe97baa6906240af2a9b7a9ed9867c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5200624, "upload_time": "2018-09-18T17:16:51", "url": "https://files.pythonhosted.org/packages/47/94/d5a954ce45559387e9c4ed393129f8c7e3ec643866ae34c68380828976a9/pyo3_pack-0.3.4-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "190ffe8c64e4bb2b8d8bbb3896fd7de2", "sha256": "83ec3004bdf08c5f8502dbbca5b8b4460a2088d9fa187a5200eedee0cc68f695" }, "downloads": -1, "filename": "pyo3_pack-0.3.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "190ffe8c64e4bb2b8d8bbb3896fd7de2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6391032, "upload_time": "2018-09-18T17:26:18", "url": "https://files.pythonhosted.org/packages/e9/34/d52049cf73ffafbce7ccadbba452206916f390932c139cf840003af1dd54/pyo3_pack-0.3.4-py2.py3-none-win_amd64.whl" } ], "0.3.4-beta.2": [ { "comment_text": "", "digests": { "md5": "f519978a6525a1fb8dd5c890be562e4f", "sha256": "9fdc847a8b342a438cfa0956d12cc1b221c1752e06bacdc4cc2af0b6fc1d9ee8" }, "downloads": -1, "filename": "pyo3_pack-0.3.4_beta.2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f519978a6525a1fb8dd5c890be562e4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7863584, "upload_time": "2018-09-18T15:52:06", "url": "https://files.pythonhosted.org/packages/19/e5/007c21619e53c3d43a7a06f451136db9b7a3978650c05e098c542a02f19c/pyo3_pack-0.3.4_beta.2-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b95dd4a934ec0f9b90c038cf16f562bf", "sha256": "3d1afa2ca6a496a1759a7664e83a96971a799e924c711770e970cb82ee620587" }, "downloads": -1, "filename": "pyo3_pack-0.3.4_beta.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b95dd4a934ec0f9b90c038cf16f562bf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13977207, "upload_time": "2018-09-18T15:42:56", "url": "https://files.pythonhosted.org/packages/66/7e/89f04e25a677604e8affa98f48a99d05cd5e4cb54e376e5c9dcb9b14aff1/pyo3_pack-0.3.4_beta.2-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4db69bda5528063cf99a2ec9ebcbdbd3", "sha256": "d7d1c0f9e65a44da5fe0a18793ac86bbcbbb6e02f4d41365aad97ed071491671" }, "downloads": -1, "filename": "pyo3_pack-0.3.4_beta.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4db69bda5528063cf99a2ec9ebcbdbd3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15146792, "upload_time": "2018-09-18T15:42:48", "url": "https://files.pythonhosted.org/packages/9b/48/da3c8a3d0cfb888286f3c775af40f62325cc1b343daf4add64b1cb0f83e3/pyo3_pack-0.3.4_beta.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "82624b9adef13f82e7eec4998bcd27fe", "sha256": "021a362b63a089039891c3e95f10febb0ea6748645b830d88b37231fe3b8f373" }, "downloads": -1, "filename": "pyo3_pack-0.3.4_beta.2-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "82624b9adef13f82e7eec4998bcd27fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5192018, "upload_time": "2018-09-18T15:43:56", "url": "https://files.pythonhosted.org/packages/20/c1/a3d0e1c936dfb018606f248dbb679ce078574fb9d0d2bcd87c11bf6d3a46/pyo3_pack-0.3.4_beta.2-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "90ac63a8de068baa48b5db6eb34aca35", "sha256": "b9c3fc74fd0d3612789dac6895a70b88d4cb5e4d64822a23a444557147e69962" }, "downloads": -1, "filename": "pyo3_pack-0.3.4_beta.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "90ac63a8de068baa48b5db6eb34aca35", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6393178, "upload_time": "2018-09-18T16:08:43", "url": "https://files.pythonhosted.org/packages/cb/57/fcdeb7bb542aab0bcb5faf6d96d583167670cf28064ba8e1d5c74750ccd5/pyo3_pack-0.3.4_beta.2-py2.py3-none-win_amd64.whl" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "ba6a967828baa708ca09ad31360260ab", "sha256": "a95430a392da41e43fd3d8c96a56c7a1fa4bba60cbeffc7226f263ba6c50e343" }, "downloads": -1, "filename": "pyo3_pack-0.3.5-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ba6a967828baa708ca09ad31360260ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8551464, "upload_time": "2018-09-20T17:09:27", "url": "https://files.pythonhosted.org/packages/d6/4c/a4397117adf87590aafbff2882bec0a57823a4d3e5c23a337ef2a88939d5/pyo3_pack-0.3.5-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "40a9eb23bc24a7c864e6b300367549d8", "sha256": "918ea2970e0c2e6be669157b2d4e3551cd996aed4185d2ac201ed359d631d2d8" }, "downloads": -1, "filename": "pyo3_pack-0.3.5-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "40a9eb23bc24a7c864e6b300367549d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14624292, "upload_time": "2018-09-20T16:59:46", "url": "https://files.pythonhosted.org/packages/07/e7/d1f88334b7e3b049741ef0d547fe859029fbc8fcccf84cccb87f005b1678/pyo3_pack-0.3.5-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1e2b4ebe0f20b3539dfbc6561735c9b5", "sha256": "d3fb5b86daab7974df0fea83ea0437aed2417a7d8ef39a72dd0311a5b1e075bd" }, "downloads": -1, "filename": "pyo3_pack-0.3.5-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e2b4ebe0f20b3539dfbc6561735c9b5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15853875, "upload_time": "2018-09-20T16:59:40", "url": "https://files.pythonhosted.org/packages/90/39/f3c766aadfe521370d0d4d580302370115da973d341bfcbe5300a9a0e890/pyo3_pack-0.3.5-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2f3f663cde660de549486b40f43f7b9", "sha256": "744467feb51984d49bf0f421c54bb2d1802c8813984ece2d7a3c711c16a74be6" }, "downloads": -1, "filename": "pyo3_pack-0.3.5-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "b2f3f663cde660de549486b40f43f7b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5896954, "upload_time": "2018-09-20T16:56:08", "url": "https://files.pythonhosted.org/packages/2c/d8/7c609bdd35e7ae05dac4cdc638ce6d771bbfeee86a63cda2391c255699d2/pyo3_pack-0.3.5-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "cb5a6dc537ecd40f544e5eac53b61e0f", "sha256": "a0a2a3510e215327899794774e77aedfbc59fc1c4cb02478b71bd0bbd16c9270" }, "downloads": -1, "filename": "pyo3_pack-0.3.5-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "cb5a6dc537ecd40f544e5eac53b61e0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7116546, "upload_time": "2018-09-20T17:12:40", "url": "https://files.pythonhosted.org/packages/ce/18/e11710463619e58635b8635a056bceae87bb0754e888c2b429154544797a/pyo3_pack-0.3.5-py2.py3-none-win_amd64.whl" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "be787cdf54d6ac43851b3452431f7508", "sha256": "893cc7a492fdd9cfd48cb28bf7508925acfe46426c8bd6af043d87090d3fc6bf" }, "downloads": -1, "filename": "pyo3_pack-0.3.6-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "be787cdf54d6ac43851b3452431f7508", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2859516, "upload_time": "2018-10-01T13:37:35", "url": "https://files.pythonhosted.org/packages/fd/f7/99e190893202baa7dfcc033f3fdd89a1c28b1d2152dfc081749526220b47/pyo3_pack-0.3.6-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1bd3584a0252b719c2f3b2d14814f7a0", "sha256": "cfb3e9384d1835340ce946d0b1a830b9c1cff0c5d6915018ecc9bdaf987ce1f5" }, "downloads": -1, "filename": "pyo3_pack-0.3.6-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1bd3584a0252b719c2f3b2d14814f7a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3765716, "upload_time": "2018-10-01T13:31:15", "url": "https://files.pythonhosted.org/packages/b5/03/05d8351ccb94f19338a581fbd2fbce3f6e9b508d78312979f8836afecf39/pyo3_pack-0.3.6-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ca2c8e726b78041f95813db28ce17344", "sha256": "9066ee2b19fb355402fa97acf5c0dbfe72c381fabc7d9223ca13d64cebd6ae4a" }, "downloads": -1, "filename": "pyo3_pack-0.3.6-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ca2c8e726b78041f95813db28ce17344", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3767754, "upload_time": "2018-10-01T13:30:34", "url": "https://files.pythonhosted.org/packages/8e/a8/62f4a5983a0c335bb274f9a799d340937146f9b14a17d9534d0ee52bf5dc/pyo3_pack-0.3.6-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "50a1ecf2dd42f2e70914e5730713e2c9", "sha256": "811bdc9a9b4433d57bfed5e5078f36c5b5b194a956d268c45c5508bd3e382b4c" }, "downloads": -1, "filename": "pyo3_pack-0.3.6-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "50a1ecf2dd42f2e70914e5730713e2c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2437581, "upload_time": "2018-10-01T13:33:29", "url": "https://files.pythonhosted.org/packages/43/e8/8c43aa503f2faa32916d0a62606aaa6deff2ebb27f5b453d7f0339a5b762/pyo3_pack-0.3.6-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "1cd5a29ef87280e69be2ac279bccd8d5", "sha256": "6ac663b4c87ff902ce7bc7396819d341a6a87149c49926f29c99e855740398eb" }, "downloads": -1, "filename": "pyo3_pack-0.3.6-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "1cd5a29ef87280e69be2ac279bccd8d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2635248, "upload_time": "2018-10-01T13:52:32", "url": "https://files.pythonhosted.org/packages/64/69/bc670d06d8b2b6a5f5f7a5030a9cb02b8d447f832035277318f473ecedfa/pyo3_pack-0.3.6-py2.py3-none-win_amd64.whl" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "f9f3e7536e484117603ebcfc0333d0ea", "sha256": "f8c384025908b333d5e5d36fa375ab2a8d17617c894a3fcb899e9845d51f7ea2" }, "downloads": -1, "filename": "pyo3_pack-0.3.9-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f9f3e7536e484117603ebcfc0333d0ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2642162, "upload_time": "2018-11-06T23:36:48", "url": "https://files.pythonhosted.org/packages/8e/82/71cfda406d6e833db64aad3fdc2f1cc69a3f5c25747983657db25c811865/pyo3_pack-0.3.9-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "69c837274e1a32b34c36750331963e23", "sha256": "9096f0d78f5e7188b0fd8bbe5e39199ce303cc1953290ae3e55aa2ae91c780a6" }, "downloads": -1, "filename": "pyo3_pack-0.3.9-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "69c837274e1a32b34c36750331963e23", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3684347, "upload_time": "2018-11-06T23:35:06", "url": "https://files.pythonhosted.org/packages/bd/99/4ea393f23c5f1062e58a41f724ec1a4cffef155a3cb29ab3536441e76d34/pyo3_pack-0.3.9-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ca6f3f205c842fc758ba57304abc8fed", "sha256": "dc2261b632be4cf9110dd405e32c4e48d081dd7dd0e5bece5fa008f631cbc2b8" }, "downloads": -1, "filename": "pyo3_pack-0.3.9-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ca6f3f205c842fc758ba57304abc8fed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3707652, "upload_time": "2018-11-06T23:28:21", "url": "https://files.pythonhosted.org/packages/bb/16/6c5cb6cf5af18797ed7a35f6e4c26e2b22f32a6392932984f40774d29783/pyo3_pack-0.3.9-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9619e3fa9d1735cdd931f29d243091e5", "sha256": "efd18d431c2e340e579f1b207631791c677ebacad3a7273a26b9d60020ab971a" }, "downloads": -1, "filename": "pyo3_pack-0.3.9-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "9619e3fa9d1735cdd931f29d243091e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2185670, "upload_time": "2018-11-07T01:05:20", "url": "https://files.pythonhosted.org/packages/8e/9f/923d42e2ff115203b78ef6c15baa3047bd55c33356e517f443e3d8cf3aa0/pyo3_pack-0.3.9-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ca0573ea1e02697ea37658b6573bfa73", "sha256": "1fb20519dd60442a8577dd8da7100e7796cef319126e3b21e8b5223999996004" }, "downloads": -1, "filename": "pyo3_pack-0.3.9-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ca0573ea1e02697ea37658b6573bfa73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2429451, "upload_time": "2018-11-07T01:26:06", "url": "https://files.pythonhosted.org/packages/94/11/6a11142e076d39ff9c85fade3aed027978caa1c3a7253c5bce10e0b0afbb/pyo3_pack-0.3.9-py2.py3-none-win_amd64.whl" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "417a3f5e43ee220720ec65305411d7eb", "sha256": "0affd6aee2355fbe48c7a7892590fb9ad1722de84b12b7be05e3eff84072bd93" }, "downloads": -1, "filename": "pyo3_pack-0.4.0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "417a3f5e43ee220720ec65305411d7eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3037543, "upload_time": "2018-11-20T17:57:49", "url": "https://files.pythonhosted.org/packages/f6/68/da7d9a7aee192f53a8708b41309c2023229a6bf3d0dc9e001555d63639c1/pyo3_pack-0.4.0-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4432c8ee7b41bb4246997175411d754", "sha256": "82d2c9e20af82e2a538a3ef116750edd09598e916db75de2e80c8e1103487ec5" }, "downloads": -1, "filename": "pyo3_pack-0.4.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c4432c8ee7b41bb4246997175411d754", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4167164, "upload_time": "2018-11-20T17:51:36", "url": "https://files.pythonhosted.org/packages/c2/84/13c4dca34ab12b29d46f403a811ad94a65db5e527b4074eef3b362eb2219/pyo3_pack-0.4.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "de1846285f95066eedc731b31914f555", "sha256": "c0472dc8694180c2c02884d2e624763df17c20fd6f8dcd4f0bc5ef1301b59031" }, "downloads": -1, "filename": "pyo3_pack-0.4.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "de1846285f95066eedc731b31914f555", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4238840, "upload_time": "2018-11-20T17:50:19", "url": "https://files.pythonhosted.org/packages/32/cc/7db0a149444bbfdbab9b29b167aad5da4f6a7d074bd38ccd11865d0ecaef/pyo3_pack-0.4.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "933bc43bbb9da8472194fb1a5435ee16", "sha256": "aa5b34cad2f2528009abacf6b157b0097cd9264f6e5f3ea7ba797f7ff998f697" }, "downloads": -1, "filename": "pyo3_pack-0.4.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "933bc43bbb9da8472194fb1a5435ee16", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2461494, "upload_time": "2018-11-20T17:41:51", "url": "https://files.pythonhosted.org/packages/e6/4e/60890472dd5b3c7fdb3cc081de96accaa110f49641ac3650e712bdb2c4d8/pyo3_pack-0.4.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "25ab1ee535c8fa8d17010893c10e9141", "sha256": "772cf1d0a193e5416c37fa81222292528821f3c6f565c7546f569e122b4eb7a3" }, "downloads": -1, "filename": "pyo3_pack-0.4.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "25ab1ee535c8fa8d17010893c10e9141", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2785855, "upload_time": "2018-11-20T17:51:01", "url": "https://files.pythonhosted.org/packages/cd/a2/40a810e3aeedb8efd28ca802d926c0606d31819a01af54c653be19041dd0/pyo3_pack-0.4.0-py2.py3-none-win_amd64.whl" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "8b66cb6b930b461cbdb810ab4ad6d034", "sha256": "a39feb294015074eaa1aa82a620a0204a80c55a5b5fc6c626dbc87b7aeb5196c" }, "downloads": -1, "filename": "pyo3_pack-0.4.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8b66cb6b930b461cbdb810ab4ad6d034", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3114155, "upload_time": "2018-12-15T20:35:39", "url": "https://files.pythonhosted.org/packages/4e/87/09937bc3d3a35e98507b0cd55887036dcf0731e4b62e33add368d4d505bb/pyo3_pack-0.4.1-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2a891d1c21bad1029774d377feb8193a", "sha256": "ee98dc23fe50383bf1f9a101de6b68e3145efe54b47a558545d3c98ff1fbd24e" }, "downloads": -1, "filename": "pyo3_pack-0.4.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2a891d1c21bad1029774d377feb8193a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4250784, "upload_time": "2018-12-15T20:29:17", "url": "https://files.pythonhosted.org/packages/7f/68/6ced8a6b82eff59a9788a30a0ef5d0f648fa06c8cb307e0fe6cc5120e1ee/pyo3_pack-0.4.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b5d28afe4fb58d3e9eb1de8fd986c619", "sha256": "79727d87bd4d597640163e55c7b30c5e616fee9b121aa98d009054612085c05e" }, "downloads": -1, "filename": "pyo3_pack-0.4.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5d28afe4fb58d3e9eb1de8fd986c619", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4356779, "upload_time": "2018-12-15T20:28:19", "url": "https://files.pythonhosted.org/packages/0d/98/a306701acfb0c71b63351bddcdcc8850e04b50ec28295ca5a59f016410cd/pyo3_pack-0.4.1-py2.py3-none-manylinux1_x86_64.whl" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "517a2156320f41765ea3e7c07506dfa1", "sha256": "19250198b465b2b872ec3ef362b925ae8af1963119783b1d38f7d61a4c56faf8" }, "downloads": -1, "filename": "pyo3_pack-0.4.2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "517a2156320f41765ea3e7c07506dfa1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3113425, "upload_time": "2018-12-16T22:29:47", "url": "https://files.pythonhosted.org/packages/7d/6b/ee6f8a1aef8ac2ec983e8529586a95b77baf0a4babfc15e4a8a3c352a0e9/pyo3_pack-0.4.2-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "47c0adcbcfcb8d1149e2b08fab624b77", "sha256": "623a1f8159a26385d24ec63653ed21bf73d49f1ecdbd141314e799b905e35f49" }, "downloads": -1, "filename": "pyo3_pack-0.4.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "47c0adcbcfcb8d1149e2b08fab624b77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4252532, "upload_time": "2018-12-16T22:27:50", "url": "https://files.pythonhosted.org/packages/4c/5f/98e72dfffcaa4685ce702d365b6e1f40f41ff466200b2b61fe96acbcce3d/pyo3_pack-0.4.2-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "020076488920dfcfb317a670d9483bfc", "sha256": "768d883a36dad98dbac6f7b44730b33686f3b0f71d4ebf2b6beb3884fbb70015" }, "downloads": -1, "filename": "pyo3_pack-0.4.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "020076488920dfcfb317a670d9483bfc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4355954, "upload_time": "2018-12-16T22:19:23", "url": "https://files.pythonhosted.org/packages/e1/72/6ef95f6c0d2d3343732eefe807d828312a0d5aee709417ccb2bae4683ac5/pyo3_pack-0.4.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "900505da499fc1147ddfd740c1cb7cce", "sha256": "756987d0de960d33ac23e409134821d142cbba4cae6ffd6ec4fb63a67cef6305" }, "downloads": -1, "filename": "pyo3_pack-0.4.2-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "900505da499fc1147ddfd740c1cb7cce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2529365, "upload_time": "2018-12-16T22:23:20", "url": "https://files.pythonhosted.org/packages/2e/fd/a126e390d43e1280228b50aefe8cca0487cbed78dd6c45700b534106d817/pyo3_pack-0.4.2-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "b7c925457c7db7864e15ab580ff08f7d", "sha256": "c14d82499896804b49c4d7175402db7e0dff165575d9797370ae75cf7221b62a" }, "downloads": -1, "filename": "pyo3_pack-0.4.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "b7c925457c7db7864e15ab580ff08f7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2866833, "upload_time": "2018-12-16T22:37:55", "url": "https://files.pythonhosted.org/packages/29/19/d1ad3073a753657e7e6f066b1d9c35758c9530d27f5fb7052a237643a8ae/pyo3_pack-0.4.2-py2.py3-none-win_amd64.whl" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "19d0343a719f8e3afa4c3b842dd91320", "sha256": "409f276e53cdeb5ec08a42f75c3b9473478aaaaedf329639700bc9fdf14e26d0" }, "downloads": -1, "filename": "pyo3_pack-0.5.0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "19d0343a719f8e3afa4c3b842dd91320", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4834350, "upload_time": "2019-02-18T20:48:42", "url": "https://files.pythonhosted.org/packages/51/04/5f2bf1689c4e3447a15b4ea77b6276c3c88a5dc85478e45b29eb3185b8f8/pyo3_pack-0.5.0-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b82099a07afc71daa512badbe8f10af", "sha256": "f04e3386c9e2661fbdc08f987ef721d5f1a82ca14290a0fd81054325b8945b4d" }, "downloads": -1, "filename": "pyo3_pack-0.5.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7b82099a07afc71daa512badbe8f10af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4777667, "upload_time": "2019-02-18T20:28:48", "url": "https://files.pythonhosted.org/packages/38/ab/550c1857fe718e85b68abccbe23d32af6d3d1f33485500efa71365c25a45/pyo3_pack-0.5.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "bba24289b693b06179c5f3d68e914d89", "sha256": "4f0623f55b6680d53279d7e631e1165e2ddf9a246cdac404488e565dac466fe7" }, "downloads": -1, "filename": "pyo3_pack-0.5.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bba24289b693b06179c5f3d68e914d89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4804404, "upload_time": "2019-02-18T20:30:19", "url": "https://files.pythonhosted.org/packages/32/e6/3b18ac68ec8cf6045e4c134833bba1a74530a3d405ee094790b611953408/pyo3_pack-0.5.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3efc48383fa28356c95633caec602627", "sha256": "7aac42bd0963782aa005bdd1fd9e4aa9bb75b01f4059d826f38631fbfa269b98" }, "downloads": -1, "filename": "pyo3_pack-0.5.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "3efc48383fa28356c95633caec602627", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4203190, "upload_time": "2019-02-18T20:36:08", "url": "https://files.pythonhosted.org/packages/4d/35/c895760cb52d7c6de3ed42204a715b6a133a7228204bc81b36cf2b3abec2/pyo3_pack-0.5.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "4f858d80cbc2baf987e4e0725c3827c3", "sha256": "1e08e8d197dc674dd35494a1aff97953d7eb16a745ca845541d812ded65b9eb9" }, "downloads": -1, "filename": "pyo3_pack-0.5.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4f858d80cbc2baf987e4e0725c3827c3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4713226, "upload_time": "2019-02-18T20:52:09", "url": "https://files.pythonhosted.org/packages/41/84/b0da7d415477a370bbffbc03b5759f9595c9ad8e85831cf488b87306d69b/pyo3_pack-0.5.0-py2.py3-none-win_amd64.whl" } ], "0.5.0-alpha.1": [ { "comment_text": "", "digests": { "md5": "6af66f69174b26c0af605e482f06f4fc", "sha256": "09e05ae98ee242454020de915307d710267c41a652d1d2e04da37f52eea277ac" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_alpha.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "6af66f69174b26c0af605e482f06f4fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4788300, "upload_time": "2019-01-20T15:57:13", "url": "https://files.pythonhosted.org/packages/df/26/17888c8aa3816050fc6c986bd54489194c212f2eef56eec2318ed82170ae/pyo3_pack-0.5.0_alpha.1-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "744ce635046c7965b0d71adc71ce47fd", "sha256": "9d32baac8ab736d88483acf9830396b5b5f9dd49e7a5d7807fd72ec1269946e5" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_alpha.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "744ce635046c7965b0d71adc71ce47fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4750195, "upload_time": "2019-01-20T15:26:07", "url": "https://files.pythonhosted.org/packages/82/25/4de5071cd88bad82a538becc3a2f5797d9f9aa82f1008f9435b204593799/pyo3_pack-0.5.0_alpha.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "2b29f708986ed8e8d503f29878475229", "sha256": "dce6b36e979d9c243fd8089f661c9e9f03be6fd11091fe126de9b4e0c65cd071" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_alpha.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2b29f708986ed8e8d503f29878475229", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4780799, "upload_time": "2019-01-20T15:23:48", "url": "https://files.pythonhosted.org/packages/e5/ad/ca7605a3ca12ea4e5a3bbafc4ba7731eb6653498ee1dae27f6ec92bb9f9f/pyo3_pack-0.5.0_alpha.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "54d774a5165aaeca16ffd1a2c9a52246", "sha256": "198c316cf797595f15463029b61acb331d6aafa9196582bbc8a43fc986e09c91" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_alpha.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "54d774a5165aaeca16ffd1a2c9a52246", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4166355, "upload_time": "2019-01-20T15:11:32", "url": "https://files.pythonhosted.org/packages/2c/88/cadbc75f857ad383bdbdaf21ce0eb3904c3c40b61faa996d168c9cd57a50/pyo3_pack-0.5.0_alpha.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "07500da20fffed5361c1e1b57a30361b", "sha256": "730871d01d680f7a4ae3ea017ead77749879222783058d72c990f139b1711e11" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_alpha.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "07500da20fffed5361c1e1b57a30361b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4674932, "upload_time": "2019-01-20T15:26:33", "url": "https://files.pythonhosted.org/packages/11/75/e27931382ad763ee84939abca78b91979190ccd7884936ac1d8e84ca9721/pyo3_pack-0.5.0_alpha.1-py2.py3-none-win_amd64.whl" } ], "0.5.0-beta.1": [ { "comment_text": "", "digests": { "md5": "bae635cf1053654eca71a40afda2a2c5", "sha256": "b3d24e12be5518d806ca066a6840ea4831aed0372af6fce26fcc1dfa051ab28d" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "bae635cf1053654eca71a40afda2a2c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4808419, "upload_time": "2019-01-22T14:59:50", "url": "https://files.pythonhosted.org/packages/53/be/06b29841fcbaa5ffd92408b5aac328fbef2a39ec73fdb7a3bb3fc4f04777/pyo3_pack-0.5.0_beta.1-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "284471009986ea6fd1a40f928323f366", "sha256": "92c1d6364cebbc3054ecc2dbcc5401fa7b2692d4aa3b3726625e037d10ea4325" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "284471009986ea6fd1a40f928323f366", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4768606, "upload_time": "2019-01-22T14:51:58", "url": "https://files.pythonhosted.org/packages/db/b2/871e5070f538dd877d49c87dc76914433613248cb3db2220b86293e0f840/pyo3_pack-0.5.0_beta.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b6d98a5e3513c9984626f5791f87626f", "sha256": "8f772e2f1d91e2ee8754a930c058847c776c97d02e93d2eeb56e3a81b5f1a9a7" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b6d98a5e3513c9984626f5791f87626f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4796912, "upload_time": "2019-01-22T14:44:11", "url": "https://files.pythonhosted.org/packages/82/17/92e3347baa6954d9b02db9d5a5965488ab4b0010e5ced28d4d5758050d48/pyo3_pack-0.5.0_beta.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "60f76b73fa1a02154e1ca7765d058142", "sha256": "481c05bf42b54326f7f9ceb9339d0a33eca4bd3f56affcdcea4e9a5d4d920e80" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "60f76b73fa1a02154e1ca7765d058142", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4181514, "upload_time": "2019-01-22T14:51:41", "url": "https://files.pythonhosted.org/packages/6f/9f/909e9442df64e134bfb6fecac0daa8433c40564f8002783c0eb0718ca442/pyo3_pack-0.5.0_beta.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "c29c264e1acd5423a814ae03f34aa1a6", "sha256": "ba2f6ba139ec5ea8a1e9bbf8e64a16a3ee701477a5cfd71327a9a8facffae38d" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c29c264e1acd5423a814ae03f34aa1a6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4696577, "upload_time": "2019-01-22T15:14:28", "url": "https://files.pythonhosted.org/packages/01/70/006fbf6460e7e6174a95cd91438cc8ad90e27eb6b94432435e27049d9d2a/pyo3_pack-0.5.0_beta.1-py2.py3-none-win_amd64.whl" } ], "0.5.0-beta.3": [ { "comment_text": "", "digests": { "md5": "b89ef213290f56956a79638ab84f959c", "sha256": "191b446e449a6ce1597ae8ea1767530499f757d92a1b1da39c89d777317b6af2" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.3-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b89ef213290f56956a79638ab84f959c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4808457, "upload_time": "2019-01-22T16:49:05", "url": "https://files.pythonhosted.org/packages/38/3d/ee62ed6d27b01dd22c3baaf0c96e4494b3a97a7d26752a7a4d00d9840dae/pyo3_pack-0.5.0_beta.3-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2ed67e2bdb881248c1a1871d87bda166", "sha256": "f3a8edc11ea7192f1cf743928e6e5fbbf7c0fe8619dc041758a6112d2a970c8f" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2ed67e2bdb881248c1a1871d87bda166", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4767607, "upload_time": "2019-01-22T16:38:08", "url": "https://files.pythonhosted.org/packages/88/d7/2f79842ab99f4b40c811e4256153bb1d69ef9ea196567b16f52cf059f3c7/pyo3_pack-0.5.0_beta.3-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0799b47e63c8ef3ae46ed05c2ec82721", "sha256": "705d8fe1d0c9c2fdff47d9cae4738539f004f3287baaf84c1a46b8747e6d7ec3" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0799b47e63c8ef3ae46ed05c2ec82721", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4796165, "upload_time": "2019-01-22T16:24:59", "url": "https://files.pythonhosted.org/packages/cb/f9/a700b461c4a8d596355a9303fad0790fd367945e1a7c264930c4f5323961/pyo3_pack-0.5.0_beta.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9e69492a0d36b99279cca40339e239dd", "sha256": "cabc234fdf1729c72229ce9346dcc7d2f9e9ca183677431d3fae18d81b013670" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.3-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "9e69492a0d36b99279cca40339e239dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4179394, "upload_time": "2019-01-22T16:29:33", "url": "https://files.pythonhosted.org/packages/30/bb/375a83bf675e2dfbade7f0c57c6ea2c31737fbb8f7e7f1ee338716d13476/pyo3_pack-0.5.0_beta.3-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "faf9e3d7a2d70869cec04d9b4f5f2225", "sha256": "f30143ff01d514ff47498bc9fc465070e736264473a3cd32d47f9449bce0b926" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "faf9e3d7a2d70869cec04d9b4f5f2225", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4689314, "upload_time": "2019-01-22T16:46:34", "url": "https://files.pythonhosted.org/packages/e9/35/aa30eee208f5fae19191bc5e159121ef6650fb015e8d048b1c441d449e2d/pyo3_pack-0.5.0_beta.3-py2.py3-none-win_amd64.whl" } ], "0.5.0-beta.4": [ { "comment_text": "", "digests": { "md5": "55d0490d470a810566bf4dec2c22ce4b", "sha256": "d51766a9348a1b1c583d76879b76c27e2365ecce9a8fc8dfc8f9d7106b13fba2" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.4-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "55d0490d470a810566bf4dec2c22ce4b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4832093, "upload_time": "2019-02-04T18:44:06", "url": "https://files.pythonhosted.org/packages/1b/37/7e41ed0a741b0357365bc5ee39ef996df8ec9fbec767c31243f5af6d8962/pyo3_pack-0.5.0_beta.4-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fa8093a29b3f59b1ed43d0a28d6af295", "sha256": "6fa47164fc5bc12b55d95a8db478ebcc63cb714c21a28061b542c24a49eba907" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.4-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fa8093a29b3f59b1ed43d0a28d6af295", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4786955, "upload_time": "2019-02-04T18:35:31", "url": "https://files.pythonhosted.org/packages/f1/65/d6b00b240d1b5e81cb015b6d7325945e9c1ed6e050f59bc99f39a341d0be/pyo3_pack-0.5.0_beta.4-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "be342c00d6859c7d8f438b6ab8b6e775", "sha256": "d7cf0db3675dfcf6287a84f8ce49414b5e1c42168bc71a0bf9db0158ec64350e" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "be342c00d6859c7d8f438b6ab8b6e775", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4809500, "upload_time": "2019-02-04T18:30:54", "url": "https://files.pythonhosted.org/packages/af/f5/a5a689a456aa83258a4693b4248b7de2cd531872448cefb9393b66a5b14a/pyo3_pack-0.5.0_beta.4-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cc5444659f3b8283f5565f3178ee687d", "sha256": "7046bcdf561b5a259e898a5a0f29a88617a7868df4f46ff76e26643c7f07be0b" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.4-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "cc5444659f3b8283f5565f3178ee687d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4199690, "upload_time": "2019-02-04T18:39:44", "url": "https://files.pythonhosted.org/packages/b2/68/c2b163f5d0315f89aee56d5e8bd86c52b587b189d11628a11b798d04fb2f/pyo3_pack-0.5.0_beta.4-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "95d1fe9ae213a1d4e34d6885f2258333", "sha256": "e87b1b3f857fa4d5e052599ab2da9abc95fb6ba546fc1cd7c5e6f365498230b6" }, "downloads": -1, "filename": "pyo3_pack-0.5.0_beta.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "95d1fe9ae213a1d4e34d6885f2258333", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4728600, "upload_time": "2019-02-04T19:01:12", "url": "https://files.pythonhosted.org/packages/ce/c4/64fd67dcf861748e5368c9e370b676a597e4c5da5b6150f65536c0f1147d/pyo3_pack-0.5.0_beta.4-py2.py3-none-win_amd64.whl" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3fa86775defadec387fa9f7ef78db9cd", "sha256": "390c41158f0936f6409465b299bbfe056d17c011b54809846f99fe55597cc37e" }, "downloads": -1, "filename": "pyo3_pack-0.6.0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "3fa86775defadec387fa9f7ef78db9cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5202515, "upload_time": "2019-06-16T15:06:37", "url": "https://files.pythonhosted.org/packages/52/cc/f621cc4d3f21c0b000b13b7690eb0b23db3ffe6a61871c490be4a1c839d3/pyo3_pack-0.6.0-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "811004428f3aabc0bc43f6d016ec7bc2", "sha256": "892fe673c213ae5a720d7a503ffdc5d781455d9f70a1bfa27e5d6dc549b3e58d" }, "downloads": -1, "filename": "pyo3_pack-0.6.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "811004428f3aabc0bc43f6d016ec7bc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5127651, "upload_time": "2019-06-16T14:57:21", "url": "https://files.pythonhosted.org/packages/42/cd/6e5b1f20c95f40954f27c44b90dcfd32ed13678d504bd87338da6acd9713/pyo3_pack-0.6.0-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ff7feaf03710f4aad12acff8c609f1df", "sha256": "71cee86912e8707f9ad0b57f588a168e09484e126ff7aa75691e712d6c2229ca" }, "downloads": -1, "filename": "pyo3_pack-0.6.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ff7feaf03710f4aad12acff8c609f1df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5124668, "upload_time": "2019-06-16T14:56:23", "url": "https://files.pythonhosted.org/packages/2d/5a/beaa4c2523c6f98ed863aa8144d2875149b95ddcb5b8085d94fe401025f9/pyo3_pack-0.6.0-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "20efa844cbec72be808654c48946d942", "sha256": "825d3b140a8f929090cc54064d359f6c52b739af4e4e78e125d0458d4e79ee20" }, "downloads": -1, "filename": "pyo3_pack-0.6.0-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "20efa844cbec72be808654c48946d942", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4487852, "upload_time": "2019-06-16T14:50:39", "url": "https://files.pythonhosted.org/packages/0f/d0/6fbfa53e2514d2813cb145d4cd9a1be76e7c8decffa939522173c1aedd66/pyo3_pack-0.6.0-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "4ea2921cdd0666ba167216c636a067db", "sha256": "e1ce523bfffc39173e1b6f08a729c64ebb81d62323be1dd8f30b6b4492120aba" }, "downloads": -1, "filename": "pyo3_pack-0.6.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4ea2921cdd0666ba167216c636a067db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5052507, "upload_time": "2019-06-16T15:05:42", "url": "https://files.pythonhosted.org/packages/d1/23/594159ea1897f0d1cb16bbc1e22e0ad64c30332970695793dc991807e3a9/pyo3_pack-0.6.0-py2.py3-none-win_amd64.whl" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "8af83193d1b7c00e3570d1ee60c8dadd", "sha256": "61b8a7e1b2c83517e8ae59d9a3ec2819e9e78e42aedfb11bd2aa885a87d21464" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8af83193d1b7c00e3570d1ee60c8dadd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5186694, "upload_time": "2019-06-17T13:11:15", "url": "https://files.pythonhosted.org/packages/df/b9/1d586a27a623f019f3a93eb23119834add9ef37f22aace8e41b0ab15d8db/pyo3_pack-0.6.1-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3347a390f601cdbd5ce856712da8960b", "sha256": "6360527be7a06e414542a9bb90db4f68beb24f774a3d5c0bcf8e1b729ef3e375" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3347a390f601cdbd5ce856712da8960b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5123447, "upload_time": "2019-06-17T12:52:53", "url": "https://files.pythonhosted.org/packages/c0/6c/03559d6dbdac8e401f62c93c9146a65596e2ed86b1dc56876cddb12f5aef/pyo3_pack-0.6.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "43f84e7a4d1720304a6af58698dd277f", "sha256": "e3804376cb5c2b51c49834539b0fb7373afbd142b7ff53846a011a01460e4c19" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "43f84e7a4d1720304a6af58698dd277f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5131002, "upload_time": "2019-06-17T12:51:54", "url": "https://files.pythonhosted.org/packages/70/51/738d42e652f4cf2a44e569fecbe80f882785b1bc0c74a958b67df5b11e23/pyo3_pack-0.6.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f27e09033f9992693df2fbb558b612a", "sha256": "3b9b34ba43ad009c3b4ad3f508d0d364891f47242f47a604b4e5ea68dfcab32d" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "0f27e09033f9992693df2fbb558b612a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4481712, "upload_time": "2019-06-17T12:49:05", "url": "https://files.pythonhosted.org/packages/57/04/ed2454d08a0e5870bbe11b673f88b36387d2d9ed2781c4f9b45ae8d00c6b/pyo3_pack-0.6.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "30137e8abb573e1732626457722aaef1", "sha256": "d787a96f9927dab6e70e31a7c51778d4837504f96789fa7d87217c8da324d993" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "30137e8abb573e1732626457722aaef1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5039104, "upload_time": "2019-06-17T13:09:43", "url": "https://files.pythonhosted.org/packages/6e/f2/f9786a950fda361aaa795becd4f36afe2faae25c98a2537a9c83f2c339b2/pyo3_pack-0.6.1-py2.py3-none-win_amd64.whl" } ], "0.7.0-beta.1": [ { "comment_text": "", "digests": { "md5": "5f82f06cb24e2e1789b4a96d4613ba0e", "sha256": "86ed3e53a55375aa03e3f1ec06848d2bf6ea03b23105d084651b0087b6c7e7cf" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "5f82f06cb24e2e1789b4a96d4613ba0e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5444279, "upload_time": "2019-06-22T19:51:06", "url": "https://files.pythonhosted.org/packages/b4/e9/c60ed27c73920e0c1e2d215b41d58c7806402b02d6f79a4a2070b62136ba/pyo3_pack-0.7.0_beta.1-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a252844fc676641fd6be96f0bdf9789c", "sha256": "986b102290ef858332b88584de5db868035f99b4a551a56fafa45e6e45352c47" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a252844fc676641fd6be96f0bdf9789c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5370394, "upload_time": "2019-06-22T19:37:48", "url": "https://files.pythonhosted.org/packages/ce/70/2ebacae7b81ef61b96116d614f8147e1bb23e379427aeab449261ddc3bb5/pyo3_pack-0.7.0_beta.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "62232f4903edc151ad9d892e3dda421b", "sha256": "ff9c790787e97f5b50fb1a9c15bb5d482b28cd6ad42e72b6e5d3a4e34b5d5ba8" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "62232f4903edc151ad9d892e3dda421b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5394358, "upload_time": "2019-06-22T19:35:44", "url": "https://files.pythonhosted.org/packages/e6/6a/3ec0a82ebb5b874423f781de792edfe18be1b4920f6203f7277fdee670a4/pyo3_pack-0.7.0_beta.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "623b6d23e89b1c2d0f331e3d1cb04262", "sha256": "d2baf24acef6118297630dcd3a8c95086b7b4bb4b5034e8a9b0a5509182ee18f" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "623b6d23e89b1c2d0f331e3d1cb04262", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4712144, "upload_time": "2019-06-22T19:23:53", "url": "https://files.pythonhosted.org/packages/bb/ea/d7dbdd5eda2a7d4045984f16bf133c77030c7cb69bf49478cab0721b6a3c/pyo3_pack-0.7.0_beta.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "7072abeb35cb23632eb454a5e1475701", "sha256": "ab2ce629b973c6da1fdac0be64c31d57983353d2766768d76191fe9c600ddd9b" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "7072abeb35cb23632eb454a5e1475701", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5298329, "upload_time": "2019-06-22T19:40:51", "url": "https://files.pythonhosted.org/packages/d3/fe/8f41caf566d6867d8816a0cd0a2d4c2fd614c579e28f0996ba621937e0df/pyo3_pack-0.7.0_beta.1-py2.py3-none-win_amd64.whl" } ], "0.7.0-beta.10": [ { "comment_text": "", "digests": { "md5": "c10b3e278aae50c77d8cfaa2bd2b7ea3", "sha256": "373f7e1ea9ef35ebb77a6c54caeef8bdd7c400999d575e7c2a0ff0571ade79f8" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.10-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c10b3e278aae50c77d8cfaa2bd2b7ea3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5269907, "upload_time": "2019-07-21T18:28:30", "url": "https://files.pythonhosted.org/packages/7d/36/667fe06f931c00f319251a7c0b0ca1273d65b7b756ca38d3e31e4bd6f165/pyo3_pack-0.7.0_beta.10-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5a1ef636f8ea12ac27d5bb288c383fcf", "sha256": "cf887db19d49b889f015f8d09871e919f697f759a6d63e131358367fbf09d47b" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.10-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5a1ef636f8ea12ac27d5bb288c383fcf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5438771, "upload_time": "2019-07-21T18:20:39", "url": "https://files.pythonhosted.org/packages/e4/57/0335d568fbadbe0215a97a00c5d8e855551382b7f4f65df049cd98391736/pyo3_pack-0.7.0_beta.10-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0520f3aee4f11c9476228304ddf16f37", "sha256": "4ecb7a1e4c21e07953284c0dac08ccb801114643d3c022f9341c5ee330e35f16" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.10-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0520f3aee4f11c9476228304ddf16f37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5421657, "upload_time": "2019-07-21T18:17:16", "url": "https://files.pythonhosted.org/packages/83/75/0a2af5b3183d5b20477228bf9082a0ed5db1e8a768097e525a4fa1704a22/pyo3_pack-0.7.0_beta.10-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "603ad4b54a9c8a17edca27745d63c79e", "sha256": "e2fc1338d7c2cc9b394a6aed7c97b8b318f32487bf5b3de727caa090450873c5" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.10-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "603ad4b54a9c8a17edca27745d63c79e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4807371, "upload_time": "2019-07-21T18:06:07", "url": "https://files.pythonhosted.org/packages/5a/da/84fc1b2d9ab9fb44049103d582917df862506215697d30e31dc4edb79715/pyo3_pack-0.7.0_beta.10-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "6d96f458fe154f9a6a10a0acae1d33be", "sha256": "b934248d5470709fe8cd0e635ddea1121e296b8d34d215d6a084251f9a568020" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.10-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "6d96f458fe154f9a6a10a0acae1d33be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5345901, "upload_time": "2019-07-21T18:21:54", "url": "https://files.pythonhosted.org/packages/e3/21/ec8f018866432845589eb5543df6e79892806e6c26b192466ede54566d5f/pyo3_pack-0.7.0_beta.10-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5c63b1d2e5a99dc924ede6d81f63a205", "sha256": "221895634587ba97c4d8f7a264d0f4d520ef0ad640a2af976590430f5a2d9dd1" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.10.tar.gz", "has_sig": false, "md5_digest": "5c63b1d2e5a99dc924ede6d81f63a205", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57976, "upload_time": "2019-07-21T18:17:19", "url": "https://files.pythonhosted.org/packages/bb/4c/3e276f48e39f7c86dba37796d4580a7b229dcc7b2ceeb5f0edc544879446/pyo3_pack-0.7.0_beta.10.tar.gz" } ], "0.7.0-beta.11": [ { "comment_text": "", "digests": { "md5": "f7b1a735850feca83ad783b30559fdc7", "sha256": "5b2fd3468fba07b820427d66d8592e2d0974230d50882702530f43ec3e4d78a5" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.11-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f7b1a735850feca83ad783b30559fdc7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4745426, "upload_time": "2019-08-24T19:04:15", "url": "https://files.pythonhosted.org/packages/93/59/c4d06160aedf08a5b98c546c4ed09e970b08ed66437c33829ac465ff1851/pyo3_pack-0.7.0_beta.11-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed364366bca09f2a5c763e41d7c903b7", "sha256": "5fce6f61143980ab7f5a0f16762c477673fa502fa7b1d4b0e1051b90089605db" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.11-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ed364366bca09f2a5c763e41d7c903b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4927984, "upload_time": "2019-08-24T19:01:40", "url": "https://files.pythonhosted.org/packages/83/0e/48b801a5c38acb7a8840256c61de9ff73d7709dc17605f16a8ae2bd26408/pyo3_pack-0.7.0_beta.11-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "664036fe72ae2a49fff2fd82d1a7f55e", "sha256": "1fc44a2709d01a5b11c00ad1f9226b2bd3a86dea5c9802d85c4cab51ca04a265" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.11-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "664036fe72ae2a49fff2fd82d1a7f55e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4838994, "upload_time": "2019-08-24T18:54:55", "url": "https://files.pythonhosted.org/packages/15/71/687257543578d4e60866ad163a1b9aaba9dc935e57707c6dee693b6d39cf/pyo3_pack-0.7.0_beta.11-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e6b72b613213d14893b271955354eef", "sha256": "cf23ba596d73f6c6ecb731e58bfa637ac2237abbe32da1fb4695edfa361b182c" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.11-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "5e6b72b613213d14893b271955354eef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4366921, "upload_time": "2019-08-24T19:02:05", "url": "https://files.pythonhosted.org/packages/96/fe/c2a4f762cd2c8b801522b491432ba19a13714664b8a85bd2ffb8361ce419/pyo3_pack-0.7.0_beta.11-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a6680c28d250d85c2e2b268b90640c6d", "sha256": "e8a3386f4d3a24d453f01f11f246a2f6398afedfb0bd38d390890328cafbe247" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.11-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a6680c28d250d85c2e2b268b90640c6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4787482, "upload_time": "2019-08-24T19:21:49", "url": "https://files.pythonhosted.org/packages/a0/ed/8b9bbd341e7d43e81bd5ac233d4c295f9564292fbe59c24799169b687dfd/pyo3_pack-0.7.0_beta.11-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4147373057f0ae553249c4831f8bc0f5", "sha256": "93bf2789bb5e27c57af4b9b9b03f48ed84ff99c62852626c9ac51036845df6d3" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.11.tar.gz", "has_sig": false, "md5_digest": "4147373057f0ae553249c4831f8bc0f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78955, "upload_time": "2019-08-24T18:54:57", "url": "https://files.pythonhosted.org/packages/15/90/9c0ae42b8c9bfcad8a897353185f64ba47064d898e99b89957695858251f/pyo3_pack-0.7.0_beta.11.tar.gz" } ], "0.7.0-beta.12": [ { "comment_text": "", "digests": { "md5": "f5c82543a9d5e306a9a0cd5fdc0228af", "sha256": "6ff1769e321315d6e6d9f26cd38450260cd1db0d8f12da94e6b86a09e4f6e229" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.12-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f5c82543a9d5e306a9a0cd5fdc0228af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4745124, "upload_time": "2019-08-30T13:13:36", "url": "https://files.pythonhosted.org/packages/85/17/6642378a7528658d3d2f7f793504b10d33bf4f77bb91417ca0e53a73c4e3/pyo3_pack-0.7.0_beta.12-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "52a8c01d7dea5ad59d69c9cf39b9fb0f", "sha256": "a2e0963c80150441da1eea4e385648cbb0ce0b725b461a1f8924db4c504d94ab" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.12-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52a8c01d7dea5ad59d69c9cf39b9fb0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4925448, "upload_time": "2019-08-30T13:14:03", "url": "https://files.pythonhosted.org/packages/7a/20/501306cff66a17fce323c7efb1cc62b757bb6b9be007b720d67c72d8ef76/pyo3_pack-0.7.0_beta.12-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8dce85fd35de5c19dbacd085614528c9", "sha256": "a4857325dd5929910cdf40219e59a68f97948edbb39a0a382d9089b65d3463a3" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.12-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8dce85fd35de5c19dbacd085614528c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4839027, "upload_time": "2019-08-30T13:07:23", "url": "https://files.pythonhosted.org/packages/9b/63/92efced16b3a6f6eb09b922b2672a97d8da6f4fed5ef719afb150760e269/pyo3_pack-0.7.0_beta.12-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3421718e245cfc424a86f179c5d010ac", "sha256": "e6dbf367607150f6b75eb6f30acd650c424259834cf1443a4d13988c3614b22a" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.12-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "3421718e245cfc424a86f179c5d010ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4362960, "upload_time": "2019-08-30T13:28:24", "url": "https://files.pythonhosted.org/packages/93/41/97feca8dc39989dad1836fa9a16f917d665cca9e82224ba8040d6d9d94ef/pyo3_pack-0.7.0_beta.12-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "2298c56644473a0eb52d87ee772ce9ec", "sha256": "5d4adae64a7690e0e4526d70d5fd9ec0470ab333420225f856616e572b4b8a8a" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.12-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2298c56644473a0eb52d87ee772ce9ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4778558, "upload_time": "2019-08-30T13:50:26", "url": "https://files.pythonhosted.org/packages/07/ef/63d42044ffd92456812d6893a8607e4fe8543caf742f2da95dfadd1d0806/pyo3_pack-0.7.0_beta.12-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "337b4f8e7505bbe7b453607cc03bf7a5", "sha256": "05e7a9e3637cf0f4a0d931ed65f86b6e3cb44102ede0a6498558700dc7d8ed4a" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.12.tar.gz", "has_sig": false, "md5_digest": "337b4f8e7505bbe7b453607cc03bf7a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80027, "upload_time": "2019-08-30T13:07:26", "url": "https://files.pythonhosted.org/packages/6e/ba/dee6b07c9aa82b522817db12c41f3da5cd340ba3b1775d830fb068d3009a/pyo3_pack-0.7.0_beta.12.tar.gz" } ], "0.7.0-beta.2": [ { "comment_text": "", "digests": { "md5": "c182e794c2bd919564320638daa87f5f", "sha256": "4cf59e8af461625d148b4406853bdfdc1685c3c5b0eb4ddb72f0674b1ae58fb3" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c182e794c2bd919564320638daa87f5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5449191, "upload_time": "2019-06-25T12:25:27", "url": "https://files.pythonhosted.org/packages/6c/d6/151aeccb0cb109713f4df8a536ee6da557b3cfeb854ed82033b22c01357f/pyo3_pack-0.7.0_beta.2-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "db53818f44cd0003ed83829325c59784", "sha256": "7664ee5a3e32967088294ac17d67db5eaf01eba503031ed2cf068179b8cd5bee" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "db53818f44cd0003ed83829325c59784", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5379568, "upload_time": "2019-06-25T12:08:47", "url": "https://files.pythonhosted.org/packages/e5/e7/45b6fe545fb2be385140f1507938563ae71eb549ab4f1f79899d9e01be05/pyo3_pack-0.7.0_beta.2-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "acc4ee154b5d9a6086d5c6cbbd8a7196", "sha256": "5bda0f4d532ce8d3a4c5a6b0f9ca51f5bca5f750366e2dc7fd13e5a9eb4bfcce" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "acc4ee154b5d9a6086d5c6cbbd8a7196", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5400063, "upload_time": "2019-06-25T12:07:41", "url": "https://files.pythonhosted.org/packages/6d/ba/ce44389de05cff0143e3f764994373e246a3456ee05ba8ec30859e0a55ab/pyo3_pack-0.7.0_beta.2-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d6ff7fded30b2427b39a64bb38034db1", "sha256": "e2e084029625adaf917c1f80467f8dd7fe4569bc6709e8637eb0339cf4c5c964" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.2-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "d6ff7fded30b2427b39a64bb38034db1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4718623, "upload_time": "2019-06-25T12:05:20", "url": "https://files.pythonhosted.org/packages/8c/61/2e2b7e10922db9e11102a3b91ebbcd4eb06fc63017a5942b4836f9b48716/pyo3_pack-0.7.0_beta.2-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "96859d2224aad49f0a57dbe843df1288", "sha256": "ae77d4a81dabd2f0b7dd1ed66ed43515da45a261f9eb48fb0617146abf49806c" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "96859d2224aad49f0a57dbe843df1288", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5303977, "upload_time": "2019-06-25T12:28:16", "url": "https://files.pythonhosted.org/packages/e2/26/c5ac27ffa9de0f18d03dfe7b2e8cfef657edadc5c85612341f0516f6b109/pyo3_pack-0.7.0_beta.2-py2.py3-none-win_amd64.whl" } ], "0.7.0-beta.3": [ { "comment_text": "", "digests": { "md5": "8b77d8959962b57001838b7d719cfccb", "sha256": "278f4b3a59b641e9399cc3eaaa8963d7d4535789080dfc878b29af4f4c6a2c1e" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.3-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8b77d8959962b57001838b7d719cfccb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5452560, "upload_time": "2019-06-27T21:46:16", "url": "https://files.pythonhosted.org/packages/76/37/586246c25e31d3f1dea95f8049e15f3d2f70b9b198683bf8b46945940382/pyo3_pack-0.7.0_beta.3-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "319c5b59ce1a59e6102dc7578d0aca8b", "sha256": "d898509e2ac112be173f962c1c71cb5aad973deffb8f3856b3cc39fa882dad9d" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "319c5b59ce1a59e6102dc7578d0aca8b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5362578, "upload_time": "2019-06-27T21:32:31", "url": "https://files.pythonhosted.org/packages/91/72/4b4f95fafa65b8b41ba6d88970a67c65018941dc19dc7e8e9dcec4cadab0/pyo3_pack-0.7.0_beta.3-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8aac79987e510fb8d8bc5bb98d29ee9a", "sha256": "9bef6aadbc2f89fc73d4183f3d387559b3021264de251e7ab8f506e6f89c4459" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8aac79987e510fb8d8bc5bb98d29ee9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5358805, "upload_time": "2019-06-27T21:31:10", "url": "https://files.pythonhosted.org/packages/a9/68/c0416d9c4927173d8580b6ce697afb1f9ec21f5560626a8531b0e6a211ad/pyo3_pack-0.7.0_beta.3-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "990c9cf0fc4250da68200d220c93f074", "sha256": "ae264371b60a1cd0a48024e665d2ae1649f8c19e9a8fe2846e0bfcb4bf937311" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.3-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "990c9cf0fc4250da68200d220c93f074", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4710135, "upload_time": "2019-06-27T21:24:28", "url": "https://files.pythonhosted.org/packages/16/bc/75fe2f2ddee729c76ba9b5e0dc707b940eec83db1390edaf0718df333ff8/pyo3_pack-0.7.0_beta.3-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "205508f370843f3028eea258eb4edc0d", "sha256": "8317b6660d3eb0829c0fabc7849dad749f4cb0760cee94ee725b84598091facc" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "205508f370843f3028eea258eb4edc0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5284147, "upload_time": "2019-06-27T21:42:42", "url": "https://files.pythonhosted.org/packages/5a/d2/f9d8c116827d76f80c47a18d8514f299dfbfae010fe628b61302f3d92946/pyo3_pack-0.7.0_beta.3-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ce11bdeec6965dc711082e6acfbbddc", "sha256": "0d9e4c45f98196d95bdbfdb83d0a538cb1b5cd4830ca7d9c807e22ebdcbef1ff" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.3.tar.gz", "has_sig": false, "md5_digest": "7ce11bdeec6965dc711082e6acfbbddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6659541, "upload_time": "2019-06-27T21:24:38", "url": "https://files.pythonhosted.org/packages/95/e5/306adf112be081c5928089a60e4a549e432c4ed02c075ce22725634fa413/pyo3_pack-0.7.0_beta.3.tar.gz" } ], "0.7.0-beta.4": [ { "comment_text": "", "digests": { "md5": "cb5ac5fec19af2b6842a92f685f482b8", "sha256": "f7f474a3206140f5cc9e444dd28ff0d0e822a5521c6b6b9e10ae6c85a41bc086" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.4-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "cb5ac5fec19af2b6842a92f685f482b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5454712, "upload_time": "2019-06-27T22:31:07", "url": "https://files.pythonhosted.org/packages/81/a8/dc1575388b8d7dbda2643c5349a6711f2e695385a64734dc9d902ea61c1e/pyo3_pack-0.7.0_beta.4-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2170daa509e7ef9079f9cb044fa76dbc", "sha256": "e897e4fddb4e912c99fd31867f6c8907139f8030f7d6c6e3f179acacf09e84e2" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.4-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2170daa509e7ef9079f9cb044fa76dbc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5363482, "upload_time": "2019-06-27T22:21:48", "url": "https://files.pythonhosted.org/packages/11/3a/0b611decb9062869c59d30142ac1a75fef849a22663fb856cb472b569c3f/pyo3_pack-0.7.0_beta.4-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "0cd167a4472808a87283b70c100fbbc5", "sha256": "1bcac51d7b93c535969b3b782c7ccd20338526efb41602141e64faca020f4893" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0cd167a4472808a87283b70c100fbbc5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5358976, "upload_time": "2019-06-27T22:20:25", "url": "https://files.pythonhosted.org/packages/8f/c4/1da5777452b3a979caf804ed39a4e6c0265d0ed972c38df6bc5fd24bef4c/pyo3_pack-0.7.0_beta.4-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3f170e9d4faef1c9abd7e07a2f11f748", "sha256": "85f3bd37f5691bfa9181b7050cc98592ef8e3bf504fd0c0685f44129ac74fe17" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.4-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "3f170e9d4faef1c9abd7e07a2f11f748", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4711012, "upload_time": "2019-06-27T22:15:28", "url": "https://files.pythonhosted.org/packages/2a/a3/284a1f10ca92e74ae3190ac7d75cc49896f12dc5bb020099ca0dce3ee3d8/pyo3_pack-0.7.0_beta.4-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "d3ffa173b5446a51b8eff6fc19ba0c88", "sha256": "3e0529955b37a3c79ac90b42c173e6bb5bd54d0f5324675a7f3a0aef548c29d1" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d3ffa173b5446a51b8eff6fc19ba0c88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5279889, "upload_time": "2019-06-27T22:32:41", "url": "https://files.pythonhosted.org/packages/50/08/09cb7250030427943505722dc70406c893b91e857428c064d2d92d1d0d84/pyo3_pack-0.7.0_beta.4-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "89dcf53a79b29abbb97b7adad1ed329d", "sha256": "d6c8847514f981ef6d32924c428403ccdd4efed1441ab2edbfbedc04f4c40382" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.4.tar.gz", "has_sig": false, "md5_digest": "89dcf53a79b29abbb97b7adad1ed329d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9554244, "upload_time": "2019-06-27T22:20:36", "url": "https://files.pythonhosted.org/packages/4d/a3/25756d7d8773a4f31f93fe47783f33ec915fad60f1330f3f93a08884eeba/pyo3_pack-0.7.0_beta.4.tar.gz" } ], "0.7.0-beta.5": [ { "comment_text": "", "digests": { "md5": "a72e2fd6e51034d2cb56c8f15d8d7491", "sha256": "efb0be31b5842a5038f41d2e9318c45646b24c81c2dd490be77129f72383e8c2" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.5-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "a72e2fd6e51034d2cb56c8f15d8d7491", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4757484, "upload_time": "2019-07-02T23:04:48", "url": "https://files.pythonhosted.org/packages/9d/e5/c335e2824f656b29ad2afd101f84250c599f056c468f843ed78746267f4b/pyo3_pack-0.7.0_beta.5-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "5b730a93e382ca016b6c6e8387cb3007", "sha256": "3f8e6013715f342d0162bc5f63cea01c0c45b21275f109ede7dcbf38e3d0199a" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.5-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "5b730a93e382ca016b6c6e8387cb3007", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5356142, "upload_time": "2019-07-02T23:22:47", "url": "https://files.pythonhosted.org/packages/87/36/9f4c609142fb34382975bfdc243b9f8c3da3fd0cf634099374e504885630/pyo3_pack-0.7.0_beta.5-py2.py3-none-win_amd64.whl" } ], "0.7.0-beta.6": [ { "comment_text": "", "digests": { "md5": "501d1d4f6ed356679718b1f77f00bf5f", "sha256": "929427b555f2b448f0b722e7a95a051d24f93381dbd973de6d57c85f55010a3a" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.6-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "501d1d4f6ed356679718b1f77f00bf5f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5267074, "upload_time": "2019-07-05T00:12:51", "url": "https://files.pythonhosted.org/packages/ab/cb/f0d9f8b30931f792bdce01865460141aee3ff47d8ba55a4bce0e58f26803/pyo3_pack-0.7.0_beta.6-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4f238ae5c567fad46cf16dc5d6876da8", "sha256": "4bce9df948103af41e1b03a013ca941772c0a1e728fed46c6d2daec8f54634e1" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.6-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4f238ae5c567fad46cf16dc5d6876da8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5457495, "upload_time": "2019-07-04T23:59:52", "url": "https://files.pythonhosted.org/packages/96/0b/bd3c950958463d0293da4e9a01a856c4069de022675fece710ce18bb8ea2/pyo3_pack-0.7.0_beta.6-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "343c014523cec1d5d004fefead31a685", "sha256": "de803b99f21735b50c8c7a1825ff759c4bc5af45143774b42a6f16158e4074d2" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.6-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "343c014523cec1d5d004fefead31a685", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5442775, "upload_time": "2019-07-04T23:57:00", "url": "https://files.pythonhosted.org/packages/5d/fe/25a2ce3d8021f1ea4692179c9707fa7089afdd984db93d31af6e95fe2b28/pyo3_pack-0.7.0_beta.6-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "99647acb2079f580af32570339fc83da", "sha256": "339fed9de7a1cc71a8822b643c547db8c00dd926cfd47636dd70caab5c2dd267" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.6-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "99647acb2079f580af32570339fc83da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4802041, "upload_time": "2019-07-04T23:51:05", "url": "https://files.pythonhosted.org/packages/7f/12/86244d3e8a1c1b73f8b409c6383be6a75c54b5740ae4da252b96782c508d/pyo3_pack-0.7.0_beta.6-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "894d6090f2c86dbdf8ebfb3aed2111ac", "sha256": "ef2106a635510fd7d4278214442783fb0b644b8ef74959b499ba0583d4dd98be" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.6-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "894d6090f2c86dbdf8ebfb3aed2111ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5341219, "upload_time": "2019-07-05T00:07:35", "url": "https://files.pythonhosted.org/packages/b3/0f/e065457e2893302218b7d4c29a9f7d26c27d8cb6f1e06d5e7a3c5ed59bb0/pyo3_pack-0.7.0_beta.6-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "35e85424ad8327f0d5a898ac246d613d", "sha256": "28c8ba8a99abec8630de9eaac39bde5c3c1e40e7cf1e1c87793cbb11345ea34b" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.6.tar.gz", "has_sig": false, "md5_digest": "35e85424ad8327f0d5a898ac246d613d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9913851, "upload_time": "2019-07-04T23:57:11", "url": "https://files.pythonhosted.org/packages/92/e3/383a8d771430c45737105bc32231c1f8d31e67f9461d7c04f54670bcb661/pyo3_pack-0.7.0_beta.6.tar.gz" } ], "0.7.0-beta.7": [ { "comment_text": "", "digests": { "md5": "2d7be4edb2032fbc733ed89ddfd4a7cf", "sha256": "3dec2ec67cbc44d0181466667a1e4516ab0218511b844125a57eca0f2ff4acc7" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.7-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "2d7be4edb2032fbc733ed89ddfd4a7cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5275552, "upload_time": "2019-07-14T20:01:50", "url": "https://files.pythonhosted.org/packages/dc/64/e3138f115933ca01fb8c80b1914dea9833ec3e61a6408e5e30eb10b18d89/pyo3_pack-0.7.0_beta.7-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2420b41a95d25900ca65e7c23c263aa4", "sha256": "e3fc8fec5bdb414d340daa42b2e19701017d1681ef8ba9787351dc622b3161d9" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.7-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2420b41a95d25900ca65e7c23c263aa4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5444326, "upload_time": "2019-07-14T19:52:36", "url": "https://files.pythonhosted.org/packages/ec/09/a89150370ab45274526d531d667c083af69c9f0cb1efdd0dd3146de56684/pyo3_pack-0.7.0_beta.7-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "f55cea7ad49d19ea250e09b5ad6de603", "sha256": "4ff04fb6bf04629b7f02149d89b6c46173876e9a6aec9cad8c0b97763321ad90" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.7-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f55cea7ad49d19ea250e09b5ad6de603", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5418594, "upload_time": "2019-07-14T19:48:57", "url": "https://files.pythonhosted.org/packages/55/1d/cfbb19039da0cbf0ee4590b17379bceadc55fdc4bf528e82c4b446df715e/pyo3_pack-0.7.0_beta.7-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "876d77390b0fddb8ab1de013e7237d40", "sha256": "fd4abbe493d2a8df95eddb78547de5f486c0d47e703e68ba85eaea3809a912fa" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.7-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "876d77390b0fddb8ab1de013e7237d40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4792640, "upload_time": "2019-07-14T19:59:46", "url": "https://files.pythonhosted.org/packages/56/74/113d7eaea89e57f3485091f1b3f1d663349ac664201e4293c1d52887f683/pyo3_pack-0.7.0_beta.7-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "da1f1caa50db57b826f8646346eaa71c", "sha256": "ff69fa24f93ef995906702cf81830494984e3fd6cb8ba220c4599545efa48824" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.7-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "da1f1caa50db57b826f8646346eaa71c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5351657, "upload_time": "2019-07-14T20:15:56", "url": "https://files.pythonhosted.org/packages/48/f6/da30414d3d66cdafb6a5375be1e9bf6634a8dc270db41b8dc7989e939892/pyo3_pack-0.7.0_beta.7-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ff0123d004d830e7f97a40acccd7fcf5", "sha256": "48ba2c867af6fe6d9382f531ed42e59cdbe36aae401b26a74e57493e2edd349f" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.7.tar.gz", "has_sig": false, "md5_digest": "ff0123d004d830e7f97a40acccd7fcf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57999, "upload_time": "2019-07-14T19:48:59", "url": "https://files.pythonhosted.org/packages/7d/5d/234208be619623837d07507b877dce90e180867f79ed487ff4992083e5a1/pyo3_pack-0.7.0_beta.7.tar.gz" } ], "0.7.0-beta.8": [ { "comment_text": "", "digests": { "md5": "b879ed3950663af2033c6cd6d2516548", "sha256": "a6b80e9c60664abd2f26ffaed4ae2b1b082968829528800815867bf71b7cdc0b" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.8-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b879ed3950663af2033c6cd6d2516548", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5271664, "upload_time": "2019-07-19T20:57:20", "url": "https://files.pythonhosted.org/packages/b3/91/8b07bcfbeca4f762f55ecba2024707fe1f1e208bbd4b6b88c436e656f74d/pyo3_pack-0.7.0_beta.8-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "33107804ad3d86967f960ee04db9e2d2", "sha256": "73a5e79c45b652b2b41658eb64c89fa561b09d81b5333cc1b0007eae1b65699d" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.8-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "33107804ad3d86967f960ee04db9e2d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5443868, "upload_time": "2019-07-19T20:46:29", "url": "https://files.pythonhosted.org/packages/e9/56/01ee2ccae615479b47c3a3d5b2d881b5054277b96eb2b91c74aaa8519172/pyo3_pack-0.7.0_beta.8-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "00fb2447e5d885dcdf29abbd50bdc150", "sha256": "f5f2438e2359f22c8c3cbbcf402afb2dc656820fe029e03f3fbde086b4b37c7a" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.8-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "00fb2447e5d885dcdf29abbd50bdc150", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5420708, "upload_time": "2019-07-19T20:46:41", "url": "https://files.pythonhosted.org/packages/1d/7a/d99b2a8bb691b82a2ae5ee0ae2359cbc1ba1bf06ea413b2439d6a331ccff/pyo3_pack-0.7.0_beta.8-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "15eb26beada355f39a81c7a600125ed6", "sha256": "6f430988dea17a15dc713943dc79cce2d296ca65dd39c1d648df8d61b061f7df" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.8-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "15eb26beada355f39a81c7a600125ed6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4806659, "upload_time": "2019-07-19T20:53:19", "url": "https://files.pythonhosted.org/packages/ec/1e/f3bfdd7d6b3c4257c038748615f799404b59d7b60069ef28fe63879cd655/pyo3_pack-0.7.0_beta.8-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a067875726affba392d88d78f3526559", "sha256": "3ab604191abc430a98abc960c97fa84240c782b5c364770c4e44f327d822e10d" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.8-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a067875726affba392d88d78f3526559", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5350988, "upload_time": "2019-07-19T21:11:36", "url": "https://files.pythonhosted.org/packages/6a/29/9fc8d5b203d8c3192dfd50b69678d76a408f9dffb33d5e4c48385e60d098/pyo3_pack-0.7.0_beta.8-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "11a0c7bb7b68b7867d4c792ddb9af7db", "sha256": "7122241fd35f57d5cb546088bf0f2c49ffeea3df9ded71de826125f5d59bb1d3" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.8.tar.gz", "has_sig": false, "md5_digest": "11a0c7bb7b68b7867d4c792ddb9af7db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58026, "upload_time": "2019-07-19T20:46:44", "url": "https://files.pythonhosted.org/packages/78/a7/5e60e0cd665f87e1cece09dd61c607ce53fb8d379eed41f680f784f8a927/pyo3_pack-0.7.0_beta.8.tar.gz" } ], "0.7.0-beta.9": [ { "comment_text": "", "digests": { "md5": "8dc605e51f7e9a1a4765214c6b133750", "sha256": "29fc3dc3b4620b8b0590242b05951a8a976b95f654b60dba90aa41c3f7d3ba4d" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.9-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8dc605e51f7e9a1a4765214c6b133750", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5268526, "upload_time": "2019-07-19T23:07:02", "url": "https://files.pythonhosted.org/packages/ca/43/11b097d5a2e3b6ffebd92d2ec9d574c2facf27627a7c126d0ba27cafc493/pyo3_pack-0.7.0_beta.9-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "73ba25cbd04495a51dbe86dd1c55e1dd", "sha256": "705c69c2c2b97135b3d31fbd9c694dafde74c3bf0436e524cf0c8ad1c14e33dc" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.9-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "73ba25cbd04495a51dbe86dd1c55e1dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5437525, "upload_time": "2019-07-19T22:51:55", "url": "https://files.pythonhosted.org/packages/bc/4c/e2821a454a6538a29bd5218e39733e9e69e369c1f0a4d2d060e82cc9f442/pyo3_pack-0.7.0_beta.9-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "847a84451814a3f8aef2f8d11b355183", "sha256": "4c124c4a4b28e602a411be54b8b9c2ee8bb368014962b94dab57fa35ca1a334d" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.9-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "847a84451814a3f8aef2f8d11b355183", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5418756, "upload_time": "2019-07-19T22:48:52", "url": "https://files.pythonhosted.org/packages/3e/f5/f7bd5af192f1553e7ad42a07fbc259b80b30a808b369b4995f55709f380c/pyo3_pack-0.7.0_beta.9-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ca003c9a320df4a8f5560c7afacad124", "sha256": "9f75c6722ad331ab53a93df73f5f93d833b11dbaaee583c0f12ca55fb607c81f" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.9-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "ca003c9a320df4a8f5560c7afacad124", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4802123, "upload_time": "2019-07-19T23:06:15", "url": "https://files.pythonhosted.org/packages/bb/4e/f19bd7f6921a74d431421b1fa3cdaafd0ad2b6411d9dbc06c250bb68e177/pyo3_pack-0.7.0_beta.9-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a3ea3089c3ec915c6202d7227e77a52c", "sha256": "1a681c6646edf57351115b2f291bc48a296247469eb43baa8c4d182564d404ee" }, "downloads": -1, "filename": "pyo3_pack-0.7.0_beta.9-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a3ea3089c3ec915c6202d7227e77a52c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5345912, "upload_time": "2019-07-19T23:22:36", "url": "https://files.pythonhosted.org/packages/11/a7/9099501976a5b3443eed456964c568bfd3deed852c01a8c3f468af5bb5f7/pyo3_pack-0.7.0_beta.9-py2.py3-none-win_amd64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8af83193d1b7c00e3570d1ee60c8dadd", "sha256": "61b8a7e1b2c83517e8ae59d9a3ec2819e9e78e42aedfb11bd2aa885a87d21464" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8af83193d1b7c00e3570d1ee60c8dadd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5186694, "upload_time": "2019-06-17T13:11:15", "url": "https://files.pythonhosted.org/packages/df/b9/1d586a27a623f019f3a93eb23119834add9ef37f22aace8e41b0ab15d8db/pyo3_pack-0.6.1-py2.py3-none-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3347a390f601cdbd5ce856712da8960b", "sha256": "6360527be7a06e414542a9bb90db4f68beb24f774a3d5c0bcf8e1b729ef3e375" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3347a390f601cdbd5ce856712da8960b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5123447, "upload_time": "2019-06-17T12:52:53", "url": "https://files.pythonhosted.org/packages/c0/6c/03559d6dbdac8e401f62c93c9146a65596e2ed86b1dc56876cddb12f5aef/pyo3_pack-0.6.1-py2.py3-none-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "43f84e7a4d1720304a6af58698dd277f", "sha256": "e3804376cb5c2b51c49834539b0fb7373afbd142b7ff53846a011a01460e4c19" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "43f84e7a4d1720304a6af58698dd277f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5131002, "upload_time": "2019-06-17T12:51:54", "url": "https://files.pythonhosted.org/packages/70/51/738d42e652f4cf2a44e569fecbe80f882785b1bc0c74a958b67df5b11e23/pyo3_pack-0.6.1-py2.py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f27e09033f9992693df2fbb558b612a", "sha256": "3b9b34ba43ad009c3b4ad3f508d0d364891f47242f47a604b4e5ea68dfcab32d" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "0f27e09033f9992693df2fbb558b612a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4481712, "upload_time": "2019-06-17T12:49:05", "url": "https://files.pythonhosted.org/packages/57/04/ed2454d08a0e5870bbe11b673f88b36387d2d9ed2781c4f9b45ae8d00c6b/pyo3_pack-0.6.1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "30137e8abb573e1732626457722aaef1", "sha256": "d787a96f9927dab6e70e31a7c51778d4837504f96789fa7d87217c8da324d993" }, "downloads": -1, "filename": "pyo3_pack-0.6.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "30137e8abb573e1732626457722aaef1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5039104, "upload_time": "2019-06-17T13:09:43", "url": "https://files.pythonhosted.org/packages/6e/f2/f9786a950fda361aaa795becd4f36afe2faae25c98a2537a9c83f2c339b2/pyo3_pack-0.6.1-py2.py3-none-win_amd64.whl" } ] }