More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{#seo: | {{#seo: | ||
|title=Vita Homebrew PC Tools (PC Utilities) - GameBrew! | |title=Vita Homebrew PC Tools (PC Utilities) - GameBrew! | ||
|title_mode=append | |title_mode=append | ||
|image= | |image=psvtoolsvita.jpg | ||
|image_alt=psvtools | |image_alt=psvtools | ||
}} | }} | ||
{{Infobox Vita Homebrews | {{Infobox Vita Homebrews | ||
|title=psvtools | |title=psvtools | ||
|image= | |image=psvtoolsvita.jpg | ||
|description=Trimmer/validator for .psv files. | |description=Trimmer/validator for .psv files. | ||
|author=kageurufu | |author=kageurufu | ||
Line 19: | Line 18: | ||
|source=https://github.com/kageurufu/psvtools | |source=https://github.com/kageurufu/psvtools | ||
}} | }} | ||
'''Psvtools''' is a Python .psv format manipulator and verification toolset to trim, restore and validate PSV files. | |||
== | ==How to Install and Run Psvtools== | ||
*pip install psvtools | |||
*pip install ./psvtools-0.1.0.tar.gz | |||
This will give you the following commands: | |||
<pre> | |||
psvtools | |||
psvtrim | |||
psvexpand | |||
psverify | |||
</pre> | |||
== | ==Screenshot== | ||
[[image:psvtoolsvita|600px]] | |||
== | ==Current usage:== | ||
'''(v.1.0)''' | <pre> | ||
$ psvtools --help | |||
usage: psvtools [-h] [-t | -e | -v] [-o OUTPUT] file | |||
positional arguments: | |||
file psv file to operate on | |||
optional arguments: | |||
-h, --help show this help message and exit | |||
-t, --trim Trim a psv file. This is the default behavior | |||
-e, --expand Expand a trimmed psv file | |||
-v, --verify Validate the checksum of a psv file | |||
-o OUTPUT, --output OUTPUT | |||
output file to write to | |||
</pre> | |||
<pre> | |||
$ psvtrim --help | |||
usage: psvtrim [-h] [-o OUTPUT] file | |||
positional arguments: | |||
file psv file to operate on | |||
optional arguments: | |||
-h, --help show this help message and exit | |||
-o OUTPUT, --output OUTPUT | |||
output file to write to | |||
</pre> | |||
<pre> | |||
$ psvexpand --help | |||
usage: psvexpand [-h] [-o OUTPUT] file | |||
positional arguments: | |||
file psv file to operate on | |||
optional arguments: | |||
-h, --help show this help message and exit | |||
-o OUTPUT, --output OUTPUT | |||
output file to write to | |||
</pre> | |||
<pre> | |||
$ psverify --help | |||
usage: psverify [-h] file | |||
positional arguments: | |||
file psv file to operate on | |||
optional arguments: | |||
-h, --help show this help message and exit | |||
</pre> | |||
==Changelog== | |||
'''(v.0.1.0)''' | |||
* First Release. | * First Release. | ||
== External links == | == External links == | ||
* Github - https://github.com/kageurufu/psvtools | * Github - https://github.com/kageurufu/psvtools | ||
* VitaDB - https://vitadb.rinnegatamante.it/#/info/322 | * VitaDB - https://vitadb.rinnegatamante.it/#/info/322 | ||
Revision as of 00:36, 20 November 2022
psvtools | |
---|---|
File:Psvtoolsvita.jpg | |
General | |
Author | kageurufu |
Type | PC Utilities |
Version | 0.1.0 |
License | MIT License |
Last Updated | 2017/09/26 |
Links | |
Download | |
Source | |
Psvtools is a Python .psv format manipulator and verification toolset to trim, restore and validate PSV files.
How to Install and Run Psvtools
- pip install psvtools
- pip install ./psvtools-0.1.0.tar.gz
This will give you the following commands:
psvtools psvtrim psvexpand psverify
Screenshot
Current usage:
$ psvtools --help usage: psvtools [-h] [-t | -e | -v] [-o OUTPUT] file positional arguments: file psv file to operate on optional arguments: -h, --help show this help message and exit -t, --trim Trim a psv file. This is the default behavior -e, --expand Expand a trimmed psv file -v, --verify Validate the checksum of a psv file -o OUTPUT, --output OUTPUT output file to write to
$ psvtrim --help usage: psvtrim [-h] [-o OUTPUT] file positional arguments: file psv file to operate on optional arguments: -h, --help show this help message and exit -o OUTPUT, --output OUTPUT output file to write to
$ psvexpand --help usage: psvexpand [-h] [-o OUTPUT] file positional arguments: file psv file to operate on optional arguments: -h, --help show this help message and exit -o OUTPUT, --output OUTPUT output file to write to
$ psverify --help usage: psverify [-h] file positional arguments: file psv file to operate on optional arguments: -h, --help show this help message and exit
Changelog
(v.0.1.0)
- First Release.