Skip to main content

Hunter is a flexible code tracing toolkit, not for measuring coverage, but for debugging, logging, inspection and other nefarious purposes. It has a simple Python API, a convenient terminal API and a CLI tool to attach to processes.

  • Free software: BSD 2-Clause License

Installation

pip install hunter

Documentation

https://python-hunter.readthedocs.io/

Getting started

Basic use involves passing various filters to the trace option. An example:

import hunter
hunter.trace(module='posixpath', action=hunter.CallPrinter)

import os
os.path.join('a', 'b')

That would result in:

>>> os.path.join('a', 'b')
         /usr/lib/python3.6/posixpath.py:75    call      => join(a='a')
         /usr/lib/python3.6/posixpath.py:80    line         a = os.fspath(a)
         /usr/lib/python3.6/posixpath.py:81    line         sep = _get_sep(a)
         /usr/lib/python3.6/posixpath.py:41    call         => _get_sep(path='a')
         /usr/lib/python3.6/posixpath.py:42    line            if isinstance(path, bytes):
         /usr/lib/python3.6/posixpath.py:45    line            return '/'
         /usr/lib/python3.6/posixpath.py:45    return       <= _get_sep: '/'
         /usr/lib/python3.6/posixpath.py:82    line         path = a
         /usr/lib/python3.6/posixpath.py:83    line         try:
         /usr/lib/python3.6/posixpath.py:84    line         if not p:
         /usr/lib/python3.6/posixpath.py:86    line         for b in map(os.fspath, p):
         /usr/lib/python3.6/posixpath.py:87    line         if b.startswith(sep):
         /usr/lib/python3.6/posixpath.py:89    line         elif not path or path.endswith(sep):
         /usr/lib/python3.6/posixpath.py:92    line         path += sep + b
         /usr/lib/python3.6/posixpath.py:86    line         for b in map(os.fspath, p):
         /usr/lib/python3.6/posixpath.py:96    line         return path
         /usr/lib/python3.6/posixpath.py:96    return    <= join: 'a/b'
'a/b'

In a terminal it would look like:

https://raw.githubusercontent.com/ionelmc/python-hunter/master/docs/code-trace.png

Another useful scenario is to ignore all standard modules and force colors to make them stay even if the output is redirected to a file.

import hunter
hunter.trace(stdlib=False, action=hunter.CallPrinter(force_colors=True))

Actions

Output format can be controlled with “actions”. There’s an alternative CodePrinter action that doesn’t handle nesting (it was the default action until Hunter 2.0).

If filters match then action will be run. Example:

import hunter
hunter.trace(module='posixpath', action=hunter.CodePrinter)

import os
os.path.join('a', 'b')

That would result in:

>>> os.path.join('a', 'b')
         /usr/lib/python3.6/posixpath.py:75    call      def join(a, *p):
         /usr/lib/python3.6/posixpath.py:80    line          a = os.fspath(a)
         /usr/lib/python3.6/posixpath.py:81    line          sep = _get_sep(a)
         /usr/lib/python3.6/posixpath.py:41    call      def _get_sep(path):
         /usr/lib/python3.6/posixpath.py:42    line          if isinstance(path, bytes):
         /usr/lib/python3.6/posixpath.py:45    line              return '/'
         /usr/lib/python3.6/posixpath.py:45    return            return '/'
                                               ...       return value: '/'
         /usr/lib/python3.6/posixpath.py:82    line          path = a
         /usr/lib/python3.6/posixpath.py:83    line          try:
         /usr/lib/python3.6/posixpath.py:84    line              if not p:
         /usr/lib/python3.6/posixpath.py:86    line              for b in map(os.fspath, p):
         /usr/lib/python3.6/posixpath.py:87    line                  if b.startswith(sep):
         /usr/lib/python3.6/posixpath.py:89    line                  elif not path or path.endswith(sep):
         /usr/lib/python3.6/posixpath.py:92    line                      path += sep + b
         /usr/lib/python3.6/posixpath.py:86    line              for b in map(os.fspath, p):
         /usr/lib/python3.6/posixpath.py:96    line          return path
         /usr/lib/python3.6/posixpath.py:96    return        return path
                                               ...       return value: 'a/b'
'a/b'
  • or in a terminal:

https://raw.githubusercontent.com/ionelmc/python-hunter/master/docs/simple-trace.png

Another useful action is the VarsPrinter:

import hunter
# note that this kind of invocation will also use the default `CallPrinter` action
hunter.trace(hunter.Q(module='posixpath', action=hunter.VarsPrinter('path')))

import os
os.path.join('a', 'b')

That would result in:

>>> os.path.join('a', 'b')
     /usr/lib/python3.6/posixpath.py:75    call      => join(a='a')
     /usr/lib/python3.6/posixpath.py:80    line         a = os.fspath(a)
     /usr/lib/python3.6/posixpath.py:81    line         sep = _get_sep(a)
     /usr/lib/python3.6/posixpath.py:41    call      [path => 'a']
     /usr/lib/python3.6/posixpath.py:41    call         => _get_sep(path='a')
     /usr/lib/python3.6/posixpath.py:42    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:42    line            if isinstance(path, bytes):
     /usr/lib/python3.6/posixpath.py:45    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:45    line            return '/'
     /usr/lib/python3.6/posixpath.py:45    return    [path => 'a']
     /usr/lib/python3.6/posixpath.py:45    return       <= _get_sep: '/'
     /usr/lib/python3.6/posixpath.py:82    line         path = a
     /usr/lib/python3.6/posixpath.py:83    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:83    line         try:
     /usr/lib/python3.6/posixpath.py:84    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:84    line         if not p:
     /usr/lib/python3.6/posixpath.py:86    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:86    line         for b in map(os.fspath, p):
     /usr/lib/python3.6/posixpath.py:87    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:87    line         if b.startswith(sep):
     /usr/lib/python3.6/posixpath.py:89    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:89    line         elif not path or path.endswith(sep):
     /usr/lib/python3.6/posixpath.py:92    line      [path => 'a']
     /usr/lib/python3.6/posixpath.py:92    line         path += sep + b
     /usr/lib/python3.6/posixpath.py:86    line      [path => 'a/b']
     /usr/lib/python3.6/posixpath.py:86    line         for b in map(os.fspath, p):
     /usr/lib/python3.6/posixpath.py:96    line      [path => 'a/b']
     /usr/lib/python3.6/posixpath.py:96    line         return path
     /usr/lib/python3.6/posixpath.py:96    return    [path => 'a/b']
     /usr/lib/python3.6/posixpath.py:96    return    <= join: 'a/b'
