Skip to main content

Python read-only implementation of the EventIO file format

Project description

A Python (read-only) implementation of the EventIO data format invented by Konrad Bernloehr as used for example by the IACT extension for CORSIKA: https://www.ikp.kit.edu/corsika

Documentation of the file format: https://www.mpi-hd.mpg.de/hfm/~bernlohr/sim_telarray/Documentation/eventio_en.pdf

Most blocks of the IACT extension and SimTel are implemented. The following blocks are known, but reading their data is not (yet) implemented, because we do not have any test files containing these objects.

If you want support for these objects, please open an issue.

Code

Description

1206

IACT Camera Layout

1207

IACT Trigger Time

2017

SimTel Pixel Calibriation

2024

SimTel Run Statistics

2025

SimTel MC Run Statisitics

2029

SimTel Auxiliary Digital Traces

2030

SimTel Auxiliary Analog Traces

2031

SimTel FSPhot

install with

pip install eventio

Open a file produced by the IACT CORSIKA extension

First Example

One may iterate over an instance of IACTFile class in order to retrieve events. Events have a small number of fields. The most important one is the photon_bunches field, which is dictionary mapping telescope ids to a simple structured np.array, containing the typical parameters Cherenkov photon bunches in CORSIKA have, like:

  • x, y coordinate in the observation plane (in cm)

  • direction cosine cx, cy in x and y direction of the incident angle of the photon

  • wavelength lambda of the photon (in nm)

  • number of photons associated with this bunch

  • the time since the first interaction (in ns, I believe)

  • the production height of the photon bunch (called zem)

  • a bool flag, whether the photon was scattered in the atmosphere

An event has the following attributes: * header: a namedtuple containing the Corsika Event Header data * end_block: a numpy array containing the Corsika Event End data * time_offset, x_offset, y_offsett, the offset of the array

This prints energy and the number of photons for the first telescope in every event:

import eventio

with eventio.IACTFile('eventio/resources/one_shower.dat') as f:
    for event in f:
        print(event.header["total_energy"])
        print(event.photon_bunches[0]['photons'].sum())

Second Example

If you like to plot the origin of the Cherenkov photons of the first event in file eventio/resources/one_shower.data for the first telescope, have a look into this example

It might look similar to this picture:

an example shower

an example shower

Open a file produced by simtel_array

import eventio

with eventio.SimTelFile('eventio/resources/gamma_test.simtel.gz') as f:

    print(len(f.telescope_descriptions))
    for array_event in f:
        print(array_event['mc_shower']['energy'])

Commandline Tools

We provide a few commandline tools to look into eventio files.

eventio_print_structure

To get an overview over the structure of a file, use eventio_print_structure, for larger files, you might want to pipe its output into e.g. less:

$ eventio_print_structure eventio/resources/gamma_test.simtel.gz
History[70]
    HistoryCommandLine[71]
    HistoryConfig[72]
    HistoryConfig[72]
    And 127 objects more of the same type
...
RunHeader[2000](run_id=31964)
MCRunHeader[2001]
MCRunHeader[2001]
InputCard[1212]
InputCard[1212]
CameraSettings[2002](telescope_id=1)
CameraOrganization[2003](telescope_id=1)
PixelSettings[2004](telescope_id=1)
DisabledPixels[2005](telescope_id=1)
CameraSoftwareSettings[2006](telescope_id=1)
DriveSettings[2008](telescope_id=1)
PointingCorrection[2007](telescope_id=1)
CameraSettings[2002](telescope_id=2)
CameraOrganization[2003](telescope_id=2)

eventio_print_object_information

To get table of all object versions and counts in a file, use eventio_print_object_information, it can also print json if given the --json option

$ eventio_print_object_information eventio/resources/gamma_test.simtel.gz
 Type | Version | Level | #Objects | eventio-class
