19 lines
356 B
Python
19 lines
356 B
Python
"""
|
|
main.py
|
|
========
|
|
Entry point for the PornPics Importer.
|
|
Handles initialization and coordination between modules.
|
|
"""
|
|
|
|
from importer.fetcher import fetch_gallery_list
|
|
|
|
|
|
def main():
|
|
print("🧩 PornPics Importer started.")
|
|
galleries = fetch_gallery_list()
|
|
print(f"Fetched {len(galleries)} galleries.")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|