Splatlogger 1.6__tar.gz → 1.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {splatlogger-1.6 → splatlogger-1.6.1}/PKG-INFO +21 -13
- {splatlogger-1.6 → splatlogger-1.6.1}/README.md +20 -12
- {splatlogger-1.6 → splatlogger-1.6.1}/pyproject.toml +1 -1
- {splatlogger-1.6 → splatlogger-1.6.1}/src/Splatlogger.egg-info/PKG-INFO +21 -13
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/__main__.py +10 -4
- {splatlogger-1.6 → splatlogger-1.6.1}/setup.cfg +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/Splatlogger.egg-info/SOURCES.txt +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/Splatlogger.egg-info/dependency_links.txt +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/Splatlogger.egg-info/entry_points.txt +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/Splatlogger.egg-info/requires.txt +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/Splatlogger.egg-info/top_level.txt +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/__init__.py +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/cemu_gecko.py +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/data.py +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/match_logger.py +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/tcpgecko.py +0 -0
- {splatlogger-1.6 → splatlogger-1.6.1}/src/splatlogger/tcpgecko_aroma.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Splatlogger
|
|
3
|
-
Version: 1.6
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: A CLI PID (Principal ID)/PNID grabber and match logger for Splatoon.
|
|
5
5
|
Author-email: Shadow Doggo <shadowdoggo@protonmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -18,36 +18,44 @@ Requires-Dist: pymemoryeditor
|
|
|
18
18
|
A CLI PID (Principal ID)/PNID grabber and match logger for Splatoon, written in Python.
|
|
19
19
|
|
|
20
20
|
## Prerequisites
|
|
21
|
-
To install the package, you'll need to have Python 3.11 or newer installed on your system
|
|
22
|
-
|
|
21
|
+
To install the package, you'll need to have Python 3.11 or newer installed on your system.
|
|
22
|
+
On Android devices you can use Termux.
|
|
23
23
|
Python is not required for the Windows executable.
|
|
24
24
|
|
|
25
25
|
Both the Wii U and Cemu (Windows and Linux only) are supported.
|
|
26
26
|
|
|
27
|
-
Your Wii U will need to have either the Tiramisu or Aroma environment set up or have another way to run homebrew
|
|
28
|
-
|
|
27
|
+
Your Wii U will need to have either the Tiramisu or Aroma environment set up or have another way to run homebrew,
|
|
28
|
+
such as Haxchi or the browser exploit.
|
|
29
29
|
|
|
30
|
-
On Tiramisu, use [TCPGecko](https://github.com/BullyWiiPlaza/tcpgecko) (
|
|
30
|
+
On Tiramisu, use [TCPGecko](https://github.com/BullyWiiPlaza/tcpgecko), [Geckiine](https://hb-app.store/wiiu/geckiine),
|
|
31
|
+
or any other app with the TCPGecko server.
|
|
31
32
|
|
|
32
33
|
On Aroma, install the [TCPGecko Aroma plugin](https://codeberg.org/ShadowDoggo/TCPGeckoAroma).
|
|
33
34
|
|
|
34
35
|
## Installation
|
|
36
|
+
On Windows, you can use the executable provided on the releases page.
|
|
37
|
+
Though if you already have Python installed, it's recommended to use the package.
|
|
38
|
+
|
|
35
39
|
To install the package from PyPI, run:
|
|
36
40
|
```
|
|
37
41
|
python -m pip install Splatlogger
|
|
38
42
|
```
|
|
39
43
|
|
|
40
|
-
Or download the latest release from
|
|
44
|
+
Or download the latest release from Codeberg and run:
|
|
41
45
|
```
|
|
42
|
-
python -m pip install
|
|
46
|
+
python -m pip install path/to/Splatlogger-v1.x.zip
|
|
43
47
|
```
|
|
44
48
|
|
|
45
|
-
|
|
46
|
-
|
|
49
|
+
If you do have Python installed but do not wish to install the package, you can run the module directly from the source code.
|
|
50
|
+
|
|
51
|
+
Install the required dependencies:
|
|
52
|
+
```
|
|
53
|
+
cd path/to/Splatlogger-v1.x/ && pip install -r requirements.txt
|
|
54
|
+
```
|
|
47
55
|
|
|
48
|
-
|
|
56
|
+
Then run the module:
|
|
49
57
|
```
|
|
50
|
-
cd /
|
|
58
|
+
cd src/ && python -m splatlogger
|
|
51
59
|
```
|
|
52
60
|
|
|
53
61
|
## Usage
|
|
@@ -60,7 +68,7 @@ where `IP` is your Wii U's LAN IP address
|
|
|
60
68
|
|
|
61
69
|
If using the Windows executable, run:
|
|
62
70
|
```
|
|
63
|
-
|
|
71
|
+
path/to/Splatlogger-1.x.exe -ip IP [options]
|
|
64
72
|
```
|
|
65
73
|
|
|
66
74
|
Options:
|
|
@@ -2,36 +2,44 @@
|
|
|
2
2
|
A CLI PID (Principal ID)/PNID grabber and match logger for Splatoon, written in Python.
|
|
3
3
|
|
|
4
4
|
## Prerequisites
|
|
5
|
-
To install the package, you'll need to have Python 3.11 or newer installed on your system
|
|
6
|
-
|
|
5
|
+
To install the package, you'll need to have Python 3.11 or newer installed on your system.
|
|
6
|
+
On Android devices you can use Termux.
|
|
7
7
|
Python is not required for the Windows executable.
|
|
8
8
|
|
|
9
9
|
Both the Wii U and Cemu (Windows and Linux only) are supported.
|
|
10
10
|
|
|
11
|
-
Your Wii U will need to have either the Tiramisu or Aroma environment set up or have another way to run homebrew
|
|
12
|
-
|
|
11
|
+
Your Wii U will need to have either the Tiramisu or Aroma environment set up or have another way to run homebrew,
|
|
12
|
+
such as Haxchi or the browser exploit.
|
|
13
13
|
|
|
14
|
-
On Tiramisu, use [TCPGecko](https://github.com/BullyWiiPlaza/tcpgecko) (
|
|
14
|
+
On Tiramisu, use [TCPGecko](https://github.com/BullyWiiPlaza/tcpgecko), [Geckiine](https://hb-app.store/wiiu/geckiine),
|
|
15
|
+
or any other app with the TCPGecko server.
|
|
15
16
|
|
|
16
17
|
On Aroma, install the [TCPGecko Aroma plugin](https://codeberg.org/ShadowDoggo/TCPGeckoAroma).
|
|
17
18
|
|
|
18
19
|
## Installation
|
|
20
|
+
On Windows, you can use the executable provided on the releases page.
|
|
21
|
+
Though if you already have Python installed, it's recommended to use the package.
|
|
22
|
+
|
|
19
23
|
To install the package from PyPI, run:
|
|
20
24
|
```
|
|
21
25
|
python -m pip install Splatlogger
|
|
22
26
|
```
|
|
23
27
|
|
|
24
|
-
Or download the latest release from
|
|
28
|
+
Or download the latest release from Codeberg and run:
|
|
25
29
|
```
|
|
26
|
-
python -m pip install
|
|
30
|
+
python -m pip install path/to/Splatlogger-v1.x.zip
|
|
27
31
|
```
|
|
28
32
|
|
|
29
|
-
|
|
30
|
-
|
|
33
|
+
If you do have Python installed but do not wish to install the package, you can run the module directly from the source code.
|
|
34
|
+
|
|
35
|
+
Install the required dependencies:
|
|
36
|
+
```
|
|
37
|
+
cd path/to/Splatlogger-v1.x/ && pip install -r requirements.txt
|
|
38
|
+
```
|
|
31
39
|
|
|
32
|
-
|
|
40
|
+
Then run the module:
|
|
33
41
|
```
|
|
34
|
-
cd /
|
|
42
|
+
cd src/ && python -m splatlogger
|
|
35
43
|
```
|
|
36
44
|
|
|
37
45
|
## Usage
|
|
@@ -44,7 +52,7 @@ where `IP` is your Wii U's LAN IP address
|
|
|
44
52
|
|
|
45
53
|
If using the Windows executable, run:
|
|
46
54
|
```
|
|
47
|
-
|
|
55
|
+
path/to/Splatlogger-1.x.exe -ip IP [options]
|
|
48
56
|
```
|
|
49
57
|
|
|
50
58
|
Options:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Splatlogger
|
|
3
|
-
Version: 1.6
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: A CLI PID (Principal ID)/PNID grabber and match logger for Splatoon.
|
|
5
5
|
Author-email: Shadow Doggo <shadowdoggo@protonmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -18,36 +18,44 @@ Requires-Dist: pymemoryeditor
|
|
|
18
18
|
A CLI PID (Principal ID)/PNID grabber and match logger for Splatoon, written in Python.
|
|
19
19
|
|
|
20
20
|
## Prerequisites
|
|
21
|
-
To install the package, you'll need to have Python 3.11 or newer installed on your system
|
|
22
|
-
|
|
21
|
+
To install the package, you'll need to have Python 3.11 or newer installed on your system.
|
|
22
|
+
On Android devices you can use Termux.
|
|
23
23
|
Python is not required for the Windows executable.
|
|
24
24
|
|
|
25
25
|
Both the Wii U and Cemu (Windows and Linux only) are supported.
|
|
26
26
|
|
|
27
|
-
Your Wii U will need to have either the Tiramisu or Aroma environment set up or have another way to run homebrew
|
|
28
|
-
|
|
27
|
+
Your Wii U will need to have either the Tiramisu or Aroma environment set up or have another way to run homebrew,
|
|
28
|
+
such as Haxchi or the browser exploit.
|
|
29
29
|
|
|
30
|
-
On Tiramisu, use [TCPGecko](https://github.com/BullyWiiPlaza/tcpgecko) (
|
|
30
|
+
On Tiramisu, use [TCPGecko](https://github.com/BullyWiiPlaza/tcpgecko), [Geckiine](https://hb-app.store/wiiu/geckiine),
|
|
31
|
+
or any other app with the TCPGecko server.
|
|
31
32
|
|
|
32
33
|
On Aroma, install the [TCPGecko Aroma plugin](https://codeberg.org/ShadowDoggo/TCPGeckoAroma).
|
|
33
34
|
|
|
34
35
|
## Installation
|
|
36
|
+
On Windows, you can use the executable provided on the releases page.
|
|
37
|
+
Though if you already have Python installed, it's recommended to use the package.
|
|
38
|
+
|
|
35
39
|
To install the package from PyPI, run:
|
|
36
40
|
```
|
|
37
41
|
python -m pip install Splatlogger
|
|
38
42
|
```
|
|
39
43
|
|
|
40
|
-
Or download the latest release from
|
|
44
|
+
Or download the latest release from Codeberg and run:
|
|
41
45
|
```
|
|
42
|
-
python -m pip install
|
|
46
|
+
python -m pip install path/to/Splatlogger-v1.x.zip
|
|
43
47
|
```
|
|
44
48
|
|
|
45
|
-
|
|
46
|
-
|
|
49
|
+
If you do have Python installed but do not wish to install the package, you can run the module directly from the source code.
|
|
50
|
+
|
|
51
|
+
Install the required dependencies:
|
|
52
|
+
```
|
|
53
|
+
cd path/to/Splatlogger-v1.x/ && pip install -r requirements.txt
|
|
54
|
+
```
|
|
47
55
|
|
|
48
|
-
|
|
56
|
+
Then run the module:
|
|
49
57
|
```
|
|
50
|
-
cd /
|
|
58
|
+
cd src/ && python -m splatlogger
|
|
51
59
|
```
|
|
52
60
|
|
|
53
61
|
## Usage
|
|
@@ -60,7 +68,7 @@ where `IP` is your Wii U's LAN IP address
|
|
|
60
68
|
|
|
61
69
|
If using the Windows executable, run:
|
|
62
70
|
```
|
|
63
|
-
|
|
71
|
+
path/to/Splatlogger-1.x.exe -ip IP [options]
|
|
64
72
|
```
|
|
65
73
|
|
|
66
74
|
Options:
|
|
@@ -5,6 +5,7 @@ import ipaddress
|
|
|
5
5
|
import os
|
|
6
6
|
import sys
|
|
7
7
|
import time
|
|
8
|
+
import webbrowser
|
|
8
9
|
from datetime import datetime
|
|
9
10
|
from typing import NamedTuple
|
|
10
11
|
from xml.etree import ElementTree
|
|
@@ -18,7 +19,7 @@ from .match_logger import MatchLogger
|
|
|
18
19
|
from .tcpgecko import TCPGecko, TCPGeckoException
|
|
19
20
|
from .tcpgecko_aroma import TCPGeckoAroma
|
|
20
21
|
|
|
21
|
-
_VERSION = "1.6"
|
|
22
|
+
_VERSION = "1.6.1"
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
class Options(NamedTuple):
|
|
@@ -63,6 +64,14 @@ def main() -> None:
|
|
|
63
64
|
else:
|
|
64
65
|
args = parser.parse_args()
|
|
65
66
|
|
|
67
|
+
if len(sys.argv) == 1:
|
|
68
|
+
print('No arguments were provided. Run "splatlogger -h" for help.')
|
|
69
|
+
print("Would you like to open the README? (y/n)")
|
|
70
|
+
if input().lower() == "y":
|
|
71
|
+
webbrowser.open("https://codeberg.org/ShadowDoggo/Splatlogger/src/branch/main/README.md")
|
|
72
|
+
|
|
73
|
+
sys.exit()
|
|
74
|
+
|
|
66
75
|
if args.aroma and args.cemu:
|
|
67
76
|
print("Cannot use both Aroma and Cemu modes.")
|
|
68
77
|
sys.exit()
|
|
@@ -97,9 +106,6 @@ def main() -> None:
|
|
|
97
106
|
print(e)
|
|
98
107
|
sys.exit()
|
|
99
108
|
else:
|
|
100
|
-
if not args.ip:
|
|
101
|
-
print('No IP address was provided. Run "splatlogger -h" for help.')
|
|
102
|
-
sys.exit()
|
|
103
109
|
try:
|
|
104
110
|
ipaddress.ip_address(args.ip)
|
|
105
111
|
print(f"Connecting to: {args.ip}")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|