# hk-horn
Hollow Knight Mods (Packages) Manager =)
(In current time in Alpha..)
## Installation..
```bash
pip install --upgrade hk_horn
```
## Usage
### Help
```bash
# with `python -m`
python -m horn -h
# or if included in PATH:
horn -h
```
#### output:
```bash
Usage: horn.py [OPTIONS] COMMAND [ARGS]...
Options:
--version Show the version and exit.
-h, --help Show this message and exit.
Commands:
find
info
install
```
### Mods search
```bash
horn find --display=no --name Hk
```
#### output:
```bash
'HKHKHKHKHK' 1.5.0.0
'HKMP HealthDisplay' 0.0.6.0
'HKMirror' 2.1.0.0
'HKMP' 2.4.1.0
'HKMP Prop Hunt' 0.0.2.1
'HKVR' 0.0.0.0
'HkmpPouch' 1.0.0.0
'SmashKnight' 1.0.0.0
'HKmote' 1.4.0.0
'HKTracker' 3.4.1.1
'HKTool Legacy' 1.11.8.0
'HKTool' 2.2.1.0
'HKTimer' 0.1.1.0
'HKMP.ModDiff' 1.0.2.0
'HKMP Tag' 2.3.1.0
'HKRoomLogger' 1.0.8467.33528
```
or with description
```bash
horn find --name Hk
# or other flag (default description)
horn find --display=link --name Hk
```
#### output:
```bash
'HKHKHKHKHK' 1.5.0.0 - VVVVVVV but in HK. Flip gravity with the R key.
'HKMP HealthDisplay' 0.0.6.0 - An addon for HKMP that uses HkmpPouch. Works on the public server.Displays the amount of health other players have
'HKMirror' 2.1.0.0 - A core mod that makes it easier to access PlayerData, use reflection, and on/il hooks.
'HKMP' 2.4.1.0 - Hollow Knight Multiplayer allows people to host games and let others join them in their adventures.
'HKMP Prop Hunt' 0.0.2.1 - An HKMP add-on that adds Prop Hunt to multiplayer games.
'HKVR' 0.0.0.0 - Play Hollow Knight in virtual reality.
'HkmpPouch' 1.0.0.0 - A dependency mod for optional hkmp addons with networking.
'SmashKnight' 1.0.0.0 - Changes Knight handling based on health remaining.
'HKmote' 1.4.0.0 - Use emotes during multiplayer
'HKTracker' 3.4.1.1 - Tracks player data. Most frequently used to display abilities/charms during streams
'HKTool Legacy' 1.11.8.0 - A library mod.No longer maintained!!!**If it crashes your game, this is normal and the reason is unknown**
'HKTool' 2.2.1.0 - A library mod
'HKTimer' 0.1.1.0 - An in game timer mod for 1.5
'HKMP.ModDiff' 1.0.2.0 - HKMP Addon for checking mod lists between Clients and Servers.
'HKMP Tag' 2.3.1.0 - An HKMP addon that adds the tag game-mode.
'HKRoomLogger' 1.0.8467.33528 - Logs scene transitions to a file. Companion mod to Windows-only software HKAT.
```
### Mod info
```bash
horn info HKMP
```
or
```bash
horn info HKMP --version 2.4.1.0
```
#### output:
```bash
Mod(
name='HKMP',
description='Hollow Knight Multiplayer allows people to host games and let others join them in their adventures.',
version='2.4.1.0',
link='https://github.com/Extremelyd1/HKMP/releases/download/v2.4.1/HKMP.zip',
dependencies=None,
repository='https://github.com/Extremelyd1/HKMP/',
issues=None,
tags=None,
authors=['Extremelyd1']
)
```
### Mods installation (will update in future)
```bash
horn install --path="/path/to/game/mods/dir/Games/Hollow Knight/Hollow Knight_Data/Managed/Mods" 'HKMP','Satchel'
```
#### output:
```bash
[11/19/23 23:01:24] INFO Searching package 'HKMP' api.py:402
INFO Searching field(s) ptrn(s) `{'name': '^HKMP$'}` api.py:289
INFO Installing package `'HKMP'==2.4.1.0` api.py:423
[11/19/23 23:01:27] INFO File exists in cache `~/.cache/horn/pkg/HKMP.zip` api.py:362
INFO Unpacking `~/.cache/horn/pkg/HKMP.zip` to path `~/PortWINE/PortProton/prefixes/DEFAULT/drive_c/Games/Hollow Knight/Hollow Knight_Data/Managed/Mods/HKMP` api.py:386
INFO Installation of package `'HKMP'==2.4.1.0` complete! api.py:432
Status: OK
INFO Searching package 'Satchel' api.py:402
INFO Searching field(s) ptrn(s) `{'name': '^Satchel$'}` api.py:289
INFO Installing package `'Satchel'==0.8.12.0` api.py:423
[11/19/23 23:01:28] INFO Downloading `https://github.com/PrashantMohta/Satchel/releases/download/v0.8.12/Satchel.zip` to path `~/.cache/horn/pkg/Satchel.zip` api.py:365
[11/19/23 23:01:30] INFO Unpacking `~/.cache/horn/pkg/Satchel.zip` to path `~/PortWINE/PortProton/prefixes/DEFAULT/drive_c/Games/Hollow Knight/Hollow api.py:386
Knight_Data/Managed/Mods/Satchel`
INFO Installation of package `'Satchel'==0.8.12.0` complete! api.py:432
Status: OK
```
Raw data
{
"_id": null,
"home_page": "",
"name": "hk-horn",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.8,<4.0",
"maintainer_email": "",
"keywords": "package-manager,mod,mod-manager,hollow-knight",
"author": "BlackCatDevel0per",
"author_email": "bcdev@mail.ru",
"download_url": "https://files.pythonhosted.org/packages/ea/d0/a0c35ca40a7d5e213d7ab626ea3e0cdc261a8576d7dee93e22022461bceb/hk_horn-0.0.9.tar.gz",
"platform": null,
"description": "# hk-horn\nHollow Knight Mods (Packages) Manager =)\n\n(In current time in Alpha..)\n\n## Installation..\n```bash\npip install --upgrade hk_horn\n```\n\n## Usage\n### Help\n```bash\n# with `python -m`\npython -m horn -h\n# or if included in PATH:\nhorn -h\n```\n#### output:\n```bash\nUsage: horn.py [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n --version Show the version and exit.\n -h, --help Show this message and exit.\n\nCommands:\n find\n info\n install\n```\n\n### Mods search\n```bash\nhorn find --display=no --name Hk\n```\n#### output:\n```bash\n'HKHKHKHKHK' 1.5.0.0\n'HKMP HealthDisplay' 0.0.6.0\n'HKMirror' 2.1.0.0\n'HKMP' 2.4.1.0\n'HKMP Prop Hunt' 0.0.2.1\n'HKVR' 0.0.0.0\n'HkmpPouch' 1.0.0.0\n'SmashKnight' 1.0.0.0\n'HKmote' 1.4.0.0\n'HKTracker' 3.4.1.1\n'HKTool Legacy' 1.11.8.0\n'HKTool' 2.2.1.0\n'HKTimer' 0.1.1.0\n'HKMP.ModDiff' 1.0.2.0\n'HKMP Tag' 2.3.1.0\n'HKRoomLogger' 1.0.8467.33528\n```\nor with description\n```bash\nhorn find --name Hk\n# or other flag (default description)\nhorn find --display=link --name Hk\n```\n#### output:\n```bash\n'HKHKHKHKHK' 1.5.0.0 - VVVVVVV but in HK. Flip gravity with the R key.\n'HKMP HealthDisplay' 0.0.6.0 - An addon for HKMP that uses HkmpPouch. Works on the public server.Displays the amount of health other players have\n'HKMirror' 2.1.0.0 - A core mod that makes it easier to access PlayerData, use reflection, and on/il hooks.\n'HKMP' 2.4.1.0 - Hollow Knight Multiplayer allows people to host games and let others join them in their adventures.\n'HKMP Prop Hunt' 0.0.2.1 - An HKMP add-on that adds Prop Hunt to multiplayer games.\n'HKVR' 0.0.0.0 - Play Hollow Knight in virtual reality.\n'HkmpPouch' 1.0.0.0 - A dependency mod for optional hkmp addons with networking.\n'SmashKnight' 1.0.0.0 - Changes Knight handling based on health remaining.\n'HKmote' 1.4.0.0 - Use emotes during multiplayer\n'HKTracker' 3.4.1.1 - Tracks player data. Most frequently used to display abilities/charms during streams\n'HKTool Legacy' 1.11.8.0 - A library mod.No longer maintained!!!**If it crashes your game, this is normal and the reason is unknown**\n'HKTool' 2.2.1.0 - A library mod\n'HKTimer' 0.1.1.0 - An in game timer mod for 1.5\n'HKMP.ModDiff' 1.0.2.0 - HKMP Addon for checking mod lists between Clients and Servers.\n'HKMP Tag' 2.3.1.0 - An HKMP addon that adds the tag game-mode.\n'HKRoomLogger' 1.0.8467.33528 - Logs scene transitions to a file. Companion mod to Windows-only software HKAT.\n```\n\n### Mod info\n```bash\nhorn info HKMP\n```\nor\n```bash\nhorn info HKMP --version 2.4.1.0\n```\n#### output:\n```bash\nMod(\n name='HKMP',\n description='Hollow Knight Multiplayer allows people to host games and let others join them in their adventures.',\n version='2.4.1.0',\n link='https://github.com/Extremelyd1/HKMP/releases/download/v2.4.1/HKMP.zip',\n dependencies=None,\n repository='https://github.com/Extremelyd1/HKMP/',\n issues=None,\n tags=None,\n authors=['Extremelyd1']\n)\n```\n\n### Mods installation (will update in future)\n```bash\nhorn install --path=\"/path/to/game/mods/dir/Games/Hollow Knight/Hollow Knight_Data/Managed/Mods\" 'HKMP','Satchel'\n```\n#### output:\n```bash\n[11/19/23 23:01:24] INFO Searching package 'HKMP' api.py:402\n INFO Searching field(s) ptrn(s) `{'name': '^HKMP$'}` api.py:289\n INFO Installing package `'HKMP'==2.4.1.0` api.py:423\n[11/19/23 23:01:27] INFO File exists in cache `~/.cache/horn/pkg/HKMP.zip` api.py:362\n INFO Unpacking `~/.cache/horn/pkg/HKMP.zip` to path `~/PortWINE/PortProton/prefixes/DEFAULT/drive_c/Games/Hollow Knight/Hollow Knight_Data/Managed/Mods/HKMP` api.py:386\n INFO Installation of package `'HKMP'==2.4.1.0` complete! api.py:432\nStatus: OK\n INFO Searching package 'Satchel' api.py:402\n INFO Searching field(s) ptrn(s) `{'name': '^Satchel$'}` api.py:289\n INFO Installing package `'Satchel'==0.8.12.0` api.py:423\n[11/19/23 23:01:28] INFO Downloading `https://github.com/PrashantMohta/Satchel/releases/download/v0.8.12/Satchel.zip` to path `~/.cache/horn/pkg/Satchel.zip` api.py:365\n[11/19/23 23:01:30] INFO Unpacking `~/.cache/horn/pkg/Satchel.zip` to path `~/PortWINE/PortProton/prefixes/DEFAULT/drive_c/Games/Hollow Knight/Hollow api.py:386\n Knight_Data/Managed/Mods/Satchel` \n INFO Installation of package `'Satchel'==0.8.12.0` complete! api.py:432\nStatus: OK\n```\n",
"bugtrack_url": null,
"license": "Apache 2.0",
"summary": "Hollow Knight Mods Manager =)",
"version": "0.0.9",
"project_urls": {
"Documentation": "https://github.com/BlackCatDevel0per/hk-horn",
"Homepage": "https://github.com/BlackCatDevel0per/hk-horn",
"Repository": "https://github.com/BlackCatDevel0per/hk-horn"
},
"split_keywords": [
"package-manager",
"mod",
"mod-manager",
"hollow-knight"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "da6f6ce099dae96c7d61f34ae538edf954d7c942eb580cab508bf4e48ba278ec",
"md5": "5c4f85bcac1d2d1baa25a5aab6b04443",
"sha256": "3aa764f7547a6b1387907ce790f5c0f0229b973b4c2c4a5b28461f20181a0048"
},
"downloads": -1,
"filename": "hk_horn-0.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5c4f85bcac1d2d1baa25a5aab6b04443",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8,<4.0",
"size": 16374,
"upload_time": "2023-11-25T04:16:58",
"upload_time_iso_8601": "2023-11-25T04:16:58.270409Z",
"url": "https://files.pythonhosted.org/packages/da/6f/6ce099dae96c7d61f34ae538edf954d7c942eb580cab508bf4e48ba278ec/hk_horn-0.0.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ead0a0c35ca40a7d5e213d7ab626ea3e0cdc261a8576d7dee93e22022461bceb",
"md5": "531f6176f3341f6da0209329dc477dcf",
"sha256": "6abee1261b2ec167c91f0a68f10617021a774bc9e164a4ceb8af85cd82fe346e"
},
"downloads": -1,
"filename": "hk_horn-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "531f6176f3341f6da0209329dc477dcf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8,<4.0",
"size": 16005,
"upload_time": "2023-11-25T04:17:00",
"upload_time_iso_8601": "2023-11-25T04:17:00.475460Z",
"url": "https://files.pythonhosted.org/packages/ea/d0/a0c35ca40a7d5e213d7ab626ea3e0cdc261a8576d7dee93e22022461bceb/hk_horn-0.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-11-25 04:17:00",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "BlackCatDevel0per",
"github_project": "hk-horn",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "hk-horn"
}