Skip to main content

Blackfire SDK for Python

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

Release files for blackfire 1.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for blackfire 1.5.0
File
blackfire-1.5.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
blackfire-1.5.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
blackfire-1.5.0-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
blackfire-1.5.0-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
blackfire-1.5.0-cp38-cp38-macosx_10_14_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.14+ x86-64 Details
blackfire-1.5.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
blackfire-1.5.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
blackfire-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
blackfire-1.5.0-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
blackfire-1.5.0-cp37-cp37m-macosx_10_14_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64 Details
blackfire-1.5.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
blackfire-1.5.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
blackfire-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
blackfire-1.5.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
blackfire-1.5.0-cp36-cp36m-macosx_10_14_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64 Details
blackfire-1.5.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
blackfire-1.5.0-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
blackfire-1.5.0-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
blackfire-1.5.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
blackfire-1.5.0-cp35-cp35m-macosx_10_14_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.14+ x86-64 Details
blackfire-1.5.0-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
blackfire-1.5.0-cp34-cp34m-macosx_10_14_x86_64.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.14+ x86-64 Details
blackfire-1.5.0-cp33-cp33m-win32.whl CPython 3.3 CPython 3.3 pymalloc Windows x86-32 Details
blackfire-1.5.0-cp33-cp33m-macosx_10_14_x86_64.whl CPython 3.3 CPython 3.3 pymalloc macOS 10.14+ x86-64 Details
blackfire-1.5.0-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
blackfire-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
blackfire-1.5.0-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
blackfire-1.5.0-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
blackfire-1.5.0-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
blackfire-1.5.0-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
blackfire-1.5.0-cp27-cp27m-macosx_10_14_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ x86-64 Details

Total release size: 2.4 MB

Release files / blackfire-1.5.0-cp38-cp38-win_amd64.whl

Download URL blackfire-1.5.0-cp38-cp38-win_amd64.whl
Size 55.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
4caceb7bf9056c94f4a4e3da8320937daad73d097a30bdf3d487643569eafc77
BLAKE2b-256 checksum
How to use checksums
b3f18d59e72bebd017e13d8b5374231157900d453b252171cceb92b0bb1ae901
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp38-cp38-win32.whl

Download URL blackfire-1.5.0-cp38-cp38-win32.whl
Size 51.9 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
dec9b63f954f5ed927b25b9c88e8b6327cb3af2ffd00f600ac5c284439051d48
BLAKE2b-256 checksum
How to use checksums
62ad620304fed30321e316f78889aa5ac166cc4033722e282241fb32b153ef82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp38-cp38-manylinux2010_x86_64.whl

Download URL blackfire-1.5.0-cp38-cp38-manylinux2010_x86_64.whl
Size 125.2 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
1da3e4ac8ff479ecba13fa7685af78d5025609d9ad0191726060e7933fb5d2c3
BLAKE2b-256 checksum
How to use checksums
55dc30405952aedaead5e7fec3dea12a4cc8ac24d651c775dd4ae18ca167d5d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp38-cp38-manylinux1_x86_64.whl

Download URL blackfire-1.5.0-cp38-cp38-manylinux1_x86_64.whl
Size 125.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
db1e0bc1641a637353e844ca539f37129608ba7d7b4e8e63b249c5a2f1f0360f
BLAKE2b-256 checksum
How to use checksums
59a239aeec95ca2569544ad3cc6b07eb684c2da7a96461407b3593413d887a04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp38-cp38-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp38-cp38-macosx_10_14_x86_64.whl
Size 51.2 kB
Tags CPython 3.8 macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
72a00fda1a95369f02d57dc3bfdd2e17af990b8372039651d93308397db37b1c
BLAKE2b-256 checksum
How to use checksums
9a2b95ab3067531ecd26335e1b0c3170931809603ba0782fb87c1c144ec4739c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp37-cp37m-win_amd64.whl

Download URL blackfire-1.5.0-cp37-cp37m-win_amd64.whl
Size 55.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
06b406a44fa35f13f5c6ce23ce5ff320dcc42bd4eb959748702c87a3152cf6f3
BLAKE2b-256 checksum
How to use checksums
240e721ab45c2f68ef702a217c4bfa59f22a8d189e228fe31b9dbdff31b05281
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp37-cp37m-win32.whl

Download URL blackfire-1.5.0-cp37-cp37m-win32.whl
Size 51.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
4130492f1e7f3878a65308ce5d1bf6e5447a79e6a896468e8378aa62834191dd
BLAKE2b-256 checksum
How to use checksums
ba84d17fb2de8d6a365a18dc0ee6c416eff8a6b4d0d128ef93c1de3e61255d4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl

Download URL blackfire-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl
Size 127.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
e6dec22d7a025f3eda3207c54b6651837a4857169fb579323b98775a141b4c55
BLAKE2b-256 checksum
How to use checksums
c02f91e76e078e242b9721e9c5157ea3282d709b0d43aa9b76e6b6423b811746
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp37-cp37m-manylinux1_x86_64.whl