'a/b'

In a terminal it would look like:

https://raw.githubusercontent.com/ionelmc/python-hunter/master/docs/vars-trace.png

You can give it a tree-like configuration where you can optionally configure specific actions for parts of the tree (like dumping variables or a pdb set_trace):

from hunter import trace, Q, Debugger
from pdb import Pdb

trace(
    # drop into a Pdb session if ``foo.bar()`` is called
    Q(module="foo", function="bar", kind="call", action=Debugger(klass=Pdb))
    |  # or
    Q(
        # show code that contains "mumbo.jumbo" on the current line
        lambda event: event.locals.get("mumbo") == "jumbo",
        # and it's not in Python's stdlib
        stdlib=False,
        # and it contains "mumbo" on the current line
        source__contains="mumbo"
    )
)

import foo
foo.func()

With a foo.py like this:

def bar():
    execution_will_get_stopped  # cause we get a Pdb session here

def func():
    mumbo = 1
    mumbo = "jumbo"
    print("not shown in trace")
    print(mumbo)
    mumbo = 2
    print(mumbo) # not shown in trace
    bar()

We get:

>>> foo.func()
not shown in trace
    /home/ionel/osp/python-hunter/foo.py:8     line          print(mumbo)
jumbo
    /home/ionel/osp/python-hunter/foo.py:9     line          mumbo = 2
2
    /home/ionel/osp/python-hunter/foo.py:1     call      def bar():
> /home/ionel/osp/python-hunter/foo.py(2)bar()
-> execution_will_get_stopped  # cause we get a Pdb session here
(Pdb)

In a terminal it would look like:

https://raw.githubusercontent.com/ionelmc/python-hunter/master/docs/tree-trace.png

Tracing processes

In similar fashion to strace Hunter can trace other processes, eg:

hunter-trace --gdb -p 123

If you wanna play it safe (no messy GDB) then add this in your code:

from hunter import remote
remote.install()

Then you can do:

hunter-trace -p 123

See docs on the remote feature.

Note: Windows ain’t supported.

Environment variable activation

For your convenience environment variable activation is available. Just run your app like this:

PYTHONHUNTER="module='os.path'" python yourapp.py

On Windows you’d do something like:

set PYTHONHUNTER=module='os.path'
python yourapp.py

The activation works with a clever .pth file that checks for that env var presence and before your app runs does something like this:

from hunter import *
trace(<whatever-you-had-in-the-PYTHONHUNTER-env-var>)

Note that Hunter is activated even if the env var is empty, eg: PYTHONHUNTER="".

Environment variable configuration

Sometimes you always use the same options (like stdlib=False or force_colors=True). To save typing you can set something like this in your environment:

PYTHONHUNTERCONFIG="stdlib=False,force_colors=True"

This is the same as PYTHONHUNTER="stdlib=False,action=CallPrinter(force_colors=True)".

Notes:

  • Setting PYTHONHUNTERCONFIG alone doesn’t activate hunter.

  • All the options for the builtin actions are supported.

  • Although using predicates is supported it can be problematic. Example of setup that won’t trace anything:

    PYTHONHUNTERCONFIG="Q(module_startswith='django')"
    PYTHONHUNTER="Q(module_startswith='celery')"

    which is the equivalent of:

    PYTHONHUNTER="Q(module_startswith='django'),Q(module_startswith='celery')"

    which is the equivalent of:

    PYTHONHUNTER="Q(module_startswith='django')&Q(module_startswith='celery')"

Filtering DSL

Hunter supports a flexible query DSL, see the introduction.

Development

To run the all tests run:

tox

Design notes

Hunter doesn’t do everything. As a design goal of this library some things are made intentionally austere and verbose (to avoid complexity, confusion and inconsistency). This has few consequences:

  • There are Operators but there’s no negation operator. Instead you’re expected to negate a Query object, eg: ~Q(module='re').

  • There are no specialized operators or filters - all filters behave exactly the same. For example:

    • No filter for packages. You’re expected to filter by module with an operator.

    • No filter for arguments, return values or variables. You’re expected to write your own filter function and deal with the problems of poking into objects.

  • Layering is minimal. There’s are some helpers that do some argument processing and conversions to save you some typing but that’s about it.

  • The library doesn’t try to hide the mechanics of tracing in Python - it’s 1:1 regarding what Python sends to a trace function if you’d be using sys.settrace.

  • Doesn’t have any storage. You are expected to redirect output to a file.

You should look at it like it’s a tool to help you understand and debug big applications, or a framework ridding you of the boring parts of settrace, not something that helps you learn Python.

FAQ

Why not Smiley?

