![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
instagram-scrape-account-stats
Advanced tools
A tool for scraping public data from Instagram, without needing to get permission from Instagram. It scrapes the following fields:
See lib/response.schema.json
for further details.
The CLI operates entirely over STDOUT, and will output the account stats as JSON.
$ instagram-scrape-account-stats -u slang800
{"description":null,"followers":21,"following":90,"isExplicit":false,"isPrivate":false,"isVerified":false,"name":"Sean Lang","userId":"465981344","username":"slang800","posts":2,"website":"http://slang.cx"}
The following example is in CoffeeScript.
{getAccountStats} = require 'instagram-scrape-account-stats'
getAccountStats(username: 'slang800').then((account) ->
console.log "#{account.username} has #{account.followers} followers."
)
The following example is the same as the last one, but in JavaScript.
var getAccountStats = require('instagram-scrape-account-stats').getAccountStats;
getAccountStats({username: 'slang800'}).then(function(account) {
console.log(account.username + " has " + account.followers + " followers.");
});
Instagram doesn't provide an open, structured, and machine readable API, so, we're forced to scrape their user-facing site.
FAQs
scrape public Instagram data w/out API access
We found that instagram-scrape-account-stats demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.