Books

26.06.2026 - Jay M. Patel - Reading time ~4 Minutes

The STR Metrics Field Guide: Occupancy, ADR, RevPAR, Cap Rates, and Everything Hosts and Investors Argue About on the Internet

Status: In Progress

The STR Metrics Field Guide is a practical handbook for short-term rental hosts, property managers, and real estate investors who want to make better decisions using data rather than anecdotes, social media advice, or generic market reports.

Most STR operators track dozens of metrics but struggle to determine which numbers actually matter. Likewise, many investors evaluate properties using revenue projections without understanding the assumptions, risks, and tradeoffs behind those figures.

This book focuses on the metrics that drive performance, profitability, and investment returns in short-term rentals. Rather than teaching hosting tactics or interior design, it explains how to interpret data, benchmark against competitors, identify opportunities, and evaluate properties using a structured analytical framework.

Topics covered include:

  • Occupancy Rate, ADR, and RevPAR
  • Understanding Airbnb performance dashboards
  • Review intelligence and competitive review analysis
  • Pricing analytics and revenue optimization
  • Cost metrics and profitability analysis
  • Airbnb vs. Mid-Term vs. Long-Term Rental strategies
  • Cap Rate, Cash-on-Cash Return, DSCR, and Break-Even Occupancy
  • Market selection and comp-set construction
  • Amenity analysis and guest demand signals
  • How to underwrite and evaluate STR investments

The book draws upon real-world analysis of short-term rental markets, public listing data, review datasets, and operational metrics used by hosts, property managers, and investors.

Who should read this book?

  • Existing Airbnb and VRBO hosts
  • Property managers
  • STR investors
  • Real estate agents working with STR buyers
  • Anyone evaluating whether a property should operate as an STR, MTR, or long-term rental

Planned publication: Q2/2026

Sample chapters and companion resources will be announced just before the book release.

Getting Structured Data from the Internet: Running Web Crawlers/Scrapers on a Big Data Production Scale

ISBN-10: 1484265750
ISBN-13: 978-1484265758
Paperback: Nov 2020

Apress | Amazon

About the Book

  • Shows you how to process web crawls from Common Crawl, one of the largest publicly available web crawl datasets (petabyte scale) indexing over 25 billion web pages ever month.
  • Takes you from developing a simple Python-based web scraper on your personal computer to a distributed crawler with multiple nodes running on the cloud.
  • Teaches you to process raw data using NLP techniques and boilerplate removal to extract useful insights that can power businesses with vertical/meta search engines, lead generation and Internet marketing, monitoring of competitors, brands, and prices, and more.

Utilize web scraping at scale to quickly get unlimited amounts of free data available on the web into a structured format. This book teaches you to use Python scripts to crawl through websites at scale and scrape data from HTML and JavaScript-enabled pages and convert it into structured data formats such as CSV, Excel, JSON, or load it into a SQL database of your choice. This book goes beyond the basics of web scraping and covers advanced topics such as natural language processing (NLP) and text analytics to extract names of people, places, email addresses, contact details, etc., from a page at production scale using distributed big data techniques on an Amazon Web Services (AWS)-based cloud infrastructure. It book covers developing a robust data processing and ingestion pipeline on the Common Crawl corpus, containing petabytes of data publicly available and a web crawl data set available on AWS’s registry of open data. Getting Structured Data from the Internet also includes a step-by-step tutorial on deploying your own crawlers using a production web scraping framework (such as Scrapy) and dealing with real-world issues (such as breaking Captcha, proxy IP rotation, and more). Code used in the book is provided to help you understand the concepts in practice and write your own web crawler to power your business ideas.

Table of contents

  1. Introduction to web scraping: Why is web scraping essential and who uses web scraping?

    • Getting data from Reddit APIs
    • Getting stock market data from Alphavantage

  2. Web scraping in python using Beautiful Soup library

    • Tags and structure of HTML documents
    • Cascading style sheets (CSS)
    • Building first scraper with Beautiful Soup
    • Scraping a HTML table into pandas dataframe
    • Scraping XML files from FDA.gov
    • XPATH and xlml
    • Intro to Javasctript and using Selenium for web scraping
  3. Introduction to Cloud Computing and Amazon Web Services (AWS)

  4. Natural Language Processing (NLP) and Text Analytics

  5. Relational Databases and SQL Language

  6. Introduction to Common Crawl Datasets

  7. Web Crawl Processing on Big Data Scale

  8. Advanced Web Crawlers

    • Scrapy
    • Solving captchas
    • Proxy IP and user-agent rotation