Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

itunes-app-scraper-dmi

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itunes-app-scraper-dmi

A lightweight iTunes App Store scraper

  • 0.9.6
  • PyPI
  • Socket score

Maintainers
2

iTunes App Store Scraper

This defines a lightweight Python class that can be used to scrape app information from the iTunes App Store. It defines a couple of methods that can be used to get relevant app IDs given a set of parameters, and a couple of methods to then scrape data about these app IDs.

Much of this has been adapted from app-store-scraper, a nodeJS-based scraper that does similar things. But this scraper uses Python.

Getting started

The following scrapes app details about all apps similar to the first result for the 'fortnite' search query:

from itunes_app_scraper.scraper import AppStoreScraper

scraper = AppStoreScraper()
results = scraper.get_app_ids_for_query("fortnite")
similar = scraper.get_similar_app_ids_for_app(results[0])

app_details = scraper.get_multiple_app_details(similar)
print(list(app_details))

Documentation is not available separately yet, but the code is relatively simple and you can look in the scraper.py file to see what methods are available and what their parameters are.

Sources of Data:

QuerySourceURL base
AppAffiliates APIhttps://itunes.apple.com/lookup?
SearchOld Affiliates?https://search.itunes.apple.com/WebObjects/MZStore.woa/wa/search?
DeveloperAffiliates APIhttps://itunes.apple.com/lookup?
ListOld Affiliateshttp://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/ws/RSS/
SimilariTunes store scrape HTMLhttps://itunes.apple.com/us/app/app/
Full DetailsAffiliates APIhttps://itunes.apple.com/lookup?
RatingsiTunes store scrape HTMLhttps://itunes.apple.com/lookup?

License

This scraper was developed by the Digital Methods Initiative, and is distributed under the MIT license. See LICENSE for details.

FAQs


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc