/wolfy

Wolfram Alpha API fully covered wrapper built with TypeScript.

Primary LanguageTypeScriptMozilla Public License 2.0MPL-2.0

Wolfy

Wolfram Alpha API fully covered wrapper built with TypeScript.

Installation

Wolfy is published via jsr.

Deno

deno add @danimydev/wolfy

Others

npx jsr add @danimydev/wolfy
yarn dlx jsr add @danimydev/wolfy
pnpm dlx jsr add @danimydev/wolfy
bunx jsr add @danimydev/wolfy

Usage

Request your SECRET_APPID here and store it securely.

Create your instance.

import { SimpleApi } from "wolfy";
const wolfy = new SimpleApi({
  appId: "<SECRET_API_ID>",
});
Simple API
await wolfy.query({
  input: "How much does the Earth weigh?",
});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

Mozilla Public License Version 2.0