------------------------------------------------------------
   70 |       1 |     0 |        3 | simtel.objects.History
   71 |       1 |     1 |        3 | simtel.objects.HistoryCommandLine
   72 |       1 |     1 |    32840 | simtel.objects.HistoryConfig
 1212 |       0 |     0 |        2 | iact.objects.InputCard
 2000 |       2 |     0 |        1 | simtel.objects.RunHeader
 2001 |       4 |     0 |        2 | simtel.objects.MCRunHeader
 2002 |       2 |     0 |       98 | simtel.objects.CameraSettings
 2002 |       3 |     0 |       28 | simtel.objects.CameraSettings
 2003 |       1 |     0 |      126 | simtel.objects.CameraOrganization
 2004 |       2 |     0 |      126 | simtel.objects.PixelSettings
 2005 |       0 |     0 |      126 | simtel.objects.DisabledPixels
 2006 |       0 |     0 |      126 | simtel.objects.CameraSoftwareSettings
 2007 |       0 |     0 |      126 | simtel.objects.PointingCorrection
 2008 |       0 |     0 |      126 | simtel.objects.DriveSettings
 2009 |       2 |     1 |       10 | simtel.objects.TriggerInformation
 2010 |       0 |     0 |       10 | simtel.objects.ArrayEvent
 2011 |       1 |     2 |       50 | simtel.objects.TelescopeEventHeader
 2013 |       3 |     2 |       50 | simtel.objects.ADCSamples
 2014 |       5 |     2 |       44 | simtel.objects.ImageParameters
 2016 |       1 |     2 |       49 | simtel.objects.PixelTiming
 2020 |       1 |     0 |      122 | simtel.objects.MCShower
 2021 |       1 |     0 |     1214 | simtel.objects.MCEvent
 2022 |       0 |     0 |      126 | simtel.objects.CameraMonitoring
 2023 |       2 |     0 |      126 | simtel.objects.LaserCalibration
 2026 |       2 |     0 |       21 | simtel.objects.MCPhotoelectronSum
 2027 |       0 |     2 |       93 | simtel.objects.PixelList
 2100 |       0 |     1 |       42 | simtel.objects.TrackingPosition
 2200 |       1 |     1 |       50 | simtel.objects.TelescopeEvent
------------------------------------------------------------

eventio_plot_histograms

To plot histograms stored in an eventio file (Type 100), use eventio_plot_histograms.

$ eventio_plot_histograms gamma_20deg_180deg_run99___cta-prod3_desert-2150m-Paranal-merged_cone10.simtel.gz
First histogram of a prod3b file

Histogram of Impact distance vs log10(E / TeV)

eventio_print_simtel_metaparams

To print the metaparameters stored in an eventio file (the values of the parameters used in the simulation), use eventio_print_simtel_metaparams.

$ eventio_print_simtel_metaparams tests/resources/history_meta_75.simtel.zst

Global METAPARAMs
-----------------
CONFIG_RELEASE = Release "2021-12-16 (development beyond prod-5)" from 2021-12-25T19:33:19 UTC.
CONFIG_VERSION =
ARRAY_CONFIG_NAME = LaPalma-baseline-prod5
ARRAY_CONFIG_VARIANT = LST/MST-NectarCam (including other MST camera type) at CTA North prod-5/prod-5b (extended)
ARRAY_CONFIG_VERSION = 2020-11-20
RANDOM_GENERATOR = mt19937
RANDOM_STATE = auto
RANDOM_SEED = auto
SIMTEL_VERSION = 2021-12-16 18:31:13 CET (konrad@wizard4)
SIMTEL_RELEASE = 2021-12-16 (development beyond prod-5)
SIMTEL_BASE_RELEASE = 2021-12-16 (development beyond prod-5)

METAPARAMs for telescope=1
--------------------------
OPTICS_CONFIG_NAME = LST
OPTICS_CONFIG_VARIANT = LST-1 prototype
OPTICS_CONFIG_VERSION = 2020-04-29
CAMERA_CONFIG_NAME = LST
CAMERA_CONFIG_VARIANT = LST-1 prototype, with nsb_autoscale_airmass
CAMERA_CONFIG_VERSION = 2020-11-24

METAPARAMs for telescope=2
--------------------------
OPTICS_CONFIG_NAME = LST
OPTICS_CONFIG_VARIANT =
OPTICS_CONFIG_VERSION = 2020-04-29
CAMERA_CONFIG_NAME = LST
CAMERA_CONFIG_VARIANT = LST camera, with nsb_autoscale_airmass
CAMERA_CONFIG_VERSION = 2020-11-24

METAPARAMs for telescope=3
--------------------------
OPTICS_CONFIG_NAME = LST
OPTICS_CONFIG_VARIANT =
OPTICS_CONFIG_VERSION = 2020-04-29
CAMERA_CONFIG_NAME = LST
CAMERA_CONFIG_VARIANT = LST camera, with nsb_autoscale_airmass
CAMERA_CONFIG_VERSION = 2020-11-24

...

Low level access

For more low level access to the items of an EventIO file (or to implement a higher level abstraction like IACTFile) one can use the EventIOFile class which gives access to the objects and subobjects in EventIO files.

This is how our test file looks like in the low level view:

In [3]: with EventIOFile('eventio/resources/one_shower.dat') as f:
   ...:     for obj in f:
   ...:         print(obj)
   ...:         if obj.header.only_subobjects:
   ...:             for subobj in obj:
   ...:                 print('   ', subobj)