There’s some obvious overlap with smiley but there are few fundamental differences:

  • Complexity. Smiley is simply over-engineered:

    • It uses IPC and a SQL database.

    • It has a webserver. Lots of dependencies.

    • It uses threads. Side-effects and subtle bugs are introduced in your code.

    • It records everything. Tries to dump any variable. Often fails and stops working.

    Why do you need all that just to debug some stuff in a terminal? Simply put, it’s a nice idea but the design choices work against you when you’re already neck-deep into debugging your own code. In my experience Smiley has been very buggy and unreliable. Your mileage may vary of course.

  • Tracing long running code. This will make Smiley record lots of data, making it unusable.

    Now because Smiley records everything, you’d think it’s better suited for short programs. But alas, if your program runs quickly then it’s pointless to record the execution. You can just run it again.

    It seems there’s only one situation where it’s reasonable to use Smiley: tracing io-bound apps remotely. Those apps don’t execute lots of code, they just wait on network so Smiley’s storage won’t blow out of proportion and tracing overhead might be acceptable.

  • Use-cases. It seems to me Smiley’s purpose is not really debugging code, but more of a “non interactive monitoring” tool.

In contrast, Hunter is very simple:

  • Few dependencies.

  • Low overhead (tracing/filtering code has an optional Cython extension).

  • No storage. This simplifies lots of things.

    The only cost is that you might need to run the code multiple times to get the filtering/actions right. This means Hunter is not really suited for “post-mortem” debugging. If you can’t reproduce the problem anymore then Hunter won’t be of much help.

Why not pytrace?

Pytrace is another tracer tool. It seems quite similar to Smiley - it uses a sqlite database for the events, threads and IPC, thus it’s reasonable to expect the same kind of problems.

Why not PySnooper or snoop?

snoop is a refined version of PySnooper. Both are more suited to tracing small programs or functions as the output is more verbose and less suited to the needs of tracing a big application where Hunter provides more flexible setup, filtering capabilities, speed and brevity.

Why not coverage?

For purposes of debugging coverage is a great tool but only as far as “debugging by looking at what code is (not) run”. Checking branch coverage is good but it will only get you as far.

From the other perspective, you’d be wondering if you could use Hunter to measure coverage-like things. You could do it but for that purpose Hunter is very “rough”: it has no builtin storage. You’d have to implement your own storage. You can do it but it wouldn’t give you any advantage over making your own tracer if you don’t need to “pre-filter” whatever you’re recording.

In other words, filtering events is the main selling point of Hunter - it’s fast (cython implementation) and the query API is flexible enough.

Projects using Hunter

Noteworthy usages or Hunter (submit a PR with your project if you built a tool that relies on hunter):

More projects using it at https://github.com/ionelmc/python-hunter/network/dependents

Changelog

3.5.1 (2022-09-27)

  • Fixed breakage in hunter-trace when Ctrl-C.

3.5.0 (2022-09-11)

  • Add support for generators and coroutines in the hunter.wrap decorator.

  • Dropped support for Python 3.6.

3.4.3 (2021-12-15)

  • Removed most of the Python 2 support code.

  • Fix some refactoring regression in setup.py and make the 3.4.x series installable only on Python 3.6 and later.

  • Yank 3.4.0, 3.4.1, 3.4.2 releases to avoid install problems on Python 2.7.

3.4.2 (2021-12-15)

  • Fixed CI to properly make win32 wheels.

3.4.1 (2021-12-14)

  • Add support for building a pp37.pp38 tagged wheel (basically an universal wheel installable just for those two PyPy versions).

3.4.0 (2021-12-14)

  • Switched CI to GitHub Actions, this has a couple consequences:

    • Support for Python 2.7 is dropped. You can still install it there but it’s not tested anymore and Python 2 specific handling will be removed at some point.

    • Linux wheels are now provided in musllinux and manylinux2014 variants.

  • Extension building is now completely skipped on PyPy.

  • A pure but tagged as platform specific wheel is now provided for PyPy (to have fast installs there as well).

3.3.8 (2021-06-23)

  • Fixed CI problem that publishes same type of wheels two times.

3.3.7 (2021-06-23)

  • Fixed a bug with how stdlib is detected on Windows (at least).

3.3.6 (2021-06-23)

  • Fixed regression from 3.3.4: stdlib filter was broken.

  • Improved the pth file (PYTHONHUNTER environment variable activation) to use a clean eval environment. No bogus variables like line (from the site.py machinery) will be available anymore.

  • Fixed a bug in VarsSnooper that would make it fail in rare situation where a double return event is emitted.

3.3.5 (2021-06-11)

  • Added support for Python 3.10.

  • Added support for time objects and the fold option in safe_repr.

  • 3.3.4 was skipped cause I messed up the CI.

3.3.3 (2021-05-04)

  • Fixed tracer still being active for other threads after it was stopped.

    Python unfortunately only allows removing the trace function for the current thread - now hunter.tracer.Tracer will uninstall itself if it’s marked as stopped.

    This fixes bogus errors that appear when using ipdb with the hunter.actions.Debugger action while thread support is enabled (the default).

3.3.2 (2021-03-25)

  • Changed CI to build Python 3.9 wheels. Python 3.5 no longer tested and wheels no longer built to keep things simple.

  • Documentation improvements.

3.3.1 (2020-10-24)

  • Fixed CI/test issues that prevented all of 21 wheels being published.

3.3.0 (2020-10-23)

  • Fixed handling so that hunter.event.Event.module is always the "?" string instead of None. Previously it was None when tracing particularly broken code and broke various predicates.

  • Similarly hunter.event.Event.filename is now "?" if there’s no filename available.

  • Building on the previous changes the actions have simpler code for displaying missing module/filenames.

  • Changed hunter.actions.CallPrinter so that trace events for builtin functions are displayed differently. These events appear when using profile mode (eg: trace(profile=True)).

  • Fixed failure that could occur if hunter.event.Event.module is an unicode string. Now it’s always a regular string. Only applies to Python 2.

  • Fixed argument display when tracing functions with tuple arguments. Closes #88. Only applies to Python 2.

  • Improved error reporting when internal failures occur. Now some details about the triggering event are logged.

