Skip to main content

Blackfire Python SDK

Project description

Blackfire Python SDK is a Python library that manages the Blackfire Python Profiler and handles communication with Blackfire.io servers.

Read the official Blackfire documentation for more information.

Installation

Please follow the official Blackfire Installation Guide.

Usage

These examples and more can be found on the official Blackfire Python SDK documentation.

Manual profiling

Following is an example of manual profiling:

from blackfire import probe

probe.initialize(client_id='xxxxx', client_token='xxxxx')
probe.enable()
foo()
bar()
baz()
probe.end() # this will send all collected data Blackfire.io servers

You can view your profiles here on your dashboard.

Aggregation of Traces

We can call enable()/disable() multiple times until we finally call end().

from blackfire import probe

probe.initialize()
probe.enable()
foo()
probe.disable()
probe.enable()
bar()
probe.disable()
with probe.run():
    baz()

Profiling Python scripts via CLI

Save below as foo.py:

def foo():
    print('foo called!')

foo()

Then run following:

blackfire run python foo.py

Above command will run your script till end and uploads the resulting profile to Blackfire. You profile will be available on your dashboard.

Profiling Django via Middleware

Read the Django Integration documentation on the Blackfire website.

  1. Install the Blackfire Browser Extension.

  2. Add Blackfire middleware in your Django settings.py as following:

    MIDDLEWARE = [
        ...
        ...
        'blackfire.middleware.DjangoMiddleware',
    ]
  3. Follow these steps to profile via Browser.

Resources

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

blackfire-1.3.3-py3.2-macosx-10.11-x86_64.egg (56.5 kB view details)

Uploaded Egg

blackfire-1.3.3-cp38-cp38-win_amd64.whl (38.3 kB view details)

Uploaded CPython 3.8Windows x86-64

blackfire-1.3.3-cp38-cp38-win32.whl (36.0 kB view details)

Uploaded CPython 3.8Windows x86

