Skip to content

Instantly share code, notes, and snippets.

@isaprotasio
isaprotasio / metro_app.py
Created December 2, 2025 19:41
Grafo de Estação de Metro
import streamlit as st
import heapq
import pandas as pd
from collections import defaultdict
import sys
import os
import warnings
warnings.filterwarnings("ignore", message=".*missing ScriptRunContext.*")
warnings.filterwarnings("ignore", category=UserWarning)