mirror of
https://github.com/simon987/parler_feed.git
synced 2025-09-15 19:36:56 +00:00
9 lines
183 B
Python
9 lines
183 B
Python
from scanner import ParlerScanner
|
|
from state import ParlerState
|
|
|
|
if __name__ == "__main__":
|
|
state = ParlerState()
|
|
scanner = ParlerScanner(state)
|
|
|
|
scanner.scan_all_items()
|