flute-alc


Nameflute-alc JSON
Version 1.2.1 PyPI version JSON
download
home_pagehttps://github.com/ypo/flute
SummaryFile Delivery over Unidirectional Transport (FLUTE)
upload_time2024-03-18 07:42:38
maintainer
docs_urlNone
authorYannick Poirier <contact@yannickpoirier.fr>
requires_python>=3.7
licenseMIT
keywords multicast network broadcast 5g satellite
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Rust](https://github.com/ypo/flute/actions/workflows/rust.yml/badge.svg)](https://github.com/ypo/flute/actions/workflows/rust.yml)
[![Python](https://github.com/ypo/flute/actions/workflows/python.yml/badge.svg)](https://github.com/ypo/flute/actions/workflows/python.yml)
[![Docs.rs](https://docs.rs/flute/badge.svg)](https://docs.rs/crate/flute/)
[![Crates.io](https://img.shields.io/crates/v/flute)](https://crates.io/crates/flute/)
[![Rust Dependency](https://deps.rs/repo/github/ypo/flute/status.svg)](https://deps.rs/repo/github/ypo/flute)
[![codecov](https://codecov.io/gh/ypo/flute/branch/main/graph/badge.svg?token=P4KE639YU8)](https://codecov.io/gh/ypo/flute)

## FLUTE - File Delivery over Unidirectional Transport


Massively scalable multicast distribution solution

The library implements a unidirectional file delivery, without the need of a return channel.


## RFC

This library implements the following RFCs

| RFC      | Title      | Link       |
| -------- | ---------- | -----------|
| RFC 6726 | FLUTE - File Delivery over Unidirectional Transport      | <https://www.rfc-editor.org/rfc/rfc6726.html> |
| RFC 5775 | Asynchronous Layered Coding (ALC) Protocol Instantiation | <https://www.rfc-editor.org/rfc/rfc5775.html> |
| RFC 5661 | Layered Coding Transport (LCT) Building Block            | <https://www.rfc-editor.org/rfc/rfc5651>      |
| RFC 5052 | Forward Error Correction (FEC) Building Block            | <https://www.rfc-editor.org/rfc/rfc5052>      |
| RFC 5510 | Reed-Solomon Forward Error Correction (FEC) Schemes      | <https://www.rfc-editor.org/rfc/rfc5510.html> |
| 3GPP TS 26.346 | Extended FLUTE FDT Schema (7.2.10)      | <https://www.etsi.org/deliver/etsi_ts/126300_126399/126346/17.03.00_60/ts_126346v170300p.pdf> |

## UDP/IP Multicast files sender

Transfer files over a UDP/IP network

```rust
use flute::sender::Sender;
use flute::sender::ObjectDesc;
use flute::sender::Cenc;
use flute::core::UDPEndpoint;
use std::net::UdpSocket;
use std::time::SystemTime;

// Create UDP Socket
let udp_socket = UdpSocket::bind("0.0.0.0:0").unwrap();
udp_socket.connect("224.0.0.1:3400").expect("Connection failed");

// Create FLUTE Sender
let tsi = 1;
let oti = Default::default();
let config = Default::default();
let endpoint = UDPEndpoint::new(None, "224.0.0.1".to_string(), 3400);
let mut sender = Sender::new(endpoint, tsi, &oti, &config);

// Add object(s) (files) to the FLUTE sender (priority queue 0)
let obj = ObjectDesc::create_from_buffer(b"hello world", "text/plain",
&url::Url::parse("file:///hello.txt").unwrap(), 1, None, None, None, Cenc::Null, true, None, true).unwrap();
sender.add_object(0, obj);

// Always call publish after adding objects
sender.publish(SystemTime::now());

// Send FLUTE packets over UDP/IP
while let Some(pkt) = sender.read(SystemTime::now()) {
    udp_socket.send(&pkt).unwrap();
    std::thread::sleep(std::time::Duration::from_millis(1));
}

```
## UDP/IP Multicast files receiver

Receive files from a UDP/IP network

```rust
use flute::receiver::{writer, MultiReceiver};
use flute::core::UDPEndpoint;
use std::net::UdpSocket;
use std::time::SystemTime;
use std::rc::Rc;

// Create UDP/IP socket to receive FLUTE pkt
let endpoint = UDPEndpoint::new(None, "224.0.0.1".to_string(), 3400);
let udp_socket = UdpSocket::bind(format!("{}:{}", endpoint.destination_group_address, endpoint.port)).expect("Fail to bind");

// Create a writer able to write received files to the filesystem
let writer = Rc::new(writer::ObjectWriterFSBuilder::new(&std::path::Path::new("./flute_dir"))
    .unwrap_or_else(|_| std::process::exit(0)));

// Create a multi-receiver capable of de-multiplexing several FLUTE sessions
let mut receiver = MultiReceiver::new(writer, None, false);

// Receive pkt from UDP/IP socket and push it to the FLUTE receiver
let mut buf = [0; 2048];
loop {
    let (n, _src) = udp_socket.recv_from(&mut buf).expect("Failed to receive data");
    let now = SystemTime::now();
    receiver.push(&endpoint, &buf[..n], now).unwrap();
    receiver.cleanup(now);
}
```
## Application-Level Forward Erasure Correction (AL-FEC)

The following error recovery algorithms are supported

- [X] No-code
- [X] Reed-Solomon GF 2^8
- [X] Reed-Solomon GF 2^8 Under Specified
- [ ] Reed-Solomon GF 2^16
- [ ] Reed-Solomon GF 2^m
- [X] RaptorQ
- [X] Raptor

The `Oti` module provides an implementation of the Object Transmission Information (OTI)
used to configure Forward Error Correction (FEC) encoding in the FLUTE protocol.

```rust
use flute::sender::Oti;
use flute::sender::Sender;
use flute::core::UDPEndpoint;

// Reed Solomon 2^8 with encoding blocks composed of
// 60 source symbols and 4 repair symbols of 1424 bytes per symbol
let endpoint = UDPEndpoint::new(None, "224.0.0.1".to_string(), 3400);
let oti = Oti::new_reed_solomon_rs28(1424, 60, 4).unwrap();
let mut sender = Sender::new(endpoint, 1, &oti, &Default::default());
```

## Content Encoding (CENC)

The following schemes are supported during the transmission/reception

- [x] Null (no compression)
- [x] Deflate
- [x] Zlib
- [x] Gzip

## Files multiplex / Blocks interleave

The FLUTE Sender is able to transfer multiple files in parallel by interleaving packets from each file. For example:

**Pkt file1** -> Pkt file2 -> Pkt file3 -> **Pkt file1** -> Pkt file2 -> Pkt file3 ...

The Sender can interleave blocks within a single file.
The following example shows Encoding Symbols (ES) from different blocks (B) are interleaved. For example:

**(B 1,ES 1)**->(B 2,ES 1)->(B 3,ES 1)->**(B 1,ES 2)**->(B 2,ES 2)...

To configure the multiplexing, use the `Config` struct as follows:

```rust
use flute::sender::Sender;
use flute::sender::Config;
use flute::sender::PriorityQueue;
use flute::core::UDPEndpoint;

let mut config = Config {
    // Interleave a maximum of 3 blocks within each file
    interleave_blocks: 3,
    ..Default::default()
};

// Interleave a maximum of 3 files in priority queue '0'
config.set_priority_queue(PriorityQueue::HIGHEST, PriorityQueue::new(3));

let endpoint = UDPEndpoint::new(None, "224.0.0.1".to_string(), 3400);
let mut sender = Sender::new(endpoint, 1, &Default::default(), &config);

```

## Priority Queues

FLUTE sender can be configured with multiple queues, each having a different priority level.
Files in higher priority queues are always transferred before files in lower priority queues.
Transfer of files in lower priority queues is paused while there are files to be transferred in higher priority queues.

```rust
use flute::sender::Sender;
use flute::sender::Config;
use flute::sender::PriorityQueue;
use flute::core::UDPEndpoint;
use flute::sender::ObjectDesc;
use flute::sender::Cenc;

// Create a default configuration
let mut config: flute::sender::Config = Default::default();

// Configure the HIGHEST priority queue with a capacity of 3 simultaneous file transfer
config.set_priority_queue(PriorityQueue::HIGHEST, PriorityQueue::new(3));

// Configure the LOW priority queue with a capacity of 1 file transfer at a time
config.set_priority_queue(PriorityQueue::LOW, PriorityQueue::new(1));

let endpoint = UDPEndpoint::new(None, "224.0.0.1".to_string(), 3400);
let mut sender = Sender::new(endpoint, 1, &Default::default(), &config);

// Create an ObjectDesc for a low priority file
let low_priority_obj = ObjectDesc::create_from_buffer(b"low priority", "text/plain",
&url::Url::parse("file:///low_priority.txt").unwrap(), 1, None, None, None, Cenc::Null, true, None, true).unwrap();

// Create an ObjectDesc for a high priority file
let high_priority_obj = ObjectDesc::create_from_buffer(b"high priority", "text/plain",
&url::Url::parse("file:///high_priority.txt").unwrap(), 1, None, None, None, Cenc::Null, true, None, true).unwrap();

// Put Object to the low priority queue
sender.add_object(PriorityQueue::LOW, low_priority_obj);

// Put Object to the high priority queue
sender.add_object(PriorityQueue::HIGHEST, high_priority_obj);
```

# Python bindings

[![PyPI version](https://badge.fury.io/py/flute-alc.svg)](https://badge.fury.io/py/flute-alc)

## Installation

```bash
pip install flute-alc
```

## Example

Flute Sender python example

```python
    from flute import sender

    # Flute Sender config parameters
    sender_config = sender.Config()

    # Object transmission parameters (no_code => no FEC)
    # encoding symbol size : 1400 bytes
    # Max source block length : 64 encoding symbols
    oti = sender.Oti.new_no_code(1400, 64)

    # Create FLUTE Sender
    flute_sender = sender.Sender(1, oti, sender_config)

    # Transfer a file 
    flute_sender.add_file("/path/to/file", 0, "application/octet-stream", None, None)
    flute_sender.publish()

    while True:
        alc_pkt = flute_sender.read()
        if alc_pkt == None:
            break

        #TODO Send alc_pkt over UDP/IP
```

Flute Receiver python example
```python
    from flute import receiver

    # Write received objects to a destination folder
    receiver_writer = receiver.ObjectWriterBuilder("/path/to/dest")

    # FLUTE Receiver configuration parameters
    receiver_config = receiver.Config()

    tsi = 1

    # Create a FLUTE receiver with the specified endpoint, tsi, writer, and configuration
    udp_endpoint = receiver.UDPEndpoint("224.0.0.1", 1234)
    flute_receiver = receiver.Receiver(udp_endpoint, tsi, receiver_writer, receiver_config)

    while True:
        # Receive LCT/ALC packet from UDP/IP multicast (Implement your own receive_from_udp_socket() function)
        # Note: FLUTE does not handle the UDP/IP layer, you need to implement the socket reception mechanism yourself
        pkt = receive_from_udp_socket()

        # Push the received packet to the FLUTE receiver
        flute_receiver.push(bytes(pkt))
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ypo/flute",
    "name": "flute-alc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "multicast,network,broadcast,5g,satellite",
    "author": "Yannick Poirier <contact@yannickpoirier.fr>",
    "author_email": "Yannick Poirier <contact@yannickpoirier.fr>",
    "download_url": "",
    "platform": null,
    "description": "[![Rust](https://github.com/ypo/flute/actions/workflows/rust.yml/badge.svg)](https://github.com/ypo/flute/actions/workflows/rust.yml)\n[![Python](https://github.com/ypo/flute/actions/workflows/python.yml/badge.svg)](https://github.com/ypo/flute/actions/workflows/python.yml)\n[![Docs.rs](https://docs.rs/flute/badge.svg)](https://docs.rs/crate/flute/)\n[![Crates.io](https://img.shields.io/crates/v/flute)](https://crates.io/crates/flute/)\n[![Rust Dependency](https://deps.rs/repo/github/ypo/flute/status.svg)](https://deps.rs/repo/github/ypo/flute)\n[![codecov](https://codecov.io/gh/ypo/flute/branch/main/graph/badge.svg?token=P4KE639YU8)](https://codecov.io/gh/ypo/flute)\n\n## FLUTE - File Delivery over Unidirectional Transport\n\n\nMassively scalable multicast distribution solution\n\nThe library implements a unidirectional file delivery, without the need of a return channel.\n\n\n## RFC\n\nThis library implements the following RFCs\n\n| RFC      | Title      | Link       |\n| -------- | ---------- | -----------|\n| RFC 6726 | FLUTE - File Delivery over Unidirectional Transport      | <https://www.rfc-editor.org/rfc/rfc6726.html> |\n| RFC 5775 | Asynchronous Layered Coding (ALC) Protocol Instantiation | <https://www.rfc-editor.org/rfc/rfc5775.html> |\n| RFC 5661 | Layered Coding Transport (LCT) Building Block            | <https://www.rfc-editor.org/rfc/rfc5651>      |\n| RFC 5052 | Forward Error Correction (FEC) Building Block            | <https://www.rfc-editor.org/rfc/rfc5052>      |\n| RFC 5510 | Reed-Solomon Forward Error Correction (FEC) Schemes      | <https://www.rfc-editor.org/rfc/rfc5510.html> |\n| 3GPP TS 26.346 | Extended FLUTE FDT Schema (7.2.10)      | <https://www.etsi.org/deliver/etsi_ts/126300_126399/126346/17.03.00_60/ts_126346v170300p.pdf> |\n\n## UDP/IP Multicast files sender\n\nTransfer files over a UDP/IP network\n\n```rust\nuse flute::sender::Sender;\nuse flute::sender::ObjectDesc;\nuse flute::sender::Cenc;\nuse flute::core::UDPEndpoint;\nuse std::net::UdpSocket;\nuse std::time::SystemTime;\n\n// Create UDP Socket\nlet udp_socket = UdpSocket::bind(\"0.0.0.0:0\").unwrap();\nudp_socket.connect(\"224.0.0.1:3400\").expect(\"Connection failed\");\n\n// Create FLUTE Sender\nlet tsi = 1;\nlet oti = Default::default();\nlet config = Default::default();\nlet endpoint = UDPEndpoint::new(None, \"224.0.0.1\".to_string(), 3400);\nlet mut sender = Sender::new(endpoint, tsi, &oti, &config);\n\n// Add object(s) (files) to the FLUTE sender (priority queue 0)\nlet obj = ObjectDesc::create_from_buffer(b\"hello world\", \"text/plain\",\n&url::Url::parse(\"file:///hello.txt\").unwrap(), 1, None, None, None, Cenc::Null, true, None, true).unwrap();\nsender.add_object(0, obj);\n\n// Always call publish after adding objects\nsender.publish(SystemTime::now());\n\n// Send FLUTE packets over UDP/IP\nwhile let Some(pkt) = sender.read(SystemTime::now()) {\n    udp_socket.send(&pkt).unwrap();\n    std::thread::sleep(std::time::Duration::from_millis(1));\n}\n\n```\n## UDP/IP Multicast files receiver\n\nReceive files from a UDP/IP network\n\n```rust\nuse flute::receiver::{writer, MultiReceiver};\nuse flute::core::UDPEndpoint;\nuse std::net::UdpSocket;\nuse std::time::SystemTime;\nuse std::rc::Rc;\n\n// Create UDP/IP socket to receive FLUTE pkt\nlet endpoint = UDPEndpoint::new(None, \"224.0.0.1\".to_string(), 3400);\nlet udp_socket = UdpSocket::bind(format!(\"{}:{}\", endpoint.destination_group_address, endpoint.port)).expect(\"Fail to bind\");\n\n// Create a writer able to write received files to the filesystem\nlet writer = Rc::new(writer::ObjectWriterFSBuilder::new(&std::path::Path::new(\"./flute_dir\"))\n    .unwrap_or_else(|_| std::process::exit(0)));\n\n// Create a multi-receiver capable of de-multiplexing several FLUTE sessions\nlet mut receiver = MultiReceiver::new(writer, None, false);\n\n// Receive pkt from UDP/IP socket and push it to the FLUTE receiver\nlet mut buf = [0; 2048];\nloop {\n    let (n, _src) = udp_socket.recv_from(&mut buf).expect(\"Failed to receive data\");\n    let now = SystemTime::now();\n    receiver.push(&endpoint, &buf[..n], now).unwrap();\n    receiver.cleanup(now);\n}\n```\n## Application-Level Forward Erasure Correction (AL-FEC)\n\nThe following error recovery algorithms are supported\n\n- [X] No-code\n- [X] Reed-Solomon GF 2^8\n- [X] Reed-Solomon GF 2^8 Under Specified\n- [ ] Reed-Solomon GF 2^16\n- [ ] Reed-Solomon GF 2^m\n- [X] RaptorQ\n- [X] Raptor\n\nThe `Oti` module provides an implementation of the Object Transmission Information (OTI)\nused to configure Forward Error Correction (FEC) encoding in the FLUTE protocol.\n\n```rust\nuse flute::sender::Oti;\nuse flute::sender::Sender;\nuse flute::core::UDPEndpoint;\n\n// Reed Solomon 2^8 with encoding blocks composed of\n// 60 source symbols and 4 repair symbols of 1424 bytes per symbol\nlet endpoint = UDPEndpoint::new(None, \"224.0.0.1\".to_string(), 3400);\nlet oti = Oti::new_reed_solomon_rs28(1424, 60, 4).unwrap();\nlet mut sender = Sender::new(endpoint, 1, &oti, &Default::default());\n```\n\n## Content Encoding (CENC)\n\nThe following schemes are supported during the transmission/reception\n\n- [x] Null (no compression)\n- [x] Deflate\n- [x] Zlib\n- [x] Gzip\n\n## Files multiplex / Blocks interleave\n\nThe FLUTE Sender is able to transfer multiple files in parallel by interleaving packets from each file. For example:\n\n**Pkt file1** -> Pkt file2 -> Pkt file3 -> **Pkt file1** -> Pkt file2 -> Pkt file3 ...\n\nThe Sender can interleave blocks within a single file.\nThe following example shows Encoding Symbols (ES) from different blocks (B) are interleaved. For example:\n\n**(B 1,ES 1)**->(B 2,ES 1)->(B 3,ES 1)->**(B 1,ES 2)**->(B 2,ES 2)...\n\nTo configure the multiplexing, use the `Config` struct as follows:\n\n```rust\nuse flute::sender::Sender;\nuse flute::sender::Config;\nuse flute::sender::PriorityQueue;\nuse flute::core::UDPEndpoint;\n\nlet mut config = Config {\n    // Interleave a maximum of 3 blocks within each file\n    interleave_blocks: 3,\n    ..Default::default()\n};\n\n// Interleave a maximum of 3 files in priority queue '0'\nconfig.set_priority_queue(PriorityQueue::HIGHEST, PriorityQueue::new(3));\n\nlet endpoint = UDPEndpoint::new(None, \"224.0.0.1\".to_string(), 3400);\nlet mut sender = Sender::new(endpoint, 1, &Default::default(), &config);\n\n```\n\n## Priority Queues\n\nFLUTE sender can be configured with multiple queues, each having a different priority level.\nFiles in higher priority queues are always transferred before files in lower priority queues.\nTransfer of files in lower priority queues is paused while there are files to be transferred in higher priority queues.\n\n```rust\nuse flute::sender::Sender;\nuse flute::sender::Config;\nuse flute::sender::PriorityQueue;\nuse flute::core::UDPEndpoint;\nuse flute::sender::ObjectDesc;\nuse flute::sender::Cenc;\n\n// Create a default configuration\nlet mut config: flute::sender::Config = Default::default();\n\n// Configure the HIGHEST priority queue with a capacity of 3 simultaneous file transfer\nconfig.set_priority_queue(PriorityQueue::HIGHEST, PriorityQueue::new(3));\n\n// Configure the LOW priority queue with a capacity of 1 file transfer at a time\nconfig.set_priority_queue(PriorityQueue::LOW, PriorityQueue::new(1));\n\nlet endpoint = UDPEndpoint::new(None, \"224.0.0.1\".to_string(), 3400);\nlet mut sender = Sender::new(endpoint, 1, &Default::default(), &config);\n\n// Create an ObjectDesc for a low priority file\nlet low_priority_obj = ObjectDesc::create_from_buffer(b\"low priority\", \"text/plain\",\n&url::Url::parse(\"file:///low_priority.txt\").unwrap(), 1, None, None, None, Cenc::Null, true, None, true).unwrap();\n\n// Create an ObjectDesc for a high priority file\nlet high_priority_obj = ObjectDesc::create_from_buffer(b\"high priority\", \"text/plain\",\n&url::Url::parse(\"file:///high_priority.txt\").unwrap(), 1, None, None, None, Cenc::Null, true, None, true).unwrap();\n\n// Put Object to the low priority queue\nsender.add_object(PriorityQueue::LOW, low_priority_obj);\n\n// Put Object to the high priority queue\nsender.add_object(PriorityQueue::HIGHEST, high_priority_obj);\n```\n\n# Python bindings\n\n[![PyPI version](https://badge.fury.io/py/flute-alc.svg)](https://badge.fury.io/py/flute-alc)\n\n## Installation\n\n```bash\npip install flute-alc\n```\n\n## Example\n\nFlute Sender python example\n\n```python\n    from flute import sender\n\n    # Flute Sender config parameters\n    sender_config = sender.Config()\n\n    # Object transmission parameters (no_code => no FEC)\n    # encoding symbol size : 1400 bytes\n    # Max source block length : 64 encoding symbols\n    oti = sender.Oti.new_no_code(1400, 64)\n\n    # Create FLUTE Sender\n    flute_sender = sender.Sender(1, oti, sender_config)\n\n    # Transfer a file \n    flute_sender.add_file(\"/path/to/file\", 0, \"application/octet-stream\", None, None)\n    flute_sender.publish()\n\n    while True:\n        alc_pkt = flute_sender.read()\n        if alc_pkt == None:\n            break\n\n        #TODO Send alc_pkt over UDP/IP\n```\n\nFlute Receiver python example\n```python\n    from flute import receiver\n\n    # Write received objects to a destination folder\n    receiver_writer = receiver.ObjectWriterBuilder(\"/path/to/dest\")\n\n    # FLUTE Receiver configuration parameters\n    receiver_config = receiver.Config()\n\n    tsi = 1\n\n    # Create a FLUTE receiver with the specified endpoint, tsi, writer, and configuration\n    udp_endpoint = receiver.UDPEndpoint(\"224.0.0.1\", 1234)\n    flute_receiver = receiver.Receiver(udp_endpoint, tsi, receiver_writer, receiver_config)\n\n    while True:\n        # Receive LCT/ALC packet from UDP/IP multicast (Implement your own receive_from_udp_socket() function)\n        # Note: FLUTE does not handle the UDP/IP layer, you need to implement the socket reception mechanism yourself\n        pkt = receive_from_udp_socket()\n\n        # Push the received packet to the FLUTE receiver\n        flute_receiver.push(bytes(pkt))\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "File Delivery over Unidirectional Transport (FLUTE)",
    "version": "1.2.1",
    "project_urls": {
        "Homepage": "https://github.com/ypo/flute",
        "Source Code": "https://github.com/ypo/flute"
    },
    "split_keywords": [
        "multicast",
        "network",
        "broadcast",
        "5g",
        "satellite"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e0c72565d51e42934675fc1803341d9d545f0372e987752eff0f05301b6203b",
                "md5": "ec41ece9dd9567cf393367e5905412b4",
                "sha256": "c920766dade2ab79126ca772b006a421d190e3f69396396dd0dab2e235fd4429"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-cp310-cp310-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec41ece9dd9567cf393367e5905412b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1978243,
            "upload_time": "2024-03-18T07:42:38",
            "upload_time_iso_8601": "2024-03-18T07:42:38.204079Z",
            "url": "https://files.pythonhosted.org/packages/4e/0c/72565d51e42934675fc1803341d9d545f0372e987752eff0f05301b6203b/flute_alc-1.2.1-cp310-cp310-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "084324110715c090c07b15819ce8ca6621a942f4f3fa5fd58f13c8d3b65f6055",
                "md5": "e995720ce35e46f239d781d15ccb51ba",
                "sha256": "8edb89b5b79fb14057a9ace95e7a74e9c1f04edac398cec083da0cc6c4cd2312"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-cp311-cp311-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e995720ce35e46f239d781d15ccb51ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1978495,
            "upload_time": "2024-03-18T07:42:50",
            "upload_time_iso_8601": "2024-03-18T07:42:50.849119Z",
            "url": "https://files.pythonhosted.org/packages/08/43/24110715c090c07b15819ce8ca6621a942f4f3fa5fd58f13c8d3b65f6055/flute_alc-1.2.1-cp311-cp311-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36b203a0a3df1637e8112351741a8de1a0ec54b803d3c806e5c2ecdd6e72cdfd",
                "md5": "f3269ce4e34739580c5a4cd0077ad6cd",
                "sha256": "3f874d880eec94c46469669344c58d961ec96aa08476a32e4057ad21ef3040e3"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-cp37-cp37m-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3269ce4e34739580c5a4cd0077ad6cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1977872,
            "upload_time": "2024-03-18T07:42:53",
            "upload_time_iso_8601": "2024-03-18T07:42:53.077615Z",
            "url": "https://files.pythonhosted.org/packages/36/b2/03a0a3df1637e8112351741a8de1a0ec54b803d3c806e5c2ecdd6e72cdfd/flute_alc-1.2.1-cp37-cp37m-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf620e72949dba3189d64f26803d9ecb8567a7c2ec586d00776968515a0d1bfe",
                "md5": "82824ede5245e42581a392f1f3d94fd3",
                "sha256": "a41cdebf36a3fa2fd954384c2e2fe84f92c944ad06cf620e659eee01f918f192"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-cp38-cp38-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82824ede5245e42581a392f1f3d94fd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1977783,
            "upload_time": "2024-03-18T07:42:54",
            "upload_time_iso_8601": "2024-03-18T07:42:54.622828Z",
            "url": "https://files.pythonhosted.org/packages/bf/62/0e72949dba3189d64f26803d9ecb8567a7c2ec586d00776968515a0d1bfe/flute_alc-1.2.1-cp38-cp38-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a039b2cd5b9396d17ef45a3a0ac664d738cf92238bc443da852a5214d6bc0b5b",
                "md5": "9e4452a676827bf006dcf6b9711c5c57",
                "sha256": "145b17af654a414ea3a7a5dc2e0a3d5e98cd479d7ebabaf0aa3131488c2900ad"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-cp39-cp39-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e4452a676827bf006dcf6b9711c5c57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1978439,
            "upload_time": "2024-03-18T07:42:57",
            "upload_time_iso_8601": "2024-03-18T07:42:57.119471Z",
            "url": "https://files.pythonhosted.org/packages/a0/39/b2cd5b9396d17ef45a3a0ac664d738cf92238bc443da852a5214d6bc0b5b/flute_alc-1.2.1-cp39-cp39-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fa9e9313ebc96377dba92d796fd5ebcf205c2ad1f1d8a7916687e13c8814c3b",
                "md5": "2633a538a0a59969a0da26019d7e88bf",
                "sha256": "0e056b61948e23e81d40853d2ca2efdd0f991b07336d66397105f0924045dacc"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-pp38-pypy38_pp73-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2633a538a0a59969a0da26019d7e88bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1977661,
            "upload_time": "2024-03-18T07:42:59",
            "upload_time_iso_8601": "2024-03-18T07:42:59.224347Z",
            "url": "https://files.pythonhosted.org/packages/1f/a9/e9313ebc96377dba92d796fd5ebcf205c2ad1f1d8a7916687e13c8814c3b/flute_alc-1.2.1-pp38-pypy38_pp73-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b9dae2c49e601fda1655fbba5d37539336b9a421563c618fd3ae67120df68e7",
                "md5": "21bc7c89a5cdbe26ac0de1b6eefbdd4a",
                "sha256": "7c1605d622a5281166817c418e39023372cdce7837d68d71394dca4137a3974e"
            },
            "downloads": -1,
            "filename": "flute_alc-1.2.1-pp39-pypy39_pp73-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21bc7c89a5cdbe26ac0de1b6eefbdd4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1977790,
            "upload_time": "2024-03-18T07:43:01",
            "upload_time_iso_8601": "2024-03-18T07:43:01.429656Z",
            "url": "https://files.pythonhosted.org/packages/7b/9d/ae2c49e601fda1655fbba5d37539336b9a421563c618fd3ae67120df68e7/flute_alc-1.2.1-pp39-pypy39_pp73-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-18 07:42:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ypo",
    "github_project": "flute",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "flute-alc"
}
        
Elapsed time: 0.21187s