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/

Overview

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.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.4.3.tar.gz (555.7 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.4.3-pp37.pp38-none-any.whl (51.9 kB view details)

Uploaded PyPy

hunter-3.4.3-cp310-cp310-win_amd64.whl (285.0 kB view details)

Uploaded CPython 3.10Windows x86-64

hunter-3.4.3-cp310-cp310-win32.whl (238.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hunter-3.4.3-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.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hunter-3.4.3-cp310-cp310-macosx_10_9_x86_64.whl (297.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

hunter-3.4.3-cp39-cp39-win_amd64.whl (283.3 kB view details)

Uploaded CPython 3.9Windows x86-64

hunter-3.4.3-cp39-cp39-win32.whl (237.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hunter-3.4.3-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.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hunter-3.4.3-cp39-cp39-macosx_10_9_x86_64.whl (297.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

hunter-3.4.3-cp38-cp38-win_amd64.whl (283.6 kB view details)

Uploaded CPython 3.8Windows x86-64

hunter-3.4.3-cp38-cp38-win32.whl (237.3 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hunter-3.4.3-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.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hunter-3.4.3-cp38-cp38-macosx_10_9_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

hunter-3.4.3-cp37-cp37m-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

hunter-3.4.3-cp37-cp37m-win32.whl (233.5 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hunter-3.4.3-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.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hunter-3.4.3-cp37-cp37m-macosx_10_9_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

hunter-3.4.3-cp36-cp36m-win_amd64.whl (277.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

hunter-3.4.3-cp36-cp36m-win32.whl (233.5 kB view details)

Uploaded CPython 3.6mWindows x86

hunter-3.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

hunter-3.4.3-cp36-cp36m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

hunter-3.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

hunter-3.4.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

hunter-3.4.3-cp36-cp36m-macosx_10_9_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: hunter-3.4.3.tar.gz
  • Upload date:
  • Size: 555.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3.tar.gz
Algorithm Hash digest
SHA256 024bbcf7b98022289407a569f170d2d9a2a1c0c9fed3ef82e938270d49769794
MD5 560d512a92f6b918fc5e6626224faa5f
BLAKE2b-256 2883b9e7f344fecb1fb51901bb6fdae64221da904f1a3b0e7bb12897fce554c1

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-pp37.pp38-none-any.whl.

File metadata

  • Download URL: hunter-3.4.3-pp37.pp38-none-any.whl
  • Upload date:
  • Size: 51.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-pp37.pp38-none-any.whl
Algorithm Hash digest
SHA256 2c75d1078d5cb53333949ffc75d21593d1906b06f637daf7ac1d1316a909ae53
MD5 bfc9bfb00926c5d26242b9efd8885173
BLAKE2b-256 7baac614cee7051be3cf81a75f8d2880a6e7cd35556a32a24c68597c2e4651ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 285.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e87756ab9edd95761b4617384da207196511a61b14e904c693795c133072147
MD5 4ee425c5276d8008616ca31f7dda13cc
BLAKE2b-256 ba1584cc662dede55cdb50ca70cbe0d9babbf134cc5b2548fdf70c8b3d2bd869

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 238.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d6050b202f33292bf5ee7df8418f5aab31528b119e37e8d1ecd28b6225a17207
MD5 26e49da4b8eae5b49371d34088361561
BLAKE2b-256 1989732bdd41f14f64257c2d322c9fea193254bd7e5b7b0f63e6880e79dc4107

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f45e2d6c697effd42d2460de9c1671fc248c8bd8ec50aae1eee2aebb1c76e30b
MD5 62cf4ccc84cb3c55e84b71bee3da442b
BLAKE2b-256 46509d92b443581a59819e6af113f76052b17b15ab551f41430f8b8421aefbcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d1c4b4823b88ca9d05e3ff6762e4bb62a6e23dc73a8220ec6a747afb07f029e
MD5 6f12a8e39a6bf03c8d5eadacffba63f4
BLAKE2b-256 99f603992ce4969aa6cb0e550064a89d3c69a3cacb2718872227d687c411436c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0634e55e661cc868c30aa92edeec30b864c125572ccb733c7f3a931170c2ab0f
MD5 ad2b891a578ef11ea1b3f3fa8d31c833
BLAKE2b-256 77133c66650598606c202769f073f82195c08d944f8117bf4d86198c6a808ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 792fd9dfbac2a257a73e10b1eb61e24a772ce2f2819262066701ba3353e4fb29
MD5 af0dbdc9ed16f242912dc7c9cd039588
BLAKE2b-256 95a7c3bd1967f8a9fceb97a50d2885afea3ab2f7d4992d3a56cee74272903ade

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 297.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4914c6d689106e8b5d5350d7467501987e67c54ed8fc4f2e3056eac2de04a612
MD5 5bdc64f6b0632c761c5699295680962f
BLAKE2b-256 4000848bee37179f18f98180130b95a2991a9c9fc0635d6f41c0de29e77da0d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 283.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2a5f9e75e4af5b2307bd5b93ca5426e88d3677ee32ba52444941345ffc7c7604
MD5 093c5963d3abc8975f9a108f02801b2c
BLAKE2b-256 b43870d03592d30b10552f4538a17f80024795f9190d368b3feb9fde6a21099f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 237.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ca17ae2666a86d05d2d43f059de49c3f09fc703699a279503e2f1df9edebe265
MD5 93d4c42a7c2e974b9fd640278940b1f6
BLAKE2b-256 2476e56e8a72ee9a5d84b8b8cddf56a4fa34b6adffad2e4f901429a0f282229a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8cf57199b57e0299d8889b785f84ad6c4562f5d55acba24dd1e79dbcc71d126f
MD5 e35f201eb8f2b10ef62b05cfb317e33e
BLAKE2b-256 629c59c23f423723c03d4f1651c36bc5072b70526a2863492331d36d8289a115

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d098f2fe1cb112c8b766b5401ed9e82c7182e476d57cf7b25a233e2d36fe743
MD5 00acfc1792ae56973e37a9ec1c1713d8
BLAKE2b-256 25a4b7074e0b68a54d4cf912c86d2c3020b454d017501fe8198a62558491c49d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39a80d816266d8e41a4b4a3fd411efc82859eb86a328ea23834531313224e478
MD5 ce7930f5f271a0b3ebabb2eb7355ed44
BLAKE2b-256 21a53022b062dbedba1975a850fb4806b77f0736d89f716923c0fcfdd4d761d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea09734ee741df20075c603bd974fc73b61334ff43e60a7b9557528f54074e23
MD5 16fad95df250431247c9aeb5bbc1604c
BLAKE2b-256 499f18ad0705f6334dadefe6409392f84b5c24848b801b2b235371c2afcec356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 297.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bec33b96145282a833a6cafed72b9e52d66edfbad1fe068055c70acdc0edae3
MD5 3a34885a9911c33bae1611ddb58c1ef9
BLAKE2b-256 365cc50384c78fa4a47c34f3bc11e26bbbb5de6d18473099af2e733d3928bb5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 283.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 91098f6cbddf1510ed51244ea320f020267d61440d1475cb9a2013009a8e6007
MD5 2a99ec2fa134a0c4e9707cd327a38853
BLAKE2b-256 179ee1ee69a78b5f6bdab72723160fa977f15319a99d3972b9b8d873bee8c0bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 237.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b943c66468417bf6f64cfd3c9eee13324d7cf18c4ef466d0ea0b42e787ec923b
MD5 675880e0f44729d2f7fba0dc29e144f7
BLAKE2b-256 a7c302a47ad019c63d0e01e92838b1497b703a63f984938b68b2b6e6aed2c62b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d691b6b37b658efa2c8f588aaeba2a1f482ecdef10607b766193b29c006151e
MD5 a218798aab83f17eed0f68e897953fff
BLAKE2b-256 428e64e38e89c74e8d7f6c2a24d6f08f25c92922a23643ae42f65041585377e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3d19f7ee15a98cae8881fa44f0351b0aec3475c16fc0c683e03746d415b4e208
MD5 5c4c8a0beec815611181c93293946300
BLAKE2b-256 c352aa7be60cf45f08a8fdb5977cd579021630dce8f03683f4cbb0588f4da38e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b18e3a315c851f9cd628a13100c5a881f858d4e4343ba8e244f29f9eb4876116
MD5 69cc296a29943b1a8d5af6d8a7f6c94b
BLAKE2b-256 8ff93292f4d118aa6c750a69833bc2683d349567d39ffa3d393e10a8fe9ca2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b0a7ee2f69f888e350df25cd1a022429d761ef2c93373a11da1b8248a2eaf84
MD5 e724197df2110f75a0982e1cb5bdbb82
BLAKE2b-256 bc7aa94571bfe04f2940a36059a77e2ef87929bcefdd7f110bfc6826e6931c6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 292.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 79ffdfd918cd72ed6c96f5bd8a8dcb07a5aee26ac498d560297ef99cdd75315e
MD5 3394baf2d2cc9fdd83b420ecb86c62a4
BLAKE2b-256 8352e8e1a4eff6d83120f976f49b1b957c4296e4be73e511b17c4255d5175d48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 277.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 df5bff2171e7f4507ddf07d5dda0bf046dca73333c643edc26ca3248310a2a25
MD5 24ac03262108eb9748c32cfbe32fe680
BLAKE2b-256 6c33daec940267da3d18446a48a54ee53af3891ec52f2e06d088b5c483c5f1a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 233.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 36102036a6750cfaede68925aaac859bb910126fcd6fc83c3ca9f6eaed84b5f4
MD5 b8f265c41e656934e1d7b2bb25bfa10b
BLAKE2b-256 8be9ebf53342d516965db8f556ac0b6d2031f9d3e68b0ddda9816d7b24940a62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c1e65c59ca8660b4ece6c109a549b473244f6cdd67dd562d3a9d9bd188b2806
MD5 021cb5a1741af187ef319d49716ccb5b
BLAKE2b-256 f1af9f6ce80e05095f781d114204caf792a1198ab46aab8ed80d378afa9172c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d2b0d2fd47708189ac0c6c65a772ab9b7e1e569fae8a9e4b8a86473ebb42c957
MD5 b0c53dd07824b2a33602b0b29f7fec39
BLAKE2b-256 9d1fa966104ad6121b672c55cef0299b8f22b56017d038f41f8071641d8f27fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cd85759cdf5580fad3d6c4f7ba37c18e49e75130d0f2ff7a9cf50e14e408843
MD5 960795d8a2793ef22d22c666c75401ec
BLAKE2b-256 23c9e605b6c99f69cb6e6d228ece4a4d1a0c9b18afdbbb11ed17532ec822413b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bac9eaaba19796243922fd92c243c5cc86e0c3e46a39cb2d63f9b711e133c597
MD5 fcbe483e6d748ab96596bb5bcb981859
BLAKE2b-256 5b3b800c204a971a6d3be2c50ceb2f33df51e7df6d2a1e63c127e671ba7c6279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hunter-3.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 286.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e2ce7ff73dc009a6f0d5d01cf44aed0e1cd92312b8ca874c67f1ef3ed0e42eb
MD5 a44fe3614b1a111f60297751e9584294
BLAKE2b-256 5e55dc4819d5b7a33c11dcf3d2c9715f7a4871c3a3c747a385d3ef5112cda96e

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: hunter-3.4.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 277.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 809d0756ff571245a0729c59f4419e6ab1346c880c05ac9286a241eb9a1babda
MD5 af8380ca0ab26e8c7abe2195bcba9127
BLAKE2b-256 d9207ab4efb3385e870cadd06b3fe48a8cec211f65d4301a4533a9c0cd5c46b5

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: hunter-3.4.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 233.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bec5a83fd9cb392bd586b865d04caa8dad6e138e8392487efcf439646733590f
MD5 14862f881c48ac71469c8bb3e87b5a23
BLAKE2b-256 0dae9e726fb42ae5c197b20c819f0bc72a9d7497a4fd065c6726f98ba114ce13

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: hunter-3.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83bce5ec5ae52f9198c6c302984e455d7003ea1d46d53498d4ffebac9e710613
MD5 061a43b6f854b4325ef3dd84c2246d29
BLAKE2b-256 a1721f08e635df49d411df03891744a7c760edf172cca9e9ce7e9d698cf740b2

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: hunter-3.4.3-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1cc838680f5f2533248737d5b269f3f02a7e6ee22c682d36f6c45a1838224aa7
MD5 ecb56b6da9cd4bdb19ab4bc6ad2e7783
BLAKE2b-256 13f2e1e15531af2b358985481441431312ce379dd9e60f85cdb98574c0193bc2

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee809802576fc1080d7de51279f9cc2fd19550c083df149a84dacd5b2a39df95
MD5 c29cf84c44c6ffdee8742551b079a09f
BLAKE2b-256 22a25fe052857cbf16e192fce4112f79bb037789a8f7f4d529e08700345e8c6c

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c3d65989e891e98fe404157cee22e10c9ed9f1416c852f418453406664684c4
MD5 47be4e352d320081fa3f07287135f7b0
BLAKE2b-256 1efc878741b2131f20be7f3d2541b2de69a37bbe0d6e3b139d7cee43f4cdd4e2

See more details on using hashes here.

File details

Details for the file hunter-3.4.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hunter-3.4.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 288.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for hunter-3.4.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d14951794434f51e6dcd6a378505fa9664bf7941a3e0c5cfc2e976f0415e0034
MD5 54da163334d3037826534281c33b8260
BLAKE2b-256 d417e51b8cf329855b3e8700347228ec97170851d13b1ca73f645f5e01a01159

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

3.5.1

32 files

3.5.0

32 files

This release

3.4.3 This release

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