urh


Nameurh JSON
Version 2.9.6 PyPI version JSON
download
home_pagehttps://github.com/jopohl/urh
SummaryUniversal Radio Hacker: investigate wireless protocols like a boss
upload_time2024-01-14 00:01:35
maintainer
docs_urlNone
authorJohannes Pohl
requires_python
licenseGNU General Public License (GPL)
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![URH image](https://raw.githubusercontent.com/jopohl/urh/master/data/icons/banner.png)

[![CI](https://github.com/jopohl/urh/actions/workflows/ci.yml/badge.svg)](https://github.com/jopohl/urh/actions/workflows/ci.yml)
[![Code style: black](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black)
[![PyPI version](https://badge.fury.io/py/urh.svg)](https://badge.fury.io/py/urh)
[![Packaging status](https://repology.org/badge/tiny-repos/urh.svg)](https://repology.org/project/urh/versions)
 [![Blackhat Arsenal 2017](https://rawgit.com/toolswatch/badges/master/arsenal/usa/2017.svg)](http://www.toolswatch.org/2017/06/the-black-hat-arsenal-usa-2017-phenomenal-line-up-announced/)
 [![Blackhat Arsenal 2018](https://rawgit.com/toolswatch/badges/master/arsenal/europe/2018.svg)](http://www.toolswatch.org/2018/09/black-hat-arsenal-europe-2018-lineup-announced/)


The Universal Radio Hacker (URH) is a complete suite for wireless protocol investigation with native support for [many](https://github.com/jopohl/urh/wiki/Supported-devices) common __Software Defined Radios__.
URH allows __easy demodulation__ of signals combined with an [automatic](https://dl.acm.org/doi/10.1145/3375894.3375896) detection of modulation parameters making it a breeze to identify the bits and bytes that fly over the air. 
As data often gets _encoded_ before transmission, URH offers __customizable decodings__ to crack even sophisticated encodings like CC1101 data whitening.
When it comes to __protocol reverse-engineering__, URH is helpful in two ways. You can either manually assign protocol fields and message types or let URH __automatically infer protocol fields__ with a [rule-based intelligence](https://www.usenix.org/conference/woot19/presentation/pohl).
Finally, URH entails a __fuzzing component__ aimed at stateless protocols and a __simulation environment__ for stateful attacks.

### Getting started
In order to get started
 - view the [installation instructions](#Installation) on this page,
 - download the [official userguide (PDF)](https://github.com/jopohl/urh/releases/download/v2.0.0/userguide.pdf), 
 - watch the [demonstration videos (YouTube)](https://www.youtube.com/watch?v=kuubkTDAxwA&index=1&list=PLlKjreY6G-1EKKBs9sucMdk8PwzcFuIPB),
 - check out the [wiki](https://github.com/jopohl/urh/wiki) for more information such as supported devices or
 - read some [articles about URH](#Articles) for inspiration.

If you like URH, please :star: this repository and [join our Slack channel](https://join.slack.com/t/stralsundsecurity/shared_invite/enQtMjEwOTIxNzMzODc3LTk3NmE4MGVjYjEyYTMzYTdmN2RlNzUzYzg0NTNjNTQ2ODBkMzI3MDZlOWY3MjE4YjBkNTM4ZjJlNTJlZmJhNDg). We appreciate your support!

### Citing URH
We encourage researchers working with URH to cite [this](https://www.usenix.org/conference/woot18/presentation/pohl) WOOT'18 paper or directly use the following BibTeX entry.
 
 <details>
 <summary> <b>URH BibTeX entry for your research paper</b> </summary>
 
  ```bibtex
@inproceedings {220562,
author = {Johannes Pohl and Andreas Noack},
title = {Universal Radio Hacker: A Suite for Analyzing and Attacking Stateful Wireless Protocols},
booktitle = {12th {USENIX} Workshop on Offensive Technologies ({WOOT} 18)},
year = {2018},
address = {Baltimore, MD},
url = {https://www.usenix.org/conference/woot18/presentation/pohl},
publisher = {{USENIX} Association},
}
```

 </details> 

## Installation
URH runs on Windows, Linux and macOS. See below for OS specific installation instructions.

### Windows
 On Windows, URH can be installed with its [Installer](https://github.com/jopohl/urh/releases). No further dependencies are required.
 
If you get an error about missing ```api-ms-win-crt-runtime-l1-1-0.dll```, run Windows Update or directly install [KB2999226](https://support.microsoft.com/en-us/help/2999226/update-for-universal-c-runtime-in-windows).

### Linux
#### Installation with pipx
URH is available on [PyPi](https://pypi.org/project/urh/) so you can install it, for example, with [pipx](https://pypa.github.io/pipx/): 
```bash 
pipx install urh
``` 
This is the recommended way to install URH on Linux because it comes with __all native extensions__ precompiled.

In order to access your SDR as non-root user, install the according __udev rules__. You can find them [in the wiki](https://github.com/jopohl/urh/wiki/SDR-udev-rules).

#### Install via Package Manager
URH is included in the repositories of many linux distributions such as __Arch Linux__, __Gentoo__, __Fedora__, __openSUSE__ or __NixOS__. There is also a package for __FreeBSD__.  If available, simply use your package manager to install URH.

__Note__: For native support, you must install the according ```-dev``` package(s) of your SDR(s) such as ```hackrf-dev``` __before__ installing URH.

#### Docker Images
The official URH docker image is available [here](https://hub.docker.com/r/jopohl/urh/). It has all native backends included and ready to operate.

### macOS
#### Using DMG

It is recommended to use __at least macOS 12__ when using the DMG available [here](https://github.com/jopohl/urh/releases).

#### With brew
URH is available as a [homebrew formula](https://formulae.brew.sh/formula/urh) so you can install it with
```commandline
brew install urh
```

### Running from source (OS-agnostic)
#### Without installation

To execute the Universal Radio Hacker without installation, just run:
```commandline
git clone https://github.com/jopohl/urh/
cd urh/src/urh
./main.py
```

Note, before first usage the C++ extensions will be built.

#### Installing from source

To install URH from source you need to have ```python-setuptools``` installed. You can get them with ```python3 -m pip install setuptools```. 
Once the setuptools are installed execute: 
```commandline
git clone https://github.com/jopohl/urh/
cd urh
python setup.py install
```

And start the application by typing ```urh``` in a terminal.


## Articles
### Hacking stuff with URH
* [Hacking Burger Pagers](https://www.rtl-sdr.com/using-a-hackrf-to-reverse-engineer-and-control-restaurant-pagers/)
* [Reverse-engineer and Clone a Remote Control](https://www.rtl-sdr.com/video-tutorial-using-universal-radio-hacker-an-rtl-sdr-and-a-microcontroller-to-clone-433-mhz-remotes/)
* [Reverse-engineering Weather Station RF Signals](https://www.rtl-sdr.com/tag/universal-radio-hacker/)
* [Reverse-engineering Wireless Blinds](https://www.rtl-sdr.com/reverse-engineering-wireless-blinds-with-an-rtl-sdr-and-controlling-them-with-amazon-alexa/)
* [Attacking Logitech Wireless Presenters (German Article)](https://www.heise.de/security/meldung/Wireless-Presenter-von-Logitech-und-Inateck-anfaellig-fuer-Angriffe-ueber-Funk-4439795.html)
* [Attacking Wireless Keyboards](https://threatpost.com/fujitsu-wireless-keyboard-unpatched-flaws/149477/)
* [Reverse-engineering a 433MHz Remote-controlled Power Socket for use with Arduino](http://www.ignorantofthings.com/2018/11/reverse-engineering-433mhz-remote.html)

### General presentations and tutorials on URH
* [Hackaday Article](https://hackaday.com/2017/02/23/universal-radio-hacker/)
* [RTL-SDR.com Article](https://www.rtl-sdr.com/reverse-engineering-signals-universal-radio-hacker-software/)
* [Short Tutorial on URH with LimeSDR Mini](https://www.crowdsupply.com/lime-micro/limesdr-mini/updates/investigating-wireless-protocols-with-universal-radio-hacker)
* [Brute-forcing a RF Device: a Step-by-step Guide](https://pandwarf.com/news/brute-forcing-a-new-device-a-step-by-step-guide/)
* [Hacking wireless sockets like a NOOB](https://olof-astrand.medium.com/hacking-wireless-sockets-like-a-noob-b57d4b4812d5)

## External decodings
See [wiki](https://github.com/jopohl/urh/wiki/External-decodings) for a list of external decodings provided by our community! Thanks for that!

## Screenshots
### Get the data out of raw signals
![Interpretation phase](http://i.imgur.com/Wy17Zv3.png)

### Keep an overview even on complex protocols
 ![Analysis phase](http://i.imgur.com/ubAL3pE.png)

### Record and send signals
 ![Record](http://i.imgur.com/BfQpg23.png)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jopohl/urh",
    "name": "urh",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Johannes Pohl",
    "author_email": "Johannes.Pohl90@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d8/dc/a6dcf5686e980530b23bc16936cd9c879c50da133f319f729da6d20bd95b/urh-2.9.6.tar.gz",
    "platform": null,
    "description": "![URH image](https://raw.githubusercontent.com/jopohl/urh/master/data/icons/banner.png)\n\n[![CI](https://github.com/jopohl/urh/actions/workflows/ci.yml/badge.svg)](https://github.com/jopohl/urh/actions/workflows/ci.yml)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black)\n[![PyPI version](https://badge.fury.io/py/urh.svg)](https://badge.fury.io/py/urh)\n[![Packaging status](https://repology.org/badge/tiny-repos/urh.svg)](https://repology.org/project/urh/versions)\n [![Blackhat Arsenal 2017](https://rawgit.com/toolswatch/badges/master/arsenal/usa/2017.svg)](http://www.toolswatch.org/2017/06/the-black-hat-arsenal-usa-2017-phenomenal-line-up-announced/)\n [![Blackhat Arsenal 2018](https://rawgit.com/toolswatch/badges/master/arsenal/europe/2018.svg)](http://www.toolswatch.org/2018/09/black-hat-arsenal-europe-2018-lineup-announced/)\n\n\nThe Universal Radio Hacker (URH) is a complete suite for wireless protocol investigation with native support for [many](https://github.com/jopohl/urh/wiki/Supported-devices) common __Software Defined Radios__.\nURH allows __easy demodulation__ of signals combined with an [automatic](https://dl.acm.org/doi/10.1145/3375894.3375896) detection of modulation parameters making it a breeze to identify the bits and bytes that fly over the air. \nAs data often gets _encoded_ before transmission, URH offers __customizable decodings__ to crack even sophisticated encodings like CC1101 data whitening.\nWhen it comes to __protocol reverse-engineering__, URH is helpful in two ways. You can either manually assign protocol fields and message types or let URH __automatically infer protocol fields__ with a [rule-based intelligence](https://www.usenix.org/conference/woot19/presentation/pohl).\nFinally, URH entails a __fuzzing component__ aimed at stateless protocols and a __simulation environment__ for stateful attacks.\n\n### Getting started\nIn order to get started\n - view the [installation instructions](#Installation) on this page,\n - download the [official userguide (PDF)](https://github.com/jopohl/urh/releases/download/v2.0.0/userguide.pdf), \n - watch the [demonstration videos (YouTube)](https://www.youtube.com/watch?v=kuubkTDAxwA&index=1&list=PLlKjreY6G-1EKKBs9sucMdk8PwzcFuIPB),\n - check out the [wiki](https://github.com/jopohl/urh/wiki) for more information such as supported devices or\n - read some [articles about URH](#Articles) for inspiration.\n\nIf you like URH, please :star: this repository and [join our Slack channel](https://join.slack.com/t/stralsundsecurity/shared_invite/enQtMjEwOTIxNzMzODc3LTk3NmE4MGVjYjEyYTMzYTdmN2RlNzUzYzg0NTNjNTQ2ODBkMzI3MDZlOWY3MjE4YjBkNTM4ZjJlNTJlZmJhNDg). We appreciate your support!\n\n### Citing URH\nWe encourage researchers working with URH to cite [this](https://www.usenix.org/conference/woot18/presentation/pohl) WOOT'18 paper or directly use the following BibTeX entry.\n \n <details>\n <summary> <b>URH BibTeX entry for your research paper</b> </summary>\n \n  ```bibtex\n@inproceedings {220562,\nauthor = {Johannes Pohl and Andreas Noack},\ntitle = {Universal Radio Hacker: A Suite for Analyzing and Attacking Stateful Wireless Protocols},\nbooktitle = {12th {USENIX} Workshop on Offensive Technologies ({WOOT} 18)},\nyear = {2018},\naddress = {Baltimore, MD},\nurl = {https://www.usenix.org/conference/woot18/presentation/pohl},\npublisher = {{USENIX} Association},\n}\n```\n\n </details> \n\n## Installation\nURH runs on Windows, Linux and macOS. See below for OS specific installation instructions.\n\n### Windows\n On Windows, URH can be installed with its [Installer](https://github.com/jopohl/urh/releases). No further dependencies are required.\n \nIf you get an error about missing ```api-ms-win-crt-runtime-l1-1-0.dll```, run Windows Update or directly install [KB2999226](https://support.microsoft.com/en-us/help/2999226/update-for-universal-c-runtime-in-windows).\n\n### Linux\n#### Installation with pipx\nURH is available on [PyPi](https://pypi.org/project/urh/) so you can install it, for example, with [pipx](https://pypa.github.io/pipx/): \n```bash \npipx install urh\n``` \nThis is the recommended way to install URH on Linux because it comes with __all native extensions__ precompiled.\n\nIn order to access your SDR as non-root user, install the according __udev rules__. You can find them [in the wiki](https://github.com/jopohl/urh/wiki/SDR-udev-rules).\n\n#### Install via Package Manager\nURH is included in the repositories of many linux distributions such as __Arch Linux__, __Gentoo__, __Fedora__, __openSUSE__ or __NixOS__. There is also a package for __FreeBSD__.  If available, simply use your package manager to install URH.\n\n__Note__: For native support, you must install the according ```-dev``` package(s) of your SDR(s) such as ```hackrf-dev``` __before__ installing URH.\n\n#### Docker Images\nThe official URH docker image is available [here](https://hub.docker.com/r/jopohl/urh/). It has all native backends included and ready to operate.\n\n### macOS\n#### Using DMG\n\nIt is recommended to use __at least macOS 12__ when using the DMG available [here](https://github.com/jopohl/urh/releases).\n\n#### With brew\nURH is available as a [homebrew formula](https://formulae.brew.sh/formula/urh) so you can install it with\n```commandline\nbrew install urh\n```\n\n### Running from source (OS-agnostic)\n#### Without installation\n\nTo execute the Universal Radio Hacker without installation, just run:\n```commandline\ngit clone https://github.com/jopohl/urh/\ncd urh/src/urh\n./main.py\n```\n\nNote, before first usage the C++ extensions will be built.\n\n#### Installing from source\n\nTo install URH from source you need to have ```python-setuptools``` installed. You can get them with ```python3 -m pip install setuptools```. \nOnce the setuptools are installed execute: \n```commandline\ngit clone https://github.com/jopohl/urh/\ncd urh\npython setup.py install\n```\n\nAnd start the application by typing ```urh``` in a terminal.\n\n\n## Articles\n### Hacking stuff with URH\n* [Hacking Burger Pagers](https://www.rtl-sdr.com/using-a-hackrf-to-reverse-engineer-and-control-restaurant-pagers/)\n* [Reverse-engineer and Clone a Remote Control](https://www.rtl-sdr.com/video-tutorial-using-universal-radio-hacker-an-rtl-sdr-and-a-microcontroller-to-clone-433-mhz-remotes/)\n* [Reverse-engineering Weather Station RF Signals](https://www.rtl-sdr.com/tag/universal-radio-hacker/)\n* [Reverse-engineering Wireless Blinds](https://www.rtl-sdr.com/reverse-engineering-wireless-blinds-with-an-rtl-sdr-and-controlling-them-with-amazon-alexa/)\n* [Attacking Logitech Wireless Presenters (German Article)](https://www.heise.de/security/meldung/Wireless-Presenter-von-Logitech-und-Inateck-anfaellig-fuer-Angriffe-ueber-Funk-4439795.html)\n* [Attacking Wireless Keyboards](https://threatpost.com/fujitsu-wireless-keyboard-unpatched-flaws/149477/)\n* [Reverse-engineering a 433MHz Remote-controlled Power Socket for use with Arduino](http://www.ignorantofthings.com/2018/11/reverse-engineering-433mhz-remote.html)\n\n### General presentations and tutorials on URH\n* [Hackaday Article](https://hackaday.com/2017/02/23/universal-radio-hacker/)\n* [RTL-SDR.com Article](https://www.rtl-sdr.com/reverse-engineering-signals-universal-radio-hacker-software/)\n* [Short Tutorial on URH with LimeSDR Mini](https://www.crowdsupply.com/lime-micro/limesdr-mini/updates/investigating-wireless-protocols-with-universal-radio-hacker)\n* [Brute-forcing a RF Device: a Step-by-step Guide](https://pandwarf.com/news/brute-forcing-a-new-device-a-step-by-step-guide/)\n* [Hacking wireless sockets like a NOOB](https://olof-astrand.medium.com/hacking-wireless-sockets-like-a-noob-b57d4b4812d5)\n\n## External decodings\nSee [wiki](https://github.com/jopohl/urh/wiki/External-decodings) for a list of external decodings provided by our community! Thanks for that!\n\n## Screenshots\n### Get the data out of raw signals\n![Interpretation phase](http://i.imgur.com/Wy17Zv3.png)\n\n### Keep an overview even on complex protocols\n ![Analysis phase](http://i.imgur.com/ubAL3pE.png)\n\n### Record and send signals\n ![Record](http://i.imgur.com/BfQpg23.png)\n",
    "bugtrack_url": null,
    "license": "GNU General Public License (GPL)",
    "summary": "Universal Radio Hacker: investigate wireless protocols like a boss",
    "version": "2.9.6",
    "project_urls": {
        "Download": "https://github.com/jopohl/urh/tarball/v2.9.6",
        "Homepage": "https://github.com/jopohl/urh"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9660aa373de43c114271506263ccf8774e8131eb3f54a0a158255aa41ef7e71",
                "md5": "88945c4b2ff7e5fcbc5265f1be11e97d",
                "sha256": "0f4e09dca840835a969ffd89d9f93d07c9789cf2617d1a720dbefbaaac672b44"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88945c4b2ff7e5fcbc5265f1be11e97d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 20424172,
            "upload_time": "2024-01-14T00:04:32",
            "upload_time_iso_8601": "2024-01-14T00:04:32.210425Z",
            "url": "https://files.pythonhosted.org/packages/e9/66/0aa373de43c114271506263ccf8774e8131eb3f54a0a158255aa41ef7e71/urh-2.9.6-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e2fa1aa4fe4096bfd88dc3582f572956ca1df7456a2e8d864aa939a7185a3cf",
                "md5": "dbb59144ec6ae4bc42e12a20ddb1f302",
                "sha256": "ead3431b9db9cba56b5a778d08fe25c83a8d218baa1b525fa2138717cd471d2d"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dbb59144ec6ae4bc42e12a20ddb1f302",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4358755,
            "upload_time": "2024-01-14T00:13:03",
            "upload_time_iso_8601": "2024-01-14T00:13:03.449221Z",
            "url": "https://files.pythonhosted.org/packages/5e/2f/a1aa4fe4096bfd88dc3582f572956ca1df7456a2e8d864aa939a7185a3cf/urh-2.9.6-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc14ec5e75f5287dc195d603d5ae183446ddac967ad76b883c5b274c17cdee55",
                "md5": "f7f375d3d3639cd2c6803e8cea89c7af",
                "sha256": "f93e1e7e057e41ca9121cad08b4a50edbbc65bc6accd76ee0691937e95b2cf9c"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7f375d3d3639cd2c6803e8cea89c7af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 20752041,
            "upload_time": "2024-01-14T00:01:31",
            "upload_time_iso_8601": "2024-01-14T00:01:31.875793Z",
            "url": "https://files.pythonhosted.org/packages/dc/14/ec5e75f5287dc195d603d5ae183446ddac967ad76b883c5b274c17cdee55/urh-2.9.6-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02ee965ecb88fb1444f4cc9fa853b9e48433506413827322e9a13a5d1559670e",
                "md5": "d2eba0e823b471f585f195ebf21c4150",
                "sha256": "b13d0164c02a043b398fdb1e98a695daceb656119360f20759d591808c41187b"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "d2eba0e823b471f585f195ebf21c4150",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9881515,
            "upload_time": "2024-01-14T00:04:22",
            "upload_time_iso_8601": "2024-01-14T00:04:22.672474Z",
            "url": "https://files.pythonhosted.org/packages/02/ee/965ecb88fb1444f4cc9fa853b9e48433506413827322e9a13a5d1559670e/urh-2.9.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ae763e0146875d6fc5e809a82ffcaf5820ea4fbe8074b568a856fe665f7e938",
                "md5": "36d6748e62cdb50cfe04bb0ea3dde937",
                "sha256": "9ed54d285fdd2dc46580f8011a977c5d1950ee9f2dea1f8de166ffb4f2c09298"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "36d6748e62cdb50cfe04bb0ea3dde937",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10695487,
            "upload_time": "2024-01-14T00:04:20",
            "upload_time_iso_8601": "2024-01-14T00:04:20.207459Z",
            "url": "https://files.pythonhosted.org/packages/2a/e7/63e0146875d6fc5e809a82ffcaf5820ea4fbe8074b568a856fe665f7e938/urh-2.9.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5538b87b28268f77a4463bf4eed2ba8e9ccaa6e3beb353be78295f03c3082bb2",
                "md5": "4a2d956d3ee6e5db1b22227c698adb12",
                "sha256": "6a9ad3d5ef6cf7ec0572319dea1325e3f0479cd99447d231b145204aaf8e47e6"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a2d956d3ee6e5db1b22227c698adb12",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 20440108,
            "upload_time": "2024-01-14T00:00:49",
            "upload_time_iso_8601": "2024-01-14T00:00:49.626038Z",
            "url": "https://files.pythonhosted.org/packages/55/38/b87b28268f77a4463bf4eed2ba8e9ccaa6e3beb353be78295f03c3082bb2/urh-2.9.6-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fe59fb1d0a9019da32a54bc64485c045c1cfba516a04ca25b0da8f82459c07f",
                "md5": "37944854c2e6746bd18a7352ea136fd9",
                "sha256": "2143293c8b36ce5c5e0c892943f793fab750ce9c1f4e739375578407da6389bd"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37944854c2e6746bd18a7352ea136fd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 20534736,
            "upload_time": "2024-01-14T00:01:00",
            "upload_time_iso_8601": "2024-01-14T00:01:00.057696Z",
            "url": "https://files.pythonhosted.org/packages/2f/e5/9fb1d0a9019da32a54bc64485c045c1cfba516a04ca25b0da8f82459c07f/urh-2.9.6-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae1fd918cbe5cd7e6abb97b69e410979aadc3b638e3fd0c27ca11611974fd627",
                "md5": "deb91ed71f8776e37b798cee627b41c0",
                "sha256": "d9b0b3c4b725391b1710c4372a576383d1a3b71489138bc38ca9495ad41e59ac"
            },
            "downloads": -1,
            "filename": "urh-2.9.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "deb91ed71f8776e37b798cee627b41c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 20482999,
            "upload_time": "2024-01-14T00:01:09",
            "upload_time_iso_8601": "2024-01-14T00:01:09.845748Z",
            "url": "https://files.pythonhosted.org/packages/ae/1f/d918cbe5cd7e6abb97b69e410979aadc3b638e3fd0c27ca11611974fd627/urh-2.9.6-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8dca6dcf5686e980530b23bc16936cd9c879c50da133f319f729da6d20bd95b",
                "md5": "4fc1c4dfb0f28a03098d911e3111fd80",
                "sha256": "0dee42619009361e8f5f54d48f31e1c6cf24b171c773dd38f99a34111a0945e1"
            },
            "downloads": -1,
            "filename": "urh-2.9.6.tar.gz",
            "has_sig": false,
            "md5_digest": "4fc1c4dfb0f28a03098d911e3111fd80",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2987257,
            "upload_time": "2024-01-14T00:01:35",
            "upload_time_iso_8601": "2024-01-14T00:01:35.233745Z",
            "url": "https://files.pythonhosted.org/packages/d8/dc/a6dcf5686e980530b23bc16936cd9c879c50da133f319f729da6d20bd95b/urh-2.9.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-14 00:01:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jopohl",
    "github_project": "urh",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "urh"
}
        
Elapsed time: 0.16778s