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
9 lines
184 B
Python
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") |