{ "info": { "author": "Ben Frederickson ", "author_email": "Ben Frederickson ", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries", "Topic :: Utilities" ], "description": "py-spy: Sampling profiler for Python programs\n=====\n[![Build Status](https://github.com/benfred/py-spy/workflows/Build/badge.svg?branch=master)](https://github.com/benfred/py-spy/actions?query=branch%3Amaster)\n[![FreeBSD Build Status](https://api.cirrus-ci.com/github/benfred/py-spy.svg)](https://cirrus-ci.com/github/benfred/py-spy)\n\npy-spy is a sampling profiler for Python programs. It lets you visualize what your Python\nprogram is spending time on without restarting the program or modifying the code in any way.\npy-spy is extremely low overhead: it is written in Rust for speed and doesn't run\nin the same process as the profiled Python program. This means py-spy is safe to use against production Python code.\n\npy-spy works on Linux, OSX, Windows and FreeBSD, and supports profiling all recent versions of the CPython\ninterpreter (versions 2.3-2.7 and 3.3-3.10).\n\n## Installation\n\nPrebuilt binary wheels can be installed from PyPI with:\n\n```\npip install py-spy\n```\n\nYou can also download prebuilt binaries from the [GitHub Releases\nPage](https://github.com/benfred/py-spy/releases).\n\nIf you're a Rust user, py-spy can also be installed with: ```cargo install py-spy```.\n\nOn macOS, [py-spy is in Homebrew](https://formulae.brew.sh/formula/py-spy#default) and \ncan be installed with ```brew install py-spy```.\n\nOn Arch Linux, [py-spy is in AUR](https://aur.archlinux.org/packages/py-spy/) and can be\ninstalled with ```yay -S py-spy```.\n\nOn Alpine Linux, [py-spy is in testing repository](https://pkgs.alpinelinux.org/packages?name=py-spy&branch=edge&repo=testing) and\ncan be installed with ```apk add py-spy --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted```.\n\n## Usage\n\npy-spy works from the command line and takes either the PID of the program you want to sample from\nor the command line of the python program you want to run. py-spy has three subcommands\n```record```, ```top``` and ```dump```:\n\n### record\n\npy-spy supports recording profiles to a file using the ```record``` command. For example, you can\ngenerate a [flame graph](http://www.brendangregg.com/flamegraphs.html) of your python process by\ngoing:\n\n``` bash\npy-spy record -o profile.svg --pid 12345\n# OR\npy-spy record -o profile.svg -- python myprogram.py\n```\n\nWhich will generate an interactive SVG file looking like:\n\n![flame graph](./images/flamegraph.svg)\n\nYou can change the file format to generate\n[speedscope](https://github.com/jlfwong/speedscope) profiles or raw data with the ```--format``` parameter.\nSee ```py-spy record --help``` for information on other options including changing\nthe sampling rate, filtering to only include threads that hold the GIL, profiling native C extensions,\nshowing thread-ids, profiling subprocesses and more.\n\n### top\n\nTop shows a live view of what functions are taking the most time in your python program, similar\nto the Unix [top](https://linux.die.net/man/1/top) command. Running py-spy with:\n\n``` bash\npy-spy top --pid 12345\n# OR\npy-spy top -- python myprogram.py\n```\n\nwill bring up a live updating high level view of your python program:\n\n![console viewer demo](./images/console_viewer.gif)\n\n### dump\n\npy-spy can also display the current call stack for each python thread with the ```dump``` command:\n\n```bash\npy-spy dump --pid 12345\n```\n\nThis will dump out the call stacks for each thread, and some other basic process info to the\nconsole:\n\n![dump output](./images/dump.png)\n\nThis is useful for the case where you just need a single call stack to figure out where your\npython program is hung on. This command also has the ability to print out the local variables\nassociated with each stack frame by setting the ```--locals``` flag.\n\n## Frequently Asked Questions\n\n### Why do we need another Python profiler?\n\nThis project aims to let you profile and debug any running Python program, even if the program is\nserving production traffic.\n\nWhile there are many other python profiling projects, almost all of them require modifying\nthe profiled program in some way. Usually, the profiling code runs inside of the target python process,\nwhich will slow down and change how the program operates. This means it's not generally safe\nto use these profilers for debugging issues in production services since they will usually have\na noticeable impact on performance.\n\n### How does py-spy work?\n\npy-spy works by directly reading the memory of the python program using the\n[process_vm_readv](http://man7.org/linux/man-pages/man2/process_vm_readv.2.html) system call on Linux,\nthe [vm_read](https://developer.apple.com/documentation/kernel/1585350-vm_read?language=objc) call on OSX\nor the [ReadProcessMemory](https://msdn.microsoft.com/en-us/library/windows/desktop/ms680553(v=vs.85).aspx) call\non Windows.\n\nFiguring out the call stack of the Python program is done by looking at the global PyInterpreterState variable\nto get all the Python threads running in the interpreter, and then iterating over each PyFrameObject in each thread\nto get the call stack. Since the Python ABI changes between versions, we use rust's [bindgen](https://github.com/rust-lang-nursery/rust-bindgen) to generate different rust structures for each Python interpreter\nclass we care about and use these generated structs to figure out the memory layout in the Python program.\n\nGetting the memory address of the Python Interpreter can be a little tricky due to [Address Space Layout Randomization](https://en.wikipedia.org/wiki/Address_space_layout_randomization). If the target python interpreter ships\nwith symbols it is pretty easy to figure out the memory address of the interpreter by dereferencing the\n```interp_head``` or ```_PyRuntime``` variables depending on the Python version. However, many Python\nversions are shipped with either stripped binaries or shipped without the corresponding PDB symbol files on Windows. In\nthese cases we scan through the BSS section for addresses that look like they may point to a valid PyInterpreterState\nand check if the layout of that address is what we expect.\n\n\n### Can py-spy profile native extensions?\n\nYes! py-spy supports profiling native python extensions written in languages like C/C++ or Cython,\non x86_64 Linux and Windows. You can enable this mode by passing ```--native``` on the\ncommand line. For best results, you should compile your Python extension with symbols. Also worth\nnoting for Cython programs is that py-spy needs the generated C or C++ file in order to return line\nnumbers of the original .pyx file. Read the [blog post](https://www.benfrederickson.com/profiling-native-python-extensions-with-py-spy/)\nfor more information.\n\n### How can I profile subprocesses?\n\nBy passing in the ```--subprocesses``` flag to either the record or top view, py-spy will also include\nthe output from any python process that is a child process of the target program. This is useful\nfor profiling applications that use multiprocessing or gunicorn worker pools. py-spy will monitor\nfor new processes being created, and automatically attach to them and include samples from them in\nthe output. The record view will include the PID and cmdline of each program in the callstack,\nwith subprocesses appearing as children of their parent processes.\n\n### When do you need to run as sudo?\n\npy-spy works by reading memory from a different python process, and this might not be allowed for security reasons depending on\nyour OS and system settings. In many cases, running as a root user (with sudo or similar) gets around these security restrictions.\nOSX always requires running as root, but on Linux it depends on how you are launching py-spy and the system\nsecurity settings.\n\nOn Linux the default configuration is to require root permissions when attaching to a process that isn't a child.\nFor py-spy this means you can profile without root access by getting py-spy to create the process\n(```py-spy record -- python myprogram.py```) but attaching to an existing process by specifying a\nPID will usually require root (```sudo py-spy record --pid 123456```).\nYou can remove this restriction on Linux by setting the [ptrace_scope sysctl variable](https://wiki.ubuntu.com/SecurityTeam/Roadmap/KernelHardening#ptrace_Protection).\n\n### How do you detect if a thread is idle or not?\n\npy-spy attempts to only include stack traces from threads that are actively running code, and exclude threads that\nare sleeping or otherwise idle. When possible, py-spy attempts to get this thread activity information\nfrom the OS: by reading in ```/proc/PID/stat``` on Linux, by using the mach\n[thread_basic_info](https://opensource.apple.com/source/xnu/xnu-792/osfmk/mach/thread_info.h.auto.html)\ncall on OSX, and by looking if the current SysCall is [known to be\nidle](https://github.com/benfred/py-spy/blob/8326c6dbc6241d60125dfd4c01b70fed8b8b8138/remoteprocess/src/windows/mod.rs#L212-L229)\non Windows.\n\nThere are some limitations with this approach though that may cause idle threads to still be\nmarked as active. First off, we have to get this thread activity information before pausing the\nprogram, because getting this from a paused program will cause it to always return that this is\nidle. This means there is a potential race condition, where we get the thread activity and\nthen the thread is in a different state when we get the stack trace. Querying the OS for thread\nactivity also isn't implemented yet for FreeBSD and i686/ARM processors on Linux. On Windows,\ncalls that are blocked on IO also won't be marked as idle yet, for instance when reading input\nfrom stdin. Finally, on some Linux calls the ptrace attach that we are using may cause idle threads\nto wake up momentarily, causing false positives when reading from procfs. For these reasons, \nwe also have a heuristic fallback that marks known certain known calls in\npython as being idle. \n\nYou can disable this functionality by setting the ```--idle``` flag, which\nwill include frames that py-spy considers idle. \n\n### How does GIL detection work?\n\nWe get GIL activity by looking at the threadid value pointed to by the ```_PyThreadState_Current``` symbol\nfor Python 3.6 and earlier and by figuring out the equivalent from the ```_PyRuntime``` struct in\nPython 3.7 and later. These symbols might not be included in your python distribution, which will\ncause resolving which thread holds on to the GIL to fail. Current GIL usage is also shown in the \n```top``` view as %GIL.\n\nPassing the ```--gil``` flag will only include traces for threads that are holding on to the\n[Global Interpreter Lock](https://wiki.python.org/moin/GlobalInterpreterLock). In some cases this\nmight be a more accurate view of how your python program is spending its time, though you should\nbe aware that this will miss activity in extensions that release the GIL while still active.\n\n### Why am I having issues profiling /usr/bin/python on OSX?\n\nOSX has a feature called [System Integrity Protection](https://en.wikipedia.org/wiki/System_Integrity_Protection) that prevents even the root user from reading memory from any binary located in /usr/bin. Unfortunately, this includes the python interpreter that ships with OSX.\n\nThere are a couple of different ways to deal with this:\n * You can install a different Python distribution. The built-in Python [will be removed](https://developer.apple.com/documentation/macos_release_notes/macos_catalina_10_15_release_notes) in a future OSX, and you probably want to migrate away from Python 2 anyways =).\n * You can use [virtualenv](https://virtualenv.pypa.io/en/stable/) to run the system python in an environment where SIP doesn't apply.\n * You can [disable System Integrity Protection](https://www.macworld.co.uk/how-to/mac/how-turn-off-mac-os-x-system-integrity-protection-rootless-3638975/).\n\n### How do I run py-spy in Docker?\n\nRunning py-spy inside of a docker container will also usually bring up a permissions denied error even when running as root.\n\nThis error is caused by docker restricting the process_vm_readv system call we are using. This can\nbe overridden by setting\n[```--cap-add SYS_PTRACE```](https://docs.docker.com/engine/security/seccomp/) when starting the docker container.\n\nAlternatively you can edit the docker-compose yaml file\n\n```\nyour_service:\n cap_add:\n - SYS_PTRACE\n```\n\nNote that you'll need to restart the docker container in order for this setting to take effect.\n\nYou can also use py-spy from the Host OS to profile a running process running inside the docker\ncontainer. \n\n### How do I run py-spy in Kubernetes?\n\npy-spy needs `SYS_PTRACE` to be able to read process memory. Kubernetes drops that capability by default, resulting in the error\n```\nPermission Denied: Try running again with elevated permissions by going 'sudo env \"PATH=$PATH\" !!'\n```\nThe recommended way to deal with this is to edit the spec and add that capability. For a deployment, this is done by adding this to `Deployment.spec.template.spec.containers`\n```\nsecurityContext:\n capabilities:\n add:\n - SYS_PTRACE\n```\nMore details on this here: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-capabilities-for-a-container\nNote that this will remove the existing pods and create those again.\n\n### How do I install py-spy on Alpine Linux?\n\nAlpine python opts out of the `manylinux` wheels: [pypa/pip#3969 (comment)](https://github.com/pypa/pip/issues/3969#issuecomment-247381915).\nYou can override this behaviour to use pip to install py-spy on Alpine by going:\n\n echo 'manylinux1_compatible = True' > /usr/local/lib/python3.7/site-packages/_manylinux.py\n\nAlternatively you can download a musl binary from the [GitHub releases page](https://github.com/benfred/py-spy/releases).\n\n### How can I avoid pausing the Python program?\n\nBy setting the ```--nonblocking``` option, py-spy won't pause the target python you are profiling from. While\nthe performance impact of sampling from a process with py-spy is usually extremely low, setting this option\nwill totally avoid interrupting your running python program.\n\nWith this option set, py-spy will instead read the interpreter state from the python process as it is running.\nSince the calls we use to read memory from are not atomic, and we have to issue multiple calls to get a stack trace this\nmeans that occasionally we get errors when sampling. This can show up as an increased error rate when sampling, or as\npartial stack frames being included in the output.\n\n### Does py-spy support 32-bit Windows? Integrate with PyPy? Work with USC2 versions of Python2?\n\nNot yet =).\n\nIf there are features you'd like to see in py-spy either thumb up the [appropriate\nissue](https://github.com/benfred/py-spy/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc) or create a new one that describes what functionality is missing. \n\n\n## Credits\n\npy-spy is heavily inspired by [Julia Evans](https://github.com/jvns/) excellent work on [rbspy](http://github.com/rbspy/rbspy).\nIn particular, the code to generate flamegraph and speedscope files is taken directly from rbspy, and this project uses the\n[read-process-memory](https://github.com/luser/read-process-memory) and [proc-maps](https://github.com/benfred/proc-maps) crates that were spun off from rbspy.\n\n## License\n\npy-spy is released under the MIT License, see the [LICENSE](https://github.com/benfred/py-spy/blob/master/LICENSE) file for the full text.\n\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": "https://github.com/benfred/py-spy", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "py-spy", "package_url": "https://pypi.org/project/py-spy/", "platform": null, "project_url": "https://pypi.org/project/py-spy/", "project_urls": { "Homepage": "https://github.com/benfred/py-spy", "Source Code": "https://github.com/benfred/py-spy" }, "release_url": "https://pypi.org/project/py-spy/0.3.12/", "requires_dist": null, "requires_python": "", "summary": "Sampling profiler for Python programs", "version": "0.3.12", "yanked": false, "yanked_reason": null }, "last_serial": 13835695, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "a2c671fcc07856ccb619c35ff94ed151", "sha256": "afcf0588d658b90dcabef989fc16ed38f6c9f2939cfca6772ded28c2ade0cb66" }, "downloads": -1, "filename": "py_spy-0.1.0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "a2c671fcc07856ccb619c35ff94ed151", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2973283, "upload_time": "2018-08-01T17:39:52", "upload_time_iso_8601": "2018-08-01T17:39:52.515684Z", "url": "https://files.pythonhosted.org/packages/21/3a/9960cd0e251bd156e78c009a7af26059d99f05aaeb6524249ebb35914401/py_spy-0.1.0-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ecdeb4d80a85bfa32e835814dc689ba", "sha256": "d539e7ad732dcd1f5e14bbeee61b9e1ce723dbfe729fedeb4455604efda6d5dd" }, "downloads": -1, "filename": "py_spy-0.1.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4ecdeb4d80a85bfa32e835814dc689ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5706066, "upload_time": "2018-08-01T17:39:55", "upload_time_iso_8601": "2018-08-01T17:39:55.231972Z", "url": "https://files.pythonhosted.org/packages/51/70/e8bfeeac2c57f3af9988ca6d6d12cff3a9a1394e0d9a2c63f08555c0552f/py_spy-0.1.0-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "635bc3a65f9052b110f746bc24c891a3", "sha256": "a630e77539313abd40fd98276e49ff2562b2fbc9edd3da201dc16eb8cad1acbf" }, "downloads": -1, "filename": "py_spy-0.1.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "635bc3a65f9052b110f746bc24c891a3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1124980, "upload_time": "2018-08-01T21:21:50", "upload_time_iso_8601": "2018-08-01T21:21:50.944335Z", "url": "https://files.pythonhosted.org/packages/e5/9f/ee40077441d69e032baee37b30467be9e00f4b7bb7b4e34099c891de9797/py_spy-0.1.1-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ea9dcf58a5d8979b1f089d2a462adfb", "sha256": "67321c99e95bd45f9d0dc6016e9e9bcf5999fc0d33fd92416f9e206af82b6c03" }, "downloads": -1, "filename": "py_spy-0.1.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "2ea9dcf58a5d8979b1f089d2a462adfb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1124981, "upload_time": "2018-08-01T21:21:53", "upload_time_iso_8601": "2018-08-01T21:21:53.074879Z", "url": "https://files.pythonhosted.org/packages/fb/6d/3273a22ced0bb13191d27acaf4055a2daa39a66f5f74dab757efcdb29278/py_spy-0.1.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2e6c6fc9f026791235a055e3111060d", "sha256": "8d4ec83c63d1fab45dcca9c5f89980c3d174df0c374b146422d9c3063fb508a2" }, "downloads": -1, "filename": "py_spy-0.1.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d2e6c6fc9f026791235a055e3111060d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1175161, "upload_time": "2018-08-01T21:02:50", "upload_time_iso_8601": "2018-08-01T21:02:50.040256Z", "url": "https://files.pythonhosted.org/packages/c0/94/96793979dcf625c17246acd9bb15370fc02fe4dd099362cb5ebb845ef269/py_spy-0.1.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b70013da9f932d9f54a27f183d6e8f49", "sha256": "52510afd21d9245451c4157244f3b29bb8f3cdf453ab08e9431d3524df262cbc" }, "downloads": -1, "filename": "py_spy-0.1.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b70013da9f932d9f54a27f183d6e8f49", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1124981, "upload_time": "2018-08-01T21:21:54", "upload_time_iso_8601": "2018-08-01T21:21:54.975460Z", "url": "https://files.pythonhosted.org/packages/03/f3/51a8a81d663df9f2af510120d576b72fdb2a39b22e3667b1f93e06aa9355/py_spy-0.1.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "328ce929be2f25c26c60a3ea84b691d6", "sha256": "3df78eea70417b936996d6e88146c2d6f3fd1af4242dd402fad0f28992a66784" }, "downloads": -1, "filename": "py_spy-0.1.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "328ce929be2f25c26c60a3ea84b691d6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1175163, "upload_time": "2018-08-01T21:02:51", "upload_time_iso_8601": "2018-08-01T21:02:51.916292Z", "url": "https://files.pythonhosted.org/packages/df/23/20c6a71fe03a8d99b14ee58c7c2f4218938facd37f7f1e0066dd169e33f3/py_spy-0.1.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "271a092c70d5bd0c7cdb074ada02273d", "sha256": "82d7abdbbd018ac369ccc3e73f9fd9fe8888ad6e3c0777bd90bea7f2ddbc2e1c" }, "downloads": -1, "filename": "py_spy-0.1.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "271a092c70d5bd0c7cdb074ada02273d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3051123, "upload_time": "2018-08-06T03:24:34", "upload_time_iso_8601": "2018-08-06T03:24:34.078370Z", "url": "https://files.pythonhosted.org/packages/99/89/525d20ecb0747a7c7bbb74d8bdf1cc537491705269cd5fd9a47bcd0b5323/py_spy-0.1.1-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "c4e2cf7b3a18ab126a5c8f29535452fd", "sha256": "2d1e16db814f083c84ca757790a1f994c74afecaa4a7ea689e41241235c1b447" }, "downloads": -1, "filename": "py_spy-0.1.10-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c4e2cf7b3a18ab126a5c8f29535452fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1333532, "upload_time": "2018-12-08T06:11:20", "upload_time_iso_8601": "2018-12-08T06:11:20.919951Z", "url": "https://files.pythonhosted.org/packages/e1/4c/3706b691281bf3da4a88d795c1ae0e27ace05efe7125bd482a7d717287f9/py_spy-0.1.10-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb8fc3a9710d6c4cbdb20244751ec4f4", "sha256": "0ce261977297b9a901f6df9e40b8ab0ff55e013b653b17735e00f22b59baf09b" }, "downloads": -1, "filename": "py_spy-0.1.10-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cb8fc3a9710d6c4cbdb20244751ec4f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2827988, "upload_time": "2018-12-08T06:11:23", "upload_time_iso_8601": "2018-12-08T06:11:23.360997Z", "url": "https://files.pythonhosted.org/packages/cc/f3/f063893c67722639b434e4efbe2bbf5b88507c1c01b16b65582313419404/py_spy-0.1.10-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e53c2708eb51fb3e2cdb9c7764ab1079", "sha256": "c5a113ac496331755312dd155e22bd9a253639d6529ad08d1093e0a0f06e0346" }, "downloads": -1, "filename": "py_spy-0.1.10-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e53c2708eb51fb3e2cdb9c7764ab1079", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2881435, "upload_time": "2018-12-08T06:11:25", "upload_time_iso_8601": "2018-12-08T06:11:25.673229Z", "url": "https://files.pythonhosted.org/packages/26/c2/bacd6ff83b43e1eff51d0d93a1fc930daad02fa93c0499d6facece57f786/py_spy-0.1.10-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79a7bd8301c27903e5b35e0604bbf140", "sha256": "af18a43397fcc2fe359fcf24c8634d8b55f9095a506935077bfab8b43a81194f" }, "downloads": -1, "filename": "py_spy-0.1.10-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "79a7bd8301c27903e5b35e0604bbf140", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1101132, "upload_time": "2018-12-08T06:24:56", "upload_time_iso_8601": "2018-12-08T06:24:56.535022Z", "url": "https://files.pythonhosted.org/packages/64/7e/523ddaab26cc698cc7c12ce481828fdc881f68bd29322da23f0282f9bb63/py_spy-0.1.10-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "15dc5def0bee19b9dbfb7c7b06e7a9fe", "sha256": "5cbdfe7d773dcc69ecfbc0510408829c1b317fa2baf3a1b49d68e0f33f16d6f8" }, "downloads": -1, "filename": "py_spy-0.1.11-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "15dc5def0bee19b9dbfb7c7b06e7a9fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1558751, "upload_time": "2019-05-19T00:15:01", "upload_time_iso_8601": "2019-05-19T00:15:01.557364Z", "url": "https://files.pythonhosted.org/packages/f2/9b/f2cc7a7b472e45943a6694cdc4695da31b3e1f7ab68cecf22025febfef49/py_spy-0.1.11-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cf1994baac44a78b41c318824d49dbc", "sha256": "8fed154d0868a4da1d4307ecef60d975bb3c30fed0559afa0a0b2c84cfabac94" }, "downloads": -1, "filename": "py_spy-0.1.11-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3cf1994baac44a78b41c318824d49dbc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2420019, "upload_time": "2019-05-19T00:15:05", "upload_time_iso_8601": "2019-05-19T00:15:05.586775Z", "url": "https://files.pythonhosted.org/packages/17/22/cc1a8c164901be2604090851a362a41b969ecd3469b531026f4c67b8d4bb/py_spy-0.1.11-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccfce5be516a16657e63374d8e0539ef", "sha256": "512cbd5b7280444fbf157174f63e5da65f4a2eb3d1046f2584fb48bb09f79779" }, "downloads": -1, "filename": "py_spy-0.1.11-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ccfce5be516a16657e63374d8e0539ef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2409154, "upload_time": "2019-05-19T00:15:09", "upload_time_iso_8601": "2019-05-19T00:15:09.430149Z", "url": "https://files.pythonhosted.org/packages/3b/67/df6b1bb8c1f877ea87339607b9ad3b66b58328fcc0b0d598d57f21de01f8/py_spy-0.1.11-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2717900bbc0f40ff6f87932f03065006", "sha256": "9ef5d5af87cc553dee927e3a599dd510579004d8627ef842ddb2496ef562708e" }, "downloads": -1, "filename": "py_spy-0.1.11-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2717900bbc0f40ff6f87932f03065006", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1277425, "upload_time": "2019-05-19T00:06:51", "upload_time_iso_8601": "2019-05-19T00:06:51.660277Z", "url": "https://files.pythonhosted.org/packages/dc/86/3e01c16e513961d8933625222978ed69e8011506e113c92d54412a3b2555/py_spy-0.1.11-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "98f4342d295c33701687f27565326efb", "sha256": "bfd9866aaf6750052b6996af1ce277f1f8da860b6554ea2f3f22e07364a7a53b" }, "downloads": -1, "filename": "py_spy-0.1.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "98f4342d295c33701687f27565326efb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1143910, "upload_time": "2018-08-25T04:55:06", "upload_time_iso_8601": "2018-08-25T04:55:06.236071Z", "url": "https://files.pythonhosted.org/packages/95/db/3b026da9db2d7e89f1f72c195183e8bfc55577b8018e6bca8ce0740f6910/py_spy-0.1.2-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96f246493012415cf3127387614faf2a", "sha256": "5ca34cef0fff5283df2cdb877f7d0ded16b66d0cf3edbaf056d4c02673499741" }, "downloads": -1, "filename": "py_spy-0.1.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "96f246493012415cf3127387614faf2a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1143907, "upload_time": "2018-08-25T04:55:07", "upload_time_iso_8601": "2018-08-25T04:55:07.686417Z", "url": "https://files.pythonhosted.org/packages/fe/cf/0ad51007e9232573e667a2a4a6fc756e6bdc226544aa1cfbb5372e1dbabb/py_spy-0.1.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55abda2e5edb03a4604fce856d0e6d6b", "sha256": "c7737196b943b23fda093adf1435e90c39f43f955175768c755a854f6ccac434" }, "downloads": -1, "filename": "py_spy-0.1.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "55abda2e5edb03a4604fce856d0e6d6b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1213283, "upload_time": "2018-08-25T04:41:08", "upload_time_iso_8601": "2018-08-25T04:41:08.992706Z", "url": "https://files.pythonhosted.org/packages/a4/6e/0ca07c335d1c1935384c27656965faf92798d4751e96945c9dd7f36990a3/py_spy-0.1.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b70464fb4ce214fbd0e250d37f662b57", "sha256": "b7ffdd8e67eb7e60644dcfd9bc5506489406821eb21294300530912b5e6417eb" }, "downloads": -1, "filename": "py_spy-0.1.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b70464fb4ce214fbd0e250d37f662b57", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1143908, "upload_time": "2018-08-25T04:55:09", "upload_time_iso_8601": "2018-08-25T04:55:09.342757Z", "url": "https://files.pythonhosted.org/packages/25/c6/a013da8398113d2bfd7f99c3b43e28fc7d39a886e9b7fc591a4ddecf6d4d/py_spy-0.1.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a76482adc5138d6d00f88e9b0fe8b10", "sha256": "55759a59798089d39610a9e4d712ef67fc7cea5f4956f504080f2a80bcbee8e0" }, "downloads": -1, "filename": "py_spy-0.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a76482adc5138d6d00f88e9b0fe8b10", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1213282, "upload_time": "2018-08-25T04:41:10", "upload_time_iso_8601": "2018-08-25T04:41:10.846493Z", "url": "https://files.pythonhosted.org/packages/4d/54/98e606f96a4ed8096c07e7044c3fbb3a3a9e3b2bc59461a2acd0aa53af2b/py_spy-0.1.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "323eedfbc33c45b807625a347eeb60ca", "sha256": "ffc431bf4046df8d01c262e7526eee8c08c723cd9eeaa786f03791efb51170bc" }, "downloads": -1, "filename": "py_spy-0.1.2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "323eedfbc33c45b807625a347eeb60ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3108378, "upload_time": "2018-08-25T04:08:31", "upload_time_iso_8601": "2018-08-25T04:08:31.684297Z", "url": "https://files.pythonhosted.org/packages/77/fd/3316b612072cc02d7840608c9d665ee178ce9840530163ba766b70dc5235/py_spy-0.1.2-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dac8990e11dc05f4ff27a9697d97f0da", "sha256": "bccd75099d12c6ba14af28758f843353248b12a770c3f01d470ef4ac31540b23" }, "downloads": -1, "filename": "py_spy-0.1.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dac8990e11dc05f4ff27a9697d97f0da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5853194, "upload_time": "2018-08-25T04:08:35", "upload_time_iso_8601": "2018-08-25T04:08:35.436107Z", "url": "https://files.pythonhosted.org/packages/d7/a7/4cff474ba333caf48834b764a5f1b54274f45a7e120da60f2b8b9f184e59/py_spy-0.1.2-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "597c5b606d239c656fc67f16b8f8be47", "sha256": "5ab2f125743feb921bff942de66d84f7515212c6afc95c190286e7ba88a4adf9" }, "downloads": -1, "filename": "py_spy-0.1.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "597c5b606d239c656fc67f16b8f8be47", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1144293, "upload_time": "2018-08-29T06:42:13", "upload_time_iso_8601": "2018-08-29T06:42:13.980083Z", "url": "https://files.pythonhosted.org/packages/be/f1/2117fdb89080264765789e4771f6b5b5ee15f30e59990d30fecfd6b00e90/py_spy-0.1.3-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6b8797461d8951c8aef79c2f5b512d1", "sha256": "3c128550d087c82c854ca8d3bace34f4e5bd5f1077deaf629919b55dfd3a153f" }, "downloads": -1, "filename": "py_spy-0.1.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b6b8797461d8951c8aef79c2f5b512d1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1144311, "upload_time": "2018-08-29T06:42:15", "upload_time_iso_8601": "2018-08-29T06:42:15.693535Z", "url": "https://files.pythonhosted.org/packages/27/65/53fcfedeabdc2dd4ecfb4876a1a50e27324c3486d9c873dd2210d64f5454/py_spy-0.1.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e98b00cbd4d9243bb3fde865f69eb333", "sha256": "a97c590556c427114b335d93e3faf99fd4232c9490ed197b470b5a95fff82fd0" }, "downloads": -1, "filename": "py_spy-0.1.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e98b00cbd4d9243bb3fde865f69eb333", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1212767, "upload_time": "2018-08-29T06:28:33", "upload_time_iso_8601": "2018-08-29T06:28:33.889181Z", "url": "https://files.pythonhosted.org/packages/e3/6b/a609fd4a9ab7b075d6c99608b8534f3a5205f7a9da09000a2f57549db705/py_spy-0.1.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e0ad1bd5f2d2969ab778bc0a091392b", "sha256": "8439b6745a58c9a41678d8eb4dd8ae15a046e8da007676bd019f31b2d57f91ed" }, "downloads": -1, "filename": "py_spy-0.1.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3e0ad1bd5f2d2969ab778bc0a091392b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1144309, "upload_time": "2018-08-29T06:42:17", "upload_time_iso_8601": "2018-08-29T06:42:17.266707Z", "url": "https://files.pythonhosted.org/packages/5c/1d/4fae7a9df4a0e833bc9523a20b6b798f3741f823ce37ac937dcdbb92ee75/py_spy-0.1.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04af80302504eab18def566da28310da", "sha256": "e7899ca27789ed345cffaf0dffa1cee5a0a7f5acfbd1a5770dbe2511d75461ba" }, "downloads": -1, "filename": "py_spy-0.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "04af80302504eab18def566da28310da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1212769, "upload_time": "2018-08-29T06:28:35", "upload_time_iso_8601": "2018-08-29T06:28:35.585822Z", "url": "https://files.pythonhosted.org/packages/05/e8/ec72ed180b5e2e3941366b28ea5e88864abf356156eedf984a954c9b91ec/py_spy-0.1.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dcacd273e73800911e275796aa84499", "sha256": "e1c34ea6a1218a2a6d24829d79954bc564d0c847e72d145586102373f52817f3" }, "downloads": -1, "filename": "py_spy-0.1.3-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8dcacd273e73800911e275796aa84499", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3109506, "upload_time": "2018-08-29T05:48:26", "upload_time_iso_8601": "2018-08-29T05:48:26.745836Z", "url": "https://files.pythonhosted.org/packages/7c/55/110c83c2c00d8e27b968e428b016f6d4c650f31fc9def29f3f70355df368/py_spy-0.1.3-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b70f567460cf9ade1cb139f128dc2af2", "sha256": "8aa0bb0936e95e4e67e485924861e144da44cd0d21504c0363272b9dced6cac3" }, "downloads": -1, "filename": "py_spy-0.1.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b70f567460cf9ade1cb139f128dc2af2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5410106, "upload_time": "2018-08-30T18:28:20", "upload_time_iso_8601": "2018-08-30T18:28:20.736459Z", "url": "https://files.pythonhosted.org/packages/24/2c/9022eaad429fb0277ce820886f80ad28ed40c8bfc9b3a999b5c1662e703a/py_spy-0.1.3-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1fa6f9b203b3280b87c962034003cba", "sha256": "f31c77a8fdf27b6744360917314aa7c3c92fc7645438537b178b837528e8fbf7" }, "downloads": -1, "filename": "py_spy-0.1.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a1fa6f9b203b3280b87c962034003cba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5854772, "upload_time": "2018-08-29T05:48:29", "upload_time_iso_8601": "2018-08-29T05:48:29.384110Z", "url": "https://files.pythonhosted.org/packages/ae/35/54352a63107b5820f644bb8a6ca61304d0d48d5c6ab037451a61c6e5c573/py_spy-0.1.3-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "5c13d2af66133dc815dd06f3076bccae", "sha256": "4fe07c1751955c3853a1c80f08f7e59faaccca02bf81c6aa38fc6bdf9b2e254e" }, "downloads": -1, "filename": "py_spy-0.1.4-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "5c13d2af66133dc815dd06f3076bccae", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1152958, "upload_time": "2018-09-05T22:24:01", "upload_time_iso_8601": "2018-09-05T22:24:01.334278Z", "url": "https://files.pythonhosted.org/packages/74/fb/d01edc1d46e23d31ba9c1b3eab7b3e9915671f165a69142d46495fae8a13/py_spy-0.1.4-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca6a38f11a0232368c04fcb1cce2ce71", "sha256": "0e2d276f3138d1997aad82cf8fdf1c67fb423322f88cad63d642a99cc19b7242" }, "downloads": -1, "filename": "py_spy-0.1.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ca6a38f11a0232368c04fcb1cce2ce71", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1152973, "upload_time": "2018-09-05T22:24:03", "upload_time_iso_8601": "2018-09-05T22:24:03.133609Z", "url": "https://files.pythonhosted.org/packages/75/25/6913bbec547ed76184b028f4c9d71d95f2802ad777415ca921dfde4768a2/py_spy-0.1.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aea8bbd4bd3dc91b7bd0934a0eea47be", "sha256": "4c1339eb39b00cf6d33e19997b1a0dbade3819839ef92eae1ff4aafa2dbe3b9f" }, "downloads": -1, "filename": "py_spy-0.1.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "aea8bbd4bd3dc91b7bd0934a0eea47be", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1221938, "upload_time": "2018-09-05T22:04:22", "upload_time_iso_8601": "2018-09-05T22:04:22.537193Z", "url": "https://files.pythonhosted.org/packages/c6/d6/66b44ad82aebe41fa7e38a848f2d63e826c537d9a80ea8ebe68e86406cd1/py_spy-0.1.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db9413b5cc3fcb5c82d11a497c9b2f19", "sha256": "11e1305312ea47a22a92c3fbc12210cbeea5a53658a87c6532d931006b17e16d" }, "downloads": -1, "filename": "py_spy-0.1.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "db9413b5cc3fcb5c82d11a497c9b2f19", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1152976, "upload_time": "2018-09-05T22:24:04", "upload_time_iso_8601": "2018-09-05T22:24:04.796150Z", "url": "https://files.pythonhosted.org/packages/9b/34/4262443c1ce98abd5c16805485b027f95596bddab872744c308bb697a28a/py_spy-0.1.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbba0e9e500498ff742c3c2a828c8dcc", "sha256": "f2adc6ee147f1338d63fc62079b9bf8289b83ca0311641b7e026e9bf59f49950" }, "downloads": -1, "filename": "py_spy-0.1.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fbba0e9e500498ff742c3c2a828c8dcc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1221938, "upload_time": "2018-09-05T22:04:24", "upload_time_iso_8601": "2018-09-05T22:04:24.398256Z", "url": "https://files.pythonhosted.org/packages/c1/25/f87fc65e9e483c66cd577eeb6b551a8e8186c9480c9d5eb6ea60659c54d2/py_spy-0.1.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bc60edae834a654cb7e02c0a2c58237", "sha256": "340915d1bc8f1a458e03d4c174aadaaf72a2f832320d8adde4bdca9e06faa3c2" }, "downloads": -1, "filename": "py_spy-0.1.4-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "3bc60edae834a654cb7e02c0a2c58237", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3142587, "upload_time": "2018-09-05T21:51:46", "upload_time_iso_8601": "2018-09-05T21:51:46.842388Z", "url": "https://files.pythonhosted.org/packages/48/24/a32ae61d449a008dd7580698b7b94f6eb53698212949888bbb7e31456540/py_spy-0.1.4-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42b0bccb75e36710d206ed3522c07861", "sha256": "0c1b77476f2acdb0e8f37bb7f11d7b00e5cc9ecb86a55f703cd2d648f738fd71" }, "downloads": -1, "filename": "py_spy-0.1.4-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "42b0bccb75e36710d206ed3522c07861", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5431630, "upload_time": "2018-09-05T21:51:49", "upload_time_iso_8601": "2018-09-05T21:51:49.205806Z", "url": "https://files.pythonhosted.org/packages/88/dc/48a20d011f9a4ef975cf7285a507233502ed4a150c53a303001cf324739d/py_spy-0.1.4-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fba2f7b40b9c865a5294768353f23823", "sha256": "451b83ae161a52f3e49a41d8326a24647f13ce01a6293039040dac93f50f57e8" }, "downloads": -1, "filename": "py_spy-0.1.4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fba2f7b40b9c865a5294768353f23823", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5147210, "upload_time": "2018-09-05T21:51:51", "upload_time_iso_8601": "2018-09-05T21:51:51.964699Z", "url": "https://files.pythonhosted.org/packages/f6/bf/1c32d4690d68b5f0e388830531d385f8034d02ccf655d1cfb1cccd9494d3/py_spy-0.1.4-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "74897fb551c18998402f75ca092fc5c0", "sha256": "b516c86dfe39aeb845ecc0fc032a487e59e764a205567d62232a56b4ee99a7bd" }, "downloads": -1, "filename": "py_spy-0.1.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "74897fb551c18998402f75ca092fc5c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1151036, "upload_time": "2018-09-10T05:45:53", "upload_time_iso_8601": "2018-09-10T05:45:53.788925Z", "url": "https://files.pythonhosted.org/packages/7d/2d/e153711a07a32258a780c5d651c56bb6e84074511dc93f7fffe586dbeb34/py_spy-0.1.5-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3c8eba415c3317a19fa2d9d8b1f324a", "sha256": "c6d68a5a08c89d3e8c75b3fbbd42640892d8d79e1f54f03963c48ed7d72f5315" }, "downloads": -1, "filename": "py_spy-0.1.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "c3c8eba415c3317a19fa2d9d8b1f324a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1151034, "upload_time": "2018-09-10T05:45:55", "upload_time_iso_8601": "2018-09-10T05:45:55.531656Z", "url": "https://files.pythonhosted.org/packages/24/d5/bca1ff411f1edd2e0e2cecfa98f73de43cfe1f1761dcfd33e1c2c5b7adef/py_spy-0.1.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16524262399fd2f3f4b92a82b53cdb62", "sha256": "2b21ed6b2b2e16319571a30f82647b6064d186dcbf7fba961ad59ae338a7a6cf" }, "downloads": -1, "filename": "py_spy-0.1.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "16524262399fd2f3f4b92a82b53cdb62", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1223080, "upload_time": "2018-09-10T05:31:33", "upload_time_iso_8601": "2018-09-10T05:31:33.427067Z", "url": "https://files.pythonhosted.org/packages/00/c9/46464dfbc1c07d7fb99e2a79dd0feaa0b3d8893e05298de6ea8db828da94/py_spy-0.1.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02e45b05955423979686543a3cc83f5d", "sha256": "57dad62ec044433c475351d203cc39b811fb435ca7852ecab1e9648a77d5658a" }, "downloads": -1, "filename": "py_spy-0.1.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "02e45b05955423979686543a3cc83f5d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1151034, "upload_time": "2018-09-10T05:45:57", "upload_time_iso_8601": "2018-09-10T05:45:57.245689Z", "url": "https://files.pythonhosted.org/packages/04/9c/1771e5793746563ef8261a5de7390d445e3d572df7255a2f44ab0b9aa012/py_spy-0.1.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8696a04d210d3348fb9a5b942ace4ca4", "sha256": "511938cb1b75bbced0127fea1c427c7cff5e0177ebfd43dfe085b5e66958fe83" }, "downloads": -1, "filename": "py_spy-0.1.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8696a04d210d3348fb9a5b942ace4ca4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1223079, "upload_time": "2018-09-10T05:31:34", "upload_time_iso_8601": "2018-09-10T05:31:34.987312Z", "url": "https://files.pythonhosted.org/packages/08/9c/b82a263e630204eceac60b7d79a1d1e440b8cd93f1ae5dcd3caa61c2dd60/py_spy-0.1.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76c733cb77e289be8e394479220fd24f", "sha256": "5e38316074e14a81c684ae83fdb6bd2cdb2d9a4f9d6530af5777403522ae41c9" }, "downloads": -1, "filename": "py_spy-0.1.5-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "76c733cb77e289be8e394479220fd24f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1576197, "upload_time": "2018-09-10T05:00:15", "upload_time_iso_8601": "2018-09-10T05:00:15.101081Z", "url": "https://files.pythonhosted.org/packages/67/77/57fbee60cb6870894a9436a80ba5e19bd46cc7d040615e5ab07863d1726a/py_spy-0.1.5-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82ece8753ecebc57f0e0d2909e6eb910", "sha256": "6cde740e21400ca4ac601991f6669dff0ee84ac379a9f8061439af4d3a48af71" }, "downloads": -1, "filename": "py_spy-0.1.5-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "82ece8753ecebc57f0e0d2909e6eb910", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2987434, "upload_time": "2018-09-10T05:00:17", "upload_time_iso_8601": "2018-09-10T05:00:17.634205Z", "url": "https://files.pythonhosted.org/packages/8d/78/e9a95539f2a2e2913aecd92e0c714f0bf434f923837f17acb2b62c4e4951/py_spy-0.1.5-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e3a0241c72119e8396778eaf97a5002", "sha256": "cf7680188c42d2c389b802fa9e25e4424ffee75e4a6e53563096f2f6c7aa2dfa" }, "downloads": -1, "filename": "py_spy-0.1.5-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e3a0241c72119e8396778eaf97a5002", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2943383, "upload_time": "2018-09-10T05:00:20", "upload_time_iso_8601": "2018-09-10T05:00:20.230847Z", "url": "https://files.pythonhosted.org/packages/2d/c9/ea1c28b39de630ed2292a20cab7c9af99e09bcddcda6c7e1e0753b3f59bc/py_spy-0.1.5-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "0323fec66a3ede2981a28aa7678b0dd1", "sha256": "d8ad6669c731c12f180850b2e3e8954dcb7ed947ff391bec8148e868a9308812" }, "downloads": -1, "filename": "py_spy-0.1.6-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "0323fec66a3ede2981a28aa7678b0dd1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1587505, "upload_time": "2018-09-15T04:54:29", "upload_time_iso_8601": "2018-09-15T04:54:29.116284Z", "url": "https://files.pythonhosted.org/packages/d4/e4/2f621106da1a2beb436a51547d3453991db1b55bcb43d61ca7b898020f75/py_spy-0.1.6-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b849cf4ce9b9efa91611e60b7cbb80b", "sha256": "5b87a3e8a98144b1409f9b0ef494bd4dd834ee3c31ff46e6683ca37c6d5440fd" }, "downloads": -1, "filename": "py_spy-0.1.6-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1b849cf4ce9b9efa91611e60b7cbb80b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2992487, "upload_time": "2018-09-15T04:54:31", "upload_time_iso_8601": "2018-09-15T04:54:31.273761Z", "url": "https://files.pythonhosted.org/packages/cf/8d/575eea8dcbc901084c6114eaced26d012ff3c5f313a1e01756fdbaf5e607/py_spy-0.1.6-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db1687eebfaa07cbaf3d8d3ce756d2e6", "sha256": "2f2c463a0d4e5b7b3551ab0ba8996d1b0ab3fb5515480972557d86bcab884779" }, "downloads": -1, "filename": "py_spy-0.1.6-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "db1687eebfaa07cbaf3d8d3ce756d2e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2946832, "upload_time": "2018-09-15T04:54:33", "upload_time_iso_8601": "2018-09-15T04:54:33.425261Z", "url": "https://files.pythonhosted.org/packages/21/a7/89f129fa85fbff3cca678d95e69e0bf4f822b75b755d6f764f389573a1a0/py_spy-0.1.6-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d72a4d4adcb20eeac45143a5bd00a100", "sha256": "661c924083eb866523cd5cb6e754e19df5680807798d9628b02d9d2de0e51bfe" }, "downloads": -1, "filename": "py_spy-0.1.6-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d72a4d4adcb20eeac45143a5bd00a100", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1271313, "upload_time": "2018-09-15T05:00:34", "upload_time_iso_8601": "2018-09-15T05:00:34.370514Z", "url": "https://files.pythonhosted.org/packages/1e/b4/f0b05ea820b8c005fc1b668fff789e52a98a02c50114b5214aa2744cecd7/py_spy-0.1.6-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "e82c39931f07e7d08bfa45e2aefb7259", "sha256": "9f4666c5ab9d20b3712344212c2e367aab36a75370d1ed2934a90602234f0489" }, "downloads": -1, "filename": "py_spy-0.1.7-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e82c39931f07e7d08bfa45e2aefb7259", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1590061, "upload_time": "2018-09-19T17:29:56", "upload_time_iso_8601": "2018-09-19T17:29:56.920249Z", "url": "https://files.pythonhosted.org/packages/fe/6c/45a9232233eb83641127e58264e7a23ac2ed294eb73785bf46f7816b7c4b/py_spy-0.1.7-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "043054d602155bc8701dc5373af5228d", "sha256": "ba6697af0caa11dd344d6a468982842cce3e48874d966fbed79f2c31bdbee866" }, "downloads": -1, "filename": "py_spy-0.1.7-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "043054d602155bc8701dc5373af5228d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2993610, "upload_time": "2018-09-19T17:29:59", "upload_time_iso_8601": "2018-09-19T17:29:59.247625Z", "url": "https://files.pythonhosted.org/packages/15/9e/4d91c2961001bcd155667f346d7391dc36d710e96846b319f30b7d946385/py_spy-0.1.7-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fcf4c2e79473c2f38f776ce4d4b5a00", "sha256": "7171d3013304f7c159df2be0527bb5fd49d3d7e0a95a2a97ebd9d2a4ccdde48f" }, "downloads": -1, "filename": "py_spy-0.1.7-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0fcf4c2e79473c2f38f776ce4d4b5a00", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2948526, "upload_time": "2018-09-19T17:30:01", "upload_time_iso_8601": "2018-09-19T17:30:01.432703Z", "url": "https://files.pythonhosted.org/packages/1b/b0/7ad52f7bc6cc015a5d8e815a30023df6e86d5d4af59e7a557eeed59be1ed/py_spy-0.1.7-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4a14d114e3da4583d3690c339136bb9", "sha256": "54c3cb51fd075db4e2e396f7d3625ae207f322832325c8b001c08fea63333d00" }, "downloads": -1, "filename": "py_spy-0.1.7-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a4a14d114e3da4583d3690c339136bb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1274489, "upload_time": "2018-09-19T17:37:38", "upload_time_iso_8601": "2018-09-19T17:37:38.508666Z", "url": "https://files.pythonhosted.org/packages/08/47/ef253d5df4682242cfd2dd6917e8e25d6240116fdea9ff6b9c5aefd95b89/py_spy-0.1.7-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "9300000e8db831508e18ff0c4c4dc694", "sha256": "5b26878961cc1b5d1f18e21f8ed6817aced5f4ae835d5f7fa277982e5c3d9daf" }, "downloads": -1, "filename": "py_spy-0.1.8-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "9300000e8db831508e18ff0c4c4dc694", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1590153, "upload_time": "2018-09-22T05:15:09", "upload_time_iso_8601": "2018-09-22T05:15:09.444563Z", "url": "https://files.pythonhosted.org/packages/4d/5d/ea5eed92c564777e5e142e37569f44eba4e91032345a19b0ed2ed891bd0c/py_spy-0.1.8-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71ff62b62c3a9733bc524b2de3fb7c8d", "sha256": "6c88435d7411acb148dee283ef2cc39bff42a178d52725fba3fe89205a02fa90" }, "downloads": -1, "filename": "py_spy-0.1.8-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "71ff62b62c3a9733bc524b2de3fb7c8d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2992817, "upload_time": "2018-09-22T05:15:11", "upload_time_iso_8601": "2018-09-22T05:15:11.531879Z", "url": "https://files.pythonhosted.org/packages/92/02/12a5fb6002052ba4c7ee93307aa756e2c87077a00f620223eeecabdb5245/py_spy-0.1.8-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "baf130ebc110ed58b8f9ce31ab94bedb", "sha256": "a98a0c1d916a5b415a35d2fb6fe7a5b5808dd7879d55793d025f1e15ae04693a" }, "downloads": -1, "filename": "py_spy-0.1.8-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "baf130ebc110ed58b8f9ce31ab94bedb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2948258, "upload_time": "2018-09-22T05:15:13", "upload_time_iso_8601": "2018-09-22T05:15:13.935325Z", "url": "https://files.pythonhosted.org/packages/f8/da/55333d9cc08227b6fda033d0f7b8de3d8551c5ba20f2c636f55f6bc290ba/py_spy-0.1.8-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfcbfcbed11df80907d7d3014deff78c", "sha256": "b26ed14746ebec0dd6ca6b1e0af1db182de63a510bc4ab0f1e858eb01ecdd331" }, "downloads": -1, "filename": "py_spy-0.1.8-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "dfcbfcbed11df80907d7d3014deff78c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1273357, "upload_time": "2018-09-22T07:41:43", "upload_time_iso_8601": "2018-09-22T07:41:43.183503Z", "url": "https://files.pythonhosted.org/packages/88/4e/2eac7ded45799c1ae56d30b7321cfecece348176d249b808c1f636b9c59f/py_spy-0.1.8-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "e61f505496262e11b0c97cf6a11bbb64", "sha256": "6dbc641bb665adbaaadf38b82e3723e05f93ed6efcd1bf0a3b9bc2dafde11819" }, "downloads": -1, "filename": "py_spy-0.1.9-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e61f505496262e11b0c97cf6a11bbb64", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1333098, "upload_time": "2018-12-06T05:55:25", "upload_time_iso_8601": "2018-12-06T05:55:25.347081Z", "url": "https://files.pythonhosted.org/packages/9b/20/19c4f830152e13dc8c56ccc6abbc914737125415f9cf731951b539b13211/py_spy-0.1.9-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccf709c6078b84ac2c75f004008b0df4", "sha256": "006e631aa7818e371001154faf31380d90f194fbc891ac065855093ab3663326" }, "downloads": -1, "filename": "py_spy-0.1.9-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ccf709c6078b84ac2c75f004008b0df4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2813326, "upload_time": "2018-12-06T05:55:27", "upload_time_iso_8601": "2018-12-06T05:55:27.983870Z", "url": "https://files.pythonhosted.org/packages/dc/e9/23ba20b0f9cc900809822e4cd448137f358cbb1ea16342194e952d1f5448/py_spy-0.1.9-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b412ab7169152f4669cdefd409fbf7cb", "sha256": "529420f9693d04191fba4d80b471c95e9fa90d3b3cd32edb374c49190892f8c5" }, "downloads": -1, "filename": "py_spy-0.1.9-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b412ab7169152f4669cdefd409fbf7cb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2849010, "upload_time": "2018-12-06T05:55:30", "upload_time_iso_8601": "2018-12-06T05:55:30.137810Z", "url": "https://files.pythonhosted.org/packages/1b/5e/5de9dd3c27e76919111d3fc69844a0a988cd554efbc378eee381cce62d7d/py_spy-0.1.9-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07376d8af7392a065d05ab10dbc626c6", "sha256": "4cf52dca5b8fbaf7f49deea3505f95f44d79c53e0d1adefa41f359a9df7697ac" }, "downloads": -1, "filename": "py_spy-0.1.9-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "07376d8af7392a065d05ab10dbc626c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1088584, "upload_time": "2018-12-06T06:10:01", "upload_time_iso_8601": "2018-12-06T06:10:01.783989Z", "url": "https://files.pythonhosted.org/packages/51/1b/70036bdfdf687f62b2658252c12ad5311d5949c8e3e67a47095f0ed1d522/py_spy-0.1.9-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8ec79911aa73eb29554d289d10d195ed", "sha256": "06a03d57b3994b90bc22ff569fa2b9ca9c59157ae8bb69e8bd38cf14c1942699" }, "downloads": -1, "filename": "py_spy-0.2.0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "8ec79911aa73eb29554d289d10d195ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1405617, "upload_time": "2019-09-23T03:43:10", "upload_time_iso_8601": "2019-09-23T03:43:10.017997Z", "url": "https://files.pythonhosted.org/packages/9d/8d/7a5b58708bf8cc88d84a8c1e6edaab66d00320c4a979d1e3aaa99cbabf77/py_spy-0.2.0-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a153cde2b7ac7b86fc3cbcb1b304d3d", "sha256": "d91a25cbf02e8b34a5d4d775046f6a554d92972856a5dc711234dd59e93827d6" }, "downloads": -1, "filename": "py_spy-0.2.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5a153cde2b7ac7b86fc3cbcb1b304d3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2002980, "upload_time": "2019-09-23T03:43:15", "upload_time_iso_8601": "2019-09-23T03:43:15.630332Z", "url": "https://files.pythonhosted.org/packages/8f/8c/919d7fbafae56e4d62eb4f309c1bad89c3c3e4c31ab3e1da166f465c27ef/py_spy-0.2.0-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47c64d259d5c263c55b5ab445ae9eb98", "sha256": "93e871ff09ef5f445ee718fe64342910ab2897f9007130e19fc9f996eeb87b4a" }, "downloads": -1, "filename": "py_spy-0.2.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "47c64d259d5c263c55b5ab445ae9eb98", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2776198, "upload_time": "2019-09-23T03:43:20", "upload_time_iso_8601": "2019-09-23T03:43:20.056468Z", "url": "https://files.pythonhosted.org/packages/55/19/fff45d1493aa8130cda49706be75fa62ca118a10917fc4815181bffa76ae/py_spy-0.2.0-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0.dev0": [ { "comment_text": "", "digests": { "md5": "c49cdc12bcaea8cbe4fcf54b59cec8b2", "sha256": "5fe75c5a6ce25db98ae0c3a5a1b1823ad2113f4d6e17270bb993a25d8b9cd8ea" }, "downloads": -1, "filename": "py_spy-0.2.0.dev0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c49cdc12bcaea8cbe4fcf54b59cec8b2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1617236, "upload_time": "2019-01-28T20:34:03", "upload_time_iso_8601": "2019-01-28T20:34:03.638594Z", "url": "https://files.pythonhosted.org/packages/5f/65/272a8caefa0bb2fc5f0669a7feb72e10dd797e8ea4ff385f160d810420ce/py_spy-0.2.0.dev0-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97b8e6061b343de4d3e0d192cbf81d8e", "sha256": "8d92aad036e0b2d449f92a8922b8050b1c02a4f4e86c97abd1862c4d4cc4213f" }, "downloads": -1, "filename": "py_spy-0.2.0.dev0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "97b8e6061b343de4d3e0d192cbf81d8e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3388799, "upload_time": "2019-01-28T20:34:06", "upload_time_iso_8601": "2019-01-28T20:34:06.486724Z", "url": "https://files.pythonhosted.org/packages/11/63/71408eca9d2af807676534b3b063b1895933ff09892083628c3dfaa83e49/py_spy-0.2.0.dev0-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0.dev1": [ { "comment_text": "", "digests": { "md5": "b8f3a4f7b7528bd2178b15a316a29443", "sha256": "9e3d3f199c360dee58dbc9ce82e4dd9cb5ae3356466b25a8276bb972fdced2d9" }, "downloads": -1, "filename": "py_spy-0.2.0.dev1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b8f3a4f7b7528bd2178b15a316a29443", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1989467, "upload_time": "2019-02-14T06:29:23", "upload_time_iso_8601": "2019-02-14T06:29:23.832454Z", "url": "https://files.pythonhosted.org/packages/cd/00/887d76b5fa8b4c0b5d8002b8007e8790a3ffdcc01ee81444d2123be81ccb/py_spy-0.2.0.dev1-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fbd801b7bb5160ef1268f99159997ae", "sha256": "c7c07b1557f372701ca3096582d487a19dd5ee7d0143c2c8dd3bdb0ec37c9450" }, "downloads": -1, "filename": "py_spy-0.2.0.dev1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1fbd801b7bb5160ef1268f99159997ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2939975, "upload_time": "2019-02-14T06:29:26", "upload_time_iso_8601": "2019-02-14T06:29:26.369688Z", "url": "https://files.pythonhosted.org/packages/d5/a0/4f668cfb3cae1687298e015ca99f5f08344f7b728254b5e8c6202f3f0ceb/py_spy-0.2.0.dev1-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4053ca722ac22996e9ced717f057e31a", "sha256": "27f318826cb99a3cc4a089d8991e08ba8c86743ed9191799f39bc02cf1964a05" }, "downloads": -1, "filename": "py_spy-0.2.0.dev1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4053ca722ac22996e9ced717f057e31a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3823010, "upload_time": "2019-02-14T06:29:29", "upload_time_iso_8601": "2019-02-14T06:29:29.034169Z", "url": "https://files.pythonhosted.org/packages/38/86/de282854cd1a72386e03c0016485651b961c80185f86ba49064433920be1/py_spy-0.2.0.dev1-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0.dev2": [ { "comment_text": "", "digests": { "md5": "e923dcd7a1eac37421d30d5f891ada4c", "sha256": "2ef809169401b3649458025ac72bdb3e7a0b0019206f5fe6574fdc9584bbe31e" }, "downloads": -1, "filename": "py_spy-0.2.0.dev2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e923dcd7a1eac37421d30d5f891ada4c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1888639, "upload_time": "2019-07-07T01:37:13", "upload_time_iso_8601": "2019-07-07T01:37:13.822455Z", "url": "https://files.pythonhosted.org/packages/8e/3c/6bb754027cffee3d9bec8ec24b1357563438ff02146a26d333ca8b9bb835/py_spy-0.2.0.dev2-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f2852db3843be7b565fb993e3e89fcd", "sha256": "464855868becf881358987a8d350984e2120536f00dfabf0ac19b6f81bb95bff" }, "downloads": -1, "filename": "py_spy-0.2.0.dev2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5f2852db3843be7b565fb993e3e89fcd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2563808, "upload_time": "2019-07-07T01:37:16", "upload_time_iso_8601": "2019-07-07T01:37:16.072001Z", "url": "https://files.pythonhosted.org/packages/ad/3f/9b2866e30f8a7c7a3ce217f4a32af2572a16ee2ed2b1dda5a2ec943d6dc5/py_spy-0.2.0.dev2-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7c0522d7fb7ae5c2b30e816d28a2eee", "sha256": "769de1bb622ff16422a18ca74ef8c8856182aaf057e1ec86e3cc231379efd248" }, "downloads": -1, "filename": "py_spy-0.2.0.dev2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b7c0522d7fb7ae5c2b30e816d28a2eee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3140839, "upload_time": "2019-07-07T01:37:18", "upload_time_iso_8601": "2019-07-07T01:37:18.452796Z", "url": "https://files.pythonhosted.org/packages/13/15/e7bc2965a82d364e550edfa19193aa804818f41aa95b755c6f826378b8e3/py_spy-0.2.0.dev2-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d952293924011d98b3c063c4383ee5c7", "sha256": "9ca9844ff161bb5eb81c1727d03805c316bbcff211e98da6ea9fb11ded0440db" }, "downloads": -1, "filename": "py_spy-0.2.0.dev2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "d952293924011d98b3c063c4383ee5c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1809882, "upload_time": "2019-07-07T02:23:06", "upload_time_iso_8601": "2019-07-07T02:23:06.289167Z", "url": "https://files.pythonhosted.org/packages/d0/51/af0fd1efa232797874e7f179cbd45b7ac983b59fc3bd5367e0f8da8c0244/py_spy-0.2.0.dev2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0.dev3": [ { "comment_text": "", "digests": { "md5": "72d5ffbf7b2f53044d588700e3f9ee49", "sha256": "1f12610c3a458c886782009176f5ba8da78e831eba53049cacd0fe9fab0680e4" }, "downloads": -1, "filename": "py_spy-0.2.0.dev3-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "72d5ffbf7b2f53044d588700e3f9ee49", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1559380, "upload_time": "2019-07-14T06:16:49", "upload_time_iso_8601": "2019-07-14T06:16:49.952868Z", "url": "https://files.pythonhosted.org/packages/9e/6d/6641879049fbcd7cf1fd44a030071bdfb393fbab37078e293830d614e7c4/py_spy-0.2.0.dev3-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21d0c494ad2ec903dc57a3b5a4d2e523", "sha256": "02f2b3796cc1077d4f4f5db1de3d6d1ba82a4beb8cd985b6a7ae446cff4d464d" }, "downloads": -1, "filename": "py_spy-0.2.0.dev3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "21d0c494ad2ec903dc57a3b5a4d2e523", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1898527, "upload_time": "2019-07-14T06:16:51", "upload_time_iso_8601": "2019-07-14T06:16:51.970680Z", "url": "https://files.pythonhosted.org/packages/09/63/58189c395276ed974906df54848b363272ca14b85efb7c64882c15bb37dc/py_spy-0.2.0.dev3-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36e16669664a1733d51aea6295b2a0da", "sha256": "7a7232a05a0cd4d1541bf100bcc8ea24842016a1078489900c08e6497b7b2071" }, "downloads": -1, "filename": "py_spy-0.2.0.dev3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "36e16669664a1733d51aea6295b2a0da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2690699, "upload_time": "2019-07-14T06:16:54", "upload_time_iso_8601": "2019-07-14T06:16:54.563402Z", "url": "https://files.pythonhosted.org/packages/ad/c2/5b998b9b7ed0023209c7a6e22e09d9194dd7db7564bf96352b3bf883f0e0/py_spy-0.2.0.dev3-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "586adc5e0d222614822152c7428c476e", "sha256": "30e65690b71eb57bdad0b6217bf702e844357fde5302629703d931d27af5d286" }, "downloads": -1, "filename": "py_spy-0.2.0.dev3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "586adc5e0d222614822152c7428c476e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1316517, "upload_time": "2019-07-14T06:29:07", "upload_time_iso_8601": "2019-07-14T06:29:07.343453Z", "url": "https://files.pythonhosted.org/packages/e3/0d/a2bda5c42e0f2a4eea085d04cfc8adc33f6691ac84eb74785a49916948cd/py_spy-0.2.0.dev3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0.dev4": [ { "comment_text": "", "digests": { "md5": "f62f3dc480f6891a11d1981725813ada", "sha256": "e4a17872b2b93ed011ba19ef33b783a6c1968f148efc2f43d8adce9222abf857" }, "downloads": -1, "filename": "py_spy-0.2.0.dev4-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f62f3dc480f6891a11d1981725813ada", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1647660, "upload_time": "2019-08-11T04:08:39", "upload_time_iso_8601": "2019-08-11T04:08:39.565319Z", "url": "https://files.pythonhosted.org/packages/76/41/d10ebed9fad34c60210829f2a91d18f0e2dbdb0afc3ebb665772411b21d4/py_spy-0.2.0.dev4-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad5c2c55e1daf811dc54d575e77259eb", "sha256": "8ec8d0905fe8dc90cf0ff02de2d8a478843d2ced85aee0b59e3474f1fab68f87" }, "downloads": -1, "filename": "py_spy-0.2.0.dev4-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ad5c2c55e1daf811dc54d575e77259eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1987998, "upload_time": "2019-08-11T04:08:42", "upload_time_iso_8601": "2019-08-11T04:08:42.565312Z", "url": "https://files.pythonhosted.org/packages/80/e7/3299e30673979a175d7b7386904f99d9bd5b69d973d25364599760d0e29a/py_spy-0.2.0.dev4-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90625f1d81cda10947da856aa96b467c", "sha256": "76b672658b58918b6155045452e78d1ef05b957dd9adc5f0d300553574eadfaf" }, "downloads": -1, "filename": "py_spy-0.2.0.dev4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "90625f1d81cda10947da856aa96b467c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2807264, "upload_time": "2019-08-11T04:08:45", "upload_time_iso_8601": "2019-08-11T04:08:45.502272Z", "url": "https://files.pythonhosted.org/packages/04/21/2ec05ed641b9e154dc713c49b97f0e728e2d09d2de0b7a1e882a9e64fb79/py_spy-0.2.0.dev4-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4f9174ddbe18308e1a0fff03b40ef3c", "sha256": "a4a73fce4c3ca34bdf911b9364023c242723cee629c1faa01b2a9a4ab1a92b31" }, "downloads": -1, "filename": "py_spy-0.2.0.dev4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c4f9174ddbe18308e1a0fff03b40ef3c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1408901, "upload_time": "2019-08-11T04:23:45", "upload_time_iso_8601": "2019-08-11T04:23:45.355106Z", "url": "https://files.pythonhosted.org/packages/5a/13/b79c0a45c3f000db23cc6a7e861a1ebc161a26e4a2e415f74f03174b3261/py_spy-0.2.0.dev4-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "52ae2e96a9f5eb484efe178951f9fde3", "sha256": "e3aa23d1ee6571dff64cb1a54f4ddbc27cac4ff3b8c0427781691a39028a3b25" }, "downloads": -1, "filename": "py_spy-0.2.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "52ae2e96a9f5eb484efe178951f9fde3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1405526, "upload_time": "2019-09-27T06:20:44", "upload_time_iso_8601": "2019-09-27T06:20:44.804710Z", "url": "https://files.pythonhosted.org/packages/3d/de/5368c63c9c4181190fd5dcaabd3c97c20d96797d02da802e401150ef4d03/py_spy-0.2.1-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6202d15006a02e0f6c9dac41d343d27", "sha256": "40e833d3ba5f94033d2ffd59c46e292226bf5fd8aaafa6ce42961b760df25613" }, "downloads": -1, "filename": "py_spy-0.2.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c6202d15006a02e0f6c9dac41d343d27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2002716, "upload_time": "2019-09-27T06:20:47", "upload_time_iso_8601": "2019-09-27T06:20:47.413847Z", "url": "https://files.pythonhosted.org/packages/c3/f3/cf7798e27230b8d79e3ff7ba70efe274154c961d12409ccc32de07672552/py_spy-0.2.1-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28d2d73d6aca6f1da82fbc4d3501b585", "sha256": "a5dc6e1fe13d6b24e8501d58226598d0924405b54b92179d77ef912a9b6b27a2" }, "downloads": -1, "filename": "py_spy-0.2.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "28d2d73d6aca6f1da82fbc4d3501b585", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2777921, "upload_time": "2019-09-27T06:20:49", "upload_time_iso_8601": "2019-09-27T06:20:49.670519Z", "url": "https://files.pythonhosted.org/packages/0a/8c/ab0ebed6236cbb78cefbf6da6cfccccac02f00abd707c1a55ff27ca09c42/py_spy-0.2.1-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1e1233b63060de8bf79af9a7099c27f", "sha256": "e41575fde44b8125db7896d868ade012814f74c433b94f3f70a465ea1b4937b0" }, "downloads": -1, "filename": "py_spy-0.2.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "f1e1233b63060de8bf79af9a7099c27f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1380946, "upload_time": "2019-09-27T06:35:14", "upload_time_iso_8601": "2019-09-27T06:35:14.023696Z", "url": "https://files.pythonhosted.org/packages/ee/97/a1099117c2183fb84aab18e10feca0ace87366258505d815bdb7cba26a42/py_spy-0.2.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "ce3d9a9ce66310edc9b3e4352e6f3b70", "sha256": "66941a15e75e21fdae947d7e31578b26405dbe82d3e11bec4272eee23ffb7f5f" }, "downloads": -1, "filename": "py_spy-0.2.2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ce3d9a9ce66310edc9b3e4352e6f3b70", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1434282, "upload_time": "2019-10-08T05:52:18", "upload_time_iso_8601": "2019-10-08T05:52:18.554778Z", "url": "https://files.pythonhosted.org/packages/6b/a9/ecc43d571fe8dd6234e870002e795a9474227a0edbf64e30ac054a104022/py_spy-0.2.2-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e843a7357ba3c9b766c279179f0f1c6", "sha256": "7dc3d1201c5123aa4dd1133d9ded4dac15c945674334f1954cca80aaa4b638e0" }, "downloads": -1, "filename": "py_spy-0.2.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8e843a7357ba3c9b766c279179f0f1c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2036797, "upload_time": "2019-10-08T05:52:21", "upload_time_iso_8601": "2019-10-08T05:52:21.262669Z", "url": "https://files.pythonhosted.org/packages/98/37/93198d7501446d03c5fc745b2d0e361839c9a12f9e834c0d1bc7598ebf90/py_spy-0.2.2-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd94aa5617de33b2506cdf8e15787d29", "sha256": "abfbcaaf898c6f82ee7cbd5fa3023a9963564ef0a349e62fadf17cb558743a4d" }, "downloads": -1, "filename": "py_spy-0.2.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bd94aa5617de33b2506cdf8e15787d29", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2812192, "upload_time": "2019-10-08T05:52:24", "upload_time_iso_8601": "2019-10-08T05:52:24.312776Z", "url": "https://files.pythonhosted.org/packages/1b/49/7cea4c6ddcec7bf944c0508f480a25c9c309c6e5b96039e3aff33a579509/py_spy-0.2.2-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad2ab45ee4d51e7dd747662fa3472ad2", "sha256": "dd0513e425c5058c20e518fd2203dd127a08108a648212994b084d14fff021c0" }, "downloads": -1, "filename": "py_spy-0.2.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ad2ab45ee4d51e7dd747662fa3472ad2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1412632, "upload_time": "2019-10-08T06:06:54", "upload_time_iso_8601": "2019-10-08T06:06:54.874336Z", "url": "https://files.pythonhosted.org/packages/81/a6/2e8e514d883af783a709cafcd6ecf4d12753ff8b759e6dac02f25ab7a6f6/py_spy-0.2.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "147c74423f74227b97df3b2d477612d8", "sha256": "8648b0660415ed249b424e1f9cb32bef150a30008c43d183e21b3df447f03ca2" }, "downloads": -1, "filename": "py_spy-0.3.0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "147c74423f74227b97df3b2d477612d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1489602, "upload_time": "2019-10-27T04:14:42", "upload_time_iso_8601": "2019-10-27T04:14:42.459208Z", "url": "https://files.pythonhosted.org/packages/49/5c/26626dcf4d8706a3015d9466fd3703b15de0d05b27bb4329aa344308ad91/py_spy-0.3.0-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c20463596cbbe56e4438bf7a45cf3f20", "sha256": "7e58767b8dad472cdd2e4b70d82b067787530e6d20e2d7ebf02c0a2ed234bce6" }, "downloads": -1, "filename": "py_spy-0.3.0-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c20463596cbbe56e4438bf7a45cf3f20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2126243, "upload_time": "2019-10-27T04:14:44", "upload_time_iso_8601": "2019-10-27T04:14:44.927612Z", "url": "https://files.pythonhosted.org/packages/1a/f3/b56c6348dc116d533002fde2d8a12296b17704ad216a1300dcac62f6b72d/py_spy-0.3.0-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "880a1103b5f9580d3e74252373639e02", "sha256": "6ea5b4c44c632a5dee8dc6897256815106d2fbb5f6fa777c3b85a18ee8dc54ef" }, "downloads": -1, "filename": "py_spy-0.3.0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "880a1103b5f9580d3e74252373639e02", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2896143, "upload_time": "2019-10-27T04:14:47", "upload_time_iso_8601": "2019-10-27T04:14:47.193560Z", "url": "https://files.pythonhosted.org/packages/81/49/6bccbf09d5633b29fb5e94b15abaddbe32f54f9276df8059364a7d2f1fc8/py_spy-0.3.0-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e716b2478aed0e82861925670b022e6e", "sha256": "3b05d1e3d636cc6d94fc94dde398c207c67b4a358d9cba3c4d06a64018cd4d89" }, "downloads": -1, "filename": "py_spy-0.3.0-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "e716b2478aed0e82861925670b022e6e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1487454, "upload_time": "2019-10-27T04:28:44", "upload_time_iso_8601": "2019-10-27T04:28:44.524386Z", "url": "https://files.pythonhosted.org/packages/98/77/e3d9e9312b49fedc17d412b0727574ff063940ae7bbb0681409f65941097/py_spy-0.3.0-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "3b1f381cec5f3abfc94d9a963d0e94a7", "sha256": "b0f3fba3cb8ac82691d1f21cf82899a2198061486f2c3be18db5ee1973a73490" }, "downloads": -1, "filename": "py_spy-0.3.1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "3b1f381cec5f3abfc94d9a963d0e94a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1458135, "upload_time": "2019-12-09T06:20:21", "upload_time_iso_8601": "2019-12-09T06:20:21.739600Z", "url": "https://files.pythonhosted.org/packages/1a/a3/45ef8f437cc58943a4d584a4e14256e2f0f47c1b43ed06d2dae007e2bb37/py_spy-0.3.1-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b5ef99555f8236a9e2fd05b49c2e4f7", "sha256": "feccdf0137821cb54007a9820c3c8378a098924856821ea1dbf2003f2f823199" }, "downloads": -1, "filename": "py_spy-0.3.1-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6b5ef99555f8236a9e2fd05b49c2e4f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2396733, "upload_time": "2019-12-09T06:20:24", "upload_time_iso_8601": "2019-12-09T06:20:24.731202Z", "url": "https://files.pythonhosted.org/packages/50/1d/ef7a11c26ab074f2d082f1ca57ae3db0e4af8065022bcb7100f9385d710c/py_spy-0.3.1-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de7235b341b2009e98ab6c68daff4647", "sha256": "f57ad90a03d13c1d6e0af2154eeef85412b3c864f87c30810b62710e4e1e1afd" }, "downloads": -1, "filename": "py_spy-0.3.1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "de7235b341b2009e98ab6c68daff4647", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2858610, "upload_time": "2019-12-09T06:20:28", "upload_time_iso_8601": "2019-12-09T06:20:28.247025Z", "url": "https://files.pythonhosted.org/packages/e7/fa/397c9f62f17d266a24357575dca58fc7944ab53d0dc6e7c432840f3d1f13/py_spy-0.3.1-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5780291c99cc67e727b8002b9b123fb5", "sha256": "cd42da5fdce28f5e0bf6fd71ac7a1a9f7c12789723a8cf3d3d7e750fab343433" }, "downloads": -1, "filename": "py_spy-0.3.1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "5780291c99cc67e727b8002b9b123fb5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1423164, "upload_time": "2019-12-09T06:37:34", "upload_time_iso_8601": "2019-12-09T06:37:34.546924Z", "url": "https://files.pythonhosted.org/packages/47/67/5b8a8c565840a154725135a6564b95fc36c1b0819075a8e188810a629773/py_spy-0.3.1-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "27f875a91e85371b49bef320b995737a", "sha256": "2b33826e03054ca1adef151dcb53f0209158418ba1cb527d70ea2e60f82ebd59" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "27f875a91e85371b49bef320b995737a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1605945, "upload_time": "2021-09-27T21:54:58", "upload_time_iso_8601": "2021-09-27T21:54:58.124112Z", "url": "https://files.pythonhosted.org/packages/8f/61/0bf0f41f1c3176562df1f11c8e4a6ceb16392626caf5121b1401f60cf59b/py_spy-0.3.10-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d96175b8c293ca4b5b04a540f74f5af", "sha256": "0912c5f6583773a51dd4305d987ae716258d8286da2baffa5347ea91018d3aaf" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "6d96175b8c293ca4b5b04a540f74f5af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3088816, "upload_time": "2021-09-27T21:54:59", "upload_time_iso_8601": "2021-09-27T21:54:59.378823Z", "url": "https://files.pythonhosted.org/packages/f8/09/47bc377785ee710458acef01712fd7fb9c0ba8a072dc3a688ecf7fdf4d4c/py_spy-0.3.10-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b324acec9492e9bb100dc02e1484737e", "sha256": "48431c8a4ebf1f7806582462c0e67cb9cf2457c1a5e63ab6e1b335fcf560597f" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "b324acec9492e9bb100dc02e1484737e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2521009, "upload_time": "2021-09-27T21:55:00", "upload_time_iso_8601": "2021-09-27T21:55:00.800667Z", "url": "https://files.pythonhosted.org/packages/65/8f/e8a28386d183bf7afeaf4bc83d0332e5f06c294b2d3069aecd5e77ed926e/py_spy-0.3.10-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d22de33078ae346778a71ac78ebf9245", "sha256": "50c9c27194d5393a70a7e5ae21c19c8f0e481adac64d8c21bb06d50980ea4739" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "d22de33078ae346778a71ac78ebf9245", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2669791, "upload_time": "2021-09-27T21:55:02", "upload_time_iso_8601": "2021-09-27T21:55:02.783123Z", "url": "https://files.pythonhosted.org/packages/81/22/9831e17b8b8eec8790b7611729d9226eba3a0ca62062701ab6b71e3ae3a4/py_spy-0.3.10-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1958e60375dc7b642077106f07b43837", "sha256": "a38cc9c6f209c289478fa3c65ce9a8efe64b9f9c3dadadd475be8f28441d0e90" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "1958e60375dc7b642077106f07b43837", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2772030, "upload_time": "2021-09-27T21:55:04", "upload_time_iso_8601": "2021-09-27T21:55:04.573617Z", "url": "https://files.pythonhosted.org/packages/6a/99/de2ba8f40008020ee8e59e3aa6144963bd14c8aa3cda68da1452d6710018/py_spy-0.3.10-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64bab9e66595ca742c3627397391bbeb", "sha256": "baa6b2f7f5b6ec2c9192eb0046b953969a153ce784f6c4bd96a8a69f4ebeca40" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "64bab9e66595ca742c3627397391bbeb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3178124, "upload_time": "2021-09-27T21:55:06", "upload_time_iso_8601": "2021-09-27T21:55:06.189932Z", "url": "https://files.pythonhosted.org/packages/0b/8c/060580e362140a90a70a1a749903024193b790d30806222b70f6b5191e1b/py_spy-0.3.10-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b92b7f781af556a56e2f4b418572e8f2", "sha256": "d52702f0af84602ada3eba2a99c3f4a6a3194aa7629f01a23ad7f0981bc43c3c" }, "downloads": -1, "filename": "py_spy-0.3.10-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "b92b7f781af556a56e2f4b418572e8f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1422241, "upload_time": "2021-09-27T21:55:07", "upload_time_iso_8601": "2021-09-27T21:55:07.286093Z", "url": "https://files.pythonhosted.org/packages/25/e1/4643520f9c06b69b61cc7c42354eb130018102c85793b20a6847e2676132/py_spy-0.3.10-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc073ca20a175f792b4d655473e928ad", "sha256": "89a0ce8e2e9981847404e2c32c8117a663e4b5a2070965e93287960d1ae9df4a" }, "downloads": -1, "filename": "py_spy-0.3.10.tar.gz", "has_sig": false, "md5_digest": "fc073ca20a175f792b4d655473e928ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156123, "upload_time": "2021-09-27T21:55:08", "upload_time_iso_8601": "2021-09-27T21:55:08.278156Z", "url": "https://files.pythonhosted.org/packages/70/c5/ef730aac8580000704545beed66888148bcad0f9bce6f7bd6f8928272afb/py_spy-0.3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "853bfea6e29325208f7aeb260b5e37ef", "sha256": "5dbec592e43bb10ceff887f2cf889e2b45d1dd999363c9241637428599eeb358" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "853bfea6e29325208f7aeb260b5e37ef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1639330, "upload_time": "2021-11-13T01:54:19", "upload_time_iso_8601": "2021-11-13T01:54:19.204419Z", "url": "https://files.pythonhosted.org/packages/2e/c5/da8d631895fb2f1b5e12b563ccb45de412b9fe1a5b514f897297a692c8a9/py_spy-0.3.11-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "738b6637d9f4685f64b2d52f7a8ad5f8", "sha256": "249af0490f04aea58606fa18c82ea33a25a3894e32ba019367b62a4b8d54f5a6" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "738b6637d9f4685f64b2d52f7a8ad5f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3145607, "upload_time": "2021-11-13T01:54:20", "upload_time_iso_8601": "2021-11-13T01:54:20.759705Z", "url": "https://files.pythonhosted.org/packages/33/79/fa1a2bc8df856efa7b99fef94c4ca80a9be1b4108190225a698c0be1ba5f/py_spy-0.3.11-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c742fb40bb0b702e5f950665d736f182", "sha256": "3fbd42d211fe5c4cdf650b194940c1f053fe30b5fbba09e933432535a13867a5" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "c742fb40bb0b702e5f950665d736f182", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2543107, "upload_time": "2021-11-13T01:54:22", "upload_time_iso_8601": "2021-11-13T01:54:22.382638Z", "url": "https://files.pythonhosted.org/packages/6f/ad/4f1edc5040eafbffcf2edb9c511a1ea8d1d940a3d32a987539269e612178/py_spy-0.3.11-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1a1993bab1c1250898f9224b20d9aff", "sha256": "e35a4720859dfd86238df5ac17d63d1f08901d40953ff5eac0bda5afdf744b22" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "c1a1993bab1c1250898f9224b20d9aff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2714345, "upload_time": "2021-11-13T01:54:24", "upload_time_iso_8601": "2021-11-13T01:54:24.242604Z", "url": "https://files.pythonhosted.org/packages/d8/db/cdc84b358f1ba8b8ed822e32037f29baad1ac2a457b794ae052372b4351c/py_spy-0.3.11-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43546040b2c020e72d34b4577986e49a", "sha256": "3b80db1630f5ca1314b72e7f739c00329bc44a8fd06f44a2d708267c248fce2f" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "43546040b2c020e72d34b4577986e49a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2760336, "upload_time": "2021-11-13T01:54:25", "upload_time_iso_8601": "2021-11-13T01:54:25.466262Z", "url": "https://files.pythonhosted.org/packages/cb/7d/6195d1ec2210367b7a629445c52c1cd02ca0cd2078e43e25b970aabb76fe/py_spy-0.3.11-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d10e2c1551d1dbc5ebb4873632f52da7", "sha256": "6f7ba3ae9f6a61ca2e10367427ee8d39d46880b09a78a90e6899b02601187c8d" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d10e2c1551d1dbc5ebb4873632f52da7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2983101, "upload_time": "2021-11-13T01:54:26", "upload_time_iso_8601": "2021-11-13T01:54:26.728204Z", "url": "https://files.pythonhosted.org/packages/f3/25/71e793126c0649bb42f847b5f68e81246df46a582f1f5a9f64373e343694/py_spy-0.3.11-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c6414200835376a07bf8a2c41c5dbe2", "sha256": "f014b383a14e5d881710ab930c435cbe76b8af40855bbc09775b70a0254b600a" }, "downloads": -1, "filename": "py_spy-0.3.11-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "4c6414200835376a07bf8a2c41c5dbe2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1433644, "upload_time": "2021-11-13T01:54:28", "upload_time_iso_8601": "2021-11-13T01:54:28.529100Z", "url": "https://files.pythonhosted.org/packages/52/ca/70a2f319a81caa95947afb88db6636c22f090dc8237cb6cc6e13bf94f056/py_spy-0.3.11-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4bfafee29a4c7e7cf1b86825e256729", "sha256": "3115c6e45cdab657f81c886f8b1664e7e2208b775396031eeea60e4d16fc861d" }, "downloads": -1, "filename": "py_spy-0.3.11.tar.gz", "has_sig": false, "md5_digest": "e4bfafee29a4c7e7cf1b86825e256729", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 155615, "upload_time": "2021-11-13T01:54:29", "upload_time_iso_8601": "2021-11-13T01:54:29.837644Z", "url": "https://files.pythonhosted.org/packages/26/da/6533d435c5c421cd7e186620b81db14145bbb6e18d408a6af96cc497143d/py_spy-0.3.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "b3006efc3e5e0003f9fc570456fec918", "sha256": "608f8cb370d0f9b3bc31999502b375bf8fef555a6bf37e66980ac9e6b340ee2c" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b3006efc3e5e0003f9fc570456fec918", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1608030, "upload_time": "2022-05-17T00:33:00", "upload_time_iso_8601": "2022-05-17T00:33:00.565087Z", "url": "https://files.pythonhosted.org/packages/1e/81/c747f035df5ebf1c9a5e8c108c17346744ea812cbc3186d7f54575b330c9/py_spy-0.3.12-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bdc7236d39b2fa8c2bedc14540cc6de", "sha256": "333c2917ad4383fa105c2caea6d3e375019579888e39942e5062d7048c0132ee" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "9bdc7236d39b2fa8c2bedc14540cc6de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3109261, "upload_time": "2022-05-17T00:33:02", "upload_time_iso_8601": "2022-05-17T00:33:02.221421Z", "url": "https://files.pythonhosted.org/packages/f4/56/3b2bc15261959abe4238aa30521a0dd155135c225b33f6d948e79314d1f3/py_spy-0.3.12-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a23699fea38ceb4a26daa4e345cd2bcb", "sha256": "b205dd347ebd4e4f97a4b89950c0caab1ec969f57133ebc2ad6dd66b9c25552d" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "a23699fea38ceb4a26daa4e345cd2bcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2539239, "upload_time": "2022-05-17T00:33:04", "upload_time_iso_8601": "2022-05-17T00:33:04.580596Z", "url": "https://files.pythonhosted.org/packages/ad/06/0fd93647e453475c1bd41cd7e21b2ab6f70c71512f7e35dd7994cfb13ed5/py_spy-0.3.12-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85ab498bbe8b2c9f16cb1862f237bcef", "sha256": "3514ba939e7c682e7955cd79dcc79f5e1ce6483e044756925a61e7fb1e80ef77" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "85ab498bbe8b2c9f16cb1862f237bcef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2779528, "upload_time": "2022-05-17T00:33:05", "upload_time_iso_8601": "2022-05-17T00:33:05.821655Z", "url": "https://files.pythonhosted.org/packages/ff/4f/e6bcfca12b0bf079efbd305fca5f9204fc868752942e4b8817baf9d66b68/py_spy-0.3.12-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "089772a23a6e3a8fb8a164bdb0257eee", "sha256": "1ae0e11aac6e1c8679c13251b010ac4aa59230087a09f14517431f66333d7600" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "089772a23a6e3a8fb8a164bdb0257eee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2765071, "upload_time": "2022-05-17T00:33:07", "upload_time_iso_8601": "2022-05-17T00:33:07.490543Z", "url": "https://files.pythonhosted.org/packages/e5/26/27afad975f87f12d697d783461dc8c0701fd69d57e47b1a7545084e1800f/py_spy-0.3.12-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcb3f7125020f7a33da1ea45da9d7857", "sha256": "04005cf6c8367fcdfa039745e00db79f175a1265843daaa9872f8dbb46042763" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bcb3f7125020f7a33da1ea45da9d7857", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3058542, "upload_time": "2022-05-17T00:33:09", "upload_time_iso_8601": "2022-05-17T00:33:09.544211Z", "url": "https://files.pythonhosted.org/packages/7e/22/c8be95e1d7871b9d842aab90d33edc271e737528d9a1d19ca3e58883c486/py_spy-0.3.12-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68fd09a59ebd339cf7c8b3885acf3ff4", "sha256": "78e96915423bceee1c81e3aa177772c4e299e063e42afbbf2a1918a1facc8b27" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "68fd09a59ebd339cf7c8b3885acf3ff4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1448285, "upload_time": "2022-05-17T00:33:11", "upload_time_iso_8601": "2022-05-17T00:33:11.374368Z", "url": "https://files.pythonhosted.org/packages/e4/11/df690ee5eff9de988df01c7beded3b6801e9c586a914f03e9f2b0e642a23/py_spy-0.3.12-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf1a5d5cc2de0d306e4539bacd335a01", "sha256": "e76f115e9b7f1ae629df5a42daf78e3df727cdc31e70e0520c441281dfe18794" }, "downloads": -1, "filename": "py_spy-0.3.12.tar.gz", "has_sig": false, "md5_digest": "cf1a5d5cc2de0d306e4539bacd335a01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157234, "upload_time": "2022-05-17T00:33:12", "upload_time_iso_8601": "2022-05-17T00:33:12.779588Z", "url": "https://files.pythonhosted.org/packages/79/7a/9330b41f067ace032b1231ed26eab0cfbf61403a1b95d0f367fde9e12725/py_spy-0.3.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "5fe1b3405305ad3971444352ca651449", "sha256": "715790fa5a2105118d7140f8ea10e7f35faeecec463c39941a94eb94d46095eb" }, "downloads": -1, "filename": "py_spy-0.3.2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "5fe1b3405305ad3971444352ca651449", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1458750, "upload_time": "2020-01-02T01:24:21", "upload_time_iso_8601": "2020-01-02T01:24:21.907122Z", "url": "https://files.pythonhosted.org/packages/1c/6f/46bbd84bdfd8b89fe2afaf1d01444b10fcaf936c642c1723595532524cb6/py_spy-0.3.2-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11fe4f0de565484b32cc96bb8388ca69", "sha256": "fe138bb2347cde8a928bb9f0047e37f229a4cc9806287688b4346b1083c477c9" }, "downloads": -1, "filename": "py_spy-0.3.2-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "11fe4f0de565484b32cc96bb8388ca69", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2365207, "upload_time": "2020-01-02T01:24:24", "upload_time_iso_8601": "2020-01-02T01:24:24.663858Z", "url": "https://files.pythonhosted.org/packages/80/eb/6a4b0b748c9c3a3a174ff017045ac3e6ba35266431de707d75d971a191be/py_spy-0.3.2-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "701d9632ef7a236ffeefcbd2b9c7bdef", "sha256": "888d0906be1f79c9669e7df608979f70aa75609631a0c2a0ffc7b3ab03a5efaa" }, "downloads": -1, "filename": "py_spy-0.3.2-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "701d9632ef7a236ffeefcbd2b9c7bdef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2844062, "upload_time": "2020-01-02T01:24:26", "upload_time_iso_8601": "2020-01-02T01:24:26.930390Z", "url": "https://files.pythonhosted.org/packages/4f/a2/ebd4e717eba57a8192834497411822c5ec8597287f50c4ec034d1cfe47b1/py_spy-0.3.2-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2829870fcf90b3a5a29f48b45f20df19", "sha256": "e336cddfb6563c71ca9956ce3a778b4954ef7035878b5336bab8f64ad6ef8b37" }, "downloads": -1, "filename": "py_spy-0.3.2-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2829870fcf90b3a5a29f48b45f20df19", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1398880, "upload_time": "2020-01-02T01:53:01", "upload_time_iso_8601": "2020-01-02T01:53:01.202314Z", "url": "https://files.pythonhosted.org/packages/df/04/2b939912e9f8400580d3d25ee7ae803f64be5099b11119b6cb47d46dc5ac/py_spy-0.3.2-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "19b05282e8abc649d37dcf72c8953b7f", "sha256": "ac0ef13fc2bd67593be1d3fcd1bbee93a6324715b3c2944218e50eadb966c46e" }, "downloads": -1, "filename": "py_spy-0.3.3-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "19b05282e8abc649d37dcf72c8953b7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1487370, "upload_time": "2020-02-24T05:47:39", "upload_time_iso_8601": "2020-02-24T05:47:39.570356Z", "url": "https://files.pythonhosted.org/packages/60/fa/55656827fedfe0728ea70225115065bef1ff000d7ce0604e9c1f4c84a2f2/py_spy-0.3.3-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c70e49688388cfd0ab0f169897358a06", "sha256": "72eb5c0495b050e6e9424ea373ff7245a01554e98f218d89f8f979c0cd762681" }, "downloads": -1, "filename": "py_spy-0.3.3-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c70e49688388cfd0ab0f169897358a06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2402835, "upload_time": "2020-02-24T05:47:41", "upload_time_iso_8601": "2020-02-24T05:47:41.651507Z", "url": "https://files.pythonhosted.org/packages/11/f0/20a67fd3dfe1a693bfb37b785615e4a468558d1f4607e8498fd2a959eb49/py_spy-0.3.3-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0adaac62f85f4667155cb82e98c6c39b", "sha256": "e9d6946741c267fe82aef18d2fc1e095a90a83fb5f3d9fc89b0f20a39613a639" }, "downloads": -1, "filename": "py_spy-0.3.3-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0adaac62f85f4667155cb82e98c6c39b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2877113, "upload_time": "2020-02-24T05:47:43", "upload_time_iso_8601": "2020-02-24T05:47:43.797120Z", "url": "https://files.pythonhosted.org/packages/8e/a7/ab45c9ee3c4654edda3efbd6b8e2fa4962226718a7e3e3be6e3926bf3617/py_spy-0.3.3-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eedb0f2528371eeccf127b951b81ddda", "sha256": "51d9db79bf6956bbbfcd40b7d1c6733daffec08884f54d0907ed2c55a109a266" }, "downloads": -1, "filename": "py_spy-0.3.3-py2.py3-none-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "eedb0f2528371eeccf127b951b81ddda", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2435283, "upload_time": "2021-01-16T23:14:15", "upload_time_iso_8601": "2021-01-16T23:14:15.268124Z", "url": "https://files.pythonhosted.org/packages/80/a4/24965e1a481b00f17a1dfd15fd91cd57ac46df803defc4a8ba97d414b21a/py_spy-0.3.3-py2.py3-none-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea9806c2c41ca0d849eb774036b3afb1", "sha256": "d5e947c1ecf1d85e2f5ecac95cf190e374dd2834e5a67f35f52b35e45c74d600" }, "downloads": -1, "filename": "py_spy-0.3.3-py2.py3-none-manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "ea9806c2c41ca0d849eb774036b3afb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2567960, "upload_time": "2021-01-16T22:31:11", "upload_time_iso_8601": "2021-01-16T22:31:11.282902Z", "url": "https://files.pythonhosted.org/packages/ab/db/911702ecdb1905df468f372c3ce9c4663facb3897602150d2ecd2cfa1b60/py_spy-0.3.3-py2.py3-none-manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ac5c4a74b3a3f050e16d72c472fd6ef", "sha256": "a165d444cfbf24cdcdfe8cdaa858a179e1fae43adcb912e5efb3151362f67aa8" }, "downloads": -1, "filename": "py_spy-0.3.3-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "1ac5c4a74b3a3f050e16d72c472fd6ef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1429854, "upload_time": "2020-02-24T06:03:52", "upload_time_iso_8601": "2020-02-24T06:03:52.865823Z", "url": "https://files.pythonhosted.org/packages/b7/34/52f5898e58a69257afeef18f97701d99942959f5abb9f8b31676055ee6b7/py_spy-0.3.3-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "2f78213064e9d7eac49d6768e1149974", "sha256": "d2c8df54fc02ccbbcf918aa681428b6005041a54f5147c72e5838a485ed218ac" }, "downloads": -1, "filename": "py_spy-0.3.4-py2.py3-none-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "2f78213064e9d7eac49d6768e1149974", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1535493, "upload_time": "2021-01-17T20:43:46", "upload_time_iso_8601": "2021-01-17T20:43:46.833620Z", "url": "https://files.pythonhosted.org/packages/14/4a/f11c5e21ed57a7e6545f5ec995eeff033c44ac685195ca512bd81f69ab54/py_spy-0.3.4-py2.py3-none-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1927c29a7426df05c7e48ba9ccf052f", "sha256": "1a2f57ed4a8a76e0d646bd6729d099a9ffba205c85ad20ad620a4b8d6b4ece23" }, "downloads": -1, "filename": "py_spy-0.3.4-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e1927c29a7426df05c7e48ba9ccf052f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2679176, "upload_time": "2021-01-17T20:43:48", "upload_time_iso_8601": "2021-01-17T20:43:48.779159Z", "url": "https://files.pythonhosted.org/packages/3c/a7/11ca3f227cb350235b738221a5b373b742d4a32314a96078e2e5a894acbd/py_spy-0.3.4-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83c6af45b21f267f60a84a981ae69dad", "sha256": "6a7de1398417ff8074dd9b29cc73bd829ee308880fec62438153717198b8a438" }, "downloads": -1, "filename": "py_spy-0.3.4-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83c6af45b21f267f60a84a981ae69dad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3171506, "upload_time": "2021-01-17T20:43:50", "upload_time_iso_8601": "2021-01-17T20:43:50.128744Z", "url": "https://files.pythonhosted.org/packages/0c/b7/2056a6f06adb93f679f2a1e415dd33219b7c66ba69b8fd2ff1668b8064ed/py_spy-0.3.4-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5d801cd63960f289b353228e3c3e8da", "sha256": "516bfe4b9f19d8c7f1bfe7b6fde72254f8bce98d5093dba4d2e20aedbfb50f86" }, "downloads": -1, "filename": "py_spy-0.3.4-py2.py3-none-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "f5d801cd63960f289b353228e3c3e8da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2434831, "upload_time": "2021-01-17T20:43:51", "upload_time_iso_8601": "2021-01-17T20:43:51.551628Z", "url": "https://files.pythonhosted.org/packages/95/c6/e0f80329449558e0841c09e6776a7c2832296361da8f9d4ee137c5b231a3/py_spy-0.3.4-py2.py3-none-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2efb16944897975bc6d274e8a02720de", "sha256": "d66bd359ab6e0e7d44e450796dcc7df98e814cbb9ea9dddb63bf3f5c329cf696" }, "downloads": -1, "filename": "py_spy-0.3.4-py2.py3-none-manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "2efb16944897975bc6d274e8a02720de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2566951, "upload_time": "2021-01-17T20:43:52", "upload_time_iso_8601": "2021-01-17T20:43:52.854434Z", "url": "https://files.pythonhosted.org/packages/ae/35/d088b82009650edfeac94713937c179e9563f09eef5919d252791016757e/py_spy-0.3.4-py2.py3-none-manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b456261af42da352ff4d8aeea40faa4", "sha256": "c11cce00304b067450096258d9ac0123d8071397fe8b8120f9fc70092c69815d" }, "downloads": -1, "filename": "py_spy-0.3.4-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "5b456261af42da352ff4d8aeea40faa4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1406888, "upload_time": "2021-01-17T20:43:54", "upload_time_iso_8601": "2021-01-17T20:43:54.098195Z", "url": "https://files.pythonhosted.org/packages/d9/53/82ec2c43f9cd924ea23aa883f3e63117d843bdee0b746b809c6e5c4b9c84/py_spy-0.3.4-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "593c503178708445c0d91a1b19478a59", "sha256": "a9f947c4cfe390b50413029ca29eeb230a956b6a631ea042f69b4c2ab5bfa3e7" }, "downloads": -1, "filename": "py_spy-0.3.5-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "593c503178708445c0d91a1b19478a59", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1559202, "upload_time": "2021-03-22T04:28:35", "upload_time_iso_8601": "2021-03-22T04:28:35.383742Z", "url": "https://files.pythonhosted.org/packages/eb/ae/b20fe87175e58bcfc924b59bd6749472dcee9635f0ca2c16d4fe1ed4f161/py_spy-0.3.5-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03f546eaadc3f719e1e0720ed184cf5c", "sha256": "e45f4150edc72d1c32935a18a338d4210ac207655651bd4633fc5498ad194f5f" }, "downloads": -1, "filename": "py_spy-0.3.5-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "03f546eaadc3f719e1e0720ed184cf5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2703118, "upload_time": "2021-03-22T04:28:36", "upload_time_iso_8601": "2021-03-22T04:28:36.557022Z", "url": "https://files.pythonhosted.org/packages/4b/9a/d00aca6b957c0d230766c3e1c1364516e583d538314f04b50ce445c1f02e/py_spy-0.3.5-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2e704c0e48b5778ea761fead512ffa6", "sha256": "cfd8ec91f60a47d611a3e077bc80291a6730375e449275753034eb083e510c89" }, "downloads": -1, "filename": "py_spy-0.3.5-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f2e704c0e48b5778ea761fead512ffa6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3109590, "upload_time": "2021-03-22T04:28:37", "upload_time_iso_8601": "2021-03-22T04:28:37.936856Z", "url": "https://files.pythonhosted.org/packages/fa/a6/52515fe345fad06a567feb0ee3841bface31f00e1e0dcd401aa16b3fc648/py_spy-0.3.5-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6337654e73d82fa99b36451ead404a6a", "sha256": "51b5ccdac7d46b5bd95e6f16f1398a450f8ae02039d74378f9e4d091d1398fac" }, "downloads": -1, "filename": "py_spy-0.3.5-py2.py3-none-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "6337654e73d82fa99b36451ead404a6a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2452176, "upload_time": "2021-03-22T04:28:39", "upload_time_iso_8601": "2021-03-22T04:28:39.347879Z", "url": "https://files.pythonhosted.org/packages/b7/1f/f58306cf8cc36359835e08c0a0d2aa4e8e7dca037731ddb3e7313d633df0/py_spy-0.3.5-py2.py3-none-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23278bcef39424cf96497bc7f1916ffe", "sha256": "f4c4b0fcf30a1e6d4b0147779e9ee7c15b34234f1e5d4582ab94bb38535b518e" }, "downloads": -1, "filename": "py_spy-0.3.5-py2.py3-none-manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "23278bcef39424cf96497bc7f1916ffe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2590159, "upload_time": "2021-03-22T04:28:40", "upload_time_iso_8601": "2021-03-22T04:28:40.714127Z", "url": "https://files.pythonhosted.org/packages/d6/95/7a77de283da0504f7d27ef8ce96f70042c589630cf99547450b3d0478f8a/py_spy-0.3.5-py2.py3-none-manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "caa1fa56e4529c8ab6ff5e4bd9acd2f5", "sha256": "1dea6e3e1e3ec4a4b2ac8f96b316f8d0f9289f2c61ab657f6e2b37a49bff4e57" }, "downloads": -1, "filename": "py_spy-0.3.5-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "caa1fa56e4529c8ab6ff5e4bd9acd2f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1407509, "upload_time": "2021-03-22T04:28:42", "upload_time_iso_8601": "2021-03-22T04:28:42.118792Z", "url": "https://files.pythonhosted.org/packages/63/66/dd00585a87294073c80e7e6605c34c9913b0f035601e7ccacb53a0f96e97/py_spy-0.3.5-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "2455caa92f2d3d185dec9164449745ae", "sha256": "289af2c912a0a0d440691dce542ec13d87e3ff8bde41add184d802ee6164c73d" }, "downloads": -1, "filename": "py_spy-0.3.6-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2455caa92f2d3d185dec9164449745ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1574513, "upload_time": "2021-05-06T16:27:43", "upload_time_iso_8601": "2021-05-06T16:27:43.357428Z", "url": "https://files.pythonhosted.org/packages/90/3d/34bfc6886c105359a37d43f10a16a3b48ffd9ec994ca6fb7e7fc43e37488/py_spy-0.3.6-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bfe5939aaea72f3b02fbe7abedb8ecd", "sha256": "f17ab93a99c8ec77e8210d8e5d329a97bb1b1ce5f842af4b90b67a8f35a3ccb5" }, "downloads": -1, "filename": "py_spy-0.3.6-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8bfe5939aaea72f3b02fbe7abedb8ecd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2708938, "upload_time": "2021-05-06T16:27:44", "upload_time_iso_8601": "2021-05-06T16:27:44.694789Z", "url": "https://files.pythonhosted.org/packages/a8/44/a8046b59958d35dbad778a7bba35617c0441cbaeba0d03df4cf9096a0618/py_spy-0.3.6-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2646a1658129785490d2e4b81cfa25c4", "sha256": "325fc1835c0aa472c9160eae8fdd8d68700ffd34bf349039789d8e4d7818ad38" }, "downloads": -1, "filename": "py_spy-0.3.6-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2646a1658129785490d2e4b81cfa25c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3113965, "upload_time": "2021-05-06T16:27:46", "upload_time_iso_8601": "2021-05-06T16:27:46.090783Z", "url": "https://files.pythonhosted.org/packages/bc/5f/586c5399b30e5589ff1f6e09eaf96ae810fe4071340677cbaed9a5fc2947/py_spy-0.3.6-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2831778afde542b664cfd36550ee7751", "sha256": "ba9f809ecc0b5cc61947435e1c4f41c8b0381dbf109959e9583a48075cbdccf6" }, "downloads": -1, "filename": "py_spy-0.3.6-py2.py3-none-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "2831778afde542b664cfd36550ee7751", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2455557, "upload_time": "2021-05-06T16:27:47", "upload_time_iso_8601": "2021-05-06T16:27:47.730680Z", "url": "https://files.pythonhosted.org/packages/9f/06/6f509f5c2837017f2f011439d7e7fd0c4b72ad213aca31fd376bb001471e/py_spy-0.3.6-py2.py3-none-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1a578a6cc48d821fc64b48b053e4e55", "sha256": "b569e7df537b05c88cc8c3161a99cf2d1af9a05fd283bc0a76a0c8b6b1d93f92" }, "downloads": -1, "filename": "py_spy-0.3.6-py2.py3-none-manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "d1a578a6cc48d821fc64b48b053e4e55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2600592, "upload_time": "2021-05-06T16:27:49", "upload_time_iso_8601": "2021-05-06T16:27:49.586782Z", "url": "https://files.pythonhosted.org/packages/06/d6/c05331e142c2cc5e65f37aaf4913b2fb881e3887873419e28f7119e52645/py_spy-0.3.6-py2.py3-none-manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60d0b2f4f22709dc60c496b708221cf5", "sha256": "cd20d46473ab1d5d4e2f9ecd1b0e765c916a052ff8674ec8da9f14784f441fb9" }, "downloads": -1, "filename": "py_spy-0.3.6-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "60d0b2f4f22709dc60c496b708221cf5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1419664, "upload_time": "2021-05-06T16:27:51", "upload_time_iso_8601": "2021-05-06T16:27:51.106782Z", "url": "https://files.pythonhosted.org/packages/a7/39/b50728da7495efa65a633064a0b71336a1e5c16b15b7837d50841a657ff2/py_spy-0.3.6-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "d2b576ecb580bfa2b92eada500cd1829", "sha256": "23d9d63e5aefd5fed7eab0f48d615f22a67e1fe46f95ea7e66dde0ce603e0025" }, "downloads": -1, "filename": "py_spy-0.3.7-py2.py3-none-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d2b576ecb580bfa2b92eada500cd1829", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1565783, "upload_time": "2021-05-16T17:48:19", "upload_time_iso_8601": "2021-05-16T17:48:19.553828Z", "url": "https://files.pythonhosted.org/packages/20/2d/17a5b80d0cfe5878d445cccc31a675ba94fa6db81188d6e2a03b040b058b/py_spy-0.3.7-py2.py3-none-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7022aacc2cfb86b9fce856a3f3fb7967", "sha256": "16d5a364b13c98666789de1335a2df5d9ef8bf8953b9f77d1b25ed3c4e006228" }, "downloads": -1, "filename": "py_spy-0.3.7-py2.py3-none-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7022aacc2cfb86b9fce856a3f3fb7967", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2709120, "upload_time": "2021-05-16T17:48:20", "upload_time_iso_8601": "2021-05-16T17:48:20.970783Z", "url": "https://files.pythonhosted.org/packages/1e/8c/2d1fd2b77c275a4b6ec16fbee843300fe3093f9b7bbdb087dd7ec941ee68/py_spy-0.3.7-py2.py3-none-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ffd6ba214e08257a9ad1a8e8c560a36", "sha256": "2199b9d5c4927243168465ae65dd5015ffcc607d027a03493b96a0bcf086adbc" }, "downloads": -1, "filename": "py_spy-0.3.7-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ffd6ba214e08257a9ad1a8e8c560a36", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3116876, "upload_time": "2021-05-16T17:48:22", "upload_time_iso_8601": "2021-05-16T17:48:22.229998Z", "url": "https://files.pythonhosted.org/packages/9d/4d/1a9cbe9a0b543e6733cb38afe26451522a9ef8e4897b59e74cc76838f245/py_spy-0.3.7-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea7f2fc473f294d10016e100fefa35ce", "sha256": "9250ab23c70e3d37eea5cbb8e54a2295ab506d7d4903ce5c350f6ae79e9015b8" }, "downloads": -1, "filename": "py_spy-0.3.7-py2.py3-none-manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "ea7f2fc473f294d10016e100fefa35ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2458257, "upload_time": "2021-05-16T17:48:23", "upload_time_iso_8601": "2021-05-16T17:48:23.491270Z", "url": "https://files.pythonhosted.org/packages/74/d6/9d0486c158bbffb2cfd33ee529d901afab1cdca2b99c7f67635dd6cb8781/py_spy-0.3.7-py2.py3-none-manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65ffc9c01b16ab6117154b9a0470b486", "sha256": "989cdc65d22d99fd02e671f633d3f52d380dcc382090569bb2c74131c2ac5a8f" }, "downloads": -1, "filename": "py_spy-0.3.7-py2.py3-none-manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "65ffc9c01b16ab6117154b9a0470b486", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2605136, "upload_time": "2021-05-16T17:48:24", "upload_time_iso_8601": "2021-05-16T17:48:24.440037Z", "url": "https://files.pythonhosted.org/packages/aa/68/47a99e0e0661c81a48b811c514dd3b990b3e613dfa6e8671d2d543914ad4/py_spy-0.3.7-py2.py3-none-manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcc562267b3d4fe1469f256996cadb14", "sha256": "a186e94f0bbb5394d6a4223bfe2dffca652a29a29f3921104d25284586122223" }, "downloads": -1, "filename": "py_spy-0.3.7-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "fcc562267b3d4fe1469f256996cadb14", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1372672, "upload_time": "2021-05-16T17:48:25", "upload_time_iso_8601": "2021-05-16T17:48:25.660904Z", "url": "https://files.pythonhosted.org/packages/70/2f/121927147add37744cda944cd6eefa4d64bb579c59364869aacb369bd154/py_spy-0.3.7-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "ac516dcf19d8806788fa5057541d8143", "sha256": "f13a61fc643fb99bfb3e133d6d92534121ce21a9e5a237da919bd635ad438e5e" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "ac516dcf19d8806788fa5057541d8143", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1572980, "upload_time": "2021-07-31T06:45:09", "upload_time_iso_8601": "2021-07-31T06:45:09.471561Z", "url": "https://files.pythonhosted.org/packages/38/c9/b43e8095ef27cd7f6083b868b1465ef4449704ed64cdec266f736f2cdf9a/py_spy-0.3.8-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc8abd06ffb9a852036041dbb512e30b", "sha256": "ee84219d9187f8e6693ff02f3cea975f7edf75440fef3fa060bac4338615e1ed" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "cc8abd06ffb9a852036041dbb512e30b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3063816, "upload_time": "2021-07-31T06:45:11", "upload_time_iso_8601": "2021-07-31T06:45:11.243817Z", "url": "https://files.pythonhosted.org/packages/4b/dd/58d889046e2a1a79e7bfde6c048bf27848894b6c4292339038d98091873a/py_spy-0.3.8-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb0d79406167e44df89866d059d9c9c7", "sha256": "6b085fb41994006c4e29be6605bda5275e23c7cf78993f1fe64203d6811dad77" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "fb0d79406167e44df89866d059d9c9c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2467952, "upload_time": "2021-07-31T06:45:13", "upload_time_iso_8601": "2021-07-31T06:45:13.006970Z", "url": "https://files.pythonhosted.org/packages/45/7b/323a514b21ae2470495a57c0f63b5c8bb292b86f839cd8b64ab7b55fc6ec/py_spy-0.3.8-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a4692e2955f71e4452f12da8663f1cf", "sha256": "0503a0189b2030f7bb794e72f4b08b30d99efb5fc42d3d6ed901a21118280c60" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "9a4692e2955f71e4452f12da8663f1cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2617473, "upload_time": "2021-07-31T06:45:14", "upload_time_iso_8601": "2021-07-31T06:45:14.510782Z", "url": "https://files.pythonhosted.org/packages/7f/45/f5a2d56af3a6c475f8db9c90064cec7bf2f49a214121d8ef85f878f491c5/py_spy-0.3.8-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "539126de14c181e77b1b4735bb1fec9a", "sha256": "5ef21e03dfc8d6ae55d3da450daeb8495f96e47ca150a535a7c98de85bfbe290" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "539126de14c181e77b1b4735bb1fec9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2722791, "upload_time": "2021-07-31T06:45:16", "upload_time_iso_8601": "2021-07-31T06:45:16.279802Z", "url": "https://files.pythonhosted.org/packages/9e/e6/95000f3ee0fa8ae612bf14e1cd11bfebf065f05a10d64ee2105ce5f8f308/py_spy-0.3.8-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e70c52f90c934674dca66bdb0c14788", "sha256": "281afa786bd3a70a8375029f47f34b23aec02d9b06ed9b7cab8741c4e8cb8e32" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e70c52f90c934674dca66bdb0c14788", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3130295, "upload_time": "2021-07-31T06:45:17", "upload_time_iso_8601": "2021-07-31T06:45:17.661182Z", "url": "https://files.pythonhosted.org/packages/54/17/c4b831a75a7ec13a717a429df9116859799c43c2ad14c9612427b3d52883/py_spy-0.3.8-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c720045dfbf204e3b4f855b8d382e007", "sha256": "3f55b6ef89b069166b6bd8927cccf0f960d6233875110f1de92159498c7a38c5" }, "downloads": -1, "filename": "py_spy-0.3.8-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "c720045dfbf204e3b4f855b8d382e007", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1379798, "upload_time": "2021-07-31T06:45:19", "upload_time_iso_8601": "2021-07-31T06:45:19.022781Z", "url": "https://files.pythonhosted.org/packages/36/0e/6cc65529422af4bda2bfa9d1f2f8037b4411107893c9a88af87d6cf83d7a/py_spy-0.3.8-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92c45a4fa3c0a9b535a0710c3527d907", "sha256": "eeb8961605e9071a8d501e43f9cd4896bc50efd58a891aa435735fb8d2ba21dd" }, "downloads": -1, "filename": "py_spy-0.3.8.tar.gz", "has_sig": false, "md5_digest": "92c45a4fa3c0a9b535a0710c3527d907", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144450, "upload_time": "2021-07-31T06:45:20", "upload_time_iso_8601": "2021-07-31T06:45:20.487722Z", "url": "https://files.pythonhosted.org/packages/f5/76/2f4e86d1e3be2e8a04ae27bebade04e456028fd12aecbe2edbf236206a02/py_spy-0.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "5c586ba4075e360e576cde751f0817dc", "sha256": "3c80c50a5b6b25a761c3688f9205330d20e4862152ef65a821349d5993ffe4a0" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "5c586ba4075e360e576cde751f0817dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1593448, "upload_time": "2021-09-09T05:55:28", "upload_time_iso_8601": "2021-09-09T05:55:28.906674Z", "url": "https://files.pythonhosted.org/packages/0e/58/309914bf01acdc34bb18f7f37b04fd588d7fd5044442b029f25102ad93bd/py_spy-0.3.9-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0556ac12e55d145fbca6709335fec9e", "sha256": "c39178711e83e921aa15c61ebd37fbcd205cce8250c6844bfa3ce493ec09ff49" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "c0556ac12e55d145fbca6709335fec9e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3070816, "upload_time": "2021-09-09T05:55:30", "upload_time_iso_8601": "2021-09-09T05:55:30.478920Z", "url": "https://files.pythonhosted.org/packages/da/4e/ddc7e31f40f4257b6c8e813533cfd088fa78e4730f9d110885598039e90a/py_spy-0.3.9-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f59ccec7f823cb40b52e61186db9d05", "sha256": "a43be414930cae73672d89d2c57c45fffa0d68a2c259047c50eab174f635528f" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "3f59ccec7f823cb40b52e61186db9d05", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2507212, "upload_time": "2021-09-09T05:55:32", "upload_time_iso_8601": "2021-09-09T05:55:32.095166Z", "url": "https://files.pythonhosted.org/packages/0e/10/303d0193a23bf0289c5cd3ae3ebf1efdda5595524a035997b6696647892b/py_spy-0.3.9-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74fafbab540c9a4b9786cfe5e735ee45", "sha256": "1f76f97029f8839306d8a38e10319b8695d1ed4fa693396341b3ba9a9b4c8ff6" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "74fafbab540c9a4b9786cfe5e735ee45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2660718, "upload_time": "2021-09-09T05:55:33", "upload_time_iso_8601": "2021-09-09T05:55:33.610781Z", "url": "https://files.pythonhosted.org/packages/81/63/e4a6e8f11ae40bb5cd7b8e6b634dcb80952f4d90d8bdd23d6495803b92d8/py_spy-0.3.9-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc82a10ae1633c3c718d26daf5a48e9e", "sha256": "3df9b490c40882ce9291037997496c281b3f0c6f50c5f0b9b0a159ba0f5ad43c" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "dc82a10ae1633c3c718d26daf5a48e9e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2765803, "upload_time": "2021-09-09T05:55:34", "upload_time_iso_8601": "2021-09-09T05:55:34.866387Z", "url": "https://files.pythonhosted.org/packages/dc/4c/b551428d57538520e637cae1c33f1124d87f45fa8e126ec164e355adb16a/py_spy-0.3.9-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1e4fbff0ed4dcbf2bded3853c43b1e6", "sha256": "8105e691eca41849e7940db49b340697a117f4b7a091fc248cf7d13be2bbc7d2" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d1e4fbff0ed4dcbf2bded3853c43b1e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3173903, "upload_time": "2021-09-09T05:55:35", "upload_time_iso_8601": "2021-09-09T05:55:35.927351Z", "url": "https://files.pythonhosted.org/packages/64/85/478bc8ede466b54e373d56367008c779bda12f37bd595f81d9871f812068/py_spy-0.3.9-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a680fd36a29630c519ed4299ece63bbb", "sha256": "31e556317501dbf70ef14cb180f652905e7776228b79ba2c642f5deb5e826cf5" }, "downloads": -1, "filename": "py_spy-0.3.9-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a680fd36a29630c519ed4299ece63bbb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1406966, "upload_time": "2021-09-09T05:55:36", "upload_time_iso_8601": "2021-09-09T05:55:36.997241Z", "url": "https://files.pythonhosted.org/packages/6d/26/4a8fec9bb29467d7eaadca46c99a472c923649bd1f001a730d0cb8708dcb/py_spy-0.3.9-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbf7364de4fa60d375c6231bc860f4cf", "sha256": "127148a0de9264c9e036509c1596ca7402438bf7906c16a082e335af7a0d4261" }, "downloads": -1, "filename": "py_spy-0.3.9.tar.gz", "has_sig": false, "md5_digest": "dbf7364de4fa60d375c6231bc860f4cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147042, "upload_time": "2021-09-09T05:55:37", "upload_time_iso_8601": "2021-09-09T05:55:37.821827Z", "url": "https://files.pythonhosted.org/packages/ef/60/36edea93af54b67111dcbb7b2b9d991a4bdee81e299275b0b450f10cea61/py_spy-0.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0.dev0": [ { "comment_text": "", "digests": { "md5": "762f4ca1c30628e3b73a8a8cbf08d0e7", "sha256": "d7467de767f1bf3dad6c903471a7493c1c501ff0716aa19e26c85a4243026854" }, "downloads": -1, "filename": "py_spy-0.4.0.dev0-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "762f4ca1c30628e3b73a8a8cbf08d0e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1920053, "upload_time": "2020-04-05T05:29:35", "upload_time_iso_8601": "2020-04-05T05:29:35.804013Z", "url": "https://files.pythonhosted.org/packages/a2/3c/10d3f0dafb9132153d1a255e50cc281f63a47cc04751c9283773ba1f1895/py_spy-0.4.0.dev0-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7df26dcd637a37b4e164a5f8c8c50a37", "sha256": "dd7b741210465d9c6e151673f0702c8a02b16c2bf6bc05df4a2bea731a697645" }, "downloads": -1, "filename": "py_spy-0.4.0.dev0-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7df26dcd637a37b4e164a5f8c8c50a37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2889549, "upload_time": "2020-04-05T05:29:38", "upload_time_iso_8601": "2020-04-05T05:29:38.371530Z", "url": "https://files.pythonhosted.org/packages/a6/ea/54baf5b5cfb9491fed31353059bb3c8df3b31387ae22e643dec0cae620a8/py_spy-0.4.0.dev0-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.4.0.dev1": [ { "comment_text": "", "digests": { "md5": "d43210f29f1b6cee37979aee5b8e0c6d", "sha256": "9ce5c825bdfbb4683f183b19d522bf9da19b568c9982a404e190f8f7c5a41bf2" }, "downloads": -1, "filename": "py_spy-0.4.0.dev1-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "d43210f29f1b6cee37979aee5b8e0c6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1926693, "upload_time": "2020-06-22T23:38:51", "upload_time_iso_8601": "2020-06-22T23:38:51.143507Z", "url": "https://files.pythonhosted.org/packages/28/d1/ca312c66e0c057b24940318cd0f6b9680e758fe2194bd2d92cc1613506ad/py_spy-0.4.0.dev1-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "069f4f97cd3aa8666dff1253ce123482", "sha256": "dd1dc8226c22bdc759dca661de80a67928872ad82e03a9166f2516ff32912ce4" }, "downloads": -1, "filename": "py_spy-0.4.0.dev1-py2.py3-none-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "069f4f97cd3aa8666dff1253ce123482", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3044130, "upload_time": "2020-06-22T23:38:53", "upload_time_iso_8601": "2020-06-22T23:38:53.393791Z", "url": "https://files.pythonhosted.org/packages/d5/19/508f97270d9d57d46797303e09bceeeea7c850451d528ac4cf0bdc680848/py_spy-0.4.0.dev1-py2.py3-none-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.4.0.dev2": [ { "comment_text": "", "digests": { "md5": "342da6f04f4f3d7bdef2f58926278f71", "sha256": "394652136a0aaecfbbf9f6ea076f7fe9e0425a1bad8bbc7b5291b75fbf2abbbf" }, "downloads": -1, "filename": "py_spy-0.4.0_dev2-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "342da6f04f4f3d7bdef2f58926278f71", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2002973, "upload_time": "2022-05-03T04:24:35", "upload_time_iso_8601": "2022-05-03T04:24:35.170776Z", "url": "https://files.pythonhosted.org/packages/d1/7a/a53125263dbd6306664bf9dc78b78983676605ecaa962a9ee51974c75b2e/py_spy-0.4.0_dev2-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "232867142fd23e2477f2a9aadecdce51", "sha256": "5916b5dd16166984e285b672c5213a93e946d04e701b9c50fa084bb16776e771" }, "downloads": -1, "filename": "py_spy-0.4.0_dev2-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "232867142fd23e2477f2a9aadecdce51", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3849015, "upload_time": "2022-05-03T04:24:38", "upload_time_iso_8601": "2022-05-03T04:24:38.199785Z", "url": "https://files.pythonhosted.org/packages/74/21/e12d3c42d4c2142ab3d1d4950a4e7d9ef5b967461772531486d21b1ca2ab/py_spy-0.4.0_dev2-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1193b12533b385d2f1b178e18abd5981", "sha256": "e23ebc63e267bd6f34842492e470f0566d4ee7c0f6894090807697492cc42eae" }, "downloads": -1, "filename": "py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "1193b12533b385d2f1b178e18abd5981", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2475138, "upload_time": "2022-05-03T04:24:40", "upload_time_iso_8601": "2022-05-03T04:24:40.808327Z", "url": "https://files.pythonhosted.org/packages/87/8c/86b4b861298042c1c6d7c25b98b04d1027d73ffb3c575b7a22cba0a21542/py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "056569a156dc59c24a8d2d91079d0493", "sha256": "3b889640f181b481c8f3461d1e2462d5657573c1a22b60cf99b3439408bd2d74" }, "downloads": -1, "filename": "py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "056569a156dc59c24a8d2d91079d0493", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2814621, "upload_time": "2022-05-03T04:24:43", "upload_time_iso_8601": "2022-05-03T04:24:43.357846Z", "url": "https://files.pythonhosted.org/packages/24/6e/d2345beff42787d2d62539076328cb63214a252cedded194de4edc52b57a/py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d130a45bd6bae3970606db00cd0c894a", "sha256": "5b39fcf9448f4ad91e5335d72d7cbcce2e944ab346b2692d6930ddb56662b036" }, "downloads": -1, "filename": "py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "d130a45bd6bae3970606db00cd0c894a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2661760, "upload_time": "2022-05-03T04:24:45", "upload_time_iso_8601": "2022-05-03T04:24:45.481250Z", "url": "https://files.pythonhosted.org/packages/3f/ac/73ae653c26a22f37f8177ac15cff3fdde1e2e1ffad686182e541890140f0/py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d03c96b369937df44b9c315dff171d62", "sha256": "92d6402bf657476c9fee98f378a11a9dc4f843cb6672e5201dc28716e220358e" }, "downloads": -1, "filename": "py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d03c96b369937df44b9c315dff171d62", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2929331, "upload_time": "2022-05-03T04:24:47", "upload_time_iso_8601": "2022-05-03T04:24:47.944929Z", "url": "https://files.pythonhosted.org/packages/9b/d0/05960647dff90db78258e05e8dded678a6acd399049b670f7d279d9c202f/py_spy-0.4.0_dev2-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b3006efc3e5e0003f9fc570456fec918", "sha256": "608f8cb370d0f9b3bc31999502b375bf8fef555a6bf37e66980ac9e6b340ee2c" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b3006efc3e5e0003f9fc570456fec918", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1608030, "upload_time": "2022-05-17T00:33:00", "upload_time_iso_8601": "2022-05-17T00:33:00.565087Z", "url": "https://files.pythonhosted.org/packages/1e/81/c747f035df5ebf1c9a5e8c108c17346744ea812cbc3186d7f54575b330c9/py_spy-0.3.12-py2.py3-none-macosx_10_7_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bdc7236d39b2fa8c2bedc14540cc6de", "sha256": "333c2917ad4383fa105c2caea6d3e375019579888e39942e5062d7048c0132ee" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "9bdc7236d39b2fa8c2bedc14540cc6de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3109261, "upload_time": "2022-05-17T00:33:02", "upload_time_iso_8601": "2022-05-17T00:33:02.221421Z", "url": "https://files.pythonhosted.org/packages/f4/56/3b2bc15261959abe4238aa30521a0dd155135c225b33f6d948e79314d1f3/py_spy-0.3.12-py2.py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a23699fea38ceb4a26daa4e345cd2bcb", "sha256": "b205dd347ebd4e4f97a4b89950c0caab1ec969f57133ebc2ad6dd66b9c25552d" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "a23699fea38ceb4a26daa4e345cd2bcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2539239, "upload_time": "2022-05-17T00:33:04", "upload_time_iso_8601": "2022-05-17T00:33:04.580596Z", "url": "https://files.pythonhosted.org/packages/ad/06/0fd93647e453475c1bd41cd7e21b2ab6f70c71512f7e35dd7994cfb13ed5/py_spy-0.3.12-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85ab498bbe8b2c9f16cb1862f237bcef", "sha256": "3514ba939e7c682e7955cd79dcc79f5e1ce6483e044756925a61e7fb1e80ef77" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "has_sig": false, "md5_digest": "85ab498bbe8b2c9f16cb1862f237bcef", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2779528, "upload_time": "2022-05-17T00:33:05", "upload_time_iso_8601": "2022-05-17T00:33:05.821655Z", "url": "https://files.pythonhosted.org/packages/ff/4f/e6bcfca12b0bf079efbd305fca5f9204fc868752942e4b8817baf9d66b68/py_spy-0.3.12-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "089772a23a6e3a8fb8a164bdb0257eee", "sha256": "1ae0e11aac6e1c8679c13251b010ac4aa59230087a09f14517431f66333d7600" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "has_sig": false, "md5_digest": "089772a23a6e3a8fb8a164bdb0257eee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2765071, "upload_time": "2022-05-17T00:33:07", "upload_time_iso_8601": "2022-05-17T00:33:07.490543Z", "url": "https://files.pythonhosted.org/packages/e5/26/27afad975f87f12d697d783461dc8c0701fd69d57e47b1a7545084e1800f/py_spy-0.3.12-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcb3f7125020f7a33da1ea45da9d7857", "sha256": "04005cf6c8367fcdfa039745e00db79f175a1265843daaa9872f8dbb46042763" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bcb3f7125020f7a33da1ea45da9d7857", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3058542, "upload_time": "2022-05-17T00:33:09", "upload_time_iso_8601": "2022-05-17T00:33:09.544211Z", "url": "https://files.pythonhosted.org/packages/7e/22/c8be95e1d7871b9d842aab90d33edc271e737528d9a1d19ca3e58883c486/py_spy-0.3.12-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68fd09a59ebd339cf7c8b3885acf3ff4", "sha256": "78e96915423bceee1c81e3aa177772c4e299e063e42afbbf2a1918a1facc8b27" }, "downloads": -1, "filename": "py_spy-0.3.12-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "68fd09a59ebd339cf7c8b3885acf3ff4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1448285, "upload_time": "2022-05-17T00:33:11", "upload_time_iso_8601": "2022-05-17T00:33:11.374368Z", "url": "https://files.pythonhosted.org/packages/e4/11/df690ee5eff9de988df01c7beded3b6801e9c586a914f03e9f2b0e642a23/py_spy-0.3.12-py2.py3-none-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf1a5d5cc2de0d306e4539bacd335a01", "sha256": "e76f115e9b7f1ae629df5a42daf78e3df727cdc31e70e0520c441281dfe18794" }, "downloads": -1, "filename": "py_spy-0.3.12.tar.gz", "has_sig": false, "md5_digest": "cf1a5d5cc2de0d306e4539bacd335a01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157234, "upload_time": "2022-05-17T00:33:12", "upload_time_iso_8601": "2022-05-17T00:33:12.779588Z", "url": "https://files.pythonhosted.org/packages/79/7a/9330b41f067ace032b1231ed26eab0cfbf61403a1b95d0f367fde9e12725/py_spy-0.3.12.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }