Skip to content

Commit 79850d8

Browse files
oschwaldclaude
andcommitted
Use 'GeoIP'/'GeoLite' branding in documentation and prose
MaxMind no longer ships the legacy products, so refer to the products as 'GeoIP' and 'GeoLite' rather than 'GeoIP2'/'GeoLite2' in prose. Technical identifiers (packages, class names, filenames, edition IDs, hostnames, URLs) are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent c15bd1c commit 79850d8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ All response models in `models.py` inherit from `_Serializable` which provides:
8787

8888
**Component Models:**
8989
- `ScoreIPAddress` - Simple IP risk info for Score
90-
- `IPAddress` extends `geoip2.models.Insights` - Full GeoIP2 data plus minFraud risk
90+
- `IPAddress` extends `geoip2.models.Insights` - Full GeoIP data plus minFraud risk
9191
- `CreditCard`, `Device`, `Email`, `EmailDomain`, `Phone` - Transaction component data
9292
- `BillingAddress`, `ShippingAddress` - Address information
9393
- `Disposition` - Custom rules disposition
@@ -148,7 +148,7 @@ minFraud models extend GeoIP2 models:
148148
- `IPAddress` extends `geoip2.models.Insights` - Adds `risk` and `risk_reasons`
149149
- `GeoIP2Location` extends `geoip2.records.Location` - Adds `local_time`
150150

151-
This allows minFraud responses to include full GeoIP2 data (city, country, ISP, etc.) alongside fraud data.
151+
This allows minFraud responses to include full GeoIP data (city, country, ISP, etc.) alongside fraud data.
152152

153153
## Testing Conventions
154154

src/minfraud/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
107107

108108

109109
class IPAddress(geoip2.models.Insights):
110-
"""Model for minFraud and GeoIP2 data about the IP address.
110+
"""Model for minFraud and GeoIP data about the IP address.
111111
112112
This class inherits from :py:class:`geoip2.models.Insights`. In addition
113113
to the attributes provided by that class, it provides the ``risk`` and

0 commit comments

Comments
 (0)