Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oovm/wolframimportx
Wolfram import extension
https://github.com/oovm/wolframimportx
format import wolfram
Last synced: about 1 month ago
JSON representation
Wolfram import extension
- Host: GitHub
- URL: https://github.com/oovm/wolframimportx
- Owner: oovm
- License: mpl-2.0
- Created: 2022-03-27T08:03:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-28T07:35:54.000Z (over 2 years ago)
- Last Synced: 2023-03-06T20:53:45.178Z (almost 2 years ago)
- Topics: format, import, wolfram
- Language: Rust
- Homepage:
- Size: 988 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: License.md
Awesome Lists containing this project
README
ImportX
=======*Extend the ability of Wolfram Language to import external resources.*
## Installation
```wolfram
release = "https://github.com/oovm/WolframImportX/releases/download/v0.1.0/ImportX-0.1.0.paclet";
PacletInstall[release, ForceVersionInstall -> True];
```- Supports `Mac-x64`
- [Add binary release to support more platforms.](https://github.com/oovm/WolframImportX/tree/binary)## Support Formats
| Format | Extension |
|--------|-------------|
| JSON5 | json5, json |
| TOML | toml |
| YAML | yaml, yml |
| SVGđ§ | svg |### JSON5
```wolfram
<< ImportX`
json5 = PacletObject["ImportX"]["AssetLocation", "example_json5"];
Import[json5, {"JSON5", "Text"}]
Import[json5, "JSON5"]
```### YAML
```wolfram
<< ImportX`
yaml = PacletObject["ImportX"]["AssetLocation", "example_yaml"];
Import[yaml, {"YAML", "Text"}]
Import[yaml, "YAML"]
```### TOML
```wolfram
<< ImportX`
toml = PacletObject["ImportX"]["AssetLocation", "example_toml"];
Import[toml, {"TOML", "Text"}]
Import[toml, "TOML"]
```