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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Detect WAV Bit Depth</title> | |
</head> | |
<body> | |
<input type="file" id="fileInput" accept=".wav"> | |
<p id="result"></p> |
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
# main.py | |
from database import Database | |
import json | |
def mostrar_menu(): | |
print("\n--- Base de Datos Documental ---") | |
print("1. Crear colección") | |
print("2. Importar CSV a colección") | |
print("3. Consultar documento en colección") | |
print("4. Eliminar documento de colección") |
OlderNewer