Skip to main content

Aerosol data processing and visualization toolkit. Read, QC, and analyze data from SMPS, APS, AE33, TEOM, Nephelometer, XRF, and 15+ atmospheric instruments.

Project description

AeroViz

Aerosol Data Processing and Visualization Toolkit for Atmospheric Research

Python PyPI Pytest Documentation License

AeroViz is a Python toolkit for reading, processing, and visualizing aerosol measurement data. It supports 18+ atmospheric instruments with built-in quality control, data processing, and publication-ready visualizations.

Installation

pip install AeroViz

Quick Start

from AeroViz import RawDataReader

# Read AE33 Aethalometer data (black carbon)
df = RawDataReader(
    instrument='AE33',
    path='/path/to/data',
    start='2024-01-01',
    end='2024-12-31',
    mean_freq='1h',  # Hourly averages
    qc=True          # Apply quality control
)

# Output: DataFrame with columns like BC1-BC7, abs_370-abs_950, AAE, eBC
print(df[['eBC', 'AAE']].describe())

Supported Instruments

Black Carbon Monitors

Instrument Description Output Columns
AE33 Magee Aethalometer (7-wavelength) BC1-BC7, abs_370-abs_950, AAE, eBC
AE43 Magee Aethalometer (7-wavelength) BC1-BC7, abs_370-abs_950, AAE, eBC
BC1054 Met One Black Carbon Monitor BC, abs_880
MA350 AethLabs microAeth (5-wavelength) BC1-BC5, abs_375-abs_880
# Example: Read black carbon data
bc = RawDataReader('AE33', '/data/AE33', '2024-01-01', '2024-06-30')
print(f"Mean eBC: {bc['eBC'].mean():.2f} ng/m³")
print(f"Mean AAE: {-bc['AAE'].mean():.2f}")  # AAE stored as negative

Particle Sizers

Instrument Description Size Range Output Columns
SMPS Scanning Mobility Particle Sizer 10-1000 nm Size bins, total_num, GMD_num, GSD_num
APS Aerodynamic Particle Sizer 0.5-20 μm Size bins, total_num, GMD_num, GSD_num
GRIMM Optical Particle Counter 0.25-32 μm Size bins, number concentrations
# Example: Read SMPS size distribution
smps = RawDataReader(
    'SMPS', '/data/SMPS', '2024-01-01', '2024-06-30',
    size_range=(10, 500)  # Filter to 10-500 nm
)
print(f"Total number: {smps['total_num'].mean():.0f} #/cm³")
print(f"GMD: {smps['GMD_num'].mean():.1f} nm")

Mass Concentration

Instrument Description Output Columns
TEOM Tapered Element Oscillating Microbalance PM_NV, PM_Total, Volatile_Fraction
BAM1020 Beta Attenuation Monitor PM2.5, PM10
# Example: Read TEOM PM mass data
teom = RawDataReader('TEOM', '/data/TEOM', '2024-01-01', '2024-06-30')
print(f"PM2.5 (non-volatile): {teom['PM_NV'].mean():.1f} μg/m³")
print(f"PM2.5 (total): {teom['PM_Total'].mean():.1f} μg/m³")

Optical Instruments

Instrument Description Output Columns
NEPH TSI Nephelometer scattering_B, scattering_G, scattering_R, SAE
Aurora Ecotech Aurora 3000 scattering_B, scattering_G, scattering_R, SAE
# Example: Read nephelometer scattering data
neph = RawDataReader('Aurora', '/data/Aurora', '2024-01-01', '2024-06-30')
print(f"Scattering (550nm): {neph['scattering_G'].mean():.1f} Mm⁻¹")

Chemical Composition

Instrument Description Output Columns
Xact Cooper XRF Heavy Metals Fe, Zn, Pb, Cu, Mn, Cr, Ni, As, Cd, ...
OCEC Sunset OC/EC Analyzer OC, EC, TC, OC1-OC4, EC1-EC3
IGAC Ion Chromatograph SO4²⁻, NO3⁻, Cl⁻, NH4⁺, Na⁺, K⁺, ...
Q-ACSM Aerosol Chemical Speciation Monitor Org, SO4, NO3, NH4, Chl
# Example: Read XRF heavy metals data
xrf = RawDataReader('Xact', '/data/Xact', '2024-01-01', '2024-06-30')
print(f"Fe: {xrf['Fe'].mean():.1f} ng/m³")
print(f"Pb: {xrf['Pb'].mean():.2f} ng/m³")

Other Instruments

