Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danimydev/wolfy
Wolfram Alpha API fully covered wrapper built with TypeScript.
https://github.com/danimydev/wolfy
api-wrapper wolfram-alpha
Last synced: 2 days ago
JSON representation
Wolfram Alpha API fully covered wrapper built with TypeScript.
- Host: GitHub
- URL: https://github.com/danimydev/wolfy
- Owner: danimydev
- License: mpl-2.0
- Created: 2023-02-10T21:55:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-26T02:36:26.000Z (8 months ago)
- Last Synced: 2024-03-27T00:40:03.614Z (8 months ago)
- Topics: api-wrapper, wolfram-alpha
- Language: TypeScript
- Homepage:
- Size: 150 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wolfy
Wolfram Alpha API fully covered wrapper built with TypeScript.
## Installation
Wolfy is published via [jsr](https://jsr.io/@danimydev/wolfy).
### Deno
```bash
deno add @danimydev/wolfy
```### Others
```bash
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](https://developer.wolframalpha.com/portal/myapps) and store it securely.Create your instance.
```typescript
import { SimpleApi } from "wolfy";
const wolfy = new SimpleApi({
appId: "",
});
```##### Simple API
```typescript
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](https://choosealicense.com/licenses/mpl-2.0/)