sdwire 0.2.0__tar.gz → 0.2.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.
- {sdwire-0.2.0 → sdwire-0.2.1}/PKG-INFO +16 -1
- {sdwire-0.2.0 → sdwire-0.2.1}/README.md +15 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/pyproject.toml +1 -1
- {sdwire-0.2.0 → sdwire-0.2.1}/LICENSE +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/__init__.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/backend/__init__.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/backend/detect.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/backend/device/sdwire.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/backend/device/sdwirec.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/backend/device/usb_device.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/backend/utils.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/constants.py +0 -0
- {sdwire-0.2.0 → sdwire-0.2.1}/sdwire/main.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sdwire
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: CLI application to interact with Badgerd SDWire Gen2 devices
|
5
5
|
License: GPL-3
|
6
6
|
Author: Talha Can Havadar
|
@@ -56,6 +56,21 @@ Commands:
|
|
56
56
|
ts ts/host => connects the sdcard interface to host machine
|
57
57
|
```
|
58
58
|
|
59
|
+
## Installing
|
60
|
+
|
61
|
+
Using pip
|
62
|
+
|
63
|
+
```
|
64
|
+
pip install sdwire
|
65
|
+
```
|
66
|
+
|
67
|
+
Using apt
|
68
|
+
|
69
|
+
```
|
70
|
+
sudo add-apt-repository ppa:tchavadar/badgerd
|
71
|
+
sudo apt install python3-sdwire
|
72
|
+
```
|
73
|
+
|
59
74
|
## Listing SDWire Devices
|
60
75
|
|
61
76
|
`sdwire list` command will search through usb devices connected to the system
|
@@ -38,6 +38,21 @@ Commands:
|
|
38
38
|
ts ts/host => connects the sdcard interface to host machine
|
39
39
|
```
|
40
40
|
|
41
|
+
## Installing
|
42
|
+
|
43
|
+
Using pip
|
44
|
+
|
45
|
+
```
|
46
|
+
pip install sdwire
|
47
|
+
```
|
48
|
+
|
49
|
+
Using apt
|
50
|
+
|
51
|
+
```
|
52
|
+
sudo add-apt-repository ppa:tchavadar/badgerd
|
53
|
+
sudo apt install python3-sdwire
|
54
|
+
```
|
55
|
+
|
41
56
|
## Listing SDWire Devices
|
42
57
|
|
43
58
|
`sdwire list` command will search through usb devices connected to the system
|
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
|