{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "id": "MoW8_q7gUlIW" }, "outputs": [], "source": [ "# Register at: https://stackapps.com/apps/oauth/register\n", "# !curl ipecho.net/plain\n", "\n", "secret = \"your_secret_key\"\n", "key = \"your_api_key\"" ] }, { "cell_type": "code", "source": [ "# Which site to extract questions from\n", "\n", "site = \"medicalsciences\" # \"law\" or \"medicalsciences\" etc." ], "metadata": { "id": "ZCBvcPHXQDhP" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "R15jxqHE949f" }, "outputs": [], "source": [ "import requests\n", "from requests.adapters import HTTPAdapter, Retry\n", "from requests.exceptions import ConnectionError\n", "from tqdm.notebook import tqdm\n", "import json\n", "from time import sleep" ] }, { "cell_type": "markdown", "metadata": { "id": "GXc6vVHxetgV" }, "source": [ "# Get questions" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "7FWu3teNDblP" }, "outputs": [], "source": [ "url = \"https://api.stackexchange.com/2.3/questions/\"\n", "params = {\"client_secret\": secret,\n", " \"key\": key,\n", " \"site\": site,\n", " \"filter\": \"withbody\",\n", " \"order\":\"desc\",\n", " \"sort\":\"votes\",\n", " \"pagesize\":100\n", " }\n", "\n", "max_pages = 80 # 300 for law or 80 for medicalsciences\n", "\n", "retries = Retry(total=5,\n", " backoff_factor=0.1,\n", " status_forcelist=[500, 502, 503, 504, 429])\n", "\n", "adapter = HTTPAdapter(max_retries=retries)\n", "session = requests.Session()\n", "\n", "# Use the adapter for all requests to endpoints that start with this URL\n", "session.mount('https://api.stackexchange.com/', adapter)\n", "\n", "retrieved_data = []\n", "\n", "for page in tqdm(range(max_pages)):\n", " params[\"page\"] = page+1\n", " response = session.get(url, params=params)\n", "\n", " if response.status_code != 200:\n", " print(\"Error:\", response.status_code)\n", " break\n", " else:\n", " current_page = response.json()\n", " for item in current_page['items']:\n", " retrieved_data.append(item)\n", " if current_page[\"has_more\"] == False:\n", " print(\"No more pages\")\n", " break" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "Ge00fuGnFzn1", "outputId": "320ed184-9ae7-4240-bdef-d6217a488b5e" }, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "7829" ] }, "metadata": {}, "execution_count": 11 } ], "source": [ "len(retrieved_data)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "xZkjwdb_EP-q", "outputId": "4397a793-0992-4120-b5aa-6475425d4dc7" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "{\n", " \"tags\": [\n", " \"covid-19\",\n", " \"vaccination\",\n", " \"side-effects\"\n", " ],\n", " \"owner\": {\n", " \"account_id\": 27722897,\n", " \"reputation\": 3,\n", " \"user_id\": 26386,\n", " \"user_type\": \"unregistered\",\n", " \"profile_image\": \"https://www.gravatar.com/avatar/511c7e442e5fbe49cdcb16d96aa8cd19?s=256&d=identicon&r=PG\",\n", " \"display_name\": \"Unknown user\",\n", " \"link\": \"https://medicalsciences.stackexchange.com/users/26386/unknown-user\"\n", " },\n", " \"is_answered\": true,\n", " \"view_count\": 67,\n", " \"closed_date\": 1675778668,\n", " \"accepted_answer_id\": 31982,\n", " \"answer_count\": 1,\n", " \"score\": -5,\n", " \"last_activity_date\": 1685671894,\n", " \"creation_date\": 1675753683,\n", " \"question_id\": 31981,\n", " \"link\": \"https://medicalsciences.stackexchange.com/questions/31981/how-bad-are-covid-vaccines\",\n", " \"closed_reason\": \"Not suitable for this site\",\n", " \"title\": \"How bad are covid vaccines?\",\n", " \"body\": \"

For the past year I've been hearing about people claiming that those who took the covid jabs are dropping like flies. I even hear people claim that the covid vaccinations are depopulation tools and most people who get it are going to die within the next 10 years! As someone who (reluctantly) took the jabs in May 2021, this concerns me and I'm sure there are millions of people like me. If you go on bitchute there seems to be a lot of evidence in support of that notion and it worries me. I also hear about people on the internet saying that they or someone they know are having some nasty side effects. But today darkmatter2525 made a video saying that the whole "died suddenly" thing is just the frequency illusion and that claims saying that athletes are collapsing more than ever is just based on misleading data. Every time someone under 70 years old dies a lot of people are blaming the vaccine. But what's the truth? I know there's some truth to what these "anti-vaxxers" saying but just how bad is it and what exactly is going on? Should I be concerned for myself and my loved ones?

\\n\"\n", "}\n" ] } ], "source": [ "import json\n", "\n", "print(json.dumps(retrieved_data[-1], indent=4))" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "8xM9SKctZaB1" }, "outputs": [], "source": [ "# Save file - test\n", "with open(\"example.json\", \"w\") as output:\n", " json.dump(retrieved_data[:10], output, indent=4)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "KzfcTYt7XWgJ" }, "outputs": [], "source": [ "# Save the whole data\n", "import os\n", "\n", "# output_questions_file_name = \"law.stackexchange.json\"\n", "output_questions_file_name = \"medical.stackexchange.json\"\n", "directory = \"/content/drive/MyDrive/data/StackExchange/MedicalSciences\"\n", "full_output_path = os.path.join(directory, output_questions_file_name)\n", "\n", "with open(full_output_path, \"w+\") as output:\n", " json.dump(retrieved_data, output, indent=4)" ] }, { "cell_type": "markdown", "metadata": { "id": "SXrXjiiV7PVo" }, "source": [ "# Get answers" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "_K8jZu0F7RtY", "outputId": "b97611ce-7641-48fd-b04c-7ea0c8632e09" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Questions total: 7829\n", "Questions with answers: 4969\n" ] } ], "source": [ "import os\n", "\n", "# file_path = \"/content/drive/MyDrive/data/StackExchange/Law/\"\n", "# file_name = \"law.stackexchange.json\"\n", "\n", "file_path = \"/content/drive/MyDrive/data/StackExchange/MedicalSciences/\"\n", "file_name = \"medical.stackexchange.json\"\n", "\n", "data = json.load(open(os.path.join(file_path, file_name)))\n", "questions = [question for question in data if question[\"is_answered\"]]\n", "\n", "print(\"Questions total:\", len(data))\n", "print(\"Questions with answers:\", len(questions))" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 49, "referenced_widgets": [ "caef01b2ea1d490baca92066e9f7ae12", "7fccf71e710841c6aabcdad832b36c61", "9f9ac1d792f24afc8ee9a8bc38a1f7c8", "410b5fe10d0a45dfa5b24c5c9256ff86", "494f8244675041d4aaca3d83c7955365", "12fce8eb451f4e129a0dff5dffa84c2c", "bb22bbd047fc405db894526a3ca4d1b8", "9c1944fee7fb44d5b8b0e8eda7d31cac", "e068f8e3183844ec9db63f5bff304e62", "3400c1e7251e4d339a291f2cfa7b9c08", "e1ca24cc7b2f4355bc9a9b39eadb8baa" ] }, "id": "BpRZN4zwZ7KD", "outputId": "7be24266-229f-400e-e191-24ea0c191ce6" }, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ " 0%| | 0/100 [00:00= 0:\n", " answer = {}\n", " answer[\"answer_id\"] = answer_item[\"answer_id\"]\n", " answer[\"score\"] = answer_item[\"score\"]\n", " answer[\"body\"] = answer_item[\"body\"]\n", "\n", " question[\"answers\"].append(answer)\n", "\n", " questions_data.append(question)\n", " sleep(0.5)\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "zfQVzhOhhMPe" }, "outputs": [], "source": [ "print(len(questions_data))\n", "print(json.dumps(questions_data[-1], indent=2))" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "l1Pz83HF1NpA" }, "outputs": [], "source": [ "# Save the whole data\n", "\n", "# output_file_name = \"law.stackexchange-questions-answers.json\"\n", "output_file_name = \"medical.stackexchange-questions-answers.json\"\n", "\n", "full_output_path = os.path.join(file_path, output_file_name)\n", "\n", "with open(full_output_path, \"w+\") as output:\n", " json.dump(questions_data, output, indent=4)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "UIp1PBiRCUQT", "outputId": "128de532-01cb-4630-bbad-f9199aad2623" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "medical.stackexchange.json medical.stackexchange-questions-answers.json\n" ] } ], "source": [ "!ls $file_path" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "id": "Ky2qBJnfaO1Y" }, "outputs": [], "source": [ "import os\n", "import json\n", "\n", "# output_file_name = \"law.stackexchange-questions-answers.json\"\n", "output_file_name = \"medical.stackexchange-questions-answers.json\"\n", "\n", "full_output_path = os.path.join(file_path, output_file_name)\n", "\n", "with open(full_output_path, \"r\") as output:\n", " questions_answers = json.load(output)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "Sbo2JcJCfrFp", "outputId": "f4d26220-2c7a-409d-bc7c-95d2830789b7" }, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "4969" ] }, "metadata": {}, "execution_count": 48 } ], "source": [ "len(questions_answers)" ] }, { "cell_type": "code", "source": [ "print(json.dumps(questions_answers[0], indent=4))" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "LJabX_yzjg7X", "outputId": "518244ca-3a5b-4afb-e5c8-c2a598f8c2e4" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "{\n", " \"question_id\": 52,\n", " \"tags\": [\n", " \"eye\",\n", " \"computers\",\n", " \"lifestyle\"\n", " ],\n", " \"score\": 112,\n", " \"license\": \"CC BY-SA 3.0\",\n", " \"title\": \"How can I protect my eyesight when using computers?\",\n", " \"body\": \"

My job requires long periods of computer screen use. I have good eyesight (20/15) and don't wear glasses, but I definitely notice my eyes feeling fatigued at the end of the day. Sometimes when I'm short on sleep, I have trouble focusing or see slightly blurred vision.

\\n\\n

I want to protect my eyesight as much as possible. What are the best practices for doing so if you spend a lot of time staring at screens?

\\n\",\n", " \"link\": \"https://medicalsciences.stackexchange.com/questions/52/how-can-i-protect-my-eyesight-when-using-computers\",\n", " \"answers\": [\n", " {\n", " \"answer_id\": 85,\n", " \"score\": 79,\n", " \"body\": \"

20-20-20 Rule

\\n

Every 20 minutes of looking at the screen, look at something 20 feet away for 20 seconds. Also, try to blink a lot.

\\n

Adjusting settings

\\n

Using a larger font to read helps to reduce eye strain. Adjusting your brightness helps, usually brighter screens are better in brighter rooms, dimmer screens are better in dark rooms.

\\n

Also, try to make your computer screen lower than your eyes; more of your eye is covered by your eyelid when you look down, so there will be more lubrication and you will subconsciously blink more.

\\n

Eating

\\n

Eat foods with vitamin A, which helps with the health of your eyes. See this question for more.

\\n
\\n

The 20-20-20 Rule: Preventing Digital Eye Strain
\\nComputer vision syndrome: a review of ocular causes and potential treatments
\\nAssessing Computer Vision Syndrome Risk for Pilots
\\nEyestrain

\\n\"\n", " },\n", " {\n", " \"answer_id\": 468,\n", " \"score\": 25,\n", " \"body\": \"

There are some options you have to reduce eye strain.

\\n\\n\\n\\n

http://www.allaboutvision.com/cvs/irritated.htm

\\n\"\n", " },\n", " {\n", " \"answer_id\": 1104,\n", " \"score\": 22,\n", " \"body\": \"

The primary risk is what is called Computer Vision Syndrome (ref, ref, ref).

\\n\\n

The American Optometric Association (referenced above) recommends the following changes in viewing habits to alleviate symptoms:

\\n\\n
\\n

Some important factors in preventing or reducing the symptoms of CVS\\n have to do with the computer and how it is used. This includes\\n lighting conditions, chair comfort, location of reference materials,\\n position of the monitor, and the use of rest breaks.

\\n \\n \\n \\n

Regular eye examinations and proper viewing habits can help to prevent\\n or reduce the development of the symptoms associated with Computer\\n Vision Syndrome.

\\n
\\n\\n

Also, from WebMD:

\\n\\n
\\n \\n
\\n\\n

Gunnar glasses: Studies have shown some short term relief but generally no evidence has yet surfaced to support benefits of these glasses for long term health.

\\n\"\n", " },\n", " {\n", " \"answer_id\": 907,\n", " \"score\": 13,\n", " \"body\": \"

You can also use f.lux, it is a software that adjusts automatically and according to your location the brightness and contrast of your monitor. It lowers UV light during day, and lowers IR light during night.

\\n\"\n", " },\n", " {\n", " \"answer_id\": 235,\n", " \"score\": 6,\n", " \"body\": \"

The health of your eyesight when using computer it really depends what kind of screen you're using and many other factors (DNA, diet, etc.), but in general, modern monitors (such as LCD, LED-backlit, white-LED, OLED) does nothing to the health of your eyes, unless you're still using CRT monitor. The bigger issue is rather neck and back if you don't site properly.

\\n\\n

Remember, if you feel your eyes are not comfortable, you may adjust the brightness and contrast of your screen.

\\n\\n

If you're using computer for too long, it's completely normal that your eyes would be tired and it really depends on the person (professionals can spent 8-12 everyday for years and their eyesight is perfect, for other 1h is enough).

\\n\\n

In this case, you simply need a rest. It's usually advice to do short breaks and take a fresh air. You may also consider to train your eye muscles as a number of ophthalmologists believe that an exercise programme based on something called the Bates Method may keep eyes in better shape.

\\n\\n

See: Can you really train your eyes to see better? where we can read:

\\n\\n
\\n

Some of the principles of the Bates Method are already accepted by mainstream eye care.

\\n
\\n\\n
\\n\\n

More information about older monitors:

\\n\\n

CRT

\\n\\n

If you're using CRT most people experience mild discomfort unless the refresh rate is set to 72 Hz or higher. A rate of 100 Hz is comfortable at almost any size. It's usually advice to have a screen protector. However CRT are long lost technologies and this doesn't apply anymore to LCD monitors.

\\n\"\n", " },\n", " {\n", " \"answer_id\": 11235,\n", " \"score\": 6,\n", " \"body\": \"

The Vision Council, which represents the manufacturers and suppliers of the optical industry, suggests the following tips to prevent and lessen digital eye strain:

\\n\\n\\n\\n

Also check the following image as a guidance:

\\n\\n

\\\"Computer

\\n\\n

Source: Digiteyezed - The daily impack of digital screens on the eye health of Americans

\\n\"\n", " }\n", " ]\n", "}\n" ] } ] } ], "metadata": { "colab": { "machine_shape": "hm", "provenance": [] }, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "name": "python" }, "widgets": { "application/vnd.jupyter.widget-state+json": { "caef01b2ea1d490baca92066e9f7ae12": { "model_module": "@jupyter-widgets/controls", "model_name": "HBoxModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": [ "IPY_MODEL_7fccf71e710841c6aabcdad832b36c61", "IPY_MODEL_9f9ac1d792f24afc8ee9a8bc38a1f7c8", "IPY_MODEL_410b5fe10d0a45dfa5b24c5c9256ff86" ], "layout": "IPY_MODEL_494f8244675041d4aaca3d83c7955365" } }, "7fccf71e710841c6aabcdad832b36c61": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_12fce8eb451f4e129a0dff5dffa84c2c", "placeholder": "​", "style": "IPY_MODEL_bb22bbd047fc405db894526a3ca4d1b8", "value": "100%" } }, "9f9ac1d792f24afc8ee9a8bc38a1f7c8": { "model_module": "@jupyter-widgets/controls", "model_name": "FloatProgressModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_9c1944fee7fb44d5b8b0e8eda7d31cac", "max": 100, "min": 0, "orientation": "horizontal", "style": "IPY_MODEL_e068f8e3183844ec9db63f5bff304e62", "value": 100 } }, "410b5fe10d0a45dfa5b24c5c9256ff86": { "model_module": "@jupyter-widgets/controls", "model_name": "HTMLModel", "model_module_version": "1.5.0", "state": { "_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3400c1e7251e4d339a291f2cfa7b9c08", "placeholder": "​", "style": "IPY_MODEL_e1ca24cc7b2f4355bc9a9b39eadb8baa", "value": " 100/100 [00:53<00:00, 1.91it/s]" } }, "494f8244675041d4aaca3d83c7955365": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "12fce8eb451f4e129a0dff5dffa84c2c": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "bb22bbd047fc405db894526a3ca4d1b8": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } }, "9c1944fee7fb44d5b8b0e8eda7d31cac": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e068f8e3183844ec9db63f5bff304e62": { "model_module": "@jupyter-widgets/controls", "model_name": "ProgressStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": "" } }, "3400c1e7251e4d339a291f2cfa7b9c08": { "model_module": "@jupyter-widgets/base", "model_name": "LayoutModel", "model_module_version": "1.2.0", "state": { "_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null } }, "e1ca24cc7b2f4355bc9a9b39eadb8baa": { "model_module": "@jupyter-widgets/controls", "model_name": "DescriptionStyleModel", "model_module_version": "1.5.0", "state": { "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": "" } } } } }, "nbformat": 4, "nbformat_minor": 0 }