1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
## Programs
Here are some programs you can try out. If you've never used the program before, make sure you add the `--help` flag so
it doesn't do something you don't expect. If you decide you want to install, you can run `pipx install PACKAGE` instead.
### ansible
IT automation
```
pipx install --include-deps ansible
```
### asciinema
Record and share your terminal sessions, the right way.
```
pipx run asciinema
```
### black
uncompromising Python code formatter
```
pipx run black
```
### pybabel
internationalizing and localizing Python applications
```
pipx run --spec=babel pybabel --help
```
### chardetect
detect file encoding
```
pipx run --spec=chardet chardetect --help
```
### cookiecutter
creates projects from project templates
```
pipx run cookiecutter
```
### create-python-package
easily create and publish new Python packages
```
pipx run create-python-package
```
### flake8
tool for style guide enforcement
```
pipx run flake8
```
### gdbgui
browser-based gdb debugger
```
pipx run gdbgui
```
### hatch
Python project manager that lets you build & publish packages, run tasks in environments and more
```
pipx run hatch
```
### hexsticker
create hexagon stickers automatically
```
pipx run hexsticker
```
### ipython
powerful interactive Python shell
```
pipx run ipython
```
### jupyter
web-based notebook environment for interactive computing
```
pipx run jupyter
```
### pipenv
python dependency/environment management
```
pipx run pipenv
```
### poetry
python dependency/environment/packaging management
```
pipx run poetry
```
### pylint
source code analyzer
```
pipx run pylint
```
### pyinstaller
bundles a Python application and all its dependencies into a single package
```
pipx run pyinstaller
```
### pyxtermjs
fully functional terminal in the browser
```
pipx run pyxtermjs
```
### ruff
An extremely fast Python linter
```
pipx run ruff
```
### shell-functools
Functional programming tools for the shell
```
pipx install shell-functools
```
|