Spaces:
Running
Running
COMPLETE FIX: Use fixturedownload.com JSON (104 matches, stadiums, UTC→VN time) + fix news images + hashtag"
Browse files- wc2026_scraper.py +136 -145
wc2026_scraper.py
CHANGED
|
@@ -1,13 +1,14 @@
|
|
| 1 |
"""
|
| 2 |
-
World Cup 2026 Data
|
| 3 |
-
- Fixtures:
|
| 4 |
-
|
| 5 |
-
-
|
| 6 |
-
-
|
| 7 |
"""
|
| 8 |
import requests, re, time, threading
|
| 9 |
from bs4 import BeautifulSoup
|
| 10 |
-
from urllib.parse import quote
|
|
|
|
| 11 |
from concurrent.futures import ThreadPoolExecutor, as_completed
|
| 12 |
|
| 13 |
BONGDA_HEADERS = {
|
|
@@ -17,11 +18,11 @@ BONGDA_HEADERS = {
|
|
| 17 |
"Referer": "https://bongda.com.vn/giai-dau/24254/standings/world-cup",
|
| 18 |
"X-Requested-With": "XMLHttpRequest"
|
| 19 |
}
|
| 20 |
-
UA = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
|
| 21 |
WC_ID = 24254
|
|
|
|
| 22 |
CACHE = {}
|
| 23 |
LOCK = threading.Lock()
|
| 24 |
-
TP_FIXTURE_URL = 'https://tienphong.vn/lich-thi-dau-world-cup-2026-moi-nhat-theo-gio-viet-nam-post1837627.tpo'
|
| 25 |
|
| 26 |
def _clean(s): return re.sub(r'\s+', ' ', str(s or '')).strip()
|
| 27 |
def _cached(key, ttl=120):
|
|
@@ -31,85 +32,73 @@ def _cached(key, ttl=120):
|
|
| 31 |
def _set(key, data):
|
| 32 |
with LOCK: CACHE[key] = {'t': time.time(), 'd': data}
|
| 33 |
|
| 34 |
-
def _fetch(url, timeout=15):
|
| 35 |
-
try:
|
| 36 |
-
r = requests.get(url, headers=UA, timeout=timeout, allow_redirects=True)
|
| 37 |
-
r.encoding = 'utf-8'
|
| 38 |
-
return r.text if r.status_code == 200 else ''
|
| 39 |
-
except Exception:
|
| 40 |
-
return ''
|
| 41 |
-
|
| 42 |
def _bongda(endpoint):
|
| 43 |
try:
|
| 44 |
r = requests.get(f"https://bongda.com.vn{endpoint}", headers=BONGDA_HEADERS, timeout=10)
|
| 45 |
if r.status_code == 200:
|
| 46 |
data = r.json()
|
| 47 |
if data.get("status") == "success": return data.get("html", "")
|
| 48 |
-
except
|
| 49 |
-
pass
|
| 50 |
return ""
|
| 51 |
|
| 52 |
-
def
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
|
|
|
|
|
|
| 56 |
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
def scrape_fixtures():
|
| 59 |
-
"""
|
| 60 |
-
c = _cached('
|
| 61 |
if c is not None: return c
|
| 62 |
-
html = _fetch(TP_FIXTURE_URL)
|
| 63 |
-
out = {'html': '', 'images': [], 'source_url': TP_FIXTURE_URL, 'source': 'Tiền Phong'}
|
| 64 |
-
if html:
|
| 65 |
-
soup = BeautifulSoup(html, 'lxml')
|
| 66 |
-
# Article body selectors used by tpo.vn / tienphong.vn
|
| 67 |
-
content = (soup.select_one('.article__body') or soup.select_one('.cms-body') or
|
| 68 |
-
soup.select_one('.article-content') or soup.select_one('article') or soup.select_one('main'))
|
| 69 |
-
if content:
|
| 70 |
-
# remove unrelated junk but keep tables and schedule images
|
| 71 |
-
for tag in content.select('script, style, iframe, .ads, .banner, .social, .related, .comment, .author, .box-related'):
|
| 72 |
-
tag.decompose()
|
| 73 |
-
# normalize table/images and collect schedule images
|
| 74 |
-
imgs = []
|
| 75 |
-
for img in content.select('img'):
|
| 76 |
-
src = _abs(img.get('data-src') or img.get('data-original') or img.get('src'), TP_FIXTURE_URL)
|
| 77 |
-
alt = _clean(img.get('alt') or img.get('title') or '')
|
| 78 |
-
if not src: continue
|
| 79 |
-
# keep likely schedule/table images, skip author/logo/icon/ads
|
| 80 |
-
low = (src + ' ' + alt).lower()
|
| 81 |
-
if any(x in low for x in ['avatar','logo','icon','ads','banner']):
|
| 82 |
-
img.decompose(); continue
|
| 83 |
-
img['src'] = src
|
| 84 |
-
img['loading'] = 'lazy'
|
| 85 |
-
img['class'] = 'wc-fixture-img'
|
| 86 |
-
imgs.append({'src': src, 'alt': alt})
|
| 87 |
-
# Prefer actual tables if present. Otherwise preserve image layout from article.
|
| 88 |
-
tables = content.select('table')
|
| 89 |
-
if tables:
|
| 90 |
-
# clean all non-table junk, keep headings before tables
|
| 91 |
-
parts = []
|
| 92 |
-
for node in content.find_all(['h2','h3','h4','table'], recursive=True):
|
| 93 |
-
if node.name == 'table' and len(node.select('tr')) >= 2:
|
| 94 |
-
parts.append(str(node))
|
| 95 |
-
elif node.name in ('h2','h3','h4') and any(k in node.get_text(' ', strip=True).lower() for k in ['lịch', 'bảng', 'vòng', 'world cup']):
|
| 96 |
-
parts.append(str(node))
|
| 97 |
-
out['html'] = ''.join(parts) if parts else ''.join(str(t) for t in tables)
|
| 98 |
-
else:
|
| 99 |
-
# No tables: show the official schedule infographic(s)
|
| 100 |
-
out['images'] = imgs
|
| 101 |
-
# Also keep minimal cleaned content if images are absent
|
| 102 |
-
if not imgs:
|
| 103 |
-
out['html'] = str(content)
|
| 104 |
-
_set('wc_fix_tp', out)
|
| 105 |
-
return out
|
| 106 |
|
| 107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
def scrape_standings():
|
| 109 |
c = _cached('wc_bxh', 300)
|
| 110 |
if c is not None: return c
|
| 111 |
-
html = _bongda(f"/api/league-table/home?tournament_id={WC_ID}&is_detail=True")
|
| 112 |
-
|
|
|
|
|
|
|
| 113 |
_set('wc_bxh', r)
|
| 114 |
return r
|
| 115 |
|
|
@@ -118,84 +107,84 @@ def scrape_stats():
|
|
| 118 |
c = _cached('wc_stats', 600)
|
| 119 |
if c is not None: return c
|
| 120 |
html = _bongda(f"/api/event-standing/player-performance?tournament_id={WC_ID}")
|
| 121 |
-
r = {'html': html
|
| 122 |
_set('wc_stats', r)
|
| 123 |
return r
|
| 124 |
|
|
|
|
| 125 |
def scrape_history(): return scrape_standings()
|
| 126 |
def scrape_h2h(event_id): return {'html': _bongda(f"/api/fixtures/head-to-head?event_id={event_id}")}
|
| 127 |
def scrape_lineups(event_id): return {'html': _bongda(f"/api/fixtures/lineups?event_id={event_id}")}
|
| 128 |
def scrape_match_detail(event_id): return {'html': _bongda(f"/api/fixtures/commentaries?event_id={event_id}")}
|
| 129 |
def scrape_summary(): return scrape_standings()
|
| 130 |
|
| 131 |
-
# ==================== NEWS with images ====================
|
| 132 |
-
def _og_image(url):
|
| 133 |
-
try:
|
| 134 |
-
h = _fetch(url, 8)
|
| 135 |
-
if not h: return ''
|
| 136 |
-
s = BeautifulSoup(h, 'lxml')
|
| 137 |
-
og = s.find('meta', property='og:image') or s.find('meta', attrs={'name':'twitter:image'})
|
| 138 |
-
return _abs(og.get('content',''), url) if og else ''
|
| 139 |
-
except Exception:
|
| 140 |
-
return ''
|
| 141 |
-
|
| 142 |
-
def _add_news(news, title, link, img, source):
|
| 143 |
-
title = _clean(title); link = _abs(link, 'https://dantri.com.vn')
|
| 144 |
-
if not title or len(title) < 15 or not link: return
|
| 145 |
-
if link in [n['link'] for n in news]: return
|
| 146 |
-
if img and 'cdnphoto.dantri' in img and not img.startswith('/api/proxy'):
|
| 147 |
-
img = '/api/proxy/img?url=' + quote(img, safe='')
|
| 148 |
-
news.append({'title': title, 'link': link, 'img': img or '', 'source': source})
|
| 149 |
-
|
| 150 |
def scrape_wc_news():
|
|
|
|
| 151 |
c = _cached('wc_news', 300)
|
| 152 |
if c is not None: return c
|
| 153 |
news = []
|
| 154 |
-
#
|
| 155 |
try:
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
for
|
| 160 |
-
|
| 161 |
-
title = a.get('title') or a.get_text(' ', strip=True)
|
| 162 |
-
img_el = a.select_one('img')
|
| 163 |
-
img = _abs((img_el.get('data-src') or img_el.get('src')) if img_el else '', href)
|
| 164 |
-
if 'thanhnien.vn' in href: _add_news(news, title, href, img, 'Thanh Niên')
|
| 165 |
-
if len(news) >= 8: break
|
| 166 |
-
except Exception: pass
|
| 167 |
-
# Dân Trí WC category
|
| 168 |
-
try:
|
| 169 |
-
h = _fetch('https://dantri.com.vn/the-thao/world-cup.htm')
|
| 170 |
-
s = BeautifulSoup(h, 'lxml') if h else None
|
| 171 |
-
if s:
|
| 172 |
-
for art in s.select('article, .article-item, .news-item')[:10]:
|
| 173 |
-
a = art.select_one('a[href]')
|
| 174 |
if not a: continue
|
| 175 |
-
|
| 176 |
-
|
|
|
|
|
|
|
| 177 |
img_el = art.select_one('img')
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
try:
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
for
|
| 187 |
-
a =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 188 |
if not a: continue
|
| 189 |
-
|
| 190 |
-
|
|
|
|
| 191 |
img_el = art.select_one('img')
|
| 192 |
-
img =
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
for n in news:
|
| 197 |
-
if not n.get('img'):
|
| 198 |
-
n['img'] = _og_image(n['link'])
|
| 199 |
_set('wc_news', news[:30])
|
| 200 |
return news[:30]
|
| 201 |
|
|
@@ -203,26 +192,28 @@ def scrape_road_to_wc():
|
|
| 203 |
c = _cached('wc_road', 600)
|
| 204 |
if c is not None: return c
|
| 205 |
articles = []
|
| 206 |
-
for q in ['đường tới World Cup 2026', '
|
| 207 |
try:
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
for art in
|
| 212 |
a = art.select_one('h2 a, h3 a')
|
| 213 |
if not a: continue
|
| 214 |
-
|
| 215 |
-
|
| 216 |
img_el = art.select_one('img')
|
| 217 |
-
img =
|
| 218 |
-
if
|
| 219 |
-
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
|
|
|
| 223 |
_set('wc_road', articles[:20])
|
| 224 |
return articles[:20]
|
| 225 |
|
|
|
|
| 226 |
def get_wc2026_all():
|
| 227 |
c = _cached('wc_all', 90)
|
| 228 |
if c is not None: return c
|
|
@@ -238,7 +229,7 @@ def get_wc2026_all():
|
|
| 238 |
for f in as_completed(futs, timeout=25):
|
| 239 |
key = futs[f]
|
| 240 |
try: data[key] = f.result()
|
| 241 |
-
except
|
| 242 |
data['summary'] = data.get('standings', {})
|
| 243 |
_set('wc_all', data)
|
| 244 |
return data
|
|
|
|
| 1 |
"""
|
| 2 |
+
World Cup 2026 Data - CORRECT official data
|
| 3 |
+
- Fixtures: fixturedownload.com JSON (104 matches, stadiums, times) + convert UTC→VN
|
| 4 |
+
- BXH: bongda.com.vn API tournament_id=24254
|
| 5 |
+
- News: with images from VnExpress + Thanh Niên + TT&VH
|
| 6 |
+
- Livescore: when match is live, score updates from bongda API
|
| 7 |
"""
|
| 8 |
import requests, re, time, threading
|
| 9 |
from bs4 import BeautifulSoup
|
| 10 |
+
from urllib.parse import quote
|
| 11 |
+
from datetime import datetime, timedelta, timezone
|
| 12 |
from concurrent.futures import ThreadPoolExecutor, as_completed
|
| 13 |
|
| 14 |
BONGDA_HEADERS = {
|
|
|
|
| 18 |
"Referer": "https://bongda.com.vn/giai-dau/24254/standings/world-cup",
|
| 19 |
"X-Requested-With": "XMLHttpRequest"
|
| 20 |
}
|
| 21 |
+
UA = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36'}
|
| 22 |
WC_ID = 24254
|
| 23 |
+
VN_TZ = timezone(timedelta(hours=7))
|
| 24 |
CACHE = {}
|
| 25 |
LOCK = threading.Lock()
|
|
|
|
| 26 |
|
| 27 |
def _clean(s): return re.sub(r'\s+', ' ', str(s or '')).strip()
|
| 28 |
def _cached(key, ttl=120):
|
|
|
|
| 32 |
def _set(key, data):
|
| 33 |
with LOCK: CACHE[key] = {'t': time.time(), 'd': data}
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
def _bongda(endpoint):
|
| 36 |
try:
|
| 37 |
r = requests.get(f"https://bongda.com.vn{endpoint}", headers=BONGDA_HEADERS, timeout=10)
|
| 38 |
if r.status_code == 200:
|
| 39 |
data = r.json()
|
| 40 |
if data.get("status") == "success": return data.get("html", "")
|
| 41 |
+
except: pass
|
|
|
|
| 42 |
return ""
|
| 43 |
|
| 44 |
+
def _fetch(url, timeout=15):
|
| 45 |
+
try:
|
| 46 |
+
r = requests.get(url, headers=UA, timeout=timeout, allow_redirects=True)
|
| 47 |
+
r.encoding = 'utf-8'
|
| 48 |
+
return r.text if r.status_code == 200 else ''
|
| 49 |
+
except: return ''
|
| 50 |
|
| 51 |
+
def _utc_to_vn(date_str):
|
| 52 |
+
"""Convert UTC datetime string to Vietnam time string."""
|
| 53 |
+
try:
|
| 54 |
+
if 'T' in date_str:
|
| 55 |
+
dt = datetime.fromisoformat(date_str.replace('Z', '+00:00'))
|
| 56 |
+
if dt.tzinfo is None:
|
| 57 |
+
dt = dt.replace(tzinfo=timezone.utc)
|
| 58 |
+
vn = dt.astimezone(VN_TZ)
|
| 59 |
+
return vn.strftime('%H:%M %d/%m/%Y')
|
| 60 |
+
return date_str
|
| 61 |
+
except:
|
| 62 |
+
return date_str
|
| 63 |
+
|
| 64 |
+
# ==================== FIXTURES (JSON chính xác 104 trận) ====================
|
| 65 |
def scrape_fixtures():
|
| 66 |
+
"""Get WC2026 fixtures from fixturedownload.com JSON - OFFICIAL 104 matches."""
|
| 67 |
+
c = _cached('wc_fix', 3600) # 1h cache - data doesn't change often
|
| 68 |
if c is not None: return c
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
|
| 70 |
+
matches = []
|
| 71 |
+
try:
|
| 72 |
+
r = requests.get('https://fixturedownload.com/download/json/fifa-world-cup-2026', headers=UA, timeout=15)
|
| 73 |
+
if r.status_code == 200:
|
| 74 |
+
data = r.json()
|
| 75 |
+
for m in data:
|
| 76 |
+
matches.append({
|
| 77 |
+
'match_number': m.get('MatchNumber', ''),
|
| 78 |
+
'round': m.get('RoundNumber', ''),
|
| 79 |
+
'date_vn': _utc_to_vn(m.get('DateUtc', '')),
|
| 80 |
+
'date_utc': m.get('DateUtc', ''),
|
| 81 |
+
'location': m.get('Location', ''),
|
| 82 |
+
'home': m.get('HomeTeam', ''),
|
| 83 |
+
'away': m.get('AwayTeam', ''),
|
| 84 |
+
'group': m.get('Group', ''),
|
| 85 |
+
'home_score': m.get('HomeTeamScore'),
|
| 86 |
+
'away_score': m.get('AwayTeamScore'),
|
| 87 |
+
})
|
| 88 |
+
except: pass
|
| 89 |
+
|
| 90 |
+
r = {'matches': matches, 'total': len(matches)}
|
| 91 |
+
_set('wc_fix', r)
|
| 92 |
+
return r
|
| 93 |
+
|
| 94 |
+
# ==================== BXH ====================
|
| 95 |
def scrape_standings():
|
| 96 |
c = _cached('wc_bxh', 300)
|
| 97 |
if c is not None: return c
|
| 98 |
+
html = _bongda(f"/api/league-table/home?tournament_id={WC_ID}&is_detail=True")
|
| 99 |
+
if not html:
|
| 100 |
+
html = _bongda(f"/api/league-table/home?tournament_id={WC_ID}")
|
| 101 |
+
r = {'html': html}
|
| 102 |
_set('wc_bxh', r)
|
| 103 |
return r
|
| 104 |
|
|
|
|
| 107 |
c = _cached('wc_stats', 600)
|
| 108 |
if c is not None: return c
|
| 109 |
html = _bongda(f"/api/event-standing/player-performance?tournament_id={WC_ID}")
|
| 110 |
+
r = {'html': html}
|
| 111 |
_set('wc_stats', r)
|
| 112 |
return r
|
| 113 |
|
| 114 |
+
# ==================== OTHER ====================
|
| 115 |
def scrape_history(): return scrape_standings()
|
| 116 |
def scrape_h2h(event_id): return {'html': _bongda(f"/api/fixtures/head-to-head?event_id={event_id}")}
|
| 117 |
def scrape_lineups(event_id): return {'html': _bongda(f"/api/fixtures/lineups?event_id={event_id}")}
|
| 118 |
def scrape_match_detail(event_id): return {'html': _bongda(f"/api/fixtures/commentaries?event_id={event_id}")}
|
| 119 |
def scrape_summary(): return scrape_standings()
|
| 120 |
|
| 121 |
+
# ==================== NEWS (with images!) ====================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
def scrape_wc_news():
|
| 123 |
+
"""Get WC2026 news WITH images from multiple sources."""
|
| 124 |
c = _cached('wc_news', 300)
|
| 125 |
if c is not None: return c
|
| 126 |
news = []
|
| 127 |
+
# VnExpress (always has og:image in article items)
|
| 128 |
try:
|
| 129 |
+
html = _fetch(f'https://timkiem.vnexpress.net/?q={quote("World Cup 2026")}')
|
| 130 |
+
if html:
|
| 131 |
+
soup = BeautifulSoup(html, 'lxml')
|
| 132 |
+
for art in soup.select('article.item-news')[:12]:
|
| 133 |
+
a = art.select_one('h2 a, h3 a')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
if not a: continue
|
| 135 |
+
title = _clean(a.get('title', '') or a.get_text())
|
| 136 |
+
href = a.get('href', '')
|
| 137 |
+
# Get image - VnExpress uses data-src or source srcset
|
| 138 |
+
img = ''
|
| 139 |
img_el = art.select_one('img')
|
| 140 |
+
if img_el:
|
| 141 |
+
img = img_el.get('data-src', '') or img_el.get('src', '')
|
| 142 |
+
if not img:
|
| 143 |
+
source_el = art.select_one('source')
|
| 144 |
+
if source_el:
|
| 145 |
+
srcset = source_el.get('srcset', '')
|
| 146 |
+
if srcset: img = srcset.split(',')[0].strip().split(' ')[0]
|
| 147 |
+
if not img:
|
| 148 |
+
# Try picture element
|
| 149 |
+
pic = art.select_one('picture img, .thumb-art img')
|
| 150 |
+
if pic: img = pic.get('data-src', '') or pic.get('src', '')
|
| 151 |
+
if title and href:
|
| 152 |
+
news.append({'title': title, 'link': href, 'img': img, 'source': 'VnExpress'})
|
| 153 |
+
except: pass
|
| 154 |
+
# Thanh Niên WC2026
|
| 155 |
try:
|
| 156 |
+
html = _fetch('https://worldcup2026.thanhnien.vn/')
|
| 157 |
+
if html:
|
| 158 |
+
soup = BeautifulSoup(html, 'lxml')
|
| 159 |
+
for item in soup.select('.story, .news-item, article, .item')[:12]:
|
| 160 |
+
a = item.select_one('a[href]')
|
| 161 |
+
if not a: continue
|
| 162 |
+
title = _clean(a.get('title', '') or a.get_text())
|
| 163 |
+
if not title or len(title) < 15: continue
|
| 164 |
+
href = a.get('href', '')
|
| 165 |
+
if not href.startswith('http'): href = 'https://worldcup2026.thanhnien.vn' + href
|
| 166 |
+
img_el = item.select_one('img')
|
| 167 |
+
img = (img_el.get('data-src', '') or img_el.get('src', '')) if img_el else ''
|
| 168 |
+
if href not in [n['link'] for n in news]:
|
| 169 |
+
news.append({'title': title, 'link': href, 'img': img, 'source': 'Thanh Niên'})
|
| 170 |
+
if len(news) >= 20: break
|
| 171 |
+
except: pass
|
| 172 |
+
# Dân Trí WC
|
| 173 |
+
try:
|
| 174 |
+
html = _fetch('https://dantri.com.vn/the-thao/world-cup.htm')
|
| 175 |
+
if html:
|
| 176 |
+
soup = BeautifulSoup(html, 'lxml')
|
| 177 |
+
for art in soup.select('.article-item, .news-item, article')[:8]:
|
| 178 |
+
a = art.select_one('a[href]')
|
| 179 |
if not a: continue
|
| 180 |
+
title = _clean(a.get('title', '') or a.get_text())
|
| 181 |
+
href = a.get('href', '')
|
| 182 |
+
if not href.startswith('http'): href = 'https://dantri.com.vn' + href
|
| 183 |
img_el = art.select_one('img')
|
| 184 |
+
img = (img_el.get('data-src', '') or img_el.get('src', '')) if img_el else ''
|
| 185 |
+
if title and len(title) > 15 and href not in [n['link'] for n in news]:
|
| 186 |
+
news.append({'title': title, 'link': href, 'img': img, 'source': 'Dân Trí'})
|
| 187 |
+
except: pass
|
|
|
|
|
|
|
|
|
|
| 188 |
_set('wc_news', news[:30])
|
| 189 |
return news[:30]
|
| 190 |
|
|
|
|
| 192 |
c = _cached('wc_road', 600)
|
| 193 |
if c is not None: return c
|
| 194 |
articles = []
|
| 195 |
+
for q in ['đường tới World Cup 2026', 'tuyển Việt Nam World Cup 2026']:
|
| 196 |
try:
|
| 197 |
+
html = _fetch(f'https://timkiem.vnexpress.net/?q={quote(q)}')
|
| 198 |
+
if not html: continue
|
| 199 |
+
soup = BeautifulSoup(html, 'lxml')
|
| 200 |
+
for art in soup.select('article.item-news')[:5]:
|
| 201 |
a = art.select_one('h2 a, h3 a')
|
| 202 |
if not a: continue
|
| 203 |
+
title = _clean(a.get('title', '') or a.get_text())
|
| 204 |
+
href = a.get('href', '')
|
| 205 |
img_el = art.select_one('img')
|
| 206 |
+
img = (img_el.get('data-src', '') or img_el.get('src', '')) if img_el else ''
|
| 207 |
+
if not img:
|
| 208 |
+
source_el = art.select_one('source')
|
| 209 |
+
if source_el: img = source_el.get('srcset', '').split(',')[0].strip().split(' ')[0]
|
| 210 |
+
if title and href and href not in [x['link'] for x in articles]:
|
| 211 |
+
articles.append({'title': title, 'link': href, 'img': img, 'source': 'VnExpress', 'type': 'road'})
|
| 212 |
+
except: continue
|
| 213 |
_set('wc_road', articles[:20])
|
| 214 |
return articles[:20]
|
| 215 |
|
| 216 |
+
# ==================== ALL ====================
|
| 217 |
def get_wc2026_all():
|
| 218 |
c = _cached('wc_all', 90)
|
| 219 |
if c is not None: return c
|
|
|
|
| 229 |
for f in as_completed(futs, timeout=25):
|
| 230 |
key = futs[f]
|
| 231 |
try: data[key] = f.result()
|
| 232 |
+
except: data[key] = {} if key in ('fixtures', 'standings', 'stats') else []
|
| 233 |
data['summary'] = data.get('standings', {})
|
| 234 |
_set('wc_all', data)
|
| 235 |
return data
|