Download URL blackfire-1.5.0-cp37-cp37m-manylinux1_x86_64.whl
Size 127.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
eacc2760dc8689277dccf478c4a73090e29322deeda4bd1e7804f28b5640e7f8
BLAKE2b-256 checksum
How to use checksums
577be4475dfffa0ead379f21b97a29b4c2a363f5d03f8010bad5c7bf016ce588
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp37-cp37m-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp37-cp37m-macosx_10_14_x86_64.whl
Size 51.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
f57de5018a64c464fc3c829074ef1865700a960b954978ba10521dc4900785ce
BLAKE2b-256 checksum
How to use checksums
c9b450ff6a56746a2ccb8a24ef48fbfecbb321c25d968c4e90bc213404cde014
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp36-cp36m-win_amd64.whl

Download URL blackfire-1.5.0-cp36-cp36m-win_amd64.whl
Size 55.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
01c37ec1a1d5629d5972618faec3ea373af6033c132d277e0e3c865e4b408ab3
BLAKE2b-256 checksum
How to use checksums
8ac769fa7e08fbf14aa3db40b840d4fd33f79c070b89290e68d4429f806041e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp36-cp36m-win32.whl

Download URL blackfire-1.5.0-cp36-cp36m-win32.whl
Size 51.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
8b47dda275f4f0db1550df2550d386438095c8dd4f2c08ec6afa7373bf07a963
BLAKE2b-256 checksum
How to use checksums
61ce1cf3f1bb16ece4f3c638e01a59614b8fb6461a4c5e1ed5710de1be035411
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl

Download URL blackfire-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl
Size 120.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
d41f2cc4f612d1e19eafdbf8bc36d6063673fb33c92f5ca6b129f4bbad97fd1c
BLAKE2b-256 checksum
How to use checksums
c418a138ff694828647f3d70e774d61f2e6a6f7a7de5bf0efb5b0e66629b9bac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp36-cp36m-manylinux1_x86_64.whl

Download URL blackfire-1.5.0-cp36-cp36m-manylinux1_x86_64.whl
Size 120.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
32594c1ec36ea5000a3d4e608d8cfa641e1ff14f58cdd4e2ed65288e8dc5719f
BLAKE2b-256 checksum
How to use checksums
a259663a23fcbd7c5aefdfd5d41082d011f4710748c8f7d2c207ebfad0e68b87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp36-cp36m-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp36-cp36m-macosx_10_14_x86_64.whl
Size 51.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
f489a49e1c38c7725246856e058f71c290b83b1ae64f06cb03bcf39ac4e07a48
BLAKE2b-256 checksum
How to use checksums
8e6387037c99b9c7a90ab8b13d77a04329602bb134c6ada800d69e64c2bc4fdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp35-cp35m-win_amd64.whl

Download URL blackfire-1.5.0-cp35-cp35m-win_amd64.whl
Size 55.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
8367bb3351476f8b4c8268d30ae47b0cb2a5b1bd6a4db8099b156c599c24cd4d
BLAKE2b-256 checksum
How to use checksums
27436a0b7604242727d94a742bc22f0b9cf3d2f66456fb26999dd65847d6585b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp35-cp35m-win32.whl

Download URL blackfire-1.5.0-cp35-cp35m-win32.whl
Size 51.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
06ce37be0f4f5d4bf0732ada2bd87c84457c962aba0d2587cb13b3083e3eefb2
BLAKE2b-256 checksum
How to use checksums
4072d49f56185f29848b7dba6d62ecfba11e1bd451e58fc3dba44ec9c9bfa9c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp35-cp35m-manylinux2010_x86_64.whl

Download URL blackfire-1.5.0-cp35-cp35m-manylinux2010_x86_64.whl
Size 119.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
3330408c35c17d1a24fb12c79779d4ccefb561bead39771ac5ed3954fa534293
BLAKE2b-256 checksum
How to use checksums
48e550b1f32ff03ec1ebeaceebc356c309fdab1ab98313848fafaa9e16d41b7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp35-cp35m-manylinux1_x86_64.whl

Download URL blackfire-1.5.0-cp35-cp35m-manylinux1_x86_64.whl
Size 119.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5e8c44162e9a72ed9613a0d6149d1d165f733ce82cc49d2d7fe2c3cb8d8c8d7b
BLAKE2b-256 checksum
How to use checksums
0ffef0008f6c9d11d8d2952a767e4d61af741da7b8fcf8ca3fba5d09e08419ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp35-cp35m-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp35-cp35m-macosx_10_14_x86_64.whl
Size 51.2 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
73c253ab3e475bbf3b1033d0d5c022ca4583c84a0e99240e6878467bf5949e19
BLAKE2b-256 checksum
How to use checksums
fa60ae397b0e95acaea6fdaecd0dc46fca6b540d452ac2167a9cebe83bf32918
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp34-cp34m-win32.whl

