Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alejrot/python-docs
Documentacion y tutoriales sobre Python, sus módulos y paquetes
https://github.com/alejrot/python-docs
classes lambda-functions pip python python-3 python3 venv venv-python virtualenv
Last synced: 2 days ago
JSON representation
Documentacion y tutoriales sobre Python, sus módulos y paquetes
- Host: GitHub
- URL: https://github.com/alejrot/python-docs
- Owner: alejrot
- License: mit
- Created: 2024-03-21T03:23:27.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-12-14T02:18:58.000Z (24 days ago)
- Last Synced: 2024-12-14T02:28:51.873Z (24 days ago)
- Topics: classes, lambda-functions, pip, python, python-3, python3, venv, venv-python, virtualenv
- Homepage: https://alejrot.github.io/python-docs/
- Size: 2.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PythonDocs
Mis apuntes en español acerca del lenguaje Python y algunos de sus módulos y paquetes.
[Enlace a documentos internos](docs/index.md)
## [Versión online : GitHub Pages](https://marcelomarot.github.io/python-docs)
Este documento usa [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) para crear el sitio estático.
## Despliegue local
### Descarga del repositorio:
```bash
git clone https://github.com/MarceloMarot/python-docs
cd python-docs
```### Entorno virtual (opcional)
```bash
py -m venv venv
source venv/Scripts/activate # caso Windows
source venv/bin/activate # caso GNU/Linux
```### Instalación
```bash
pip install mkdocs-material
```### Ejecucion (*live server*)
```bash
mkdocs serve
```Ruta del sitio web local: localhost (IP 127.0.0.1), puerto 8000
```bash
http://localhost:8000
```### Construccion del site estático
```bash
mkdocs build
```
Archivos creados en el directorio ***site***.