CORSIKARunHeader[1200](size=1096, only_subobjects=False, first_byte=16)
CORSIKAInputCard[1212](size=448, only_subobjects=False, first_byte=1128)
CORSIKATelescopeDefinition[1201](size=20, only_subobjects=False, first_byte=1592)
CORSIKAEventHeader[1202](size=1096, only_subobjects=False, first_byte=1628)
CORSIKAArrayOffsets[1203](size=16, only_subobjects=False, first_byte=2740)
CORSIKATelescopeData[1204](size=6136, only_subobjects=True, first_byte=2772)
    IACTPhotons(length=6124, n_bunches=382)
CORSIKAEventEndBlock[1209](size=1096, only_subobjects=False, first_byte=8924)
CORSIKARunEndBlock[1210](size=16, only_subobjects=False, first_byte=10036)

Project details


Download files

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

Source Distribution

eventio-2.1.1.tar.gz (897.3 kB view details)

Uploaded Source

Built Distributions

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

eventio-2.1.1-cp314-cp314t-win_amd64.whl (297.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

eventio-2.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

eventio-2.1.1-cp314-cp314t-macosx_11_0_arm64.whl (850.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

eventio-2.1.1-cp314-cp314t-macosx_10_15_x86_64.whl (850.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

eventio-2.1.1-cp314-cp314-win_amd64.whl (276.9 kB view details)

Uploaded CPython 3.14Windows x86-64

eventio-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

eventio-2.1.1-cp314-cp314-macosx_11_0_arm64.whl (833.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

eventio-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl (838.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

eventio-2.1.1-cp313-cp313-win_amd64.whl (268.4 kB view details)

Uploaded CPython 3.13Windows x86-64

eventio-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

eventio-2.1.1-cp313-cp313-macosx_11_0_arm64.whl (822.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

eventio-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl (829.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

eventio-2.1.1-cp312-cp312-win_amd64.whl (270.7 kB view details)

Uploaded CPython 3.12Windows x86-64

eventio-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

eventio-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (825.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

eventio-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl (831.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

eventio-2.1.1-cp311-cp311-win_amd64.whl (267.2 kB view details)

Uploaded CPython 3.11Windows x86-64

eventio-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

eventio-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (819.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

eventio-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl (824.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file eventio-2.1.1.tar.gz.

File metadata

  • Download URL: eventio-2.1.1.tar.gz
  • Upload date:
  • Size: 897.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eventio-2.1.1.tar.gz
Algorithm Hash digest
SHA256 4126aae6e2e0b04b7964af60a70a0f0a03bc19a246bdfccf74f67dca5402e14a
MD5 07f5c3e0206fb5a47b850fd22cda21df
BLAKE2b-256 24f1e9e77af44b9620c3590214fc4a1159772ae7cfea7f5be91f6a3293b8d4d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1.tar.gz:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: eventio-2.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 297.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eventio-2.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d8d1dc4bbf33af86efdc6eb9ac479fa84a147a776d73ed94888e5a2d655e6e81
MD5 e996dd10b19aa54107b2fdde38a7a950
BLAKE2b-256 9cf4209f49693005c172442c3c8f542b49cbed5fb545ec3445b481d5fc9d8252

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314t-win_amd64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 79ea67161b53d48d731f36031abb006366e98fae5fa31b75572a52a23810fac9
MD5 f43ebe6b0af65581105db78bedec0d51
BLAKE2b-256 919bf49ba0912a2aab7e2b22883ece041632a2cbc99240ceb8d65c35a0034f46

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7929277bd86a76b8aacba0f459ac1e8dc8c7a951250d0c21f4155700aec9c78c
MD5 951ee528586151f9d4aa31cebc70545f
BLAKE2b-256 cab93d2ec6ed36c0eb11080a7aa0784298cc8c723037e287478fe5bb941fc835

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f98afb18d3c7e217ae04f944fd83560c3f4fe59ee334557a16c7514b7534fa22
MD5 dcefceb0d342ccc589967b10513c8463
BLAKE2b-256 ccced047c2a41119b10254aab6cc28553ac10fd279a9ac61e473c3dc2eabc595

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: eventio-2.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 276.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eventio-2.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f707963eebb0667d83720123298590c6b807950daf9f5cacd59e7d4b156f2b41
MD5 02c417117d51d1f9abd55f6287775a98
BLAKE2b-256 898a6ab26ee13808a107ca4e97507e8234e43e6bad550e873efe54b5979f4fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314-win_amd64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7cc15e204b67822fc81cd301eae4a514e31911d37d3f6704c6f6f358383e8677
MD5 95fa64f645db850aaabe5195308d416e
BLAKE2b-256 81f3da2dba64a7a196c50c62e1317bcfc640adbc14705d68d73b14c6984ac3bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7fd4aaac0ce6e336808e3639ea1f5205fd66b996403c4661f9b9d3a84138453
MD5 73f44d7b6c03e8d77a9b2d855ae8075f
BLAKE2b-256 2053970a5b4b4c9355360432a8ea24387e09455127212ad841b65275bd38ce9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c9fa1f837f645dc16160f009c9f9d7bc92b429f0446394cef08374a38c18782
MD5 7957f8c41feae58371fc09496d4f9b40
BLAKE2b-256 e96779ceb7920b16d65482b43e72b694cb4f270d58757437126be13debd41c2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: eventio-2.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 268.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eventio-2.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eddf51b92e37b1125093365bc48f3e5eb7e92be284c1c839a980e143c6102298
MD5 87c12b9d58f1a589ae41d960ce887ea7
BLAKE2b-256 3fb545ec24b23c99e9a8230c186779c32f8bdc97a1cbc09ccf15e025ec391636

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 319d1fa2de9f6f24d5926924031df1209dd64067e40f48c09217e2e1e1c37c21
MD5 6068d2f6be77118f36493616af653442
BLAKE2b-256 41c275c569ee3261e98456f82dc411b1b3ddf0eda7c644effeea9be362beedc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da5866dca60d40cea08a793d91e2831e99856b177ad592c482092f3073b9f125
MD5 3e81cc27acd6c22edc090a98e7abf996
BLAKE2b-256 0527067de525c5deed79901b6bb3d1f9943b23484233701969c835bcbd78529a

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5895cd851c22f3a175e2a5fe6e3245633c033b7002d0ef604ae0a39a894cfba7
MD5 fbccc032829faecdc2e52b9b256322cc
BLAKE2b-256 5ccd2195fcaad2cdbeebeb77a4a8679eed7f51b044120ccee7ea715ad93b544c

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: eventio-2.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 270.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eventio-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 db38e7cc313c62224a5b369e739727272bc3c1f45eb56a3d8768b8a2b40f6ada
MD5 5369adda2d645ac6ab5c54d1603f9530
BLAKE2b-256 cf94149a340288a614dea839f3339c02e739fc0a58dc56692ea8045745e82008

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5cef8214a14803dc91ebf529460ec7f7a557b486bbaabf59ffcc41ed84306dd6
MD5 d900bb482ad2b88da39508cf0122ae2c
BLAKE2b-256 0f3179ebf394ec8a911378513f999b61683348116de45b1e0c427881ab173e4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08e085ec38c4b3a254f503094d32d4912e535cd4b85b0b3217a69b2fe4786437
MD5 5ec10e727b471c751cc4a96ddce42028
BLAKE2b-256 bd193de78c8eaa0bd2138be16b9fbdecd513d360e5be441d8d6ec4c2c0f1b6b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0980f2126b694faf5bcb1ea656828f0a94bad88ad64b5bb24dca281df4430b11
MD5 d9548b562d8e4be87f44ecec74205887
BLAKE2b-256 39b34286d1a75a3cca4da511ab07b895902bcaa028c2d79a21c0fa17a1ccd0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: eventio-2.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 267.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eventio-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08668dc1949529c61445dd9ac92dac7e7b879fa03d074edf658af9ba88438d19
MD5 493f31bb4849b7fd99fa6a91b153c02c
BLAKE2b-256 5661c70450291513e409f439f9b8c95e1c47d586025924c6b989dd2e1a0519a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7ff5f862b13b30b0e1c42e19fc1fcbb39610d2ead502eca12576cbf7e4d41340
MD5 c3684c15dae71a67a8be3c34f6d6b89a
BLAKE2b-256 836356cf6ed05a5e2619acea190585a0ff6b88fe94c63bde4cda47bd022ac40c

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d4d6ac1061a000c9758c6fde20339ab67b2bbfa34724a5e87ad3d0ca826bf7e
MD5 e13846d874173b2e0b7b1825ec121574
BLAKE2b-256 5be19e3ab5825862b49caec8edc4c803a27a4c5b34c945abc046a354567e89d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eventio-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for eventio-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c177bc8721b146af786ad25f92c423939083ddf71687a3ae1b6ad7af7e19ffea
MD5 e3789cf948f347005ee30367058185f5
BLAKE2b-256 e03e90ee89179c5020814d32f9b3b11ce9ba8fb8ef005ae3d532bdfb4ee52e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for eventio-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on cta-observatory/pyeventio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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