Name | pyModeS JSON |
Version |
2.21.1
JSON |
| download |
home_page | None |
Summary | Python Mode-S and ADS-B Decoder |
upload_time | 2025-07-09 16:24:51 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | GNU GPL v3 |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
The Python ADS-B/Mode-S Decoder
===============================
PyModeS is a Python library designed to decode Mode-S (including ADS-B) messages. It can be imported to your python project or used as a standalone tool to view and save live traffic data.
This is a project created by Junzi Sun, who works at `TU Delft <https://www.tudelft.nl/en/>`_, `Aerospace Engineering Faculty <https://www.tudelft.nl/en/ae/>`_, `CNS/ATM research group <http://cs.lr.tudelft.nl/atm/>`_. It is supported by many `contributors <https://github.com/junzis/pyModeS/graphs/contributors>`_ from different institutions.
Introduction
------------
pyModeS supports the decoding of following types of messages:
- DF4 / DF20: Altitude code
- DF5 / DF21: Identity code (squawk code)
- DF17 / DF18: Automatic Dependent Surveillance-Broadcast (ADS-B)
- TC=1-4 / BDS 0,8: Aircraft identification and category
- TC=5-8 / BDS 0,6: Surface position
- TC=9-18 / BDS 0,5: Airborne position
- TC=19 / BDS 0,9: Airborne velocity
- TC=28 / BDS 6,1: Airborne status [to be implemented]
- TC=29 / BDS 6,2: Target state and status information [to be implemented]
- TC=31 / BDS 6,5: Aircraft operational status [to be implemented]
- DF20 / DF21: Mode-S Comm-B messages
- BDS 1,0: Data link capability report
- BDS 1,7: Common usage GICB capability report
- BDS 2,0: Aircraft identification
- BDS 3,0: ACAS active resolution advisory
- BDS 4,0: Selected vertical intention
- BDS 4,4: Meteorological routine air report (experimental)
- BDS 4,5: Meteorological hazard report (experimental)
- BDS 5,0: Track and turn report
- BDS 6,0: Heading and speed report
If you find this project useful for your research, please considering cite this tool as::
@article{sun2019pymodes,
author={J. {Sun} and H. {V\^u} and J. {Ellerbroek} and J. M. {Hoekstra}},
journal={IEEE Transactions on Intelligent Transportation Systems},
title={pyModeS: Decoding Mode-S Surveillance Data for Open Air Transportation Research},
year={2019},
doi={10.1109/TITS.2019.2914770},
ISSN={1524-9050},
}
Resources
-----------
Check out and contribute to this open-source project at:
https://github.com/junzis/pyModeS
Detailed manual on Mode-S decoding is published at:
https://mode-s.org/decode
The API documentation of pyModeS is at:
https://mode-s.org/api
Basic installation
-------------------
Installation examples::
# stable version
pip install pyModeS
# conda (compiled) version
conda install -c conda-forge pymodes
# development version
pip install git+https://github.com/junzis/pyModeS
Dependencies ``numpy``, and ``pyzmq`` are installed automatically during previous installations processes.
If you need to connect pyModeS to a RTL-SDR receiver, ``pyrtlsdr`` need to be installed manually::
pip install pyrtlsdr
Advanced installation (using c modules)
------------------------------------------
If you want to make use of the (faster) c module, install ``pyModeS`` as follows::
# conda (compiled) version
conda install -c conda-forge pymodes
# stable version
pip install pyModeS
# development version
git clone https://github.com/junzis/pyModeS
cd pyModeS
poetry install -E rtlsdr
View live traffic (modeslive)
----------------------------------------------------
General usage::
$ modeslive [-h] --source SOURCE [--connect SERVER PORT DATAYPE]
[--latlon LAT LON] [--show-uncertainty] [--dumpto DUMPTO]
arguments:
-h, --help show this help message and exit
--source SOURCE Choose data source, "rtlsdr" or "net"
--connect SERVER PORT DATATYPE
Define server, port and data type. Supported data
types are: ['raw', 'beast', 'skysense']
--latlon LAT LON Receiver latitude and longitude, needed for the surface
position, default none
--show-uncertainty Display uncertainty values, default off
--dumpto DUMPTO Folder to dump decoded output, default none
Live with RTL-SDR
*******************
If you have an RTL-SDR receiver connected to your computer, you can use the ``rtlsdr`` source switch (require ``pyrtlsdr`` package), with command::
$ modeslive --source rtlsdr
Live with network data
***************************
If you want to connect to a TCP server that broadcast raw data. use can use ``net`` source switch, for example::
$ modeslive --source net --connect localhost 30002 raw
$ modeslive --source net --connect 127.0.0.1 30005 beast
Example screenshot:
.. image:: https://github.com/junzis/pyModeS/raw/master/doc/modeslive-screenshot.png
:width: 700px
Use the library
---------------
.. code:: python
import pyModeS as pms
Common functions
*****************
.. code:: python
pms.df(msg) # Downlink Format
pms.icao(msg) # Infer the ICAO address from the message
pms.crc(msg, encode=False) # Perform CRC or generate parity bit
pms.hex2bin(str) # Convert hexadecimal string to binary string
pms.bin2int(str) # Convert binary string to integer
pms.hex2int(str) # Convert hexadecimal string to integer
pms.gray2int(str) # Convert grey code to integer
Core functions for ADS-B decoding
*********************************
.. code:: python
pms.adsb.icao(msg)
pms.adsb.typecode(msg)
# Typecode 1-4
pms.adsb.callsign(msg)
# Typecode 5-8 (surface), 9-18 (airborne, barometric height), and 20-22 (airborne, GNSS height)
pms.adsb.position(msg_even, msg_odd, t_even, t_odd, lat_ref=None, lon_ref=None)
pms.adsb.airborne_position(msg_even, msg_odd, t_even, t_odd)
pms.adsb.surface_position(msg_even, msg_odd, t_even, t_odd, lat_ref, lon_ref)
pms.adsb.surface_velocity(msg)
pms.adsb.position_with_ref(msg, lat_ref, lon_ref)
pms.adsb.airborne_position_with_ref(msg, lat_ref, lon_ref)
pms.adsb.surface_position_with_ref(msg, lat_ref, lon_ref)
pms.adsb.altitude(msg)
# Typecode: 19
pms.adsb.velocity(msg) # Handles both surface & airborne messages
pms.adsb.speed_heading(msg) # Handles both surface & airborne messages
pms.adsb.airborne_velocity(msg)
Note: When you have a fix position of the aircraft, it is convenient to use `position_with_ref()` method to decode with only one position message (either odd or even). This works with both airborne and surface position messages. But the reference position shall be within 180NM (airborne) or 45NM (surface) of the true position.
Decode altitude replies in DF4 / DF20
**************************************
.. code:: python
pms.common.altcode(msg) # Downlink format must be 4 or 20
Decode identity replies in DF5 / DF21
**************************************
.. code:: python
pms.common.idcode(msg) # Downlink format must be 5 or 21
Common Mode-S functions
************************
.. code:: python
pms.icao(msg) # Infer the ICAO address from the message
pms.bds.infer(msg) # Infer the Modes-S BDS register
# Check if BDS is 5,0 or 6,0, give reference speed, track, altitude (from ADS-B)
pms.bds.is50or60(msg, spd_ref, trk_ref, alt_ref)
# Check each BDS explicitly
pms.bds.bds10.is10(msg)
pms.bds.bds17.is17(msg)
pms.bds.bds20.is20(msg)
pms.bds.bds30.is30(msg)
pms.bds.bds40.is40(msg)
pms.bds.bds44.is44(msg)
pms.bds.bds50.is50(msg)
pms.bds.bds60.is60(msg)
Mode-S Elementary Surveillance (ELS)
*************************************
.. code:: python
pms.commb.ovc10(msg) # Overlay capability, BDS 1,0
pms.commb.cap17(msg) # GICB capability, BDS 1,7
pms.commb.cs20(msg) # Callsign, BDS 2,0
Mode-S Enhanced Surveillance (EHS)
***********************************
.. code:: python
# BDS 4,0
pms.commb.selalt40mcp(msg) # MCP/FCU selected altitude (ft)
pms.commb.selalt40fms(msg) # FMS selected altitude (ft)
pms.commb.p40baro(msg) # Barometric pressure (mb)
# BDS 5,0
pms.commb.roll50(msg) # Roll angle (deg)
pms.commb.trk50(msg) # True track angle (deg)
pms.commb.gs50(msg) # Ground speed (kt)
pms.commb.rtrk50(msg) # Track angle rate (deg/sec)
pms.commb.tas50(msg) # True airspeed (kt)
# BDS 6,0
pms.commb.hdg60(msg) # Magnetic heading (deg)
pms.commb.ias60(msg) # Indicated airspeed (kt)
pms.commb.mach60(msg) # Mach number (-)
pms.commb.vr60baro(msg) # Barometric altitude rate (ft/min)
pms.commb.vr60ins(msg) # Inertial vertical speed (ft/min)
Meteorological reports [Experimental]
**************************************
To identify BDS 4,4 and 4,5 codes, you must set ``mrar`` argument to ``True`` in the ``infer()`` function:
.. code:: python
pms.bds.infer(msg. mrar=True)
Once the correct MRAR and MHR messages are identified, decode them as follows:
Meteorological routine air report (MRAR)
+++++++++++++++++++++++++++++++++++++++++
.. code:: python
# BDS 4,4
pms.commb.wind44(msg) # Wind speed (kt) and direction (true) (deg)
pms.commb.temp44(msg) # Static air temperature (C)
pms.commb.p44(msg) # Average static pressure (hPa)
pms.commb.hum44(msg) # Humidity (%)
Meteorological hazard air report (MHR)
+++++++++++++++++++++++++++++++++++++++++
.. code:: python
# BDS 4,5
pms.commb.turb45(msg) # Turbulence level (0-3)
pms.commb.ws45(msg) # Wind shear level (0-3)
pms.commb.mb45(msg) # Microburst level (0-3)
pms.commb.ic45(msg) # Icing level (0-3)
pms.commb.wv45(msg) # Wake vortex level (0-3)
pms.commb.temp45(msg) # Static air temperature (C)
pms.commb.p45(msg) # Average static pressure (hPa)
pms.commb.rh45(msg) # Radio height (ft)
Customize the streaming module
******************************
The TCP client module from pyModeS can be re-used to stream and process Mode-S data as you like. You need to re-implement the ``handle_messages()`` function from the ``TcpClient`` class to write your own logic to handle the messages.
Here is an example:
.. code:: python
import pyModeS as pms
from pyModeS.extra.tcpclient import TcpClient
# define your custom class by extending the TcpClient
# - implement your handle_messages() methods
class ADSBClient(TcpClient):
def __init__(self, host, port, rawtype):
super(ADSBClient, self).__init__(host, port, rawtype)
def handle_messages(self, messages):
for msg, ts in messages:
if len(msg) != 28: # wrong data length
continue
df = pms.df(msg)
if df != 17: # not ADSB
continue
if pms.crc(msg) !=0: # CRC fail
continue
icao = pms.adsb.icao(msg)
tc = pms.adsb.typecode(msg)
# TODO: write you magic code here
print(ts, icao, tc, msg)
# run new client, change the host, port, and rawtype if needed
client = ADSBClient(host='127.0.0.1', port=30005, rawtype='beast')
client.run()
Unit test
---------
.. code:: bash
uv sync --dev --all-extras
uv run pytest
Raw data
{
"_id": null,
"home_page": null,
"name": "pyModeS",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Junzi Sun <git@junzis.com>",
"download_url": "https://files.pythonhosted.org/packages/0a/ff/9511a63766a2f4876055e8f343cfeedef923a2fa08f7f8821a446d048d1f/pymodes-2.21.1.tar.gz",
"platform": null,
"description": "The Python ADS-B/Mode-S Decoder\n===============================\n\nPyModeS is a Python library designed to decode Mode-S (including ADS-B) messages. It can be imported to your python project or used as a standalone tool to view and save live traffic data.\n\nThis is a project created by Junzi Sun, who works at `TU Delft <https://www.tudelft.nl/en/>`_, `Aerospace Engineering Faculty <https://www.tudelft.nl/en/ae/>`_, `CNS/ATM research group <http://cs.lr.tudelft.nl/atm/>`_. It is supported by many `contributors <https://github.com/junzis/pyModeS/graphs/contributors>`_ from different institutions.\n\nIntroduction\n------------\n\npyModeS supports the decoding of following types of messages:\n\n- DF4 / DF20: Altitude code\n- DF5 / DF21: Identity code (squawk code)\n\n- DF17 / DF18: Automatic Dependent Surveillance-Broadcast (ADS-B)\n\n - TC=1-4 / BDS 0,8: Aircraft identification and category\n - TC=5-8 / BDS 0,6: Surface position\n - TC=9-18 / BDS 0,5: Airborne position\n - TC=19 / BDS 0,9: Airborne velocity\n - TC=28 / BDS 6,1: Airborne status [to be implemented]\n - TC=29 / BDS 6,2: Target state and status information [to be implemented]\n - TC=31 / BDS 6,5: Aircraft operational status [to be implemented]\n\n- DF20 / DF21: Mode-S Comm-B messages\n\n - BDS 1,0: Data link capability report\n - BDS 1,7: Common usage GICB capability report\n - BDS 2,0: Aircraft identification\n - BDS 3,0: ACAS active resolution advisory\n - BDS 4,0: Selected vertical intention\n - BDS 4,4: Meteorological routine air report (experimental)\n - BDS 4,5: Meteorological hazard report (experimental)\n - BDS 5,0: Track and turn report\n - BDS 6,0: Heading and speed report\n\n\n\nIf you find this project useful for your research, please considering cite this tool as::\n\n @article{sun2019pymodes,\n author={J. {Sun} and H. {V\\^u} and J. {Ellerbroek} and J. M. {Hoekstra}},\n journal={IEEE Transactions on Intelligent Transportation Systems},\n title={pyModeS: Decoding Mode-S Surveillance Data for Open Air Transportation Research},\n year={2019},\n doi={10.1109/TITS.2019.2914770},\n ISSN={1524-9050},\n }\n\n\n\n\nResources\n-----------\nCheck out and contribute to this open-source project at:\nhttps://github.com/junzis/pyModeS\n\nDetailed manual on Mode-S decoding is published at:\nhttps://mode-s.org/decode\n\nThe API documentation of pyModeS is at:\nhttps://mode-s.org/api\n\n\n\nBasic installation\n-------------------\n\nInstallation examples::\n\n # stable version\n pip install pyModeS\n\n # conda (compiled) version\n conda install -c conda-forge pymodes\n\n # development version\n pip install git+https://github.com/junzis/pyModeS\n\n\nDependencies ``numpy``, and ``pyzmq`` are installed automatically during previous installations processes. \n\nIf you need to connect pyModeS to a RTL-SDR receiver, ``pyrtlsdr`` need to be installed manually::\n\n pip install pyrtlsdr\n\n\nAdvanced installation (using c modules)\n------------------------------------------\n\nIf you want to make use of the (faster) c module, install ``pyModeS`` as follows::\n\n # conda (compiled) version\n conda install -c conda-forge pymodes\n\n # stable version\n pip install pyModeS\n\n # development version\n git clone https://github.com/junzis/pyModeS\n cd pyModeS\n poetry install -E rtlsdr\n\n\nView live traffic (modeslive)\n----------------------------------------------------\n\nGeneral usage::\n\n $ modeslive [-h] --source SOURCE [--connect SERVER PORT DATAYPE]\n [--latlon LAT LON] [--show-uncertainty] [--dumpto DUMPTO]\n\n arguments:\n -h, --help show this help message and exit\n --source SOURCE Choose data source, \"rtlsdr\" or \"net\"\n --connect SERVER PORT DATATYPE\n Define server, port and data type. Supported data\n types are: ['raw', 'beast', 'skysense']\n --latlon LAT LON Receiver latitude and longitude, needed for the surface\n position, default none\n --show-uncertainty Display uncertainty values, default off\n --dumpto DUMPTO Folder to dump decoded output, default none\n\n\nLive with RTL-SDR\n*******************\n\nIf you have an RTL-SDR receiver connected to your computer, you can use the ``rtlsdr`` source switch (require ``pyrtlsdr`` package), with command::\n\n $ modeslive --source rtlsdr\n\n\nLive with network data\n***************************\n\nIf you want to connect to a TCP server that broadcast raw data. use can use ``net`` source switch, for example::\n\n $ modeslive --source net --connect localhost 30002 raw\n $ modeslive --source net --connect 127.0.0.1 30005 beast\n\n\n\nExample screenshot:\n\n.. image:: https://github.com/junzis/pyModeS/raw/master/doc/modeslive-screenshot.png\n :width: 700px\n\n\nUse the library\n---------------\n\n.. code:: python\n\n import pyModeS as pms\n\n\nCommon functions\n*****************\n\n.. code:: python\n\n pms.df(msg) # Downlink Format\n pms.icao(msg) # Infer the ICAO address from the message\n pms.crc(msg, encode=False) # Perform CRC or generate parity bit\n\n pms.hex2bin(str) # Convert hexadecimal string to binary string\n pms.bin2int(str) # Convert binary string to integer\n pms.hex2int(str) # Convert hexadecimal string to integer\n pms.gray2int(str) # Convert grey code to integer\n\n\nCore functions for ADS-B decoding\n*********************************\n\n.. code:: python\n\n pms.adsb.icao(msg)\n pms.adsb.typecode(msg)\n\n # Typecode 1-4\n pms.adsb.callsign(msg)\n\n # Typecode 5-8 (surface), 9-18 (airborne, barometric height), and 20-22 (airborne, GNSS height)\n pms.adsb.position(msg_even, msg_odd, t_even, t_odd, lat_ref=None, lon_ref=None)\n pms.adsb.airborne_position(msg_even, msg_odd, t_even, t_odd)\n pms.adsb.surface_position(msg_even, msg_odd, t_even, t_odd, lat_ref, lon_ref)\n pms.adsb.surface_velocity(msg)\n\n pms.adsb.position_with_ref(msg, lat_ref, lon_ref)\n pms.adsb.airborne_position_with_ref(msg, lat_ref, lon_ref)\n pms.adsb.surface_position_with_ref(msg, lat_ref, lon_ref)\n\n pms.adsb.altitude(msg)\n\n # Typecode: 19\n pms.adsb.velocity(msg) # Handles both surface & airborne messages\n pms.adsb.speed_heading(msg) # Handles both surface & airborne messages\n pms.adsb.airborne_velocity(msg)\n\n\nNote: When you have a fix position of the aircraft, it is convenient to use `position_with_ref()` method to decode with only one position message (either odd or even). This works with both airborne and surface position messages. But the reference position shall be within 180NM (airborne) or 45NM (surface) of the true position.\n\n\nDecode altitude replies in DF4 / DF20\n**************************************\n.. code:: python\n\n pms.common.altcode(msg) # Downlink format must be 4 or 20\n\n\nDecode identity replies in DF5 / DF21\n**************************************\n.. code:: python\n\n pms.common.idcode(msg) # Downlink format must be 5 or 21\n\n\n\nCommon Mode-S functions\n************************\n\n.. code:: python\n\n pms.icao(msg) # Infer the ICAO address from the message\n pms.bds.infer(msg) # Infer the Modes-S BDS register\n\n # Check if BDS is 5,0 or 6,0, give reference speed, track, altitude (from ADS-B)\n pms.bds.is50or60(msg, spd_ref, trk_ref, alt_ref)\n\n # Check each BDS explicitly\n pms.bds.bds10.is10(msg)\n pms.bds.bds17.is17(msg)\n pms.bds.bds20.is20(msg)\n pms.bds.bds30.is30(msg)\n pms.bds.bds40.is40(msg)\n pms.bds.bds44.is44(msg)\n pms.bds.bds50.is50(msg)\n pms.bds.bds60.is60(msg)\n\n\n\nMode-S Elementary Surveillance (ELS)\n*************************************\n\n.. code:: python\n\n pms.commb.ovc10(msg) # Overlay capability, BDS 1,0\n pms.commb.cap17(msg) # GICB capability, BDS 1,7\n pms.commb.cs20(msg) # Callsign, BDS 2,0\n\n\nMode-S Enhanced Surveillance (EHS)\n***********************************\n\n.. code:: python\n\n # BDS 4,0\n pms.commb.selalt40mcp(msg) # MCP/FCU selected altitude (ft)\n pms.commb.selalt40fms(msg) # FMS selected altitude (ft)\n pms.commb.p40baro(msg) # Barometric pressure (mb)\n\n # BDS 5,0\n pms.commb.roll50(msg) # Roll angle (deg)\n pms.commb.trk50(msg) # True track angle (deg)\n pms.commb.gs50(msg) # Ground speed (kt)\n pms.commb.rtrk50(msg) # Track angle rate (deg/sec)\n pms.commb.tas50(msg) # True airspeed (kt)\n\n # BDS 6,0\n pms.commb.hdg60(msg) # Magnetic heading (deg)\n pms.commb.ias60(msg) # Indicated airspeed (kt)\n pms.commb.mach60(msg) # Mach number (-)\n pms.commb.vr60baro(msg) # Barometric altitude rate (ft/min)\n pms.commb.vr60ins(msg) # Inertial vertical speed (ft/min)\n\n\nMeteorological reports [Experimental]\n**************************************\n\nTo identify BDS 4,4 and 4,5 codes, you must set ``mrar`` argument to ``True`` in the ``infer()`` function:\n\n.. code:: python\n\n pms.bds.infer(msg. mrar=True) \n\nOnce the correct MRAR and MHR messages are identified, decode them as follows:\n\n\nMeteorological routine air report (MRAR)\n+++++++++++++++++++++++++++++++++++++++++\n\n.. code:: python\n\n # BDS 4,4\n pms.commb.wind44(msg) # Wind speed (kt) and direction (true) (deg)\n pms.commb.temp44(msg) # Static air temperature (C)\n pms.commb.p44(msg) # Average static pressure (hPa)\n pms.commb.hum44(msg) # Humidity (%)\n\n\nMeteorological hazard air report (MHR)\n+++++++++++++++++++++++++++++++++++++++++\n\n.. code:: python\n\n # BDS 4,5\n pms.commb.turb45(msg) # Turbulence level (0-3)\n pms.commb.ws45(msg) # Wind shear level (0-3)\n pms.commb.mb45(msg) # Microburst level (0-3)\n pms.commb.ic45(msg) # Icing level (0-3)\n pms.commb.wv45(msg) # Wake vortex level (0-3)\n pms.commb.temp45(msg) # Static air temperature (C)\n pms.commb.p45(msg) # Average static pressure (hPa)\n pms.commb.rh45(msg) # Radio height (ft)\n\n\n\nCustomize the streaming module\n******************************\nThe TCP client module from pyModeS can be re-used to stream and process Mode-S data as you like. You need to re-implement the ``handle_messages()`` function from the ``TcpClient`` class to write your own logic to handle the messages.\n\nHere is an example:\n\n.. code:: python\n\n import pyModeS as pms\n from pyModeS.extra.tcpclient import TcpClient\n\n # define your custom class by extending the TcpClient\n # - implement your handle_messages() methods\n class ADSBClient(TcpClient):\n def __init__(self, host, port, rawtype):\n super(ADSBClient, self).__init__(host, port, rawtype)\n\n def handle_messages(self, messages):\n for msg, ts in messages:\n if len(msg) != 28: # wrong data length\n continue\n\n df = pms.df(msg)\n\n if df != 17: # not ADSB\n continue\n\n if pms.crc(msg) !=0: # CRC fail\n continue\n\n icao = pms.adsb.icao(msg)\n tc = pms.adsb.typecode(msg)\n\n # TODO: write you magic code here\n print(ts, icao, tc, msg)\n\n # run new client, change the host, port, and rawtype if needed\n client = ADSBClient(host='127.0.0.1', port=30005, rawtype='beast')\n client.run()\n\n\nUnit test\n---------\n\n.. code:: bash\n\n uv sync --dev --all-extras\n uv run pytest\n",
"bugtrack_url": null,
"license": "GNU GPL v3",
"summary": "Python Mode-S and ADS-B Decoder",
"version": "2.21.1",
"project_urls": {
"homepage": "https://mode-s.org",
"issues": "https://github.com/junzis/pyModeS/issues",
"repository": "https://github.com/junzis/pyModeS"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "d5e02465ef4ab6928ccf1d1e818a62c40849deff6b90414ab89005295e3d3019",
"md5": "0b326b2203367622742f60160764c24e",
"sha256": "d015e09d22908203893fb3482579ba769c5322e77b2f402f016ad1a3d11d6df7"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "0b326b2203367622742f60160764c24e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 643483,
"upload_time": "2025-07-09T16:24:12",
"upload_time_iso_8601": "2025-07-09T16:24:12.678539Z",
"url": "https://files.pythonhosted.org/packages/d5/e0/2465ef4ab6928ccf1d1e818a62c40849deff6b90414ab89005295e3d3019/pymodes-2.21.1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e1d9958c962eb72920e5a4ef6d2d57ff3812c9aac8f065b829da3022b5086d4",
"md5": "e6bb2258ca1f4a3318e54bc59863d742",
"sha256": "69cb00fff1388530f7925ce08706828eb69497c662f7800e3d7dc3e59fd86d50"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e6bb2258ca1f4a3318e54bc59863d742",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1232713,
"upload_time": "2025-07-09T16:24:15",
"upload_time_iso_8601": "2025-07-09T16:24:15.538831Z",
"url": "https://files.pythonhosted.org/packages/6e/1d/9958c962eb72920e5a4ef6d2d57ff3812c9aac8f065b829da3022b5086d4/pymodes-2.21.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31f51b2b004bb8b38157f7288ae648333754ae1a62a265e369dee76e96c7058d",
"md5": "73b042f334cd4241762b73d7c09fac07",
"sha256": "190d4eba517e5087d150a91b1c120ba64ca02cb3634d6e2b719c8d8b4982228f"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "73b042f334cd4241762b73d7c09fac07",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1233497,
"upload_time": "2025-07-09T16:24:17",
"upload_time_iso_8601": "2025-07-09T16:24:17.079521Z",
"url": "https://files.pythonhosted.org/packages/31/f5/1b2b004bb8b38157f7288ae648333754ae1a62a265e369dee76e96c7058d/pymodes-2.21.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "504768bbf96a46130e21317c12b3178d7d7fa8349fb0a656e9bca547d56ae7c0",
"md5": "03819ce770f7e5899db9f4f71a39bc58",
"sha256": "4a6290f5cdf0595ef90a63aaea90c1a1ec7ae699ac0dbe41e7ab7d9358b6528e"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "03819ce770f7e5899db9f4f71a39bc58",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1232070,
"upload_time": "2025-07-09T16:24:18",
"upload_time_iso_8601": "2025-07-09T16:24:18.231004Z",
"url": "https://files.pythonhosted.org/packages/50/47/68bbf96a46130e21317c12b3178d7d7fa8349fb0a656e9bca547d56ae7c0/pymodes-2.21.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "618290a0984a97ac4e861c60b3d1fc5d7e9f700d2b4c2e21b1d7de4f6dab8a9e",
"md5": "1b9e24811aff79087c30ba5c200faf70",
"sha256": "876fb276c29fa8ecaf07be79c2d74475b63732124bb87e764aeab3841b9113df"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1b9e24811aff79087c30ba5c200faf70",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1260860,
"upload_time": "2025-07-09T16:24:20",
"upload_time_iso_8601": "2025-07-09T16:24:20.038719Z",
"url": "https://files.pythonhosted.org/packages/61/82/90a0984a97ac4e861c60b3d1fc5d7e9f700d2b4c2e21b1d7de4f6dab8a9e/pymodes-2.21.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3763f4ade3dd50362978a2330f78581cc7f980e9a46d95fad4af44977ce06072",
"md5": "8856e8a0becfe157773fdecbe23f7dcc",
"sha256": "48f4c8b158c3aaade3bb63098fa36034c879f174b7ea6d6fda07e24685223af2"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8856e8a0becfe157773fdecbe23f7dcc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 494634,
"upload_time": "2025-07-09T16:24:21",
"upload_time_iso_8601": "2025-07-09T16:24:21.619284Z",
"url": "https://files.pythonhosted.org/packages/37/63/f4ade3dd50362978a2330f78581cc7f980e9a46d95fad4af44977ce06072/pymodes-2.21.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec96479552c0aa0e3fa9921336fa40943facc3b0206bdfdddf6d2ba67d6a09e4",
"md5": "98366039ef9cd0b7db55aec44cdee4ff",
"sha256": "d005b58a35fd02690711889851734d5c5b3e14e83f9b25b312cbfddd0c706c71"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "98366039ef9cd0b7db55aec44cdee4ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 647866,
"upload_time": "2025-07-09T16:24:23",
"upload_time_iso_8601": "2025-07-09T16:24:23.177871Z",
"url": "https://files.pythonhosted.org/packages/ec/96/479552c0aa0e3fa9921336fa40943facc3b0206bdfdddf6d2ba67d6a09e4/pymodes-2.21.1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28539219e6f0b666112a0524ccf249eaec4fd65d53b45d388ab9308a8235ba33",
"md5": "aaec0a119b9df8ae50699e957c3ca4eb",
"sha256": "5d1be24662d6d86360947c8c34855138b749b8c26cc8d486a31e499ebc6264f5"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "aaec0a119b9df8ae50699e957c3ca4eb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1294789,
"upload_time": "2025-07-09T16:24:24",
"upload_time_iso_8601": "2025-07-09T16:24:24.657789Z",
"url": "https://files.pythonhosted.org/packages/28/53/9219e6f0b666112a0524ccf249eaec4fd65d53b45d388ab9308a8235ba33/pymodes-2.21.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5366d6e3b1a6e2ed69612747eeff09d3a066eba1df5823f040939588b836fd2",
"md5": "aa1ce35db34e690934c0c4744a1d6f20",
"sha256": "05afc4e14ffa825ef9ed3f56bf7e73f2705ff5b136232ed550af21d340120ffb"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "aa1ce35db34e690934c0c4744a1d6f20",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1297683,
"upload_time": "2025-07-09T16:24:28",
"upload_time_iso_8601": "2025-07-09T16:24:28.206729Z",
"url": "https://files.pythonhosted.org/packages/c5/36/6d6e3b1a6e2ed69612747eeff09d3a066eba1df5823f040939588b836fd2/pymodes-2.21.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b49fc4e0fe0b333345d499a5e3344c86b264febb9db00c862cf934991aafa538",
"md5": "a0ad5439fa4f7dedadeb3d676c0ce421",
"sha256": "4ef1b75f0f4349fcfba548e1511e21106189a246fee65dd55f342a1f14eb7e52"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a0ad5439fa4f7dedadeb3d676c0ce421",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1292204,
"upload_time": "2025-07-09T16:24:29",
"upload_time_iso_8601": "2025-07-09T16:24:29.878250Z",
"url": "https://files.pythonhosted.org/packages/b4/9f/c4e0fe0b333345d499a5e3344c86b264febb9db00c862cf934991aafa538/pymodes-2.21.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89495f2566e1bc9ef7116ae255f1c988f4ef60fbcfe86e93ba778e5e552f7a8c",
"md5": "46fe4256ec8d6cca69cb08455da116bc",
"sha256": "82340c0cc6b736c8672863b6d84e53e1ff0d5e4275ea863b346a95369de97e56"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "46fe4256ec8d6cca69cb08455da116bc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1317245,
"upload_time": "2025-07-09T16:24:31",
"upload_time_iso_8601": "2025-07-09T16:24:31.470753Z",
"url": "https://files.pythonhosted.org/packages/89/49/5f2566e1bc9ef7116ae255f1c988f4ef60fbcfe86e93ba778e5e552f7a8c/pymodes-2.21.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6e3773636414a0cabee9edc4b867539d52776325e47d284ed5b8145044c8837",
"md5": "b6a1a433d9ab8b246b4d5140b9ae4f49",
"sha256": "b504363a39b6dd3f525a67f91c83e16e920f1d5780774a40d95a2c87e0337c94"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "b6a1a433d9ab8b246b4d5140b9ae4f49",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 494418,
"upload_time": "2025-07-09T16:24:32",
"upload_time_iso_8601": "2025-07-09T16:24:32.867615Z",
"url": "https://files.pythonhosted.org/packages/c6/e3/773636414a0cabee9edc4b867539d52776325e47d284ed5b8145044c8837/pymodes-2.21.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "febbd539691498ab1bd17edededdac11fe3b41a07500904b0354d11878da4a3e",
"md5": "5bcbc5aaa23a147d423bc3a171b2ccce",
"sha256": "ad0637d413caaec388910ce4db29cc3adddecbe81cf22cd2c689f583975c2e11"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "5bcbc5aaa23a147d423bc3a171b2ccce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 647768,
"upload_time": "2025-07-09T16:24:33",
"upload_time_iso_8601": "2025-07-09T16:24:33.897627Z",
"url": "https://files.pythonhosted.org/packages/fe/bb/d539691498ab1bd17edededdac11fe3b41a07500904b0354d11878da4a3e/pymodes-2.21.1-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cad0382abd164a5f5f8cfd5d60bf908aba15ff11fe0632e95762d9f48384436f",
"md5": "ba25ebe94d81e979e53e9ced2ef21c08",
"sha256": "abe13300dbebd1168620eebff7defc8a280ca0fa994e0f9eef6162d16185b750"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ba25ebe94d81e979e53e9ced2ef21c08",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1280780,
"upload_time": "2025-07-09T16:24:35",
"upload_time_iso_8601": "2025-07-09T16:24:35.299581Z",
"url": "https://files.pythonhosted.org/packages/ca/d0/382abd164a5f5f8cfd5d60bf908aba15ff11fe0632e95762d9f48384436f/pymodes-2.21.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58ab03f94090dd491152e5129a8d73e9a538e8527443802b6f400e2f14293545",
"md5": "872ca460f6fde2ad6e1caccee247f5a1",
"sha256": "3cf5c47bfc6314b0430bb44935a44aadc7304b4f94aac63a64eb72997d1c4cbc"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "872ca460f6fde2ad6e1caccee247f5a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1282749,
"upload_time": "2025-07-09T16:24:37",
"upload_time_iso_8601": "2025-07-09T16:24:37.733220Z",
"url": "https://files.pythonhosted.org/packages/58/ab/03f94090dd491152e5129a8d73e9a538e8527443802b6f400e2f14293545/pymodes-2.21.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46eeb7eff627b7c69d1a366be8cb009932edb2c7a6db03ac09170488a098f1b3",
"md5": "73f433ee0dcb561f0c8bcefffc8f3a91",
"sha256": "55be696f37d27d6cc83bd8db96493edc8a3a7f96c8172d2a2eb180ce54056484"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "73f433ee0dcb561f0c8bcefffc8f3a91",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1280383,
"upload_time": "2025-07-09T16:24:38",
"upload_time_iso_8601": "2025-07-09T16:24:38.817442Z",
"url": "https://files.pythonhosted.org/packages/46/ee/b7eff627b7c69d1a366be8cb009932edb2c7a6db03ac09170488a098f1b3/pymodes-2.21.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d9124f5bbbc7503359a7af5c1208fc17aa9ffc13157501f0addf9de99ab1b5f",
"md5": "99e75c3827c51ab3f2ff6f3a3f7c9c80",
"sha256": "a176e1ad6efb915a6f55f8203c5a2650da9da59797de4a2537e5dd5f79136d45"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "99e75c3827c51ab3f2ff6f3a3f7c9c80",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1308308,
"upload_time": "2025-07-09T16:24:40",
"upload_time_iso_8601": "2025-07-09T16:24:40.246969Z",
"url": "https://files.pythonhosted.org/packages/9d/91/24f5bbbc7503359a7af5c1208fc17aa9ffc13157501f0addf9de99ab1b5f/pymodes-2.21.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ac6524c5538ec4bdf23a1b7ff563028526178a0f730c02303989fcb8efd075f",
"md5": "b827c7ae1f7d90a2c3bf541d48f97f19",
"sha256": "b46cb4ebc0850271b1c03b03fc2417c61756db618ae8f732e935dbfca81d81bd"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b827c7ae1f7d90a2c3bf541d48f97f19",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 495608,
"upload_time": "2025-07-09T16:24:41",
"upload_time_iso_8601": "2025-07-09T16:24:41.363192Z",
"url": "https://files.pythonhosted.org/packages/9a/c6/524c5538ec4bdf23a1b7ff563028526178a0f730c02303989fcb8efd075f/pymodes-2.21.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ba52e6069cfe0c4482c50dcc3af537cdfe7645856bb011dc098d899a679dfba",
"md5": "cbe3d06cfa3c80b4bc62d7130cf21f25",
"sha256": "7150c92109ba503c1ed1dc21027382525aa5166d74ac21706c7428e564495ab5"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "cbe3d06cfa3c80b4bc62d7130cf21f25",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 644411,
"upload_time": "2025-07-09T16:24:42",
"upload_time_iso_8601": "2025-07-09T16:24:42.301801Z",
"url": "https://files.pythonhosted.org/packages/8b/a5/2e6069cfe0c4482c50dcc3af537cdfe7645856bb011dc098d899a679dfba/pymodes-2.21.1-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d1fa924212dc0227c34f469b1f825864f0ccb9da29fbcfd8715688616cfda46",
"md5": "1a23995f8a8c4619260cccea8c83bb2a",
"sha256": "70849d243e7ccef91f3ad5e69e1a233760c1435b1ee480fc109952faf82ded7f"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1a23995f8a8c4619260cccea8c83bb2a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1279862,
"upload_time": "2025-07-09T16:24:43",
"upload_time_iso_8601": "2025-07-09T16:24:43.729321Z",
"url": "https://files.pythonhosted.org/packages/6d/1f/a924212dc0227c34f469b1f825864f0ccb9da29fbcfd8715688616cfda46/pymodes-2.21.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d55c2c94c6162c0eb0bcf65dbc00cce3c20d0d091319b1a1c195b59f942d5b8",
"md5": "eaf53997e0d1b950ef69f8070ac94cab",
"sha256": "f645d7f6073b7718232c25f3551fd08dcfba15906d66101b3c61bd95518ef30b"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "eaf53997e0d1b950ef69f8070ac94cab",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1276992,
"upload_time": "2025-07-09T16:24:46",
"upload_time_iso_8601": "2025-07-09T16:24:46.499006Z",
"url": "https://files.pythonhosted.org/packages/5d/55/c2c94c6162c0eb0bcf65dbc00cce3c20d0d091319b1a1c195b59f942d5b8/pymodes-2.21.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b80ba233cfe2e0b059226bfd35149a8243fc2c947a7f83c0a6a89a776ff5baf",
"md5": "de1faf4ec8194dde3e98af60ba9e769c",
"sha256": "e929cfefcd4c66f60bbe6e5dac65554928ad4260187be897fde9e99e44e71f7f"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "de1faf4ec8194dde3e98af60ba9e769c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1269412,
"upload_time": "2025-07-09T16:24:47",
"upload_time_iso_8601": "2025-07-09T16:24:47.662693Z",
"url": "https://files.pythonhosted.org/packages/5b/80/ba233cfe2e0b059226bfd35149a8243fc2c947a7f83c0a6a89a776ff5baf/pymodes-2.21.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7628efaa80883a04e20de886c128f8e793dbf2bd1f995dd06cf2c25ca76fd841",
"md5": "82869ddfa6b380c079bbbeaf64f994aa",
"sha256": "8238d0569ba81f03978165783733b9e961e9f2a55d97f5e8de2f6e11125f0754"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "82869ddfa6b380c079bbbeaf64f994aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1297280,
"upload_time": "2025-07-09T16:24:49",
"upload_time_iso_8601": "2025-07-09T16:24:49.369210Z",
"url": "https://files.pythonhosted.org/packages/76/28/efaa80883a04e20de886c128f8e793dbf2bd1f995dd06cf2c25ca76fd841/pymodes-2.21.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a67f5509c502a408eaaf4e77f497e10b7dc9f18fedd2e06da051ea2a31684400",
"md5": "048e490773a6d513555b62687399f2fb",
"sha256": "42cbd67e6468bef0861243872220fafe6fd9ec88b6e573b74b239a476c5dbb14"
},
"downloads": -1,
"filename": "pymodes-2.21.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "048e490773a6d513555b62687399f2fb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 494900,
"upload_time": "2025-07-09T16:24:50",
"upload_time_iso_8601": "2025-07-09T16:24:50.361666Z",
"url": "https://files.pythonhosted.org/packages/a6/7f/5509c502a408eaaf4e77f497e10b7dc9f18fedd2e06da051ea2a31684400/pymodes-2.21.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0aff9511a63766a2f4876055e8f343cfeedef923a2fa08f7f8821a446d048d1f",
"md5": "6fe63063edb129cc1e0f1080675dce59",
"sha256": "b7a0aa0d19e2d248a625b5e83060844316b25b221b0487709adf1fe632c4f6f3"
},
"downloads": -1,
"filename": "pymodes-2.21.1.tar.gz",
"has_sig": false,
"md5_digest": "6fe63063edb129cc1e0f1080675dce59",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 317590,
"upload_time": "2025-07-09T16:24:51",
"upload_time_iso_8601": "2025-07-09T16:24:51.348769Z",
"url": "https://files.pythonhosted.org/packages/0a/ff/9511a63766a2f4876055e8f343cfeedef923a2fa08f7f8821a446d048d1f/pymodes-2.21.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-09 16:24:51",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "junzis",
"github_project": "pyModeS",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "pymodes"
}