mirror of
https://github.com/damp11113/PyserSSH.git
synced 2025-04-28 06:58:12 +00:00
Created Extensions (markdown)
parent
0f39eee9a3
commit
44403ac94a
25
Extensions.md
Normal file
25
Extensions.md
Normal file
@ -0,0 +1,25 @@
|
||||
# Extensions
|
||||
currently available only `progressbar`
|
||||
|
||||
you can new issues for request new extensions
|
||||
|
||||
# progressbar
|
||||
This extensions for show your progree
|
||||
|
||||
## indeterminateStatus
|
||||
```py
|
||||
loading = indeterminateStatus(client)
|
||||
loading.start()
|
||||
time.sleep(5)
|
||||
loading.stop()
|
||||
```
|
||||
## LoadingProgress
|
||||
```py
|
||||
l = LoadingProgress(client, total=100, color=True)
|
||||
l.start()
|
||||
for i in range(101):
|
||||
l.current = i
|
||||
l.desc = "loading..."
|
||||
time.sleep(0.05)
|
||||
l.stop()
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user