atomic-lib

Status: pre-alpha

Rust library for using Atomic Data.

Docs

The atomic CLI and atomic-server applications both use this atomic-lib library.

Usage

```sh

Add it to your project

cargo add atomic_lib ```

```rs use atomic_lib;

fn main() { // Let's parse this AD3 string let string = String::from("[\":test\",\"https://atomicdata.dev/properties/shortname\",\"Test\"]"); // Start with initializing our store let mut store = atomiclib::store::Store::init(); // Run parse... store.parsead3(&string).unwrap(); // Get our resource... let myresource = store.get(&":test".into()).unwrap(); // Get our value by filtering on our property... let myvalue = myresource.get("https://atomicdata.dev/properties/shortname").unwrap(); println!("My value: {}", myvalue); assert!(my_value == "Test") } ```