Fix socials timestamp #50

Merged
Berack96 merged 8 commits from fix-socials-timestamp into main 2025-10-27 12:45:40 +01:00
Showing only changes of commit 3d35898f20 - Show all commits

View File

@@ -2,12 +2,12 @@ import re
import html import html
import requests import requests
import warnings import warnings
from bs4 import BeautifulSoup from bs4 import BeautifulSoup, MarkupResemblesLocatorWarning
from datetime import datetime from datetime import datetime
from app.api.core.social import * from app.api.core.social import *
# Ignora i warning di BeautifulSoup quando incontra HTML malformato o un link, mentre si aspetta un HTML completo # Ignora i warning di BeautifulSoup quando incontra HTML malformato o un link, mentre si aspetta un HTML completo
warnings.filterwarnings("ignore") warnings.filterwarnings("ignore", category=MarkupResemblesLocatorWarning)
class ChanWrapper(SocialWrapper): class ChanWrapper(SocialWrapper):