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: 5 months 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 (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-09T08:13:28.000Z (5 months ago)
- Last Synced: 2025-08-09T10:08:37.149Z (5 months ago)
- Topics: classes, lambda-functions, pip, python, python-3, python3, venv, venv-python, virtualenv
- Language: HTML
- Homepage: https://alejrot.github.io/python-docs/
- Size: 6.55 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***.