romlm


Nameromlm JSON
Version 1.0.2 PyPI version JSON
download
home_pageNone
SummaryA ROM library management tool.
upload_time2025-01-05 18:59:24
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseMIT
keywords rom retro retro-game emulation management tools
VCS
bugtrack_url
requirements py7zr tqdm colorama
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # romlm (ROMs Library Manager)

A Python-based command line tool that helps you organize and manage your ROM collections effortlessly. 
Whether you want to pack, unpack, sort, or remove duplicates, **romlm** has got you covered.

All features are tested on the no-intro ROM sets (which I personally recommend), but it should work with any 
ROM collection that follows a similar naming convention.
If you have some issues with other ROM sets, that can't be worked-around with the current implementation, 
feel free to open an issue on the [GitHub issues](https://github.com/ManeFunction/romlm/issues) page.

---

## Features

- **Extract (`-x, --extract`)**  
  Automatically unpacks all `.7z` or `.zip` files in the current directory (or a specified folder) into subfolders. 
  Supports nested subfolders, keeping all the structure.

  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/extract.png)


- **Pack (`-p, --pack`)**  
  Compresses all uncompressed files in the current directory (or a specified folder) into `.7z` or `.zip` archives. 
  Supports nested subfolders, keeping all the structure.

  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/pack.png)


- **Sort (`-s, --sort`)**  
  Moves files into alphabetically organized subfolders (A–Z). Optionally handles special folders for 
  Homebrew (`!Homebrew`), Pirates (`!Pirates`), or user-defined subfolders (`-f`).
    - `h` will also sort files into homebrew subfolder.
    - `p` will also sort files into pirates subfolder.
    - `f` will also sort files into user-defined subfolders (`-f`).
    - `a` will also sort files into homebrew, pirates and all user-defined subfolders (`-f`). Equal to `hpf`.
    - You can also use any combination of `h`, `p` and `f` options, for example `hp` or `fh`.
    - `-s reverse` will reverse-sort files, i.e., move them all back into the root folder.
  
  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/sort.png)


- **Separate Homebrew and Pirate ROMs (`-u, --unlicensed`)**  
  By default, romlm detects and separates Homebrew or Pirate files into dedicated folders. Can be customized with 
  options:
    - `none` disables separation completely,
    - `h` separates Homebrew files only,
    - `p` separates Pirate files only.

  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/unlicensed.png)


- **Remove Duplicates (`-r, --remove-duplicates`)**  
  Automatically detects duplicate files, preserving the best candidate according
  to region, beta status, revision, version, release date and other data that can be received from the filename.
  Behavior for the situations when script can't decide the best file itself, can be specified:
    - `ask` prompts you which file to keep, default with `-l`,
    - `all` keeps all equally good files, default without `-l`,
    - `one` keeps exactly one of the best ROMs, taken randomly.

  I highly recommend to **use this feature with `-l` option** to see the results, and **make a backup of your ROMs before**!
  
  In the current scenario it removes all the beta and prototype files if there is a final version of the game exists. 
  If not, it tries to keep only one the latest version. USA retro ROMs (not Virtual Console versions) counts as 
  the best version of the game. Also, Europe and EN releases have a higher priority over JP and Asia versions, 
  as well as NTSC counts better, than PAL. **romlm** will never remove all copies of one game!
  
  If you want to keep a Japanese collection intact, I recommend to separate it first. See Usage Examples below.
      
  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/remove.png)


- **User-defined Folders (`-f, --folders`)**  
  Easily map certain tags to user-defined folders. For example, specifying `-f Japan` will move ROMs tagged 
  as `(Japan)` into dedicated subfolder. Works only with `--sort` process as a part of it. Search only within tags, 
  to not be confused with a game name, so if you just want all your Mario games in one place, just search it manually, 
  **romlm** not for that.

- **Exclude Tags (`-e, --exclude`)**  
  Combine with `-f` to skip specified tags from the subfolders sorting process. For example, `-f Japan -e USA`
  will move all `(Japan)` tagged ROMs into a dedicated subfolder, excluding any `(USA)` tagged ROMs
  if `(Japan, USA)` combination is met.

  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/subfolder.png)


- **Logging (`-l, --log`)**  
  Enables verbose output to see exactly what the script is doing. Extremely useful when `--remove-duplicates` is enabled.

  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/remove-log.png)


