@azureflow/wolfram_alpha_api

1.0.0 • Public • Published

Wolfram|Alpha API

This project is a simple wrapper around Wolfram|Alpha's API using a reverse engineered mobile signature.

See Wolfram|Alpha's API docs for more information.

Example

import {WolframAlphaAPI, QueryBuilder} from "@azureflow/wolfram_alpha_api";

const waApi = new WolframAlphaAPI();
const query = new QueryBuilder()
	.addParam("input", "x^2 + 5x + 6 = 0")
	.addParam("format", "plaintext");

const result = await waApi.getFull(query);
console.log(result);

See examples/example.js for a full demo.

Disclaimer

This project is in no way associated with Wolfram|Alpha or Wolfram Alpha LLC.

This project is also provided without any warranties. Please see LICENSE for more information.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @azureflow/wolfram_alpha_api

      Weekly Downloads

      0

      Version

      1.0.0

      License

      MIT

      Unpacked Size

      6.25 kB

      Total Files

      10

      Last publish

      Collaborators

      • azureflow