Skip to main content

AI-powered web scraper and analyzer — async, offline-friendly, Ollama-backed

Project description

protor

scrape websites. analyze with ai. no bs.

a cli tool that actually works. scrapes web content with async aiohttp, feeds it to your local ollama models, gets insights. that's it.

why this exists

because paying for web scraping apis is kinda mid when you can just use aiohttp and a local llm. also because sometimes you need to analyze a bunch of sites and doing it manually is literally painful.

what you need

  • python 3.11+
  • ollama running locally {with model of your choice}

get ollama set up

# grab some models
ollama pull llama3
ollama pull mistral
ollama pull codellama

# start the server
ollama serve

install

from pypi (recommended)

pip install protor

from source

git clone https://github.com/pulkit777exe/protor.git
cd protor
pip install -e .

how to use

see what models you have

protor models

scrape stuff

# one site
protor scrape https://example.com

# multiple sites
protor scrape https://example.com https://another-site.com

# skip the js files if you want
protor scrape https://example.com --no-js

# custom settings
protor scrape https://example.com --output my_data --timeout 60 --concurrency 3

crawl a whole site

# crawl up to 10 pages
protor crawl https://example.com

# deeper crawl
protor crawl https://example.com --max-pages 50

analyze what you scraped

# general vibes check
protor analyze

# tech stack deep dive
protor analyze --focus technical --model codellama

# seo audit
protor analyze --focus seo --model mistral

# content analysis
protor analyze --focus content

do both at once (recommended)

# basic usage
protor run https://example.com

# with options
protor run https://example.com https://another.com --model llama3 --focus technical

# go crazy
protor run https://site1.com https://site2.com https://site3.com \
  --model mistral \
  --focus seo \
  --no-js

check your version

protor version

keep it up to date

# check for updates
protor update --check

# update with confirmation
protor update

# skip the prompt
protor update -y

what the focus modes do

  • general - overall content, main themes, what the site's about
  • technical - frameworks, tech stack, how it's built
  • content - writing quality, structure, how readable it is
  • seo - meta tags, optimization stuff, what needs fixing

what you get

after scraping

data/
├── example_com/
│   ├── index.html        # the actual html
│   ├── manifest.json     # metadata and stuff
│   └── js/               # javascript files
└── sites_index.json      # summary of everything

after analysis

analysis/
├── README.md            # readable report
└── analysis.json        # raw data

real examples

quick content check

protor run https://blog.example.com --focus content

technical audit

# grab everything including js
protor scrape https://webapp.example.com

# analyze the tech
protor analyze --focus technical --model codellama

competitor research

# scrape competitors
protor scrape https://competitor1.com https://competitor2.com https://competitor3.com

# get seo insights
protor analyze --focus seo --model mistral

batch analysis

protor run \
  https://source1.com \
  https://source2.com \
  https://source3.com \
  --model llama3

when stuff breaks

ollama issues

# make sure it's running
ollama serve

# check your models
ollama list

# pull a model if needed
ollama pull llama3

connection failing

# try longer timeout
protor scrape https://example.com --timeout 120

# reduce concurrency if getting blocked
protor scrape https://example.com --concurrency 2

analysis taking forever

  • use a smaller model
  • scrape fewer sites
  • use --no-js flag
  • get better hardware lol

pro tips

  • always check robots.txt before scraping (be respectful)
  • start with --no-js if you just need content
  • codellama is best for technical analysis
  • mistral is faster than llama3
  • use custom output dirs for different projects
  • retry logic is built-in for transient failures (429, 5xx)

what's inside

protor/
├── cli.py          # command interface
├── scraper.py      # async html + js scraper
├── crawler.py      # bfs site crawler
├── analyzer.py     # ollama integration
├── models.py       # typed dataclasses
├── exceptions.py   # error hierarchy
├── config.py       # centralized constants
├── theme.py        # rich console theming
├── updater.py      # pypi update checker
└── utils.py        # helper stuff

customize it

want different analysis prompts? edit the _PROMPTS dict in protor/analyzer.py

need different timeouts or concurrency? check protor/config.py

changelog

see CHANGELOG.md for the full history.

legal stuff

mit license. do whatever you want with it.

just don't be weird and scrape sites that explicitly say no. respect robots.txt. don't ddos anyone. you know, basic internet etiquette.

tech stack

  • ollama (local llm inference)
  • beautifulsoup4 + lxml (html parsing)
  • aiohttp (async http)
  • rich (cli output)

built because web scraping shouldn't require a phd or a credit card

made with spite and caffeine

star it if it's useful idk

Project details


Download files

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

Source Distribution

protor-2.3.0.tar.gz (34.4 kB view details)

Uploaded Source

Built Distribution

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

protor-2.3.0-py3-none-any.whl (28.8 kB view details)

Uploaded Python 3

File details

Details for the file protor-2.3.0.tar.gz.

File metadata

  • Download URL: protor-2.3.0.tar.gz
  • Upload date:
  • Size: 34.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for protor-2.3.0.tar.gz
Algorithm Hash digest
SHA256 c9bc052ce2d3bbefa9dcf238eaa515778367c00085b9a2b875b4e4d871736b9a
MD5 bed1026561048cd9124fc2ed71a34777
BLAKE2b-256 e03ff6dd98ac66965b61ad151e24365b0e54525b81f842b775350221db8fe565

See more details on using hashes here.

File details

Details for the file protor-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: protor-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for protor-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c3a9597c8aa5127522baaa3fa8265d2304cf4db37a6b2255c495294b0f22a9c4
MD5 c5f0d5a3e3ccb340f9d8422cb7498b0c
BLAKE2b-256 aefaf31b76169c4150a4eb5cad25167146fe45264962e538587770478fc83013

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page