Generate Instagram ads from landing pages using browser agents and Googleβs Nano Banana π.
pip install -U browser-use
export GOOGLE_API_KEY='your-google-api-key-here'
# Basic - Generate ad from any website python ad_generator.py https://www.apple.com/iphone-16-pro/ # Debug Mode - See the browser in action python ad_generator.py https://www.apple.com/iphone-16-pro/ --debug
import asyncio from ad_generator import create_ad_from_landing_page async def main(): results = await create_ad_from_landing_page( url="https://your-landing-page.com", debug=False ) print(f"Generated ads: {results}") asyncio.run(main())
output/
Was this page helpful?