Skip to content

Commit 78ce9ce

Browse files
author
BuildTools
committed
Updated
1 parent 5ff7d3f commit 78ce9ce

File tree

14 files changed

+187
-49
lines changed

14 files changed

+187
-49
lines changed

dist/pytohub-1.7.tar.gz

8.1 KB
Binary file not shown.

pytohub.egg-info/PKG-INFO

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
Metadata-Version: 2.1
2+
Name: pytohub
3+
Version: 1.7
4+
Summary: This is a module that can connect to your lego RI hub or lego SPIKE PRIME hub and can directly upload modules to your hub
5+
Author: mas6y6
6+
License: MIT
7+
Description-Content-Type: text/markdown
8+
License-File: LICENSE.txt
9+
Requires-Dist: get-key
10+
Requires-Dist: requests
11+
Requires-Dist: progressbar2
12+
Requires-Dist: serial
13+
14+
# PYTOHub
15+
16+
PYTOHub is a program that can directly connect to your lego spike prime or mindstorms hub
17+
18+
![alt text](banner.png)
19+
20+
# How to download
21+
22+
How to download PYToHub
23+
24+
**Run this in your terminal (Command prompt)**
25+
```
26+
pip install pytohub
27+
```
28+
29+
# How to run pytohub
30+
There is 2 ways to run pytohub.
31+
**You can directly run it in the terminal**
32+
```
33+
python -m pytohub
34+
```
35+
**OR Run it using a python file**
36+
```py
37+
import pytohub
38+
pytohub.run()
39+
```
40+
41+
# How to setup your lego hub
42+
There is 2 ways to setup your lego hub.
43+
44+
You need to setup your lego hub
45+
**You can directly run it in the terminal**
46+
```
47+
python -m pytohub --download
48+
```
49+
**OR Run it using a python file**
50+
```py
51+
import pytohub
52+
pytohub.download_program()
53+
```

pytohub.egg-info/SOURCES.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
LICENSE.txt
2+
README.md
3+
setup.py
4+
pytohub/__init__.py
5+
pytohub/__main__.py
6+
pytohub/hmd_maker.py
7+
pytohub/legohub.py
8+
pytohub/logging.py
9+
pytohub/main.py
10+
pytohub/menu.py
11+
pytohub/textcolors.py
12+
pytohub.egg-info/PKG-INFO
13+
pytohub.egg-info/SOURCES.txt
14+
pytohub.egg-info/dependency_links.txt
15+
pytohub.egg-info/requires.txt
16+
pytohub.egg-info/top_level.txt

pytohub.egg-info/dependency_links.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

pytohub.egg-info/requires.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
get-key
2+
requests
3+
progressbar2
4+
serial

pytohub.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pytohub

pytohub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .main import run, download_program
1+
from .main import run
-33 Bytes
Binary file not shown.
2.25 KB
Binary file not shown.
58 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)