mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
15 lines
204 B
Python
15 lines
204 B
Python
import core.gui as gui
|
|
from core.uztracker_scraper import scrape_uztracker, get_post_title
|
|
|
|
|
|
|
|
|
|
|
|
post_url = scrape_uztracker()
|
|
if post_url:
|
|
maintitle = get_post_title(post_url)
|
|
print(maintitle)
|
|
|
|
|
|
|