Skip to main content

imgtrail

PyPI Python CI Licence Checked with mypy Ruff

Find out where else on the web your own photos show up.

Point it at your Instagram data export. It hashes every photo, collapses the near-duplicates so you never pay to search the same picture twice, runs each unique one through reverse image search, and then downloads every candidate and compares it against your original before putting it in the report. What you get back is a list you can trust, not a pile of URLs.

imgtrail scan ~/Downloads/instagram-export.zip --dry-run
imgtrail scan ~/Downloads/instagram-export.zip
imgtrail report --open

What it finds, and what it doesn't

It searches Google's index, so it finds your photos on blogs, news sites, Pinterest, Tumblr, forums, scraper mirrors and shops that lifted your pictures.

It will not find a repost on another Instagram account. Instagram blocks crawling of post images, so they aren't in anyone's index — the only way such a repost surfaces here is indirectly, via one of the many "Instagram viewer" mirror sites that are indexed. Telegram, WhatsApp, TikTok, Facebook and private accounts are invisible to it too. If your question is "is someone reposting me inside Instagram", this is the wrong tool and there isn't a good one.

Install

pip install imgtrail

Getting your photos

Instagram → Settings → Accounts Centre → Your information and permissions → Download your information. Ask for JSON, high quality. You'll get a ZIP; hand it straight to imgtrail scan. No scraping, nothing against the terms of service, no rate limits.

A plain folder of images works just as well.

Getting an API key

imgtrail uses Google Cloud Vision's WEB_DETECTION. Create a project at console.cloud.google.com, enable the Cloud Vision API, then Credentials → Create credentials → API key.

export IMGTRAIL_API_KEY=AIza...

The first 1,000 images each month are free, then $3.50 per 1,000. A typical profile costs nothing. Run --dry-run first and it will tell you exactly how many searches it would make and what they would cost before spending anything.

How the verification works

Reverse image search returns a lot of near-misses. For every candidate, imgtrail downloads the image and compares perceptual hashes against your original:

Hamming distance Verdict Meaning
≤ 8 confirmed The same image, possibly recompressed
≤ 16 likely Cropped, filtered or heavily edited
> 16 rejected Not your photo

Only confirmed and likely reach the report. visuallySimilarImages is dropped entirely — it means "semantically alike", not "this is your photo", and it drowns the report in noise.

Commands

imgtrail scan SOURCE          index, dedupe, search and verify — resumable
  --dry-run                   count the searches and their cost, call nothing
  --limit N                   search at most N unique photos
  --threshold N               pHash distance for "same photo" (default 6)
  --ignore-domain DOMAIN      exclude a domain from results (repeatable)
  --no-verify                 skip the download-and-compare pass
imgtrail report --open        build the HTML report and open it
imgtrail status               what's in the database so far

State lives in ./imgtrail-data. Everything is idempotent: re-running scan searches only what it hasn't searched before, so an interrupted run costs nothing to resume.

Privacy

Your photos are sent to Google Cloud Vision, and nowhere else. Nothing is uploaded to any server of mine — there isn't one. The database, the extracted export and the report all stay on your machine.

Architecture

Ports and adapters, sized to the problem: the rules sit in the middle and know nothing about Google, SQLite or HTTP, so swapping a search backend touches exactly one file.

domain.py     fingerprints, grouping, verdicts, what counts as "your own platform"
              — pure; no I/O, no SQL, no network
ports.py      the boundaries: PhotoSource, ImageLoader, SearchEngine, ImageFetcher,
              PhotoRepository, MatchRepository, ReportWriter
services.py   the use cases: index, plan, search, verify, report
adapters/     the details: sqlite_repository, vision, http_fetcher, local_files, html_report
cli.py        the composition root — the one module that knows every layer

Adding TinEye or Yandex means writing one SearchEngine and wiring it in cli.py. Nothing in domain.py or services.py changes.

Development

uv sync --all-groups
uv run pytest             # 85 tests, no network, no mocks
uv run ruff check .
uv run ruff format .
uv run mypy               # strict, and it passes on the tests too

The test doubles are real implementations, not mocks: an in-memory DictPhotoSource, a FakeSearchEngine that records what it was asked, and — where the wire itself is what needs testing — a real local HTTP server speaking Vision's JSON.

Licence

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imgtrail-0.1.1.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

imgtrail-0.1.1-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file imgtrail-0.1.1.tar.gz.

File metadata

  • Download URL: imgtrail-0.1.1.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for imgtrail-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7c79ff3a4d1febf1e9c4ebb5ed7aaa62fa35be2b330a901f085a9528d8b01a90
MD5 a7abc74f9107f3b5bfcbd5a965a2c1d4
BLAKE2b-256 4622e26f2cb3821196b5f87810ce0f7e8407dc70fc7d8bd302b60033745014d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for imgtrail-0.1.1.tar.gz:

Publisher: release.yml on Endika/imgtrail

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file imgtrail-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: imgtrail-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for imgtrail-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fff8ae4ea0d47310871e1fa3639284b83bf37d07d8c7d2de1511939649c51120
MD5 e273a202c16e2665ae3349f825209ea5
BLAKE2b-256 d334388306e692a7055bc7b87faa1a0c665b133f99bedddcbe99d524db579f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for imgtrail-0.1.1-py3-none-any.whl:

Publisher: release.yml on Endika/imgtrail

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

This release

0.1.1 This release

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page