- **Other Utilities**  
  - Cleans out unwanted system meta-files (e.g., `desktop.ini`, `.DS_Store`).
  - Removes empty subdirectories after sorting.
  - Provides an in-script help guide (`-h, --help`).

---

## Installation

**romlm** is available to use in a variety of ways.  
`pip` or `brew` is recommended ways, because they have a convenient way to manage updates automatically.
1) **pip (Recommended for everyone with Python environment)**
    - You can check if you have Python installed by running `python --version` in the Terminal or cmd.
    - For Mac and Linux users, there is a high chance that you already have Python installed on your system.
    - For Windows users, you can download Python from the [official website](https://www.python.org/downloads/).
    - After confirmation, install **romlm** through the [PyPI](https://pypi.org/project/romlm) package manager, typing `pip install romlm` in the Terminal.
      For Mac users, you may need to use `pip3` instead of `pip`.
    - Verify the installation with `romlm -h` command.
    - You are perfect, you can use the app with `romlm [parameters]` command from any folder in your system.
1) **brew (Recommended for Mac and Linux users)**
    - You can install **romlm** through the [Homebrew](https://brew.sh/) formula for macOS users (if you have **brew** installed), 
      typing `brew install manefunction/tap/romlm` in the Terminal.
    - Verify the installation with `romlm -h` command.
    - You are perfect, you can use the app with `romlm [parameters]` command from any folder in your system.
1) **Ready to use binaries (Recommended for Windows users)**
    - Download ready-to-use binaries from the [GitHub Releases](https://github.com/ManeFunction/romlm/releases) and run it with `./romlm`.  
    - Unpack the downloaded archive.
    - On Windows (cmd):
        - Open Command Prompt (cmd) with `Win+R` and typing `cmd`, or just searching `cmd` in a Start menu.
        - Run `cd path\to\folder` to go to the folder with `romlm.exe`.
          Don't forget to use `cd` with `/d` option to change the drive, if needed (`cd /d path\to\folder`).
        - Run `romlm -h` to verify the script is working.
        - You are perfect, you can use the app now with `romlm [parameters]` command.
    - On Windows (PowerShell):
        - Open PowerShell searching it in a Start menu.
        - Run `cd path\to\folder` to go to the folder with `romlm.exe`.
        - Run `./romlm -h` to verify the script is working.
        - You are perfect, you can use the app now with `./romlm [parameters]` command.
    - On Mac:
      - Open Terminal or any other CL app you prefer to use.
      - Run `cd path/to/unpacked/folder` to go to the folder (you can just drag'n'drop a folder to the Terminal
        to copy-paste its path).
      - Run `xattr -r -d com.apple.quarantine ./` to remove the quarantine attribute from binaries  
        (I do not have an Apple Developer status at the moment and cannot sign binaries properly, 
        this, hopefully, will be fixed in the future).
      - Run `./romlm -h` to verify the script is working  
        (be aware, that macOS still running security checks, so the first start of the app will be longer for about 10-15 sec.).
      - You are perfect, you can use the app now with `./romlm [parameters]` command.
1) **Python package (manual installation, for advanced users)**
      - Clone the repository or download the source code from the GitHub.
      - Go to the folder with the script in your Terminal.
      - Run `pip install .` to install `romlm` to your system.
      - Run `romlm -h` to verify the script is working.
      - You are perfect, you can use `romlm [parameters]` command from anywhere in your system.
1) **Python script (manual usage, for advanced users)**
    - if you are familiar with Python scripts, venv, and dependencies, you can simply clone the repository 
      and run `romlm.py`. In that way, feel free to modify the script for yourself as you want.

---

## Backstory

As a user of Analogue Pocket and an Emulation Station based handheld system, there are some nuances from both worlds
that I'm trying to cover with **romlm**. Analogue Poket is a highly precise FPGA-based console, but it covers only
earlier generations and a scoop of Arcade games. Though, those platforms, like NES, SNES and Genesis have a huge
library of games, that should be sorted to have an easy access. Also, Pocket do not support archives, so all the ROMs
should be unpacked. Standard software emulators, on the other hand, can play archived ROMs, and with the support
of more later platforms, where games became bigger, it's great to have them packed, but also, it's good to have
old systems packed as well, to save some Gigs for a few more CD games. So, I've need a tool to prepare my ROMs
for both systems in a few clicks. That's how **romlm** was born.


