返回 Skill 列表
extension
分类: 开发与工程无需 API Key

fishfry

查找匹兹堡地区的四旬期鱼类油炸食品。按位置搜索,按特色筛选(自制饺子、轮椅可通行、酒精饮料、外卖),查看时间表,并获取场地详细信息。使用来自Code for Pittsburgh的Fish Fry Map的数据。

person作者: jakexiaohubgithub

Pittsburgh Fish Fry Finder

Find Lenten fish fries in the Pittsburgh area. Data sourced from Code for Pittsburgh's Fish Fry Map.

Usage

# Search near a location (zip code, neighborhood, or address)
<skill>/fishfry.py search "15213"
<skill>/fishfry.py search "Squirrel Hill"
<skill>/fishfry.py search "4400 Forbes Ave, Pittsburgh"

# Filter by features
<skill>/fishfry.py search "15217" --pierogies        # Homemade pierogies
<skill>/fishfry.py search "15217" --accessible       # Wheelchair accessible
<skill>/fishfry.py search "15217" --alcohol          # Serves alcohol
<skill>/fishfry.py search "15217" --takeout          # Has takeout

# Combine filters
<skill>/fishfry.py search "South Side" --pierogies --takeout

# List all fish fries
<skill>/fishfry.py list
<skill>/fishfry.py list --pierogies

# Get details for a specific venue
<skill>/fishfry.py details "St. Alphonsus"
<skill>/fishfry.py details "Our Lady of Joy"

# Check what's happening on a specific date
<skill>/fishfry.py schedule friday
<skill>/fishfry.py schedule 2026-03-06

# Update the local data cache
<skill>/fishfry.py update

Output

Results include:

  • Venue name and type (Church, Fire Hall, VFW, etc.)
  • Address and distance from search location
  • Hours of operation
  • Menu highlights
  • Features (pierogies, accessible, alcohol, takeout)
  • Contact info (phone, website)

Data Source

Data is maintained by volunteers at Code for Pittsburgh and published through the Western PA Regional Data Center.

The skill caches data locally and can be updated with fishfry.py update.

Seasonal Note

Fish fries run during Lent (typically late February through mid-April). Outside of Lent season, the data reflects the previous year's schedule. Check venue websites for current year confirmation.

Example Queries

"Find fish fries near me with homemade pierogies"

fishfry.py search "15232" --pierogies

"What fish fries are in the South Hills?"

fishfry.py search "South Hills"

"Tell me about the fish fry at St. Basil's"

fishfry.py details "St. Basil"

"Which places have takeout and are wheelchair accessible?"

fishfry.py list --takeout --accessible