Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# -*- coding: utf-8 -*- | |
"""AINE 2025 - TXT.5 - Ejercicio final optativo (adrromflo).ipynb | |
Automatically generated by Colab. | |
Original file is located at | |
https://colab.research.google.com/drive/1xwlujRb_jvos3aT4epQSbS1equ2mLmA8 | |
# **Análisis de Información No Estructurada** |
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 logging | |
from dataclasses import dataclass | |
from enum import Enum | |
from pathlib import Path | |
from typing import Dict, List | |
import pandas as pd | |
# Configure logging | |
logging.basicConfig( |
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
FROM mongo:7.0.2 | |
COPY ./init-mongo.sh /docker-entrypoint-initdb.d/init-mongo.sh | |
RUN chmod +x /docker-entrypoint-initdb.d/init-mongo.sh |