Instrument Description
VOC Volatile Organic Compounds Analyzer
EPA Taiwan EPA Air Quality Data
Minion Low-cost Sensor Network

Key Parameters

Parameter Type Description Default
instrument str Instrument name (see tables above) Required
path str/Path Directory containing raw data files Required
start str/datetime Start date ('2024-01-01' or datetime) Required
end str/datetime End date Required
mean_freq str Output frequency: '1h', '30min', '1D' '1h'
qc bool/str Quality control: True, False, or 'MS' for monthly stats True
reset bool/str True to reprocess, 'append' to add new data False
size_range tuple Size range in nm for SMPS/APS: (min, max) None

Quality Control

AeroViz applies automatic QC based on instrument-specific rules. The QC_Flag column indicates data quality:

Flag Description
Valid Data passed all QC checks
Insufficient Not enough raw data points in period
Status Error Instrument reported error status
Invalid BC Black carbon outside valid range
Invalid Number Conc Particle count outside valid range
Spike Detected sudden unrealistic change
# Check data quality
df = RawDataReader('AE33', '/data/AE33', '2024-01-01', '2024-06-30')
print(df['QC_Flag'].value_counts())
# Valid          8000
# Insufficient    300
# Status Error     60

Data Processing

Advanced analysis with specialized modules:

from AeroViz import DataProcess
from pathlib import Path

# Optical property calculations
optical = DataProcess(method='Optical', path_out=Path('./results'))

# Available methods:
# - 'Chemistry': Mass reconstruction, volume calculation, kappa
# - 'Optical': Mie theory, IMPROVE extinction, RI retrieval
# - 'SizeDistr': SMPS-APS merge, mode fitting, lung deposition
# - 'VOC': OFP, SOAP, MIR calculations

Visualization

Publication-ready plots:

from AeroViz import plot

# Time series, diurnal patterns, wind rose, polar plots, etc.

File Structure

AeroViz expects data organized by station and instrument:

/data/
├── Station_Instrument/
│   ├── raw_file_001.dat
│   ├── raw_file_002.dat
│   └── instrument_outputs/    # Auto-generated
│       ├── output_instrument.csv
│       ├── _read_instrument_qc.csv
│       └── report.json

Documentation

Contributing

Contributions are welcome! Please see our GitHub Issues for bug reports and feature requests.

License

MIT License - see LICENSE for details.

Citation

If you use AeroViz in your research, please cite:

AeroViz: Aerosol Data Processing and Visualization Toolkit
https://github.com/Alex870521/AeroViz

Contributors

Alex870521 yrr-Su Masbear

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

aeroviz-0.3.0.tar.gz (9.3 MB view details)

Uploaded Source

Built Distributions

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

aeroviz-0.3.0-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

aeroviz-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

aeroviz-0.3.0-cp314-cp314-macosx_14_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

aeroviz-0.3.0-cp313-cp313-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13Windows x86-64

aeroviz-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

aeroviz-0.3.0-cp313-cp313-macosx_14_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

aeroviz-0.3.0-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

aeroviz-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

aeroviz-0.3.0-cp312-cp312-macosx_14_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

aeroviz-0.3.0-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

aeroviz-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

aeroviz-0.3.0-cp311-cp311-macosx_14_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

aeroviz-0.3.0-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

aeroviz-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

aeroviz-0.3.0-cp310-cp310-macosx_14_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file aeroviz-0.3.0.tar.gz.

File metadata

  • Download URL: aeroviz-0.3.0.tar.gz
  • Upload date:
  • Size: 9.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aeroviz-0.3.0.tar.gz
