An open API service indexing awesome lists of open source software.

https://github.com/willscott/asbycountry

Pre-built lookup table of ASes registered by country
https://github.com/willscott/asbycountry

Last synced: 12 months ago
JSON representation

Pre-built lookup table of ASes registered by country

Awesome Lists containing this project

README

          

AS By Country
=============

This is a small module to parse the delegation stats from the regional
registries for which autonomous systems are registered in which countries.

To rebuild the database, remove the `asbycountry.json` table and run
`node rebuild.js`.

To use:
```javascript
var asbycountry = require("asbycountry");
asbycountry["US"].forEach(function (asn) {
...
});
```