Metadata-Version: 2.4
Name: colorgram_rust
Version: 0.2.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Information
	using this package requires rust and cargo to be installed, as this is a rust binding made with maturin for use in python projects

# Usage
```python
	from rjson import loads, dumps
	text = '["sup", "lol", "haha"]'
	data = loads(text)
	print(data)
	dumped = dumps(data)
	print(dumped)
```


