Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
curl --show-error --output vultr-geofeed.csv --location "https://geofeed.constant.com/"
curl --show-error --output starlink-geofeed.csv --location "https://geoip.starlinkisp.net/feed.csv"
curl --show-error --output google-geofeed.csv --location "https://www.gstatic.com/ipranges/cloud_geofeed"
curl --show-error --output charter-geofeed.csv --location "https://s3.amazonaws.com/charter-geo-feed/Charter-Geofeed.csv"
#curl --show-error --output geolocatemuch-geofeed.csv --location "https://geolocatemuch.com/geofeeds/validated-all.csv"

- name: Setup Python
Expand Down Expand Up @@ -83,10 +84,13 @@ jobs:
python ./scripts/parse-geofeed.py $file ./test-data/IPv6.json ipv6
done

- name: Deduplicate and Process
- name: Deduplicate and Process IPv4
run: |
echo -e "\n## IPv4 Processing Result\n" >> results.md
python ./scripts/process.py ./test-data/IPv4.json >> results.md

- name: Deduplicate and Process IPv6
run: |
echo -e "\n## IPv6 Processing Result\n" >> results.md
python ./scripts/process.py ./test-data/IPv6.json >> results.md

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ The data is built utilizing self-published data by various providers. No 3rd par
- [Google Cloud Geofeed](https://www.gstatic.com/ipranges/cloud_geofeed)
- IP address types: `IPv4`, `IPv6`
- Data available: `Country Code`, `Subdivision Code`, `City Name`
- [Charter Communications Geofeed](https://s3.amazonaws.com/charter-geo-feed/Charter-Geofeed.csv)
- IP address types: `IPv4`, `IPv6`
- Data available: `Country Code`, `Subdivision Code`, `City Name`, `Postal Code`

## Data Processing

Expand Down