{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "bd1031ca",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "MNEPosixPath('/imaging/opendata/mne/MNE-brainstorm-data/bst_resting')"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# this will download some MNE-Python datasets - please be patient\n",
    "# the first two are the most important ones ('sample' and 'somato')\n",
    "# For the full list of datasets in MNE-Python see https://mne.tools/1.4/overview/datasets_index.html\n",
    "import mne\n",
    "mne.datasets.sample.data_path(download=True)\n",
    "mne.datasets.somato.data_path(download=True)\n",
    "mne.datasets.opm.data_path(download=True)\n",
    "mne.datasets.kiloword.data_path(download=True)\n",
    "\n",
    "# this one is quite large and only required for one example\n",
    "mne.datasets.brainstorm.bst_resting.data_path(download=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "b1d3b063",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "c76a5800",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.10.10"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