3.2.2 (2020-09-04)

  • Fixed oversight over what value is in hunter.event.Event.builtin. Now it’s always a boolean, and can be used consistently in filters (eg: builtin=True,function='getattr').

3.2.1 (2020-08-18)

  • Added support for regex, date and datetime in safe_repr.

  • Fixed call argument display when positional and keyword arguments are used in hunter.actions.CallPrinter.

3.2.0 (2020-08-16)

  • Implemented the hunter.actions.StackPrinter action.

  • Implemented the hunter.predicates.Backlog predicate. Contributed by Dan Ailenei in #81.

  • Improved contributing section in docs a bit. Contributed by Tom Schraitle in #85.

  • Improved filtering performance by avoiding a lot of unnecessary PyObject_GetAttr calls in the Cython implementation of hunter.predicates.Backlog.

  • Implemented the hunter.actions.ErrorSnooper action.

  • Added support for profiling mode (eg: trace(profile=True)). This mode will use setprofile instead of settrace.

  • Added ARM64 wheels and CI.

  • Added hunter.event.Event.instruction and hunter.event.Event.builtin (usable in profile mode).

  • Added more cookbook entries.

3.1.3 (2020-02-02)

  • Improved again the stdlib check to handle certain paths better.

3.1.2 (2019-01-19)

  • Really fixed the <frozen importlib.something stdlib check.

3.1.1 (2019-01-19)

  • Marked all the <frozen importlib.something files as part of stdlib.

3.1.0 (2019-01-19)

  • Added hunter.actions.ErrorSnooper - an action that detects silenced exceptions.

  • Added hunter.load_config and fixed issues with configuration being loaded too late from the PYTHONHUNTERCONFIG environment variable.

  • Changed hunter.From helper to automatically move depth and calls filters to the predicate (so they filter after hunter.predicates.From activates).

  • Changed hunter.predicates.From to pass a copy of event to the predicate. The copy will have the depth and calls attributes adjusted to the point where hunter.predicates.From activated.

  • Fixed a bunch of inconsistencies and bugs when using & and | operators with predicates.

  • Fixed a bunch of broken fields on detached events <hunter.event.Event.detach> (hunter.event.Event.function_object and hunter.event.Event.arg).

  • Improved docstrings in various and added a configuration doc section.

  • Improved testing (more coverage).

3.0.5 (2019-12-06)

  • Really fixed safe_repr so it doesn’t cause side-effects (now isinstance/issubclass are avoided - they can cause side-effects in code that abuses descriptors in special attributes/methods).

3.0.4 (2019-10-26)

  • Really fixed stream setup in actions (using force_colors without any stream was broken). See: hunter.actions.ColorStreamAction.

  • Fixed __repr__ for the hunter.predicates.From predicate to include watermark.

  • Added binary wheels for Python 3.8.

3.0.3 (2019-10-13)

  • Fixed safe_repr on pypy so it’s safer on method objects. See: hunter.actions.ColorStreamAction.

3.0.2 (2019-10-10)

  • Fixed setting stream from PYTHONHUNTERCONFIG environment variable. See: hunter.actions.ColorStreamAction.

  • Fixed a couple minor documentation issues.

3.0.1 (2019-06-17)

  • Fixed issue with coloring missing source message (coloring leaked into next line).

3.0.0 (2019-06-17)

  • The package now uses setuptools-scm for development builds (available at https://test.pypi.org/project/hunter/). As a consequence installing the sdist will download setuptools-scm.

  • Recompiled cython modules with latest Cython. Hunter can be installed without any Cython, as before.

  • Refactored some of the cython modules to have more typing information and not use deprecated property syntax.

  • Replaced unsafe_repr option with repr_func. Now you can use your custom repr function in the builtin actions. BACKWARDS INCOMPATIBLE

  • Fixed buggy filename handling when using Hunter in ipython/jupyter. Source code should be properly displayed now.

  • Removed globals option from VarsPrinter action. Globals are now always looked up. BACKWARDS INCOMPATIBLE

  • Added support for locals in VarsPrinter action. Now you can do VarsPrinter('len(foobar)').

  • Always pass module_globals dict to linecache methods. Source code from PEP-302 loaders is now printed properly. Contributed by Mikhail Borisov in #65.

  • Various code cleanup, style and docstring fixing.

  • Added hunter.From helper to allow passing in filters directly as keyword arguments.

  • Added hunter.event.Event.detach for storing events without leaks or side-effects (due to prolonged references to Frame objects, local or global variables).

  • Refactored the internals of actions for easier subclassing.

    Added the hunter.actions.ColorStreamAction.filename_prefix, hunter.actions.ColorStreamAction.output, hunter.actions.ColorStreamAction.pid_prefix, hunter.actions.ColorStreamAction.thread_prefix, hunter.actions.ColorStreamAction.try_repr and hunter.actions.ColorStreamAction.try_source methods to the hunter.actions.ColorStreamAction baseclass.

  • Added hunter.actions.VarsSnooper - a PySnooper-inspired variant of hunter.actions.VarsPrinter. It will record and show variable changes, with the risk of leaking or using too much memory of course :)

  • Fixed tracers to log error and automatically stop if there’s an internal failure. Previously error may have been silently dropped in some situations.

2.2.1 (2019-01-19)

  • Fixed a link in changelog.

  • Fixed some issues in the Travis configuration.