Personally, I keep all my ROMs on Analogue Pocket, to be able to quickly launch any version of any game it supports.
But I do not need all of those for a device that made for casual play. To be honest, I have Powkidy RGB30 with
a rectangular screen, specifically for the Pico-8. Emulation capabilities of this device is just a neat bonus
for me :) So, to prepare ROMs for Emulation Station devices, like Powkiddy, Anbernic, Miyoo, etc. we can clean
our library from all the stuff we never play anyway.

---

## Usage Examples

There is an example how to separate and work with your Japanese library, if you need it. But it also can be a great
example of **romlm** capabilities for you to learn. Emulation Station have a separate folders for Japanese libraries
(at least for the 3 whales of retro gaming: NES, SNES and Genesis) as well as for homebrew,
so it's good to separate them first, if you are interested in them. Here is the way:
1) `-i ./your-roms -s a -f Japan -e USA,EN` command first to separate non-en Japanese releases
   (they ends up in `!Japan` folder). Alternatively, you can use `-s f` if your collection do not have a lot of homebrew
   and pirates, and you do not need to sort them in (A-Z) folders.
1) Put all sorted folders (A-Z) from `your-roms` folder to `your-roms/sorted` for example, to be able to treat them
   separately later.
1) Now you should have `sorted`, `!Japan`, `!Homebrew` (if there was any) and `!Pirates` (if there was any)
   folders in your `your-roms` folder. `!` is used here to keep them on top of the list, as Emulation Station sorts
   folders alphabetically, but remember, that you should escape it with `\!` in the command line, so path
   for the next commands should look like `-i ./your-roms/\!Japan` for example.
1) Do `-i ./your-roms/sorted -r -l` for all the subfolders separately to remove duplicates, but keep them in
   sorted (mostly USA for now) and Japanese folders.
1) After that you can pack all the ROMs in one command `-i ./your-roms -p`. This command keeps our new folders structure.

This way you will keep all the Japanese versions of the games, separated into a dedicated folder, and anyways
all other duplicates will be removed, easing the access to the games you want to play in the future and
saving the space on your device for more great games.


---

## Credits

Created and maintained by ManeFunction (ilia@inkedkettle.art).

