# -*- coding: utf-8 -*-
"""
vars.py -- Tools to implement interactions with VARS
Copyright 2020  Monterey Bay Aquarium Research Institute
Distributed under MIT license. See license.txt for more information.

"""

import requests


def pull_all_concepts(url='http://m3.shore.mbari.org/kb/v1/concept'):
    r = requests.get(url)
    return r.json()