nibble-cli 0.6.0__tar.gz → 0.6.3__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.
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/PKG-INFO +31 -7
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/README.md +30 -6
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli.egg-info/PKG-INFO +31 -7
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli/__init__.py +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli/checksum.py +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli/cleanup.py +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli/download.py +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli/install.py +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli/installer.py +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli.egg-info/SOURCES.txt +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli.egg-info/dependency_links.txt +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli.egg-info/entry_points.txt +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/nibble_cli.egg-info/top_level.txt +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/setup.cfg +0 -0
- {nibble_cli-0.6.0 → nibble_cli-0.6.3}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nibble-cli
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.3
|
|
4
4
|
Summary: Fast local network scanner with hardware identification and a terminal UI
|
|
5
5
|
Home-page: https://github.com/backendsystems/nibble
|
|
6
6
|
Author: saberd
|
|
@@ -23,12 +23,16 @@ Dynamic: home-page
|
|
|
23
23
|
Dynamic: requires-python
|
|
24
24
|
Dynamic: summary
|
|
25
25
|
|
|
26
|
+
[](https://github.com/backendsystems/nibble)
|
|
27
|
+
[](https://launchpad.net/~backendsystems/+archive/ubuntu/ppa)
|
|
28
|
+
[](https://copr.fedorainfracloud.org/coprs/g/backendsystems/nibble)
|
|
29
|
+
[](https://aur.archlinux.org/packages/nibble-bin)
|
|
26
30
|
[](https://www.npmjs.com/package/@backendsystems/nibble)
|
|
27
31
|
[](https://pypi.org/project/nibble-cli/)
|
|
28
32
|
[](https://pkg.go.dev/github.com/backendsystems/nibble)
|
|
29
33
|
|
|
30
34
|
<div align="center">
|
|
31
|
-
<img src="nibble.svg" alt="Nibble" width="200">
|
|
35
|
+
<img src="assets/nibble.svg" alt="Nibble" width="200">
|
|
32
36
|
</div>
|
|
33
37
|
|
|
34
38
|
|
|
@@ -75,19 +79,33 @@ Hold `Shift` and drag to select text.
|
|
|
75
79
|
you may have to restart terminal to run `nibble` after install.
|
|
76
80
|
|
|
77
81
|
|
|
78
|
-
|
|
82
|
+
<img src="https://cdn.simpleicons.org/ubuntu/E95420" width="16" style="vertical-align:middle"> apt (Ubuntu, Mint, Pop!_OS, Zorin, Elementary, KDE Neon):
|
|
79
83
|
```bash
|
|
80
|
-
|
|
84
|
+
sudo add-apt-repository ppa:backendsystems/ppa
|
|
85
|
+
sudo apt install nibble
|
|
86
|
+
```
|
|
87
|
+
<img src="https://cdn.simpleicons.org/fedora/51A2DA" width="16" style="vertical-align:middle"> dnf (Fedora, RHEL, CentOS Stream):
|
|
88
|
+
```bash
|
|
89
|
+
sudo dnf copr enable @backendsystems/nibble
|
|
90
|
+
sudo dnf install nibble
|
|
81
91
|
```
|
|
82
|
-
|
|
92
|
+
<img src="https://cdn.simpleicons.org/archlinux/1793D1" width="16" style="vertical-align:middle"> aur (Arch Linux):
|
|
93
|
+
```bash
|
|
94
|
+
yay -S nibble-bin
|
|
95
|
+
```
|
|
96
|
+
<img src="https://cdn.simpleicons.org/homebrew/FBB040" width="16" style="vertical-align:middle"> brew:
|
|
83
97
|
```bash
|
|
84
98
|
brew install backendsystems/tap/nibble
|
|
85
99
|
```
|
|
86
|
-
|
|
100
|
+
<img src="https://cdn.simpleicons.org/go/00ADD8" width="16" style="vertical-align:middle"> go:
|
|
101
|
+
```bash
|
|
102
|
+
go install github.com/backendsystems/nibble@latest
|
|
103
|
+
```
|
|
104
|
+
<img src="https://cdn.simpleicons.org/python/3776AB" width="16" style="vertical-align:middle"> pip:
|
|
87
105
|
```bash
|
|
88
106
|
pipx install nibble-cli
|
|
89
107
|
```
|
|
90
|
-
npm:
|
|
108
|
+
<img src="https://cdn.simpleicons.org/npm/CB3837" width="16" style="vertical-align:middle"> npm:
|
|
91
109
|
```bash
|
|
92
110
|
npm install -g @backendsystems/nibble
|
|
93
111
|
```
|
|
@@ -101,3 +119,9 @@ Run the CLI with `nibble`, select a network interface.
|
|
|
101
119
|
Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
|
|
102
120
|
|
|
103
121
|
Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
|
|
122
|
+
|
|
123
|
+
## License
|
|
124
|
+
|
|
125
|
+
This project is MIT licensed. See the [LICENSE](LICENSE) file for details.
|
|
126
|
+
|
|
127
|
+
Note: The "nibble" name and branding assets are excluded from this license, see the sepperate [LICENSE](assets/LICENSE) for branding terms.
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
[](https://github.com/backendsystems/nibble)
|
|
2
|
+
[](https://launchpad.net/~backendsystems/+archive/ubuntu/ppa)
|
|
3
|
+
[](https://copr.fedorainfracloud.org/coprs/g/backendsystems/nibble)
|
|
4
|
+
[](https://aur.archlinux.org/packages/nibble-bin)
|
|
1
5
|
[](https://www.npmjs.com/package/@backendsystems/nibble)
|
|
2
6
|
[](https://pypi.org/project/nibble-cli/)
|
|
3
7
|
[](https://pkg.go.dev/github.com/backendsystems/nibble)
|
|
4
8
|
|
|
5
9
|
<div align="center">
|
|
6
|
-
<img src="nibble.svg" alt="Nibble" width="200">
|
|
10
|
+
<img src="assets/nibble.svg" alt="Nibble" width="200">
|
|
7
11
|
</div>
|
|
8
12
|
|
|
9
13
|
|
|
@@ -50,19 +54,33 @@ Hold `Shift` and drag to select text.
|
|
|
50
54
|
you may have to restart terminal to run `nibble` after install.
|
|
51
55
|
|
|
52
56
|
|
|
53
|
-
|
|
57
|
+
<img src="https://cdn.simpleicons.org/ubuntu/E95420" width="16" style="vertical-align:middle"> apt (Ubuntu, Mint, Pop!_OS, Zorin, Elementary, KDE Neon):
|
|
54
58
|
```bash
|
|
55
|
-
|
|
59
|
+
sudo add-apt-repository ppa:backendsystems/ppa
|
|
60
|
+
sudo apt install nibble
|
|
61
|
+
```
|
|
62
|
+
<img src="https://cdn.simpleicons.org/fedora/51A2DA" width="16" style="vertical-align:middle"> dnf (Fedora, RHEL, CentOS Stream):
|
|
63
|
+
```bash
|
|
64
|
+
sudo dnf copr enable @backendsystems/nibble
|
|
65
|
+
sudo dnf install nibble
|
|
56
66
|
```
|
|
57
|
-
|
|
67
|
+
<img src="https://cdn.simpleicons.org/archlinux/1793D1" width="16" style="vertical-align:middle"> aur (Arch Linux):
|
|
68
|
+
```bash
|
|
69
|
+
yay -S nibble-bin
|
|
70
|
+
```
|
|
71
|
+
<img src="https://cdn.simpleicons.org/homebrew/FBB040" width="16" style="vertical-align:middle"> brew:
|
|
58
72
|
```bash
|
|
59
73
|
brew install backendsystems/tap/nibble
|
|
60
74
|
```
|
|
61
|
-
|
|
75
|
+
<img src="https://cdn.simpleicons.org/go/00ADD8" width="16" style="vertical-align:middle"> go:
|
|
76
|
+
```bash
|
|
77
|
+
go install github.com/backendsystems/nibble@latest
|
|
78
|
+
```
|
|
79
|
+
<img src="https://cdn.simpleicons.org/python/3776AB" width="16" style="vertical-align:middle"> pip:
|
|
62
80
|
```bash
|
|
63
81
|
pipx install nibble-cli
|
|
64
82
|
```
|
|
65
|
-
npm:
|
|
83
|
+
<img src="https://cdn.simpleicons.org/npm/CB3837" width="16" style="vertical-align:middle"> npm:
|
|
66
84
|
```bash
|
|
67
85
|
npm install -g @backendsystems/nibble
|
|
68
86
|
```
|
|
@@ -76,3 +94,9 @@ Run the CLI with `nibble`, select a network interface.
|
|
|
76
94
|
Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
|
|
77
95
|
|
|
78
96
|
Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
|
|
97
|
+
|
|
98
|
+
## License
|
|
99
|
+
|
|
100
|
+
This project is MIT licensed. See the [LICENSE](LICENSE) file for details.
|
|
101
|
+
|
|
102
|
+
Note: The "nibble" name and branding assets are excluded from this license, see the sepperate [LICENSE](assets/LICENSE) for branding terms.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nibble-cli
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.3
|
|
4
4
|
Summary: Fast local network scanner with hardware identification and a terminal UI
|
|
5
5
|
Home-page: https://github.com/backendsystems/nibble
|
|
6
6
|
Author: saberd
|
|
@@ -23,12 +23,16 @@ Dynamic: home-page
|
|
|
23
23
|
Dynamic: requires-python
|
|
24
24
|
Dynamic: summary
|
|
25
25
|
|
|
26
|
+
[](https://github.com/backendsystems/nibble)
|
|
27
|
+
[](https://launchpad.net/~backendsystems/+archive/ubuntu/ppa)
|
|
28
|
+
[](https://copr.fedorainfracloud.org/coprs/g/backendsystems/nibble)
|
|
29
|
+
[](https://aur.archlinux.org/packages/nibble-bin)
|
|
26
30
|
[](https://www.npmjs.com/package/@backendsystems/nibble)
|
|
27
31
|
[](https://pypi.org/project/nibble-cli/)
|
|
28
32
|
[](https://pkg.go.dev/github.com/backendsystems/nibble)
|
|
29
33
|
|
|
30
34
|
<div align="center">
|
|
31
|
-
<img src="nibble.svg" alt="Nibble" width="200">
|
|
35
|
+
<img src="assets/nibble.svg" alt="Nibble" width="200">
|
|
32
36
|
</div>
|
|
33
37
|
|
|
34
38
|
|
|
@@ -75,19 +79,33 @@ Hold `Shift` and drag to select text.
|
|
|
75
79
|
you may have to restart terminal to run `nibble` after install.
|
|
76
80
|
|
|
77
81
|
|
|
78
|
-
|
|
82
|
+
<img src="https://cdn.simpleicons.org/ubuntu/E95420" width="16" style="vertical-align:middle"> apt (Ubuntu, Mint, Pop!_OS, Zorin, Elementary, KDE Neon):
|
|
79
83
|
```bash
|
|
80
|
-
|
|
84
|
+
sudo add-apt-repository ppa:backendsystems/ppa
|
|
85
|
+
sudo apt install nibble
|
|
86
|
+
```
|
|
87
|
+
<img src="https://cdn.simpleicons.org/fedora/51A2DA" width="16" style="vertical-align:middle"> dnf (Fedora, RHEL, CentOS Stream):
|
|
88
|
+
```bash
|
|
89
|
+
sudo dnf copr enable @backendsystems/nibble
|
|
90
|
+
sudo dnf install nibble
|
|
81
91
|
```
|
|
82
|
-
|
|
92
|
+
<img src="https://cdn.simpleicons.org/archlinux/1793D1" width="16" style="vertical-align:middle"> aur (Arch Linux):
|
|
93
|
+
```bash
|
|
94
|
+
yay -S nibble-bin
|
|
95
|
+
```
|
|
96
|
+
<img src="https://cdn.simpleicons.org/homebrew/FBB040" width="16" style="vertical-align:middle"> brew:
|
|
83
97
|
```bash
|
|
84
98
|
brew install backendsystems/tap/nibble
|
|
85
99
|
```
|
|
86
|
-
|
|
100
|
+
<img src="https://cdn.simpleicons.org/go/00ADD8" width="16" style="vertical-align:middle"> go:
|
|
101
|
+
```bash
|
|
102
|
+
go install github.com/backendsystems/nibble@latest
|
|
103
|
+
```
|
|
104
|
+
<img src="https://cdn.simpleicons.org/python/3776AB" width="16" style="vertical-align:middle"> pip:
|
|
87
105
|
```bash
|
|
88
106
|
pipx install nibble-cli
|
|
89
107
|
```
|
|
90
|
-
npm:
|
|
108
|
+
<img src="https://cdn.simpleicons.org/npm/CB3837" width="16" style="vertical-align:middle"> npm:
|
|
91
109
|
```bash
|
|
92
110
|
npm install -g @backendsystems/nibble
|
|
93
111
|
```
|
|
@@ -101,3 +119,9 @@ Run the CLI with `nibble`, select a network interface.
|
|
|
101
119
|
Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
|
|
102
120
|
|
|
103
121
|
Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
|
|
122
|
+
|
|
123
|
+
## License
|
|
124
|
+
|
|
125
|
+
This project is MIT licensed. See the [LICENSE](LICENSE) file for details.
|
|
126
|
+
|
|
127
|
+
Note: The "nibble" name and branding assets are excluded from this license, see the sepperate [LICENSE](assets/LICENSE) for branding terms.
|
|
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
|