Huge thanks to the [no-intro](http://www.no-intro.org/) team for their amazing work on the ROM sets and retro games
preservation.

Also, big shoutout to the [Nuitka](https://github.com/Nuitka/Nuitka) project for the great Python compiler.

And of course, thanks for your contributions and feedback!
If you have any questions, suggestions, or issues, feel free to open an issue on the [GitHub issues](https://github.com/ManeFunction/romlm/issues) page 
or create a or pull request.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "romlm",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "ROM, retro, retro-game, emulation, management, tools",
    "author": null,
    "author_email": "Ilia Petrov-Komotskii <ilia@inkedkettle.art>",
    "download_url": "https://files.pythonhosted.org/packages/31/52/fc71599e7d203d8c5756505c5eb26894113729b7763da88739dc9bf06742/romlm-1.0.2.tar.gz",
    "platform": null,
    "description": "# romlm (ROMs Library Manager)\n\nA Python-based command line tool that helps you organize and manage your ROM collections effortlessly. \nWhether you want to pack, unpack, sort, or remove duplicates, **romlm** has got you covered.\n\nAll features are tested on the no-intro ROM sets (which I personally recommend), but it should work with any \nROM collection that follows a similar naming convention.\nIf you have some issues with other ROM sets, that can't be worked-around with the current implementation, \nfeel free to open an issue on the [GitHub issues](https://github.com/ManeFunction/romlm/issues) page.\n\n---\n\n## Features\n\n- **Extract (`-x, --extract`)**  \n  Automatically unpacks all `.7z` or `.zip` files in the current directory (or a specified folder) into subfolders. \n  Supports nested subfolders, keeping all the structure.\n\n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/extract.png)\n\n\n- **Pack (`-p, --pack`)**  \n  Compresses all uncompressed files in the current directory (or a specified folder) into `.7z` or `.zip` archives. \n  Supports nested subfolders, keeping all the structure.\n\n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/pack.png)\n\n\n- **Sort (`-s, --sort`)**  \n  Moves files into alphabetically organized subfolders (A\u2013Z). Optionally handles special folders for \n  Homebrew (`!Homebrew`), Pirates (`!Pirates`), or user-defined subfolders (`-f`).\n    - `h` will also sort files into homebrew subfolder.\n    - `p` will also sort files into pirates subfolder.\n    - `f` will also sort files into user-defined subfolders (`-f`).\n    - `a` will also sort files into homebrew, pirates and all user-defined subfolders (`-f`). Equal to `hpf`.\n    - You can also use any combination of `h`, `p` and `f` options, for example `hp` or `fh`.\n    - `-s reverse` will reverse-sort files, i.e., move them all back into the root folder.\n  \n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/sort.png)\n\n\n- **Separate Homebrew and Pirate ROMs (`-u, --unlicensed`)**  \n  By default, romlm detects and separates Homebrew or Pirate files into dedicated folders. Can be customized with \n  options:\n    - `none` disables separation completely,\n    - `h` separates Homebrew files only,\n    - `p` separates Pirate files only.\n\n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/unlicensed.png)\n\n\n- **Remove Duplicates (`-r, --remove-duplicates`)**  \n  Automatically detects duplicate files, preserving the best candidate according\n  to region, beta status, revision, version, release date and other data that can be received from the filename.\n  Behavior for the situations when script can't decide the best file itself, can be specified:\n    - `ask` prompts you which file to keep, default with `-l`,\n    - `all` keeps all equally good files, default without `-l`,\n    - `one` keeps exactly one of the best ROMs, taken randomly.\n\n  I highly recommend to **use this feature with `-l` option** to see the results, and **make a backup of your ROMs before**!\n  \n  In the current scenario it removes all the beta and prototype files if there is a final version of the game exists. \n  If not, it tries to keep only one the latest version. USA retro ROMs (not Virtual Console versions) counts as \n  the best version of the game. Also, Europe and EN releases have a higher priority over JP and Asia versions, \n  as well as NTSC counts better, than PAL. **romlm** will never remove all copies of one game!\n  \n  If you want to keep a Japanese collection intact, I recommend to separate it first. See Usage Examples below.\n      \n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/remove.png)\n\n\n- **User-defined Folders (`-f, --folders`)**  \n  Easily map certain tags to user-defined folders. For example, specifying `-f Japan` will move ROMs tagged \n  as `(Japan)` into dedicated subfolder. Works only with `--sort` process as a part of it. Search only within tags, \n  to not be confused with a game name, so if you just want all your Mario games in one place, just search it manually, \n  **romlm** not for that.\n\n- **Exclude Tags (`-e, --exclude`)**  \n  Combine with `-f` to skip specified tags from the subfolders sorting process. For example, `-f Japan -e USA`\n  will move all `(Japan)` tagged ROMs into a dedicated subfolder, excluding any `(USA)` tagged ROMs\n  if `(Japan, USA)` combination is met.\n\n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/subfolder.png)\n\n\n- **Logging (`-l, --log`)**  \n  Enables verbose output to see exactly what the script is doing. Extremely useful when `--remove-duplicates` is enabled.\n\n  ![](https://raw.githubusercontent.com/wiki/ManeFunction/romlm/remove-log.png)\n\n\n- **Other Utilities**  \n  - Cleans out unwanted system meta-files (e.g., `desktop.ini`, `.DS_Store`).\n  - Removes empty subdirectories after sorting.\n  - Provides an in-script help guide (`-h, --help`).\n\n---\n\n## Installation\n\n**romlm** is available to use in a variety of ways.  \n`pip` or `brew` is recommended ways, because they have a convenient way to manage updates automatically.\n1) **pip (Recommended for everyone with Python environment)**\n    - You can check if you have Python installed by running `python --version` in the Terminal or cmd.\n    - For Mac and Linux users, there is a high chance that you already have Python installed on your system.\n    - For Windows users, you can download Python from the [official website](https://www.python.org/downloads/).\n    - After confirmation, install **romlm** through the [PyPI](https://pypi.org/project/romlm) package manager, typing `pip install romlm` in the Terminal.\n      For Mac users, you may need to use `pip3` instead of `pip`.\n    - Verify the installation with `romlm -h` command.\n    - You are perfect, you can use the app with `romlm [parameters]` command from any folder in your system.\n1) **brew (Recommended for Mac and Linux users)**\n    - You can install **romlm** through the [Homebrew](https://brew.sh/) formula for macOS users (if you have **brew** installed), \n      typing `brew install manefunction/tap/romlm` in the Terminal.\n    - Verify the installation with `romlm -h` command.\n    - You are perfect, you can use the app with `romlm [parameters]` command from any folder in your system.\n1) **Ready to use binaries (Recommended for Windows users)**\n    - Download ready-to-use binaries from the [GitHub Releases](https://github.com/ManeFunction/romlm/releases) and run it with `./romlm`.  \n    - Unpack the downloaded archive.\n    - On Windows (cmd):\n        - Open Command Prompt (cmd) with `Win+R` and typing `cmd`, or just searching `cmd` in a Start menu.\n        - Run `cd path\\to\\folder` to go to the folder with `romlm.exe`.\n          Don't forget to use `cd` with `/d` option to change the drive, if needed (`cd /d path\\to\\folder`).\n        - Run `romlm -h` to verify the script is working.\n        - You are perfect, you can use the app now with `romlm [parameters]` command.\n    - On Windows (PowerShell):\n        - Open PowerShell searching it in a Start menu.\n        - Run `cd path\\to\\folder` to go to the folder with `romlm.exe`.\n        - Run `./romlm -h` to verify the script is working.\n        - You are perfect, you can use the app now with `./romlm [parameters]` command.\n    - On Mac:\n      - Open Terminal or any other CL app you prefer to use.\n      - Run `cd path/to/unpacked/folder` to go to the folder (you can just drag'n'drop a folder to the Terminal\n        to copy-paste its path).\n      - Run `xattr -r -d com.apple.quarantine ./` to remove the quarantine attribute from binaries  \n        (I do not have an Apple Developer status at the moment and cannot sign binaries properly, \n        this, hopefully, will be fixed in the future).\n      - Run `./romlm -h` to verify the script is working  \n        (be aware, that macOS still running security checks, so the first start of the app will be longer for about 10-15 sec.).\n      - You are perfect, you can use the app now with `./romlm [parameters]` command.\n1) **Python package (manual installation, for advanced users)**\n      - Clone the repository or download the source code from the GitHub.\n      - Go to the folder with the script in your Terminal.\n      - Run `pip install .` to install `romlm` to your system.\n      - Run `romlm -h` to verify the script is working.\n      - You are perfect, you can use `romlm [parameters]` command from anywhere in your system.\n1) **Python script (manual usage, for advanced users)**\n    - if you are familiar with Python scripts, venv, and dependencies, you can simply clone the repository \n      and run `romlm.py`. In that way, feel free to modify the script for yourself as you want.\n\n---\n\n## Backstory\n\nAs a user of Analogue Pocket and an Emulation Station based handheld system, there are some nuances from both worlds\nthat I'm trying to cover with **romlm**. Analogue Poket is a highly precise FPGA-based console, but it covers only\nearlier generations and a scoop of Arcade games. Though, those platforms, like NES, SNES and Genesis have a huge\nlibrary of games, that should be sorted to have an easy access. Also, Pocket do not support archives, so all the ROMs\nshould be unpacked. Standard software emulators, on the other hand, can play archived ROMs, and with the support\nof more later platforms, where games became bigger, it's great to have them packed, but also, it's good to have\nold systems packed as well, to save some Gigs for a few more CD games. So, I've need a tool to prepare my ROMs\nfor both systems in a few clicks. That's how **romlm** was born.\n\n\nPersonally, I keep all my ROMs on Analogue Pocket, to be able to quickly launch any version of any game it supports.\nBut I do not need all of those for a device that made for casual play. To be honest, I have Powkidy RGB30 with\na rectangular screen, specifically for the Pico-8. Emulation capabilities of this device is just a neat bonus\nfor me :) So, to prepare ROMs for Emulation Station devices, like Powkiddy, Anbernic, Miyoo, etc. we can clean\nour library from all the stuff we never play anyway.\n\n---\n\n## Usage Examples\n\nThere is an example how to separate and work with your Japanese library, if you need it. But it also can be a great\nexample of **romlm** capabilities for you to learn. Emulation Station have a separate folders for Japanese libraries\n(at least for the 3 whales of retro gaming: NES, SNES and Genesis) as well as for homebrew,\nso it's good to separate them first, if you are interested in them. Here is the way:\n1) `-i ./your-roms -s a -f Japan -e USA,EN` command first to separate non-en Japanese releases\n   (they ends up in `!Japan` folder). Alternatively, you can use `-s f` if your collection do not have a lot of homebrew\n   and pirates, and you do not need to sort them in (A-Z) folders.\n1) Put all sorted folders (A-Z) from `your-roms` folder to `your-roms/sorted` for example, to be able to treat them\n   separately later.\n1) Now you should have `sorted`, `!Japan`, `!Homebrew` (if there was any) and `!Pirates` (if there was any)\n   folders in your `your-roms` folder. `!` is used here to keep them on top of the list, as Emulation Station sorts\n   folders alphabetically, but remember, that you should escape it with `\\!` in the command line, so path\n   for the next commands should look like `-i ./your-roms/\\!Japan` for example.\n1) Do `-i ./your-roms/sorted -r -l` for all the subfolders separately to remove duplicates, but keep them in\n   sorted (mostly USA for now) and Japanese folders.\n1) After that you can pack all the ROMs in one command `-i ./your-roms -p`. This command keeps our new folders structure.\n\nThis way you will keep all the Japanese versions of the games, separated into a dedicated folder, and anyways\nall other duplicates will be removed, easing the access to the games you want to play in the future and\nsaving the space on your device for more great games.\n\n\n---\n\n## Credits\n\nCreated and maintained by ManeFunction (ilia@inkedkettle.art).\n\nHuge thanks to the [no-intro](http://www.no-intro.org/) team for their amazing work on the ROM sets and retro games\npreservation.\n\nAlso, big shoutout to the [Nuitka](https://github.com/Nuitka/Nuitka) project for the great Python compiler.\n\nAnd of course, thanks for your contributions and feedback!\nIf you have any questions, suggestions, or issues, feel free to open an issue on the [GitHub issues](https://github.com/ManeFunction/romlm/issues) page \nor create a or pull request.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A ROM library management tool.",
    "version": "1.0.2",
    "project_urls": {
        "Repository": "https://github.com/ManeFunction/romlm"
    },
    "split_keywords": [
        "rom",
        " retro",
        " retro-game",
        " emulation",
        " management",
        " tools"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84f79a21c525a8f78784063ed45183ab85018faf9f420bc6e649ac971407a13f",
                "md5": "1faeb3745f93a16edf5e6cd8804833a3",
                "sha256": "c8351c3794abc759e0ea8d62fd236b83de5ec3613954d9474b3695ea9b61be64"
            },
            "downloads": -1,
            "filename": "romlm-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1faeb3745f93a16edf5e6cd8804833a3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 15282,
            "upload_time": "2025-01-05T18:59:20",
            "upload_time_iso_8601": "2025-01-05T18:59:20.261296Z",
            "url": "https://files.pythonhosted.org/packages/84/f7/9a21c525a8f78784063ed45183ab85018faf9f420bc6e649ac971407a13f/romlm-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3152fc71599e7d203d8c5756505c5eb26894113729b7763da88739dc9bf06742",
                "md5": "28c8c60aeba8ee8fc384139e701333b2",
                "sha256": "ea03f8cc030fb626f6dd58f6f3fad779028b8e0667192251ce453da6850e2b04"
            },
            "downloads": -1,
            "filename": "romlm-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "28c8c60aeba8ee8fc384139e701333b2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 15332,
            "upload_time": "2025-01-05T18:59:24",
            "upload_time_iso_8601": "2025-01-05T18:59:24.160175Z",
            "url": "https://files.pythonhosted.org/packages/31/52/fc71599e7d203d8c5756505c5eb26894113729b7763da88739dc9bf06742/romlm-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-05 18:59:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ManeFunction",
    "github_project": "romlm",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "py7zr",
            "specs": [
                [
                    "==",
                    "0.22.0"
                ]
            ]
        },
        {
            "name": "tqdm",
            "specs": [
                [
                    "==",
                    "4.67.1"
                ]
            ]
        },
        {
            "name": "colorama",
            "specs": [
                [
                    "==",
                    "0.4.6"
                ]
            ]
        }
    ],
    "lcname": "romlm"
}
        
Elapsed time: 0.42466s