2.2.0 (2019-01-19)

  • Added hunter.predicates.From predicate for tracing from a specific point. It stop after returning back to the same call depth with a configurable offset.

  • Fixed PYTHONHUNTERCONFIG not working in some situations (config values were resolved at the wrong time).

  • Made tests in CI test the wheel that will eventually be published to PyPI (tox-wheel).

  • Made event.stdlib more reliable: pkg_resources is considered part of stdlib and few more paths will be considered as stdlib.

  • Dumbed down the get_peercred check that is done when attaching with hunter-trace CLI (via hunter.remote.install()). It will be slightly insecure but will work on OSX.

  • Added OSX in the Travis test grid.

2.1.0 (2018-11-17)

  • Made threading_support on by default but output automatic (also, now 1 or 0 allowed).

  • Added pid_alignment and force_pid action options to show a pid prefix.

  • Fixed some bugs around __eq__ in various classes.

  • Dropped Python 3.3 support.

  • Dropped dependency on fields.

  • Actions now repr using a simplified implementation that tries to avoid calling __repr__ on user classes in order to avoid creating side-effects while tracing.

  • Added support for the PYTHONHUNTERCONFIG environment variable (stores defaults and doesn’t activate hunter).

2.0.2 (2017-11-24)

  • Fixed indentation in hunter.actions.CallPrinter action (shouldn’t deindent on exception).

  • Fixed option filtering in Cython Query implementation (filtering on tracer was allowed by mistake).

  • Various fixes to docstrings and docs.

2.0.1 (2017-09-09)

  • Now Py_AddPendingCall is used instead of acquiring the GIL (when using GDB).

2.0.0 (2017-09-02)

  • Added the hunter.event.Event.count and hunter.event.Event.calls attributes.

  • Added the lt/lte/gt/gte lookups.

  • Added convenience aliases for startswith (sw), endswith (ew), contains (has) and regex (rx).

  • Added a convenience hunter.wrap decorator to start tracing around a function.

  • Added support for remote tracing (with two backends: manhole and GDB) via the hunter-trace bin. Note: Windows is NOT SUPPORTED.

  • Changed the default action to hunter.actions.CallPrinter. You’ll need to use action=CodePrinter if you want the old output.

1.4.1 (2016-09-24)

  • Fix support for getting sources for Cython module (it was broken on Windows and Python3.5+).

