Skip to main content

Automated NMTC eligibility checker — geocode addresses and check Low-Income Community status using CDFI Fund and Census data

Project description

nmtc-mapper 🗺️

Automated NMTC eligibility checker for addresses and census tracts.

Pass a DataFrame of addresses and get back a boolean column for NMTC eligibility, distress level, poverty rate, AMI ratio, and more — using official CDFI Fund and Census Bureau data. No manual lookups required.


Why nmtc-mapper?

The CDFI Fund provides a manual web tool (CIMS) for checking NMTC eligibility one address at a time. nmtc-mapper automates this — pass 10,000 addresses and get results in seconds, using the same official data source.


Installation

pip install nmtc-mapper

Quickstart

from nmtcmapper import NMTCMapper

mapper = NMTCMapper()

# Single address (geocodes automatically)
result = mapper.check_address("1234 S Michigan Ave, Chicago, IL 60605")
result.summary()
print(result.nmtc_eligible)    # True
print(result.distress_level)   # "severe"
print(result.poverty_rate)     # 0.38

# Known census tract (no geocoding needed)
result = mapper.check_tract("17031840100")
print(result.nmtc_eligible)    # True

# Batch — enrich a DataFrame of addresses
import pandas as pd
df = pd.read_csv("projects.csv")   # must have 'address' column
df = mapper.enrich(df, address_col="address")
print(df["nmtc_eligible"].value_counts())
print(df["distress_level"].value_counts())

# If you already have census tract IDs
df = mapper.enrich(df, tract_col="tract_id")

# Summary stats
mapper.eligible_count(df)

Eligibility Rules (2016-2020 ACS — mandatory since Sept 1, 2024)

A census tract qualifies as a Low-Income Community (LIC) if it meets ANY of:

  • Poverty rate >= 20%
  • Median Family Income <= 80% of metro/state AMI
  • Median Family Income <= 85% of state AMI (high migration rural counties)

Distress levels:

  • deep — Poverty >= 40% OR AMI <= 50% OR unemployment >= 2x national rate
  • severe — Poverty >= 30% OR AMI <= 60% OR unemployment >= 1.5x national rate
  • lic — NMTC eligible (meets LIC criteria)
  • ineligible — Does not qualify

Data Sources


Output Columns

After running .enrich(), your DataFrame will have:

  • nmtc_eligible (bool)
  • distress_level (str: deep / severe / lic / ineligible)
  • poverty_rate (float)
  • ami_ratio (float)
  • unemployment_rate (float)
  • is_non_metro (bool)
  • severe_distress (bool)
  • deep_distress (bool)

Running Tests

PYTHONPATH=. pytest tests/ -v

24 tests across all modules.


Who This Is For

  • CDEs screening project locations for NMTC eligibility
  • CDFI analysts qualifying borrower locations at scale
  • Researchers analyzing geographic distribution of LIC tracts
  • Anyone replacing manual CIMS lookups with automated Python

License

MIT 2026 Jaypatel1511

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

nmtc_mapper-0.1.1.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

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

nmtc_mapper-0.1.1-py3-none-any.whl (15.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nmtc_mapper-0.1.1.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.12

File hashes

Hashes for nmtc_mapper-0.1.1.tar.gz
Algorithm Hash digest
SHA256 5e4bccda90f5d195c29df9bbf1671ce4db8de44e7449bbf54ca687f63491b3db
MD5 a1316715826a6361bb09fc6699e3e032
BLAKE2b-256 0a3d113262d6db22507b01cf1624e3f4b19eaa5bce7ffaf27f5663dffac6a811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nmtc_mapper-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.12

File hashes

Hashes for nmtc_mapper-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4c181c15d91efbfd2e50005f54f305ab6ec4a78275073f881341bdd6f1ae6b23
MD5 327e20f6b14609fef2cc2d997a3b7365
BLAKE2b-256 4dc00ebc2eb62a59f5c8d8f0dcc3165fcef6e1909c8d387db968c09275677570

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