digital-rf


Namedigital-rf JSON
Version 2.6.11 PyPI version JSON
download
home_pageNone
SummaryLibrary for reading and writing time-tagged RF data in the Digital RF format
upload_time2025-02-03 18:32:53
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseThis software, unless otherwise noted, is licensed under the BSD 3-clause "New" or "Revised" license. Copyright (c) 2017 Massachusetts Institute of Technology (MIT) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords hdf5 radio rf
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            The Digital RF project encompasses a standardized HDF5 format for reading and writing of radio frequency data and the software for doing so. The format is designed to be self-documenting for data archive and to allow rapid random access for data processing.

This package includes:

* ``digital_rf`` Python package
* Tools for managing and processing Digital RF data
* ``gr_digital_rf`` Python package for interfacing with GNU Radio
* GNU Radio Companion blocks
* ``thor.py`` UHD radio recorder script
* Example scripts and applications

Digital RF C and MATLAB libraries can be found at the `official source code repository <https://github.com/MITHaystack/digital_rf>`_. To build from source, you must have the HDF5 library and headers installed.

For help and/or questions, contact the `user mailing list <openradar-users@openradar.org>`_.


GNU Radio Configuration
=======================

If you plan on using Digital RF with GNU Radio, make sure to run the `pip` command in the same Python environment that your GNU Radio installation uses so that GNU Radio can find the packages. Depending on your GNU Radio installation, it may be necessary to add the Digital RF blocks to your GRC blocks path by creating or editing the GRC configuration file

:Unix (local): $HOME/.gnuradio/config.conf
:Windows (local): %APPDATA%/.gnuradio/config.conf
:Unix (global): /etc/gnuradio/conf.d/grc.conf
:Custom (global): {INSTALL_PREFIX}/etc/gnuradio/conf.d/grc.conf

to contain::

    [grc]
    local_blocks_path = {PIP_PREFIX}/share/gnuradio/grc/blocks

(replacing ``{PIP_PREFIX}`` with the pip installation prefix, "/usr/local" for example).


Example Usage
=============

The following code will load and read data located in a directory "/data/test".

Load the module and create a reader object::

    import digital_rf as drf
    do = drf.DigitalRFReader('/data/test')

List channels::

    do.get_channels()

Get data bounds for channel 'cha'::

    s, e = do.get_bounds('cha')