Download URL blackfire-1.5.0-cp34-cp34m-win32.whl
Size 47.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
fdc500e431520f0574e6c7fc4aa8525eff2feb1e58bc4ca97f16369ada292f72
BLAKE2b-256 checksum
How to use checksums
82c81b83e0f91e0bd970fed84e40eb1e64be45e2c561a9c4abd5de6c53f98559
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp34-cp34m-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp34-cp34m-macosx_10_14_x86_64.whl
Size 50.0 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
535244298165d4244553e420d4e9ace571ef103e10e5711692fcb5551c7eb648
BLAKE2b-256 checksum
How to use checksums
c4551776a51cea6644f8f191a29c3a7958433771e5f078b71dbb9eb2353fcf98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp33-cp33m-win32.whl

Download URL blackfire-1.5.0-cp33-cp33m-win32.whl
Size 49.5 kB
Tags CPython 3.3 CPython 3.3 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
fdfb7f6f235b93a0a02b7f7ce42e6b48184ff5ef6e30612e583b8a501a216524
BLAKE2b-256 checksum
How to use checksums
2da52bece31e395ab80bb5bc75137288c4dff22acc15ec975edbb9eb0bfa47e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp33-cp33m-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp33-cp33m-macosx_10_14_x86_64.whl
Size 51.9 kB
Tags CPython 3.3 CPython 3.3 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
8f0b09fc357a8e77d2441092512a81e0a17a05b85a2fce442f11dbbf199bfb52
BLAKE2b-256 checksum
How to use checksums
b119313a103ee3486a5c630030264fc5a526d24934befadc864dc5451c5a08e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27mu-manylinux2010_x86_64.whl

Download URL blackfire-1.5.0-cp27-cp27mu-manylinux2010_x86_64.whl
Size 109.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
aa06c97f8a56785c628f99516cfccf15a0a3ed5b7b1e94898457d6ed05a92da5
BLAKE2b-256 checksum
How to use checksums
cb8a27343ef27d634e13a65f09048046b462e1f675854c4bfceb0bda4d8a9f32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl

Download URL blackfire-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl
Size 109.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0541b29e5adef6f8629e110048eaa198b215d4588b374f3173e8bf29b93685d4
BLAKE2b-256 checksum
How to use checksums
436be58ab636df10f7a7d26b358f3166e63eaca218671c7a3fc1798283cdd36d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27m-win_amd64.whl

Download URL blackfire-1.5.0-cp27-cp27m-win_amd64.whl
Size 49.4 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
150e98bd57fa9407fe07bdd42c5c6fc15bbcaa645f2ce54b9c953d9ceff19398
BLAKE2b-256 checksum
How to use checksums
76def84852c11104b28da7936e755b458ccac29e6a579ca5bdf9ccd9e788080d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27m-win32.whl

Download URL blackfire-1.5.0-cp27-cp27m-win32.whl
Size 47.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
d1616e28c2c47d5c311148c9b370f790dd1f4e2ff0887c59014762c34376796a
BLAKE2b-256 checksum
How to use checksums
f95a6198c69c9305f59bae7f3db9d59183d25e98e3714409831a9e9a31d440b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27m-manylinux2010_x86_64.whl

Download URL blackfire-1.5.0-cp27-cp27m-manylinux2010_x86_64.whl
Size 109.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
ec3a9cb0f8b113c172e578333758284579f48637031882f5686940d84548f6b5
BLAKE2b-256 checksum
How to use checksums
638458120243da9d38091636c4fc445852928ceac09710af7bb76442d240b3c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27m-manylinux1_x86_64.whl

Download URL blackfire-1.5.0-cp27-cp27m-manylinux1_x86_64.whl
Size 109.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d72f954af13b41ef91ae87598de7db2a392d152d7a291d4b395f0642e1543ea4
BLAKE2b-256 checksum
How to use checksums
7a65492935c6eaaf23aa7561334416bbdcbd83489d4698450d1e813d6e69558d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release files / blackfire-1.5.0-cp27-cp27m-macosx_10_14_x86_64.whl

Download URL blackfire-1.5.0-cp27-cp27m-macosx_10_14_x86_64.whl
Size 49.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
b7f7a65a3846d9c54a985f74db896170d268c8d762811ea5318d3253cb8d36ba
BLAKE2b-256 checksum
How to use checksums
613c76ef4f8d8b50156176cb55d03d3abffc94a836dde590d609ae246b04f71c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/20.7.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.5.2

Release history Release notifications | RSS feed

1.9.1

39 release files

1.8.1

39 release files

1.8.0

39 release files

1.7.1

39 release files

1.7.0

39 release files

1.5.6

33 release files

1.5.5

34 release files

1.5.4

21 release files

1.5.3

35 release files

1.5.1

31 release files

This release

1.5.0 This release

31 release files

1.4.4

30 release files

1.4.3

30 release files

1.4.0

31 release files

1.3.4

31 release files

1.3.3

33 release files

1.3.2

17 release files

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