1.4.0 (2016-09-24)

  • Added support for tracing Cython modules (#30). A # cython: linetrace=True stanza or equivalent is required in Cython modules for this to work.

1.3.0 (2016-04-14)

  • Added hunter.event.Event.thread.

  • Added hunter.event.Event.threadid and hunter.event.Event.threadname (available for filtering with hunter.Q).

  • Added hunter.event.Event.threading_support argument to hunter.trace. It makes new threads be traced and changes action output to include thread name.

  • Added support for using pdb++ in the hunter.actions.Debugger action.

  • Added support for using manhole via a new hunter.actions.Manhole action.

  • Made the hunter.event.Event.handler a public but readonly property.

1.2.2 (2016-01-28)

  • Fix broken import. Require fields>=4.0.

  • Simplify a string check in Cython code.

1.2.1 (2016-01-27)

  • Fix “KeyError: ‘normal’” bug in hunter.actions.CallPrinter. Create the NO_COLORS dict from the COLOR dicts. Some keys were missing.

1.2.0 (2016-01-24)

  • Fixed printouts of objects that return very large string in __repr__(). Trimmed to 512. Configurable in actions with the repr_limit option.

  • Improved validation of hunter.actions.VarsPrinter’s initializer.

  • Added a hunter.actions.CallPrinter action.

1.1.0 (2016-01-21)

  • Implemented a destructor (__dealloc__) for the Cython tracer.

  • Improved the restoring of the previous tracer in the Cython tracer (use PyEval_SetTrace) directly.

  • Removed tracer as an allowed filtering argument in hunter.Query.

  • Add basic validation (must be callable) for positional arguments and actions passed into hunter.Q. Closes #23.

  • Fixed stdlib checks (wasn’t very reliable). Closes #24.

1.0.2 (2016-01-05)

  • Fixed missing import in setup.py.

1.0.1 (2015-12-24)

  • Fix a compile issue with the MSVC compiler (seems it don’t like the inline option on the fast_When_call).

1.0.0 (2015-12-24)

  • Implemented fast tracer and query objects in Cython. MAY BE BACKWARDS INCOMPATIBLE

    To force using the old pure-python implementation set the PUREPYTHONHUNTER environment variable to non-empty value.

  • Added filtering operators: contains, startswith, endswith and in. Examples:

    • Q(module_startswith='foo' will match events from foo, foo.bar and foobar.

    • Q(module_startswith=['foo', 'bar'] will match events from foo, foo.bar, foobar, bar, bar.foo and baroo .

    • Q(module_endswith='bar' will match events from foo.bar and foobar.

    • Q(module_contains='ip' will match events from lipsum.

    • Q(module_in=['foo', 'bar'] will match events from foo and bar.

    • Q(module_regex=r"(re|sre.*)\b") will match events from ``re, re.foobar, srefoobar but not from repr.

  • Removed the merge option. Now when you call hunter.trace(...) multiple times only the last one is active. BACKWARDS INCOMPATIBLE

  • Remove the previous_tracer handling. Now when you call hunter.trace(...) the previous tracer (whatever was in sys.gettrace()) is disabled and restored when hunter.stop() is called. BACKWARDS INCOMPATIBLE

  • Fixed CodePrinter to show module name if it fails to get any sources.

0.6.0 (2015-10-10)

  • Added a clear_env_var option on the tracer (disables tracing in subprocess).

  • Added force_colors option on hunter.actions.VarsPrinter and hunter.actions.CodePrinter.

  • Allowed setting the stream to a file name (option on hunter.actions.VarsPrinter and hunter.actions.CodePrinter).

  • Bumped up the filename alignment to 40 cols.

  • If not merging then self is not kept as a previous tracer anymore. Closes #16.

  • Fixed handling in VarsPrinter: properly print eval errors and don’t try to show anything if there’s an AttributeError. Closes #18.

  • Added a stdlib boolean flag (for filtering purposes). Closes #15.

  • Fixed broken frames that have “None” for filename or module (so they can still be treated as strings).

  • Corrected output files in the install_lib command so that pip can uninstall the pth file. This only works when it’s installed with pip (sadly, setup.py install/develop and pip install -e will still leave pth garbage on pip uninstall hunter).

0.5.1 (2015-04-15)

  • Fixed hunter.event.Event.globals to actually be the dict of global vars (it was just the locals).

0.5.0 (2015-04-06)

  • Fixed hunter.And and hunter.Or “single argument unwrapping”.

  • Implemented predicate compression. Example: Or(Or(a, b), c) is converted to Or(a, b, c).

  • Renamed hunter.event.Event.source to hunter.event.Event.fullsource.

  • Added hunter.event.Event.source that doesn’t do any fancy sourcecode tokenization.

  • Fixed hunter.event.Event.fullsource return value for situations where the tokenizer would fail.

  • Made the print function available in the PYTHONHUNTER env var payload.

  • Added a __repr__ for hunter.event.Event.

0.4.0 (2015-03-29)

  • Disabled colors for Jython. Contributed by Claudiu Popa in #12.

  • Test suite fixes for Windows. Contributed by Claudiu Popa in #11.

  • Added an introduction section in the docs.

  • Implemented a prettier fallback for when no sources are available for that frame.

  • Implemented fixups in cases where you use action classes as a predicates.

0.3.1 (2015-03-29)

  • Forgot to merge some commits …

0.3.0 (2015-03-29)

  • Added handling for internal repr failures.

  • Fixed issues with displaying code that has non-ascii characters.

  • Implemented better display for call frames so that when a function has decorators the function definition is shown (instead of just the first decorator). See: #8.

0.2.1 (2015-03-28)

  • Added missing color entry for exception events.

  • Added hunter.event.Event.line property. It returns the source code for the line being run.

0.2.0 (2015-03-27)

  • Added color support (and colorama as dependency).

  • Added support for expressions in hunter.actions.VarsPrinter.

  • Breaking changes:

    • Renamed F to hunter.Q. And hunter.Q is now just a convenience wrapper for hunter.predicates.Query.

    • Renamed the PYTHON_HUNTER env variable to PYTHONHUNTER.

    • Changed hunter.predicates.When to take positional arguments.

    • Changed output to show 2 path components (still not configurable).

    • Changed hunter.actions.VarsPrinter to take positional arguments for the names.

  • Improved error reporting for env variable activation (PYTHONHUNTER).

  • Fixed env var activator (the .pth file) installation with setup.py install (the “egg installs”) and setup.py develop/pip install -e (the “egg links”).

0.1.0 (2015-03-22)

  • First release on PyPI.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hunter-3.5.1.tar.gz (561.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hunter-3.5.1-pp39-pypy39_pp73-any.whl (52.2 kB view details)

Uploaded PyPy

hunter-3.5.1-pp38-pypy38_pp73-any.whl (52.2 kB view details)

Uploaded PyPy

hunter-3.5.1-pp37-pypy37_pp73-any.whl (53.3 kB view details)

Uploaded PyPy

hunter-3.5.1-cp310-cp310-win_amd64.whl (247.2 kB view details)

Uploaded CPython 3.10Windows x86-64

hunter-3.5.1-cp310-cp310-win32.whl (214.5 kB view details)

Uploaded CPython 3.10Windows x86

hunter-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

hunter-3.5.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hunter-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hunter-3.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hunter-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl (301.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

hunter-3.5.1-cp39-cp39-win_amd64.whl (251.2 kB view details)

Uploaded CPython 3.9Windows x86-64

hunter-3.5.1-cp39-cp39-win32.whl (217.3 kB view details)

Uploaded CPython 3.9Windows x86

hunter-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

hunter-3.5.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hunter-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hunter-3.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hunter-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl (300.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

hunter-3.5.1-cp38-cp38-win_amd64.whl (251.2 kB view details)

Uploaded CPython 3.8Windows x86-64

hunter-3.5.1-cp38-cp38-win32.whl (217.2 kB view details)

Uploaded CPython 3.8Windows x86

hunter-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

hunter-3.5.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hunter-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hunter-3.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hunter-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl (295.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

hunter-3.5.1-cp37-cp37m-win_amd64.whl (245.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

hunter-3.5.1-cp37-cp37m-win32.whl (214.1 kB view details)

Uploaded CPython 3.7mWindows x86

hunter-3.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

hunter-3.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hunter-3.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

hunter-3.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hunter-3.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file hunter-3.5.1.tar.gz.

File metadata

  • Download URL: hunter-3.5.1.tar.gz
  • Upload date:
  • Size: 561.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1.tar.gz
Algorithm Hash digest
SHA256 cdf094a5f3c85b1f95bb9d4f508d505225984ae03fc1ad9c364866584b1dbc95
MD5 07af92a08618e0fd9fa407f203dbd930
BLAKE2b-256 7a809ae486f9edc40db99594473984a85d420bd21aeb14ad3c0f391529beb4c6

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-pp39-pypy39_pp73-any.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-pp39-pypy39_pp73-any.whl
Algorithm Hash digest
SHA256 3a560848776714702e870336c4dfe837fab84cc9f1d0e68ce9d88434761bf2a3
MD5 0b15657751457999ed0a66efee754749
BLAKE2b-256 77a4ec99cbf26b52ee35d3477f6ed96b5804509e7e4fa763c7c59cf507c6a5c5

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-pp38-pypy38_pp73-any.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-pp38-pypy38_pp73-any.whl
Algorithm Hash digest
SHA256 3acc15539bd732aeafc630b3fdf1729f42f26781b09d56d05447c8c335d9df0c
MD5 0edf1d763cf19d968f1227a8bb107845
BLAKE2b-256 9264c8b23a24bb489d16daa77b2998f21d65960b444f30bdaf0b3099365fcf50

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-pp37-pypy37_pp73-any.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-pp37-pypy37_pp73-any.whl
Algorithm Hash digest
SHA256 75148833876592fd69f0bd499f6d83518bb9d7c28f48e7af2ea90d529880694d
MD5 00fe581af9c05ac71325e97496983f4a
BLAKE2b-256 94cde8a5d8cb93f9a8aef6dfdaffc6d2edac3c96c27c0beb302811209971e30f

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hunter-3.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 247.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b38bb6878c12776ceaab4ba940018b6610320d152b60f41105eabead18820bdd
MD5 aa92cec7a0ce8bab15a5eda6bd8ccdf7
BLAKE2b-256 0f21f2625f08f1d31f1f6f45f3a2526cf914f7f9b3c46821495f644e709f8c04

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: hunter-3.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 214.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7d1e01dcc26ce57f4e4905dc6b83842c6f7b2929cb2329587335ff5cda96b460
MD5 902beb926e376536cc0c9f6266fac9f6
BLAKE2b-256 820c1b8b5d87b387b53c636dd556f5a97f8d1e113cd66247154b81fcc9e9411a

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e31dc84864d32a4f68ec1ccb7bafeca4b32bea68e628e3edbb7626d762c81d3
MD5 713401620d702c7eb1dce2cd55ec3a88
BLAKE2b-256 caf5e9825c59f26a46f14bfbdea5277f63742f94d39fc5786564f51caa30f400

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c977e35120d3dfee3ad75a18b3f28ed9bb422380cb96ed6e38fd4cb3f5bca5d6
MD5 d3c933e385ecb27234c994854c8feb2e
BLAKE2b-256 ae89e9461d8795f10010092695b2360d69cda5b897ebd95381ea565de7530e2f

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bdb134b495db2c645721b28e5b6fcdd7dfb3357f745ec03c98dade9f19be42e
MD5 a4c1633d9f5e9953f8acb703e632f42b
BLAKE2b-256 a425268bd7e68cce54b11231fa1f46f043496e7035ea34503ff3c3a86d3a43b1

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a4ad1074054d11bc0a1a2231ab817dbf81225b394177333823cfa2d41056ccf
MD5 dc76f24157b5162115351a303aa5b33a
BLAKE2b-256 5b03354aaa15c61602e0ac397a92c5adde439840ce6af780af53b4349b002545

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7c50c008ff9dec917ddb46a7d0835bb15835d2433dfebbc5fc359ebb3657de2
MD5 c0b3c65e6094302e9d39fe196a54d44f
BLAKE2b-256 adf2330e37bc99067e56d987d82f2a527099a2b3e9274cd1adf53402af089eb4

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hunter-3.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 251.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 44489258e45cc50f71b294adea493e7a3ad0da9d19f02122f1125d13d6e176fc
MD5 24122ea1aa3d4600d7c29f4c9e1d4ada
BLAKE2b-256 962ee37eaf7b2a79ad6e5b1af331c7245df1448d2fbc350bc066e6baef9a8d1d

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: hunter-3.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 245dc8f2182698e816b36d4404403058342d5a29b6787d33c99a1d8dfcb68db7
MD5 798bfc1ac4861d1a82fbf30383474f51
BLAKE2b-256 2c4ba8790613d79a2890dee0a59ffc8936897e51d04bca4d75aa3f7bf6d247bc

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e9570e7f9a023580d853675df4faa86f73397c8544ad710bbe26ec3c301d3def
MD5 699df61b6f7223defa41cdba031bc14a
BLAKE2b-256 00e4c17e3229662c65125589fb64a424bbe76a5b80f2911e526aa237ca4d843b

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11c689f2e8c140a25b0636231e4dca3a0ffd128415c90b3e26bbe59dd1f38c9e
MD5 bb297333212d624502da0f7ae3a5c614
BLAKE2b-256 02c899e37b7be4301ec63b55b9006db8fe143ec37398284eb4e9ad432dced1b7

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a88f0c13aaa757f43d0cccd5a1ae464f37816dca49bc5eaa626084e43aca967
MD5 d52ab2dca75b46437e8feaa3537828f3
BLAKE2b-256 84338df55f7f85d0a96ea52bf4ea0db0c42edf5cfc2debddeb2a4469abe07edd

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc55f1f58dadafe84ee8537eca1f48df0d50da781f12b0e659850ce9aa66e1ef
MD5 591013cf3103fcbede18e2c56b956a40
BLAKE2b-256 89dda9df588976f44ef47702bf40ef197757a1b819d2e0d697edf86601afa4ae

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c7f67825f2279614df73ae40e6bf0408e081a5182bdb0a79031c7bb7d84ccfc
MD5 6679e160e38bd4a3fae3f586bd880199
BLAKE2b-256 46c0aed9184d46827ed4292edd9d200649a029166ea3241a186c0adc14d9e109

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hunter-3.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 251.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5ff3bb4bb7ea91644e96994fe490d23fc68a22fe868170b331d89ab9dc9bdb19
MD5 d0cd6dda25a16aa17abda2a562ef2b03
BLAKE2b-256 5398a3fafee658f73343a79884f38669629471bc720f7af242c27a214c1e8b82

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: hunter-3.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 217.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6f364403fb52cf0dbf8db20001c6b3c14d919d5209b07613789df91479db85da
MD5 1260f9dd91c8799fb9f152d3cc6b6a86
BLAKE2b-256 0cc7bd47a5cd4e207898cf00329ae0a31e8a90f99009d5b3dd0b1304771afe44

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 735b0473f6077e3fff6d46a072cda86c1809365ac40fe76d8640ec03917352b2
MD5 ff45b4a11ba14152d7e23e5efeae78f8
BLAKE2b-256 e6a9016117eb8c53a1ee620aa0f19bede2257db98d8c609ff5bce287118d09d0

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 62aa4a2fcc8387d034cea90d74c94fb20c7e23b67a1ea83da0a22b8d08843c75
MD5 f276b622dbeae8d56fb52c2a9e18bd4f
BLAKE2b-256 0b81709293f5fb759a4bbf99005891acc215273c84a03850eea6396874a706f8

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36f486ff469ff8d7d52014890fccc48620baac04aa9916ab2d0fe96293d0baa1
MD5 21b4b0ad7057eef047af14e012a91a06
BLAKE2b-256 7518eb2525e1bb38022a97a35735f65b76ddfc694cf6828a39a4f2873670c5fd

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d3c73db113b109f6f3d0195a04cb36058c6d6794751f47a69a6c796297f4d71
MD5 0ee1b6ea0a354d467229a6f390aa8429
BLAKE2b-256 177dab789ed980ce2d9e28a773636b2070fcd6e2f8822d64e1d4d736c6f44899

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2388eae442f2f013b2768019b9368a0dbc9f41c6d404d7a9926555eb02f9c384
MD5 030ae6a9f23e1ac63ab9caca3e1f7cd3
BLAKE2b-256 e4a901889499b433ecb810640227f64d36844b5ef50b8d643752c3d5ea790164

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: hunter-3.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 245.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 342674bbac59819252b779ec66b484927bb975a0d8d4c791a5770b46acf70759
MD5 454bffdc2cfdedc87de6705c23e4b41e
BLAKE2b-256 612bc4f8e545f0b34becead65898de5898324cf15a98f8f56a48eee3b9342ffa

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: hunter-3.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 214.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5064a34d15e4cd5abaf4e5a4fa18021760c5e902a440a88c7b1b77cc80f225ec
MD5 8fcb4b3a7d6763218b092c04cb52cc84
BLAKE2b-256 74831ed613ec6de3c136ab917215d767a68382587acdca717dd6577131d7083f

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 860f46d3bf80af0dc57974718b112aaf64280431bcb260bc66ecdfa09069b7cb
MD5 d442148cf7ed90b54eca127b25e52d78
BLAKE2b-256 bfe543c87ba14f008492dfe90c478a43fe04a75028c48db547e7a64c9b976687

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 05822ff586931c54f32de97484d35b2708bb4fca6eaaa03ae8c683ecd0aacf07
MD5 75236ab157e7422f4f767a8bb7363908
BLAKE2b-256 9f7610b8ea14575b4f18712630e1cb28184b32fa32994bf31e9d102ee88380db

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8537ad7de7dc574897e7f911f27639775d798d8885f19bb8890788fd08aa6399
MD5 77d4b45b1f91d182ee381a67891ece70
BLAKE2b-256 101a5e4f754d48b16e54354ca06ab6c7ca73ee77cd5748c6d8cd449ffd2972df

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b35b7097461e2abd4d7607cea0c43c5ebffd8f10086033b1630e554e247a4256
MD5 da6ed4501e04172fbfacb71266af0e5c
BLAKE2b-256 ba51de6baf725ae3aea36ff6039af6c2a0f9452281dc4eff56be46bdeaaa0048

See more details on using hashes here.

File details

Details for the file hunter-3.5.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7df1349dc141d7dd5914c2e24537bcf347e544e4c83c419b4893979153628cfe
MD5 814997b6a7b4c923c50bbcb90c817c4d
BLAKE2b-256 595f7d8dc44dbda01265a67e476750a03119ae81a3dd0d8b38c9b0d3aa10d948

See more details on using hashes here.

Release history Release notifications | RSS feed

3.9.0

51 files

3.8.0

30 files

3.7.0

37 files

3.6.1

16 files

3.6.0

16 files

This release

3.5.1 This release

32 files

3.5.0

32 files

3.4.3

37 files

3.4.1

32 files

3.4.0

31 files

3.3.8

22 files

3.3.5

22 files

3.3.3

22 files

3.3.2

22 files

3.3.1

22 files

3.3.0

20 files

3.2.2

22 files

3.2.1

22 files

3.2.0

22 files

3.1.3

18 files

3.1.2

18 files

3.1.1

13 files

3.1.0

13 files

3.0.5

18 files

3.0.4

18 files

3.0.3

15 files

3.0.2

14 files

3.0.1

15 files

3.0.0

15 files

2.2.1

18 files

2.2.0.post1

1 file

2.2.0

18 files

2.1.0

22 files

2.0.2

23 files

2.0.1

23 files

2.0.0

23 files

1.4.1

14 files

1.4.0

8 files

1.3.0

14 files

1.2.2

7 files

1.2.1

7 files

1.2.0

7 files

1.1.0

7 files

1.0.2

7 files

1.0.1

7 files

1.0.0

1 file

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

0.0.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page