Files
verticalstitcher/main.py
tukaunu cb82711633 added a semi functional scraper
it needs to be in a country that doesn't have age verification to work (like the US or japan), or a twitter account that's verified
2026-01-14 13:08:06 +01:00

9 lines
184 B
Python

from stitch import get_image
from scrape import get_page
if __name__ == "__main__":
url = ""
source = get_page(url)
image = get_image(source)
image.save("result.png")