mirror of
https://github.com/simon987/parler_feed.git
synced 2025-04-08 04:56:44 +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()
|