🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

phetscraper

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

phetscraper

Scraper and exporter of PHET simulations

Source
npmnpm
Version
2.2.2
Version published
Weekly downloads
5
-44.44%
Maintainers
1
Weekly downloads
 
Created
Source
Get it on Google Play

PhET Simulations scraper

This scraper creates offline versions in ZIM format of PhET science simulations in the ZIM format.

Requirements

It requires Node.js v10 or higher.

Quick Start

npm i && npm start

The above will eventually output a ZIM file to dist/

Build Status ![Docker Build Status](Docker Image Version (latest semver)) latest ZIM releases CodeFactor

Command line arguments

Available on GET and EXPORT steps only:

    --includeLanguages lang_1 [lang_2] [lang_3] ...
    --excludeLanguages lang_1 [lang_2] [lang_3] ...

Available on EXPORT step only:

    # skip ZIM files for individual languages
    --mulOnly

Example: npm run get -- --includeLanguages en ru fr

Config

Another way to configure behaviour is through environment variables. Sample .env file (with default values):

# request per second, affects GET step only
PHET_RPS=8
# async workers on TRANSFORM step (keep it equal to number of CPU cores)
PHET_WORKERS=10
# number of retries on GET step (delay grow with exponential backoff)
PHET_RETRIES=5
# display verbose errors
PHET_VERBOSE_ERRORS=false

About

This project achieves multiple things:

  • Download PhET content
  • Generate an Index for said content
  • Generate a ZIM file containing content and index

Things this project does not yet do, but should:

  • Generate Android APK

Usage

The functionality is split into 5 npm scripts:

  • npm run setup - deletes state from previous runs
  • npm run get - downloads PhET simulations in specified languages
  • npm run transform - prepare the content and media files
  • npm run export - generates ZIM file(s)
  • npm start - runs all of the above in sequence

The steps get, transform and export have their own output directories:

  • get outputs HTML and PNG files to state/get
  • transform outputs intermediate files to state/transform
  • export outputs HTML and PNG files to state/export AND a ZIM file(s) to dist/

FAQs

Package last updated on 18 Jun 2021

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