mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
22 lines
588 B
Markdown
22 lines
588 B
Markdown
![]() |
# bpython
|
||
|
|
||
|
> Una interfaz elegante para el intérprete de Python.
|
||
|
> Proporciona resaltado de sintaxis y muchas otras características en modo REPL.
|
||
|
> Más información: <https://manned.org/bpython>.
|
||
|
|
||
|
- Inicia una REPL ( intérprete de comandos interactivo):
|
||
|
|
||
|
`bpython`
|
||
|
|
||
|
- Ejecuta un archivo Python específico:
|
||
|
|
||
|
`bpython {{ruta/al/archivo.py}}`
|
||
|
|
||
|
- Ejecuta un archivo Python específico e inicia una REPL:
|
||
|
|
||
|
`bpython --interactive {{ruta/al/archivo.py}}`
|
||
|
|
||
|
- Utiliza el archivo [c]onfig especificado en lugar de la configuración predeterminada:
|
||
|
|
||
|
`bpython --config {{ruta/al/archivo.conf}}`
|