This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
*/ | |
class FtpTransfer | |
{ | |
private $user; | |
private $password; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
markmap: | |
embedAssets: true | |
maxWidth: 300 | |
--- | |
# Bogotá | |
#### Lugares para visitar | |
##### Museo del Oro | |
###### - Exposición de arte precolombino |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Medellín | |
## Lugares para visitar | |
### Plaza Botero | |
#### - Esculturas icónicas de Fernando Botero | |
#### - Espacio al aire libre con obras de arte | |
### Comuna 13 | |
#### - Arte urbano y murales coloridos | |
#### - Historia de transformación y resiliencia | |
### Parque Arví | |
#### - Naturaleza, senderos y vistas panorámicas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import PyPDF2 | |
# Crear un objeto PDF en blanco | |
pdf_merger = PyPDF2.PdfFileMerger() | |
# Obtener la lista de archivos PDF a unir | |
pdf_files = ['archivo1.pdf', 'archivo2.pdf', 'archivo3.pdf'] | |
# Iterar sobre los archivos PDF y agregarlos al objeto de combinación | |
for pdf_file in pdf_files: |