Algorithm Hash digest
SHA256 dabe9934823caa9d30dcd522137ba9fa703988dea7676f9356d92091977dfc43
MD5 434e4b0163e1977f19ff0548d44f927c
BLAKE2b-256 557788cf453e8b86bfc06933361f50dc2e67a1d0fc063ab8e1bfd480e78f7659

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0.tar.gz:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aeroviz-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • 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 aeroviz-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e63b1ad5122e567bc3876f25d7b2762f0901d801766c94163572eda764f9d74
MD5 b5ed559421ae15c7a8c84c62014e196a
BLAKE2b-256 674e234df31fafeb7551d9c8229b49a74adecd1ad763d947702a28537526ab4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3de72350fcedcb310a4161d7a086367ace6c06a3a492b0a9ae2842bb825d20a
MD5 9224cfa6e15586962e74509db1397dff
BLAKE2b-256 811c24c89b2463a1d895750991f9f74e0786b9be658fa4aac1f4ade85cbd07e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 db325e8b4884612bed16164d0855da6b644dd753c1752a57e730afaedcb13d46
MD5 1097dfa584fa1d63fd7e24d85cf5c428
BLAKE2b-256 f67cc76e8a105d6e47b4e831b1414faff64dd864a9bb1709195b64fd533b630c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aeroviz-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • 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 aeroviz-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 529c0d7f207369c474f53e082627e3cccf89ab1b475e24315ee6c281ceb0948a
MD5 cfee971d38ffbea7f69fb1a6d5c17d9c
BLAKE2b-256 d27f2b52e14f405648e21f8428bf401b19571d649cb0ed21dec924c378e44551

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9124b6134ce343ddd2ca12f5e4c88f256423ef6e55e14cce82f1064fe4d46edc
MD5 80e6173ff125e3e94f9989bf70aeabd6
BLAKE2b-256 aaffe7a02683e920ae31c76e0647f1fdcca78dc4043e2e9aee6aa4c07d891bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1eb18d9c842960f2ac8615528909c61fa859d6daed7259061804642d60717bbe
MD5 9539bd8d9c3d87f2a4aeda632643f6db
BLAKE2b-256 d6cff7fff788777422fd4a580a4751963e3dfa3bbe6b01da60a4d865f37c68b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aeroviz-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • 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 aeroviz-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 021079aa11bd8f97904217c4131c70d4cc1da35fd6c09f5a69ff0ad495e9368b
MD5 c55b5143c34ce781f245a3e328ce2b92
BLAKE2b-256 b33f8af680cc7f5ee8fbd45cd70e9d82f4f1bc3c23fed145ab3eb2996df253e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5afce53ade37aebe93f6cbbee62aeffafa3845bf5d55f682a1cdfce70267b93
MD5 da1ae01355f6562cf4cdba95e13cedab
BLAKE2b-256 d5564d51aaddfde22ff987841581f055171470b466255dba61a8519d87d04356

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 31aa97aa730dd3753ff6f52f9b62ea4e0d40042b7523a445dab97424acbb8a1c
MD5 0e5d56334412f01c5fe0f2fddc1c5fe4
BLAKE2b-256 d2f8c7ce74f8ebaa8876a1488d64d2bbef8a67637066f81feaed757ab28f468f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aeroviz-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • 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 aeroviz-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8d8d460d1ea8adca531c57528c46f856aab546f38e894ec773e1894814b901e
MD5 e16023c2fcd7dd04d94c534b645884a2
BLAKE2b-256 5a0a8a7105ff7f3aa581e884566efb69265cf1a49d81a92ca4af1c9c047b5bc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f850a5e51930c35da249c0571ac49ed4b7b49558b7f39be20f33bf7f9b34f42b
MD5 428e261112899dbfc512fefac7f79773
BLAKE2b-256 17455bc76effa5b51bd78fafbe5456cf1648ea39769ce1ecf6b0c8f12e05d8ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8a7a4efebaafa4bd4442cf99f40b6a66530ca44d7adde9ca5872d894f16b3aca
MD5 4e27592b4af18e9194ac66c22a645978
BLAKE2b-256 f3dfdf8cf3f297d972879a226145159b79550fe6001c4acddf4c8fb2d825881a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aeroviz-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aeroviz-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f514c2e9601576552623b9a87d73a04b95d83ce5ad8d9dde0b6867d0d740e829
MD5 acd390f120be63c60f27ffd6d14d80dc
BLAKE2b-256 1b656a8857291355ef4f09e9950a64c9f26ca8ff0d54d929f5c1f4f42b446869

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 751e50fa828710a70cdd4041bf3ffac0ea371b8b48833562c52449ec4691a637
MD5 f59e01fccaa006991655db2f600119fb
BLAKE2b-256 0b47a185a23585af3fb4e6f46d22dc081c5cd24266413c44abf2ddd3b2367406

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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

File details

Details for the file aeroviz-0.3.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for aeroviz-0.3.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1d6fded976dcd6e913f42a63063f2c8ebe38e678c1dee8f36ca297952b2198b2
MD5 f728db86c2cad89bbc54b78e1c7b6bf9
BLAKE2b-256 66cfd0714f5e64a4eda2e035568ac23e9956f803162d7877e6db938dce78a031

See more details on using hashes here.

Provenance

The following attestation bundles were made for aeroviz-0.3.0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: wheels.yml on Alex870521/AeroViz

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