> For the complete documentation index, see [llms.txt](https://epic-oreo.gitbook.io/cookie-utils/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://epic-oreo.gitbook.io/cookie-utils/usage/utilitys.md).

# Utility's

One thing you can do is load and save json data. This does not save that much time but is just easy.

```python
from cookieutils import utils

# this will load the data.json file
data = utils.load_json('data.json')

# then we can edit it and save it
data['name'] = 'Cookiecutter'

utils.save_json('data.json', data)

```

You can also check if the program is running in a replit instance by doing the following.

```python
from cookieutils import utils

replit = utils.is_replit()
```

is\_replit will return a bool that will be true if it is running in replit and false if it is not.
