urh


Nameurh JSON
Version 2.9.8 PyPI version JSON
download
home_pagehttps://github.com/jopohl/urh
SummaryUniversal Radio Hacker: investigate wireless protocols like a boss
upload_time2024-11-11 16:10:12
maintainerNone
docs_urlNone
authorJohannes Pohl
requires_pythonNone
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": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Johannes Pohl",
    "author_email": "Johannes.Pohl90@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/7b/af/be36ae7e9184410c2c6d406a1551d7096f394e238cc5f63cb4ddcfc5f2e5/urh-2.9.8.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.8",
    "project_urls": {
        "Download": "https://github.com/jopohl/urh/tarball/v2.9.8",
        "Homepage": "https://github.com/jopohl/urh"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b5cdc6af2e2ccc4f462c601863da395a1de8ba7ecf9c3cf524166a7984905aa",
                "md5": "a68fda3f544a76d4fbfe691839c335eb",
                "sha256": "9bee4ffde816f9c8230d20395f5a5c910b96b664353adcbf025b4aafd7d7a1d8"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a68fda3f544a76d4fbfe691839c335eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 21539047,
            "upload_time": "2024-11-11T16:13:17",
            "upload_time_iso_8601": "2024-11-11T16:13:17.666954Z",
            "url": "https://files.pythonhosted.org/packages/0b/5c/dc6af2e2ccc4f462c601863da395a1de8ba7ecf9c3cf524166a7984905aa/urh-2.9.8-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f991333b77a98b1c03f44416825c3868e2fe0f540df3245514e64149280160b4",
                "md5": "8cb98484601c69ccb5cdf6902a997afe",
                "sha256": "c2c123118a09e0a368228d4d1376bef4cd00a9d41c0ad700407f4ba404a7edd6"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8cb98484601c69ccb5cdf6902a997afe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4870758,
            "upload_time": "2024-11-11T16:11:32",
            "upload_time_iso_8601": "2024-11-11T16:11:32.375463Z",
            "url": "https://files.pythonhosted.org/packages/f9/91/333b77a98b1c03f44416825c3868e2fe0f540df3245514e64149280160b4/urh-2.9.8-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5f97acf7e17e074a95c7efce48cd96730830b8997f4f601b330614d210b0a65",
                "md5": "1b25b0016785504aa34b9615c978324d",
                "sha256": "09f3a9a1edc112632c1ca2ccdc64e80aa161a734e08af941dbaaa8c74907f60c"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b25b0016785504aa34b9615c978324d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 22173421,
            "upload_time": "2024-11-11T16:10:10",
            "upload_time_iso_8601": "2024-11-11T16:10:10.659329Z",
            "url": "https://files.pythonhosted.org/packages/c5/f9/7acf7e17e074a95c7efce48cd96730830b8997f4f601b330614d210b0a65/urh-2.9.8-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "213f2fb362f42d936450b8a9a47570c09041d97c9f03ecf6048c5363abdd1d94",
                "md5": "3ada8de6539da4cafd084e549b427af5",
                "sha256": "b7b4eadd447dc755d4285c430b3b34fc773b260834534746ef2d0bd3433ca986"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "3ada8de6539da4cafd084e549b427af5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10063672,
            "upload_time": "2024-11-11T16:18:32",
            "upload_time_iso_8601": "2024-11-11T16:18:32.860599Z",
            "url": "https://files.pythonhosted.org/packages/21/3f/2fb362f42d936450b8a9a47570c09041d97c9f03ecf6048c5363abdd1d94/urh-2.9.8-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8641cde25d072e6a70a3511b71fcf0b2be0f0ac44edc90be9eea3a19811e1f2b",
                "md5": "c5541e253eae3989642b71e212c4843e",
                "sha256": "3362852ae8c583f3d55c2119d95d8b0533b9ed64c549710c544dc1c7e6b014d8"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5541e253eae3989642b71e212c4843e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10922014,
            "upload_time": "2024-11-11T16:15:00",
            "upload_time_iso_8601": "2024-11-11T16:15:00.241238Z",
            "url": "https://files.pythonhosted.org/packages/86/41/cde25d072e6a70a3511b71fcf0b2be0f0ac44edc90be9eea3a19811e1f2b/urh-2.9.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f865e388507269956145b804fdaf8b5a4ac99fbf8f48a6913aeea4e0ee4ef2b",
                "md5": "30a1ce27413d2e5fa01e85b7b4b4ebfe",
                "sha256": "6d2f705333fca23b2f150793b1f75c4bf478baa6eb7b93a55d68db98200bd184"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30a1ce27413d2e5fa01e85b7b4b4ebfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 22065004,
            "upload_time": "2024-11-11T16:10:07",
            "upload_time_iso_8601": "2024-11-11T16:10:07.193310Z",
            "url": "https://files.pythonhosted.org/packages/9f/86/5e388507269956145b804fdaf8b5a4ac99fbf8f48a6913aeea4e0ee4ef2b/urh-2.9.8-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "269f7255a2d16ae180d42df5b3469690e9b1c4f61c884ad3e2bccfb161b5f865",
                "md5": "52bc9d59f3efdeea1844fa68ea8e3e1c",
                "sha256": "21c6cfc6d974953660ab1987bf264d2d6fdb8e48a9ab3a0f3605ca65983da576"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52bc9d59f3efdeea1844fa68ea8e3e1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 21764875,
            "upload_time": "2024-11-11T16:11:56",
            "upload_time_iso_8601": "2024-11-11T16:11:56.648098Z",
            "url": "https://files.pythonhosted.org/packages/26/9f/7255a2d16ae180d42df5b3469690e9b1c4f61c884ad3e2bccfb161b5f865/urh-2.9.8-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65bcfb564164ac2d94b5eb1fa1417d38fc3574823be60c6f166406a222321bf1",
                "md5": "4fd5d4a1e6b399502a1ea1be8630bcad",
                "sha256": "1f2022add572f234b0a1ffe37a71a20876631451019f94d43580ad74d81e105b"
            },
            "downloads": -1,
            "filename": "urh-2.9.8-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4fd5d4a1e6b399502a1ea1be8630bcad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 21574552,
            "upload_time": "2024-11-11T16:11:56",
            "upload_time_iso_8601": "2024-11-11T16:11:56.645760Z",
            "url": "https://files.pythonhosted.org/packages/65/bc/fb564164ac2d94b5eb1fa1417d38fc3574823be60c6f166406a222321bf1/urh-2.9.8-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bafbe36ae7e9184410c2c6d406a1551d7096f394e238cc5f63cb4ddcfc5f2e5",
                "md5": "99b1b39fef7fdf5cb07222e0a5eebc72",
                "sha256": "864130b19553833827931f48f874045a39a6cee219a310a910bcd2ef02cf96b4"
            },
            "downloads": -1,
            "filename": "urh-2.9.8.tar.gz",
            "has_sig": false,
            "md5_digest": "99b1b39fef7fdf5cb07222e0a5eebc72",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3269780,
            "upload_time": "2024-11-11T16:10:12",
            "upload_time_iso_8601": "2024-11-11T16:10:12.870586Z",
            "url": "https://files.pythonhosted.org/packages/7b/af/be36ae7e9184410c2c6d406a1551d7096f394e238cc5f63cb4ddcfc5f2e5/urh-2.9.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-11 16:10:12",
    "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.32664s