blackfire-1.3.3-cp38-cp38-manylinux2010_x86_64.whl (96.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp38-cp38-manylinux1_x86_64.whl (96.3 kB view details)

Uploaded CPython 3.8

blackfire-1.3.3-cp37-cp37m-win_amd64.whl (38.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

blackfire-1.3.3-cp37-cp37m-win32.whl (35.8 kB view details)

Uploaded CPython 3.7mWindows x86

blackfire-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp37-cp37m-manylinux1_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.7m

blackfire-1.3.3-cp37-cp37m-macosx_10_11_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.7mmacOS 10.11+ x86-64

blackfire-1.3.3-cp36-cp36m-win_amd64.whl (38.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

blackfire-1.3.3-cp36-cp36m-win32.whl (35.7 kB view details)

Uploaded CPython 3.6mWindows x86

blackfire-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp36-cp36m-manylinux1_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.6m

blackfire-1.3.3-cp36-cp36m-macosx_10_11_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.6mmacOS 10.11+ x86-64

blackfire-1.3.3-cp35-cp35m-win_amd64.whl (38.1 kB view details)

Uploaded CPython 3.5mWindows x86-64

blackfire-1.3.3-cp35-cp35m-win32.whl (35.7 kB view details)

Uploaded CPython 3.5mWindows x86

blackfire-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl (91.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp35-cp35m-manylinux1_x86_64.whl (91.9 kB view details)

Uploaded CPython 3.5m

blackfire-1.3.3-cp35-cp35m-macosx_10_11_x86_64.whl (34.6 kB view details)

Uploaded CPython 3.5mmacOS 10.11+ x86-64

blackfire-1.3.3-cp34-cp34m-win32.whl (32.4 kB view details)

Uploaded CPython 3.4mWindows x86

blackfire-1.3.3-cp34-cp34m-manylinux2010_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp34-cp34m-manylinux1_x86_64.whl (92.6 kB view details)

Uploaded CPython 3.4m

blackfire-1.3.3-cp34-cp34m-macosx_10_11_x86_64.whl (34.5 kB view details)

Uploaded CPython 3.4mmacOS 10.11+ x86-64

blackfire-1.3.3-cp33-cp33m-win32.whl (34.3 kB view details)

Uploaded CPython 3.3mWindows x86

blackfire-1.3.3-cp33-cp33m-macosx_10_11_x86_64.whl (36.4 kB view details)

Uploaded CPython 3.3mmacOS 10.11+ x86-64

blackfire-1.3.3-cp27-cp27mu-manylinux2010_x86_64.whl (87.4 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp27-cp27mu-manylinux1_x86_64.whl (87.4 kB view details)

Uploaded CPython 2.7mu

blackfire-1.3.3-cp27-cp27m-win_amd64.whl (34.0 kB view details)

Uploaded CPython 2.7mWindows x86-64

blackfire-1.3.3-cp27-cp27m-win32.whl (32.3 kB view details)

Uploaded CPython 2.7mWindows x86

blackfire-1.3.3-cp27-cp27m-manylinux2010_x86_64.whl (87.4 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

blackfire-1.3.3-cp27-cp27m-manylinux1_x86_64.whl (87.4 kB view details)

Uploaded CPython 2.7m

blackfire-1.3.3-cp27-cp27m-macosx_10_11_x86_64.whl (34.1 kB view details)

Uploaded CPython 2.7mmacOS 10.11+ x86-64

File details

Details for the file blackfire-1.3.3-py3.2-macosx-10.11-x86_64.egg.

File metadata

  • Download URL: blackfire-1.3.3-py3.2-macosx-10.11-x86_64.egg
  • Upload date:
  • Size: 56.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-py3.2-macosx-10.11-x86_64.egg
Algorithm Hash digest
SHA256 6bc1ae97be77532dbd2e6d06cc111118ea2fa0818d9a5b6cdcc773b25d03175b
MD5 8ef29d1d09f122abb40bfd0f16be9861
BLAKE2b-256 ed192131a4a397a28b3355ecb66c9617c8d368b4eb053ea8c398f60bdfccf036

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 38.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 964bc363049ed6b2684c88e53925cd3ac2d166e69e2267300aa506bf958341ce
MD5 14963fcb976b919b7f87b4e69d631fba
BLAKE2b-256 8679edbccde41964e7dabae9b84811cbf84a29c6a513adeb839958fa4acb55ba

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 657a4e31425c997eaec73963a6337c5bf38dbde13f90566a8c6c3ef747ece3fc
MD5 8db39dbd06a28308c4b3f7a87983a9dd
BLAKE2b-256 ea027ea85ffe5fbe09f5056946d105e5c9365b582072ae007eed1155a03269d2

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ae9960d87566d542a880f0d62e40c0962e92d8749f191dd51ac2cd7c8d3d7ff
MD5 3d38f54cd189e31a6bda885486ea2008
BLAKE2b-256 660ea216d3feee6f8e8e43a8ac766faece70037d77536e806634f5e5d96475a2

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cccc5195c9b0281f1926608f900ea29c3f44a5b2a543e2d51cbac488f40fb15a
MD5 21fda7c7a08795428aa37c2a3a375a4e
BLAKE2b-256 930267f95e26e2fb4a18130e7d83491ad767e809f8c25167636d2ecc1b0fd691

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 38.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f2734769df8cd8f12a1fe4850d80a5c6608cdf1a921f29766fc4cbf15e14ba09
MD5 cd8a9e1de1d246f01aee3c85dcb55741
BLAKE2b-256 ab6de91a8c9ceb59e5d00b39429c3b43c6a3fc422d7da5d420bf580628a26df8

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c17799bb57e7162975324791b870a0104ceacda0e5453dcc54fc5b0c469cda26
MD5 4cc12d60b9f6f2bc3581a089de188224
BLAKE2b-256 c33f9ec564501dfc266a3a7016b1354d5cd38b212591ed895d054607a5a3c678

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 95.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a1e3fe2c245d61f283add849c22e63fe7f14425d1167c83afaa813fd27f9a8a
MD5 5d2ebf5ad2e9fb04b97f9e7657f02446
BLAKE2b-256 0ef120ffd5ff2731fff748de609f74c658e8a697400be5252da8b444363a1ba8

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 95.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8439524beb38e46208846a0afbec89563b9711045905c485fe615f4c61c6f408
MD5 d53ae5440dc588ee4f265a5cdb9ac55d
BLAKE2b-256 3f0121a7903366d5b0cccf7c7b8c15a02da5efc8d99c408e128c7b6300168a7b

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp37-cp37m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp37-cp37m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp37-cp37m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 7a7dbfce755208c430b96b4472e165dc5462466a37002e0e0427ce08e411d990
MD5 86e058a71a5a98a59741ae0515d9724f
BLAKE2b-256 b5de660b7143c011a0add2ba86e1e185412c0d64ce6c6df9b7f67d1c8395ef5d

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 38.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1da8365dfe9d2e0a64ff247d7846a176285479867ae99b024f4a81b900372b33
MD5 909b3c6555207fc4bb747b440d9d7353
BLAKE2b-256 9cbb72fa400b4c65a5e00ca1006c7d508e73ae5daab29e1951d5900250be0044

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 02864d1b1a1fa29f19cba6e9e6db54bd3fb64bc0cbcbf36bf88a6890361cd8b8
MD5 3a8f045f362ba53fb2cf83da985e6c0e
BLAKE2b-256 c5eb840c918b3fab3517d268d1a1760bcb49e64c0fab13124ccd93ba0fa8a8a9

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 92.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3fa0cb0301bde80eb4c412c1979278625699d215c89bc10f52b68c50c818b877
MD5 c50f3974eb77bd43394a806e15c76d32
BLAKE2b-256 9da46f18dc27df5c5abec8a3c594d5986c484f2d6f77e126cc9468beea35d5d5

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 92.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 90ba5f246643595c3627025b3914c68e54b394392c41c3b5b77704a8bc02b3b2
MD5 549b6ac56bf34e06c6067a57813cf5f0
BLAKE2b-256 a6847c0a5d03e571bad68b331cd2c8152cc8041bb4e6092463a242b786b28c55

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp36-cp36m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp36-cp36m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.6m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp36-cp36m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 e889ab689d7b5dcd8b4148ae70e62d644daa26e854a30d2558fb0def26db17b8
MD5 69422d0a53fb854510efa74b193d99c2
BLAKE2b-256 9aae3a7af026c1594ef63a78ae060e8eb64ec9a7899453d20d980968532ed9e0

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 38.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7f80d6c2caedd5e003475f23cc3c5d213713e3ac5309561a33484987d47fbf4a
MD5 2875b8ebe811bfb9334e023a3dd64f62
BLAKE2b-256 18ab629eee3b21266e58c83117a9c5306733d0c39d2cb278ac7fc040e30ef920

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 185805eb3aae8b15a2c33d9803c6beb2356258949ce628c76052169bcd71bfa8
MD5 75a40c4050ae09e077724b57a30db192
BLAKE2b-256 c35f8470b1a9bb85e2ad92aa5ad099146765b77090a45e955b1d9d5aa7917da9

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 91.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d4de81c3cece0fd6e7b0bcde4bc0b6b6fffbb6f2ef07de114380083254332be2
MD5 75c0fae62f7bf856cee871aa65f314a0
BLAKE2b-256 5bc4085bec00e0b9fb0aa5fc75fa938aea53ce53af2cdb0247d270baefb26e34

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 91.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bdfc0c094cc600dd9cabc50c0291c596374e3990c455b8927af4713ac29d81b6
MD5 512d9e3074cc631f18922001804238df
BLAKE2b-256 2b6b85cf3a5f7a1e31d13d39796b602fc5f3261f151bcb592825ba3d84389da7

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp35-cp35m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp35-cp35m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.5m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp35-cp35m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 6061e922fa7b4d28a82736447a4d2917fb37897c9a7a881367f674fcc02654d6
MD5 d7d6a506259e543077fe201dd6b05ef3
BLAKE2b-256 ca1134257b989e78005f910d0f8237e43571903c02cbe50f55befe400a8e2d4a

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp34-cp34m-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 31ef9d9c9f607da75a79b904466b37191f1c74139d07f8b3e408d2efa19f5a29
MD5 26c2d8ed7302cd8c25fd2c93d1f5c3ff
BLAKE2b-256 be142ee0195a7340d3ab722b81047296848a03544a3f10ce378cf252ade57f87

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp34-cp34m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp34-cp34m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 92.6 kB
  • Tags: CPython 3.4m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a143da2f7bbf7ae5995d3532898cf9dd483d922b654788f393ee800f012678d
MD5 c6c36d483e94dd34d074c04fee0d8afd
BLAKE2b-256 e10917b542d5f1eb97e65248241686c3c0e4c729e32e96b2b1e60e034fb922e3

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 92.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3880c4cf93bc5c103e499c6ff404db7fd4803c27622d763da32a5940969bb88a
MD5 33dd5e3a8c5e018b657e9ba2bfd9f909
BLAKE2b-256 a3d630b32c550bdb1d7e368dbd962df5d1c485a37d7c3992f3da18ee4665159c

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp34-cp34m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp34-cp34m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 3.4m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp34-cp34m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 80deec2fb1fe0216c1b70bfb338758f30a4dfcab662ba8a599d31ec72fcc4b48
MD5 158579d303ecc3bb44179d769d228aaf
BLAKE2b-256 8df955a7c846aeebd45096e01debe37cc7b7bd3a8a477ffc6d848e6eaf299dc2

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp33-cp33m-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp33-cp33m-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.3m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 0e661ceddbbb5e57ebfb515a4c75f24483df1306953be4fd64a861ece651f617
MD5 38fd6802398df9a6c941e0001fdb3ca2
BLAKE2b-256 ce1b49707b6c6f2f7ecaaff73de3bab80bbd75057e913aaf4b847112adf4358f

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp33-cp33m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp33-cp33m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 36.4 kB
  • Tags: CPython 3.3m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp33-cp33m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 d1eba0e1ea9515648171348f58bdeaa19fe47508c367bc9618b6ff5d75373c7e
MD5 e170b717207626fea824a8ba0fd2d4ac
BLAKE2b-256 97fe47865579ddefec791f928fd61b08766757f82247a3ec0337a995033ecf47

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1adaeb09ae70dcc098f75bb64747e8deec4a426c4c4e11efb0d1765101c810d
MD5 5086b6d0433d621493419950ebbcd78b
BLAKE2b-256 474bc08072f18cc9005d2c933a2fb99c747c133ca191ae9933696da7aae39a44

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e963272b332b9c42204baa2588d0154f353d98eeceba8184a80a96bb892a810b
MD5 c6eaf9944f8e24699cefa9e76e40a7fe
BLAKE2b-256 394b96ba7c9924bc533563ec3ab786903f148518729e8ceb48875311b4be7698

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 39545cb2fa5a2e3457fc060c3542857052c84cadce6d00c4824484f564f36b11
MD5 8b3cf1870bb7e79b3d8a332e21d53983
BLAKE2b-256 4f94df4972a65c55164d4ada5fbc15a36940391099a9e1475a7faaa765f7005f

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27m-win32.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 32.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 67a83c84ea3a247b35eaf3cc6ec26966183ea32d6aca5849ff604800d516c251
MD5 514fd977b9cde52fe56172a223b6b726
BLAKE2b-256 5bfe9320a78157ea6f8b59f2b25eabfa8ab09812b754321c84f40a729039e867

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a76704dda7528225076e6dc2248f8afb46cefcf73fa688dbebb9d88d1832563
MD5 80ef4548cf052b333fc7b1405653655d
BLAKE2b-256 99cb1a7d11a4965d20a09c1d122ee3c4c98b56ec7bd80d1af1ba11a1e51ef49f

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 549ba9da4dae4b6e118ab781288acbb7daa7b0c42adc85ecb5096fb261beab24
MD5 190093df36c380244d90d56f252a27fe
BLAKE2b-256 980c2cd4a2edbb1cd5f51f8c3655b17463b621525eaeb8cd7ca8e402485762ff

See more details on using hashes here.

File details

Details for the file blackfire-1.3.3-cp27-cp27m-macosx_10_11_x86_64.whl.

File metadata

  • Download URL: blackfire-1.3.3-cp27-cp27m-macosx_10_11_x86_64.whl
  • Upload date:
  • Size: 34.1 kB
  • Tags: CPython 2.7m, macOS 10.11+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.2

File hashes

Hashes for blackfire-1.3.3-cp27-cp27m-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 095ac0c15fb82ebf66aaf0575a7e924e66c142712854efb133c6d08458449cff
MD5 a2d35e5bf1ae1a23965311f1302330e7
BLAKE2b-256 9b8284275aaf18946b397dfababa97bdabfd98b131a31d13d5eff32bb860a673

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page