DEV Community

Oddshop
Oddshop

Posted on • Originally published at oddshop.work

Marketplace Ads Report Automation Tool

We just released Marketplace Ads Report Automation Tool — automate daily amazon ads performance reports and download them as csv.

What it does

This tool logs into your Amazon Ads account and downloads campaign performance reports. It's for Python developers managing Amazon Ads who need to automate daily data collection. Saves hours of manual work.

Features

  • Authenticate securely with Amazon Ads API
  • Download Sponsored Products campaign reports
  • Schedule daily automated report runs
  • Export data to CSV with custom date ranges
  • Handle API rate limits and errors automatically

Usage

from amazon_ads_tool import Reporter
reporter = Reporter(credentials_file='creds.json')
df = reporter.get_report(days=7)
df.to_csv('weekly_report.csv')
Enter fullscreen mode Exit fullscreen mode

Requirements

Python 3.8+. Install dependencies:

pip install -r requirements.txt
Enter fullscreen mode Exit fullscreen mode

Get it

Download Marketplace Ads Report Automation Tool for $29 →

Buy once, use anywhere. ZIP includes the full script, README, and usage examples.


Originally published at oddshop.work
Built by OddShop — Python automation tools, one new release every week.

Top comments (0)