Read first 10 samples from channel 'cha'::

    data = do.read_vector(s, 10, 'cha')

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "digital-rf",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Ryan Volz <rvolz@mit.edu>",
    "keywords": "hdf5, radio, rf",
    "author": null,
    "author_email": "Bill Rideout <brideout@mit.edu>, Juha Vierinen <jvi019@uit.no>, Frank Lind <fdlind@mit.edu>, Ryan Volz <rvolz@mit.edu>, John Swoboda <swoboj@mit.edu>",
    "download_url": "https://files.pythonhosted.org/packages/b2/88/2b5a5d2ec3e3a18d5013c298c66afc6e82cee807b72bc57c065ca04707e0/digital_rf-2.6.11.tar.gz",
    "platform": null,
    "description": "The Digital RF project encompasses a standardized HDF5 format for reading and writing of radio frequency data and the software for doing so. The format is designed to be self-documenting for data archive and to allow rapid random access for data processing.\n\nThis package includes:\n\n* ``digital_rf`` Python package\n* Tools for managing and processing Digital RF data\n* ``gr_digital_rf`` Python package for interfacing with GNU Radio\n* GNU Radio Companion blocks\n* ``thor.py`` UHD radio recorder script\n* Example scripts and applications\n\nDigital RF C and MATLAB libraries can be found at the `official source code repository <https://github.com/MITHaystack/digital_rf>`_. To build from source, you must have the HDF5 library and headers installed.\n\nFor help and/or questions, contact the `user mailing list <openradar-users@openradar.org>`_.\n\n\nGNU Radio Configuration\n=======================\n\nIf you plan on using Digital RF with GNU Radio, make sure to run the `pip` command in the same Python environment that your GNU Radio installation uses so that GNU Radio can find the packages. Depending on your GNU Radio installation, it may be necessary to add the Digital RF blocks to your GRC blocks path by creating or editing the GRC configuration file\n\n:Unix (local): $HOME/.gnuradio/config.conf\n:Windows (local): %APPDATA%/.gnuradio/config.conf\n:Unix (global): /etc/gnuradio/conf.d/grc.conf\n:Custom (global): {INSTALL_PREFIX}/etc/gnuradio/conf.d/grc.conf\n\nto contain::\n\n    [grc]\n    local_blocks_path = {PIP_PREFIX}/share/gnuradio/grc/blocks\n\n(replacing ``{PIP_PREFIX}`` with the pip installation prefix, \"/usr/local\" for example).\n\n\nExample Usage\n=============\n\nThe following code will load and read data located in a directory \"/data/test\".\n\nLoad the module and create a reader object::\n\n    import digital_rf as drf\n    do = drf.DigitalRFReader('/data/test')\n\nList channels::\n\n    do.get_channels()\n\nGet data bounds for channel 'cha'::\n\n    s, e = do.get_bounds('cha')\n\nRead first 10 samples from channel 'cha'::\n\n    data = do.read_vector(s, 10, 'cha')\n",
    "bugtrack_url": null,
    "license": "This software, unless otherwise noted, is licensed under the BSD 3-clause \"New\"\n        or \"Revised\" license.\n        \n        Copyright (c) 2017 Massachusetts Institute of Technology (MIT)\n        \n        Redistribution and use in source and binary forms, with or without\n        modification, are permitted provided that the following conditions are met:\n        \n        * Redistributions of source code must retain the above copyright notice, this\n          list of conditions and the following disclaimer.\n        \n        * Redistributions in binary form must reproduce the above copyright notice,\n          this list of conditions and the following disclaimer in the documentation\n          and/or other materials provided with the distribution.\n        \n        * Neither the name of the copyright holder nor the names of its\n          contributors may be used to endorse or promote products derived from\n          this software without specific prior written permission.\n        \n        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "Library for reading and writing time-tagged RF data in the Digital RF format",
    "version": "2.6.11",
    "project_urls": {
        "Bug tracker": "https://github.com/MITHaystack/digital_rf/issues",
        "Changelog": "https://github.com/MITHaystack/digital_rf/releases",
        "Discussions": "https://github.com/MITHaystack/digital_rf/discussions",
        "Homepage": "https://github.com/MITHaystack/digital_rf"
    },
    "split_keywords": [
        "hdf5",
        " radio",
        " rf"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9a4d530eb4e86fafdc0ac75902f752384771f0742aef74ab041c72bd137d9cf",
                "md5": "49572fe2868284f1fc64d807c07f1297",
                "sha256": "cc68dd19154488eb8033f3944a293c3e4a01ce369dfcfe605701f9dd06cd5ba0"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49572fe2868284f1fc64d807c07f1297",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1652684,
            "upload_time": "2025-02-03T18:31:46",
            "upload_time_iso_8601": "2025-02-03T18:31:46.771289Z",
            "url": "https://files.pythonhosted.org/packages/d9/a4/d530eb4e86fafdc0ac75902f752384771f0742aef74ab041c72bd137d9cf/digital_rf-2.6.11-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "150e574773663069770db1491ec1232d38bc83dfc054015034414f7f404c7249",
                "md5": "dcf7039573cf0aa83b6143a9e01ddd6a",
                "sha256": "42d62021858109d409d7afd5236906e50babc77bc741061b38bc87eca8f03aea"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dcf7039573cf0aa83b6143a9e01ddd6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1402386,
            "upload_time": "2025-02-03T18:31:49",
            "upload_time_iso_8601": "2025-02-03T18:31:49.746893Z",
            "url": "https://files.pythonhosted.org/packages/15/0e/574773663069770db1491ec1232d38bc83dfc054015034414f7f404c7249/digital_rf-2.6.11-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e20dfa613459edf7dd476d4291118038605b3fb837ea0dfa6623ad15ba8aec29",
                "md5": "c5208acd4eb0284fa09f006d8cbd7c86",
                "sha256": "47db3bb3894d78a3835acaad376cc657cdae296daa776514199b73f6d1701e3f"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c5208acd4eb0284fa09f006d8cbd7c86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1746450,
            "upload_time": "2025-02-03T18:31:52",
            "upload_time_iso_8601": "2025-02-03T18:31:52.263596Z",
            "url": "https://files.pythonhosted.org/packages/e2/0d/fa613459edf7dd476d4291118038605b3fb837ea0dfa6623ad15ba8aec29/digital_rf-2.6.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fac32aa9b7af2a2883f03912b0ead5352eeafdee687a560e645c883f584cedef",
                "md5": "6efa06535709cfb656a579702b738433",
                "sha256": "7f48b22350eef6ca496164e95689a70f3b26cc4af65306eadb9a1eb2b2909016"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6efa06535709cfb656a579702b738433",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1800063,
            "upload_time": "2025-02-03T18:31:54",
            "upload_time_iso_8601": "2025-02-03T18:31:54.933061Z",
            "url": "https://files.pythonhosted.org/packages/fa/c3/2aa9b7af2a2883f03912b0ead5352eeafdee687a560e645c883f584cedef/digital_rf-2.6.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74fc32e45bd2fc1efb61e76147c70e8cc93655c0b269e8efdb0175eb020eae62",
                "md5": "96e32987867d3ca5d266c7f3642052a8",
                "sha256": "fdee826cc6ca8be9e5ff2cd482c0c02373eb041625b04b564598c45105a15cee"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "96e32987867d3ca5d266c7f3642052a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1277850,
            "upload_time": "2025-02-03T18:31:58",
            "upload_time_iso_8601": "2025-02-03T18:31:58.571338Z",
            "url": "https://files.pythonhosted.org/packages/74/fc/32e45bd2fc1efb61e76147c70e8cc93655c0b269e8efdb0175eb020eae62/digital_rf-2.6.11-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "187b3b254d8a1be91703ca842dd5da62e67822cbb3e8ef5cc8e909c0bdd425e6",
                "md5": "1903ef375a6428d9e80a83daae8b54dd",
                "sha256": "99d1a12d87d410a53de3eab71983f7e4758de538bbdded3ad82700165e8841d3"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1903ef375a6428d9e80a83daae8b54dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1652685,
            "upload_time": "2025-02-03T18:32:00",
            "upload_time_iso_8601": "2025-02-03T18:32:00.982504Z",
            "url": "https://files.pythonhosted.org/packages/18/7b/3b254d8a1be91703ca842dd5da62e67822cbb3e8ef5cc8e909c0bdd425e6/digital_rf-2.6.11-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f02b6079aecceea78ce8d1e4891df47e4bad55f80979af18801c6c31cc3df6d",
                "md5": "4f719f1a6e4d52ee53c255e82f8d71d7",
                "sha256": "426967d432d1b9872461fa121e13fc51a1bd29051e033a06ca661223deabfba2"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4f719f1a6e4d52ee53c255e82f8d71d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1402383,
            "upload_time": "2025-02-03T18:32:02",
            "upload_time_iso_8601": "2025-02-03T18:32:02.775016Z",
            "url": "https://files.pythonhosted.org/packages/2f/02/b6079aecceea78ce8d1e4891df47e4bad55f80979af18801c6c31cc3df6d/digital_rf-2.6.11-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d06a207b9b19db23327badd1e4ab4f3e1e23df2b828ee45e98f69a08fd6b2d31",
                "md5": "219c0e359922d119278c499b4668e4df",
                "sha256": "a4c2de863ff1fa9fd8714df9f89310244de83c9fee74c3feb873e364a0bf350b"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "219c0e359922d119278c499b4668e4df",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1746452,
            "upload_time": "2025-02-03T18:32:05",
            "upload_time_iso_8601": "2025-02-03T18:32:05.314987Z",
            "url": "https://files.pythonhosted.org/packages/d0/6a/207b9b19db23327badd1e4ab4f3e1e23df2b828ee45e98f69a08fd6b2d31/digital_rf-2.6.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b95ad804630e2494e7a27c53d4f9ff8bacbe6002f8808c973a5367f768d428cb",
                "md5": "85829fe49a144d905930a4e92c29ce5b",
                "sha256": "3ae7506083552970877ec912e2921b2236efb96595b949714090e9b387036190"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85829fe49a144d905930a4e92c29ce5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1800062,
            "upload_time": "2025-02-03T18:32:07",
            "upload_time_iso_8601": "2025-02-03T18:32:07.258760Z",
            "url": "https://files.pythonhosted.org/packages/b9/5a/d804630e2494e7a27c53d4f9ff8bacbe6002f8808c973a5367f768d428cb/digital_rf-2.6.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91a832701acf79b2e77375b54cacd0abf3d9db9ce6a30e531731d4fbfbeee057",
                "md5": "70d5033ef95ed04f5e9431e9a1e958d4",
                "sha256": "23ad553df38450776645d34e55ce80767c326652e3ed94bc17d55841a57e9e12"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "70d5033ef95ed04f5e9431e9a1e958d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1277850,
            "upload_time": "2025-02-03T18:32:09",
            "upload_time_iso_8601": "2025-02-03T18:32:09.152246Z",
            "url": "https://files.pythonhosted.org/packages/91/a8/32701acf79b2e77375b54cacd0abf3d9db9ce6a30e531731d4fbfbeee057/digital_rf-2.6.11-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a4189b8e07249980e4bc0264b25c7fd4cc2b2f95592defd2ef24a80e351bcd0",
                "md5": "27055b7a661aaf1fe381a900e841144a",
                "sha256": "52b43e81cd386c720da8cb64d1599db32969318f03f64e72c889a7a21ad286d3"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27055b7a661aaf1fe381a900e841144a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1652047,
            "upload_time": "2025-02-03T18:32:10",
            "upload_time_iso_8601": "2025-02-03T18:32:10.754173Z",
            "url": "https://files.pythonhosted.org/packages/8a/41/89b8e07249980e4bc0264b25c7fd4cc2b2f95592defd2ef24a80e351bcd0/digital_rf-2.6.11-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32cb39f9e34e11dcf81f50d150986af5d61d822f2207755c368b4318c4691cf1",
                "md5": "225a1c29952aac90eb741a788fa27145",
                "sha256": "9d8a792d7ffdfdd015aba426846c6476b600a893b5a5b56a438ba316f4f24d95"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "225a1c29952aac90eb741a788fa27145",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1402396,
            "upload_time": "2025-02-03T18:32:13",
            "upload_time_iso_8601": "2025-02-03T18:32:13.081052Z",
            "url": "https://files.pythonhosted.org/packages/32/cb/39f9e34e11dcf81f50d150986af5d61d822f2207755c368b4318c4691cf1/digital_rf-2.6.11-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2fb86de01acdd018c942936399c41bed1d8427ed29fdb6f47c65ad437b084ef",
                "md5": "d002c41349c20d638e7fc2f161e5da46",
                "sha256": "43a90953c3b75491dd7ef79fb2d68286f941ac0c0f27a7c14c19910b462d525d"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d002c41349c20d638e7fc2f161e5da46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1746409,
            "upload_time": "2025-02-03T18:32:14",
            "upload_time_iso_8601": "2025-02-03T18:32:14.733087Z",
            "url": "https://files.pythonhosted.org/packages/b2/fb/86de01acdd018c942936399c41bed1d8427ed29fdb6f47c65ad437b084ef/digital_rf-2.6.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62d09c0643808e82b751ea577570a4bb9d8f05c90049b78c594ada0c99bf4b81",
                "md5": "04d19280abbd2c766fe30e1fbace4f3d",
                "sha256": "3965ad0fd20c3e783dd1a150c84d8eaf8bd2c6958e6155d9eff6cb883492b208"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04d19280abbd2c766fe30e1fbace4f3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1800103,
            "upload_time": "2025-02-03T18:32:16",
            "upload_time_iso_8601": "2025-02-03T18:32:16.859356Z",
            "url": "https://files.pythonhosted.org/packages/62/d0/9c0643808e82b751ea577570a4bb9d8f05c90049b78c594ada0c99bf4b81/digital_rf-2.6.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb9967b49313df8da497cbcdc210bad66f2633a2ada0ccf3ad9e6ac85d344dd5",
                "md5": "ccb64188a02ab9768dc0e6e6e454f09c",
                "sha256": "2841a884727c65b7eb7d5f3deeebc452bf4c8c3d95f816b03e4da1bc0a1754c2"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ccb64188a02ab9768dc0e6e6e454f09c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1277817,
            "upload_time": "2025-02-03T18:32:19",
            "upload_time_iso_8601": "2025-02-03T18:32:19.378186Z",
            "url": "https://files.pythonhosted.org/packages/eb/99/67b49313df8da497cbcdc210bad66f2633a2ada0ccf3ad9e6ac85d344dd5/digital_rf-2.6.11-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6def67b206f5f3704f537a2dae8ff7ffde0d82595a30ad5be3f95ca08b55c7e",
                "md5": "5ad2ad437f5a7b8e5561eacfb479b429",
                "sha256": "d7acdf6956bbf5f6ce60269d5c7417a9c1208ea5bf1ee82f402df182326097cc"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ad2ad437f5a7b8e5561eacfb479b429",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1652049,
            "upload_time": "2025-02-03T18:32:21",
            "upload_time_iso_8601": "2025-02-03T18:32:21.080545Z",
            "url": "https://files.pythonhosted.org/packages/a6/de/f67b206f5f3704f537a2dae8ff7ffde0d82595a30ad5be3f95ca08b55c7e/digital_rf-2.6.11-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2791d973c60d2cc9ab1f2310be3b0672af7cef1f1c09403fc0c655fffaf0d23",
                "md5": "bd810ec53d284d30d40520c8d2be6b34",
                "sha256": "42340f67d0a828942c89e849f0fea118bef20296f472890cea8700f4d69fabe4"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bd810ec53d284d30d40520c8d2be6b34",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1402400,
            "upload_time": "2025-02-03T18:32:23",
            "upload_time_iso_8601": "2025-02-03T18:32:23.425142Z",
            "url": "https://files.pythonhosted.org/packages/e2/79/1d973c60d2cc9ab1f2310be3b0672af7cef1f1c09403fc0c655fffaf0d23/digital_rf-2.6.11-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ecfe42ab0ecb60add6db605e3ae084258088e164b8c63b64bc68e604d5d0856",
                "md5": "86108cdea3b987ade25efaa67e80ff11",
                "sha256": "b1c91aa876b197739cc67bff535c8418c4fc0186d6ed9719f4f2975dfa661c8e"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "86108cdea3b987ade25efaa67e80ff11",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1746415,
            "upload_time": "2025-02-03T18:32:25",
            "upload_time_iso_8601": "2025-02-03T18:32:25.517466Z",
            "url": "https://files.pythonhosted.org/packages/3e/cf/e42ab0ecb60add6db605e3ae084258088e164b8c63b64bc68e604d5d0856/digital_rf-2.6.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45dc01c1ca90e7cffb890d0202431b53e943eb48854164908e21f46320a6e4cd",
                "md5": "63e46ef9205664bf2c80d387f9958a40",
                "sha256": "08c65e8298dacd45fab5d813a6bba455a1629aaa5c2440f49c3239d63d492255"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63e46ef9205664bf2c80d387f9958a40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1800112,
            "upload_time": "2025-02-03T18:32:29",
            "upload_time_iso_8601": "2025-02-03T18:32:29.805909Z",
            "url": "https://files.pythonhosted.org/packages/45/dc/01c1ca90e7cffb890d0202431b53e943eb48854164908e21f46320a6e4cd/digital_rf-2.6.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1144bf56ddb67a2f1f5d33b0c64174de6a4ca8c9382d618128a250691c855657",
                "md5": "5d2dca511bcdbaa7b4237a410a329030",
                "sha256": "009d462c49f77d8bdd6da7932ac57cadaadbbf9824d77aff40aaf159c64a019a"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5d2dca511bcdbaa7b4237a410a329030",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1277821,
            "upload_time": "2025-02-03T18:32:31",
            "upload_time_iso_8601": "2025-02-03T18:32:31.503353Z",
            "url": "https://files.pythonhosted.org/packages/11/44/bf56ddb67a2f1f5d33b0c64174de6a4ca8c9382d618128a250691c855657/digital_rf-2.6.11-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7dbba2bb9d91097f3b077bc4cdca03ed96b9bc94d446aba4528895f93cc267b",
                "md5": "73ad5bc706a886db1f0417212c5b30be",
                "sha256": "796bf97f51c52d50a9e2789d505b774972a3b6162086d816bb7bcf65a9b66bd9"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73ad5bc706a886db1f0417212c5b30be",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1652545,
            "upload_time": "2025-02-03T18:32:33",
            "upload_time_iso_8601": "2025-02-03T18:32:33.592835Z",
            "url": "https://files.pythonhosted.org/packages/a7/db/ba2bb9d91097f3b077bc4cdca03ed96b9bc94d446aba4528895f93cc267b/digital_rf-2.6.11-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6ba5d7a8a16dc878fcabfaa0a9a11c5d194596824496bbf743b303fe644678e",
                "md5": "e2648bf62dfa1fd890116b2eaab7917d",
                "sha256": "784d5bc618dc54a1587a8798b169f154262b0f9b0f82fabf515da924d7ccb5ca"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2648bf62dfa1fd890116b2eaab7917d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1402306,
            "upload_time": "2025-02-03T18:32:36",
            "upload_time_iso_8601": "2025-02-03T18:32:36.076521Z",
            "url": "https://files.pythonhosted.org/packages/b6/ba/5d7a8a16dc878fcabfaa0a9a11c5d194596824496bbf743b303fe644678e/digital_rf-2.6.11-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "780ed599f6b12e2c5b9c8469f77707c2931655dcfc6614ef0bbe56bfe750b4ce",
                "md5": "205891c4671cab31ab0c6c88d9ce1842",
                "sha256": "ffc164aff5ec9b31dccc6dc0852f30b3e02c5d435509f3ad2d3c579ba3addddb"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "205891c4671cab31ab0c6c88d9ce1842",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1800136,
            "upload_time": "2025-02-03T18:32:38",
            "upload_time_iso_8601": "2025-02-03T18:32:38.478126Z",
            "url": "https://files.pythonhosted.org/packages/78/0e/d599f6b12e2c5b9c8469f77707c2931655dcfc6614ef0bbe56bfe750b4ce/digital_rf-2.6.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbba8c2fd895e8ac0b6e1f506291b48ec24afece4a06ad32a9a06e03bed2aadd",
                "md5": "15894d9580548591e6013e867ebdfc62",
                "sha256": "b2a658baf8884931535a7ee0410b23cfb44647704e7da7d2f4f10ef12eb2744b"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "15894d9580548591e6013e867ebdfc62",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1277651,
            "upload_time": "2025-02-03T18:32:40",
            "upload_time_iso_8601": "2025-02-03T18:32:40.017702Z",
            "url": "https://files.pythonhosted.org/packages/bb/ba/8c2fd895e8ac0b6e1f506291b48ec24afece4a06ad32a9a06e03bed2aadd/digital_rf-2.6.11-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b72af004febb13f2e4e3917d69414f5709c45b2b40562c269657c914e252913f",
                "md5": "3a45facdd3aba67d5089f1473b1b781f",
                "sha256": "9a104e5163528ecd40538df5867da2535c162853bef994d2fd37a5124a8f4fbe"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a45facdd3aba67d5089f1473b1b781f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1652816,
            "upload_time": "2025-02-03T18:32:41",
            "upload_time_iso_8601": "2025-02-03T18:32:41.849820Z",
            "url": "https://files.pythonhosted.org/packages/b7/2a/f004febb13f2e4e3917d69414f5709c45b2b40562c269657c914e252913f/digital_rf-2.6.11-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d52ac679db78fe40a7032ef68ea099ed71fcdaf5ff384e866b84ea4fa0e457c5",
                "md5": "1bd6ceb65c8828ecae7e3e3a6ee16562",
                "sha256": "01f506e54a0130cda1691a996e47d372725d38795501e7495e4e92d851755d63"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1bd6ceb65c8828ecae7e3e3a6ee16562",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1402355,
            "upload_time": "2025-02-03T18:32:46",
            "upload_time_iso_8601": "2025-02-03T18:32:46.276168Z",
            "url": "https://files.pythonhosted.org/packages/d5/2a/c679db78fe40a7032ef68ea099ed71fcdaf5ff384e866b84ea4fa0e457c5/digital_rf-2.6.11-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff511f2b851898ee91c8c11d9fe94e653cb7613b96505aac30db5972a420e6df",
                "md5": "4579ac1b8f63aab694472ccaf0d812e8",
                "sha256": "d6930d970b766bf809b8799965ac299ed8eacbf42ab7999b22a34faf7db3882b"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4579ac1b8f63aab694472ccaf0d812e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1746648,
            "upload_time": "2025-02-03T18:32:47",
            "upload_time_iso_8601": "2025-02-03T18:32:47.877745Z",
            "url": "https://files.pythonhosted.org/packages/ff/51/1f2b851898ee91c8c11d9fe94e653cb7613b96505aac30db5972a420e6df/digital_rf-2.6.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa822e07b16111972baca6fb7e00113cf8bb92155cd0df02ef12ff0aed8d5bf8",
                "md5": "c1a8c9f19b3912071a0fae4899902a3a",
                "sha256": "361770311fa5da8d48502734186bf64f76d66faf45431eab9b5d814efc1622c1"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1a8c9f19b3912071a0fae4899902a3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1800090,
            "upload_time": "2025-02-03T18:32:49",
            "upload_time_iso_8601": "2025-02-03T18:32:49.621693Z",
            "url": "https://files.pythonhosted.org/packages/fa/82/2e07b16111972baca6fb7e00113cf8bb92155cd0df02ef12ff0aed8d5bf8/digital_rf-2.6.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4aa8edf9acf50c5fe7d7c2d2d9d924a0781896f0a4294ffdb5e4526f1cdedaf2",
                "md5": "1e25eea90136f8a7557dfe060a5ed2d1",
                "sha256": "920688c9c5e6d107ae3b8fb74cef6a15ec7aec89113d5f9de42db652eabf10d1"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e25eea90136f8a7557dfe060a5ed2d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1277795,
            "upload_time": "2025-02-03T18:32:52",
            "upload_time_iso_8601": "2025-02-03T18:32:52.258332Z",
            "url": "https://files.pythonhosted.org/packages/4a/a8/edf9acf50c5fe7d7c2d2d9d924a0781896f0a4294ffdb5e4526f1cdedaf2/digital_rf-2.6.11-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2882b5a5d2ec3e3a18d5013c298c66afc6e82cee807b72bc57c065ca04707e0",
                "md5": "f7c370a627c39f015e37ed59d98e5ef5",
                "sha256": "645a2e7d846c06f3158de6f52965a5ae2c501ae8c60f120079f1d89fb19940e4"
            },
            "downloads": -1,
            "filename": "digital_rf-2.6.11.tar.gz",
            "has_sig": false,
            "md5_digest": "f7c370a627c39f015e37ed59d98e5ef5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4683596,
            "upload_time": "2025-02-03T18:32:53",
            "upload_time_iso_8601": "2025-02-03T18:32:53.945781Z",
            "url": "https://files.pythonhosted.org/packages/b2/88/2b5a5d2ec3e3a18d5013c298c66afc6e82cee807b72bc57c065ca04707e0/digital_rf-2.6.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-03 18:32:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MITHaystack",
    "github_project": "digital_rf",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "lcname": "digital-rf"
}
        
Elapsed time: 1.36792s