Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots?cursor=cj0xJnA9MjAxOS0wNC0yMiswNCUzQTI1JTNBMzkuNDMyNzE3JTJCMDAlM0EwMA%3D%3D&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA0LTIyKzA0JTNBMjYlM0EwNS4zMzU4NzglMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNC0yMiswNCUzQTM1JTNBNTYuNTMzMTk4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-04-22T04:35:56.533198Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~TriArdhiansa/1.embed",
            "fid": "TriArdhiansa:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/TriArdhiansa:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/TriArdhiansa:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/TriArdhiansa/1/8_W3NG5FZOMV1RZRBDWX73BVDM1AEGKM.png",
                "list-thumb": "https://api.plotly.com/v2/files/TriArdhiansa:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/TriArdhiansa:1",
                "plots": "https://api.plotly.com/v2/plots/TriArdhiansa:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=TriArdhiansa"
            },
            "owner": "TriArdhiansa",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~TriArdhiansa/1/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:58:40.562Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~TriArdhiansa/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "width": 3
                        },
                        "mode": "markers",
                        "name": "<br>",
                        "rsrc": "TriArdhiansa:0:bd7d46",
                        "type": "histogram",
                        "xsrc": "TriArdhiansa:0:bd7d46",
                        "marker": {
                            "line": {
                                "color": "rgb(0, 0, 0)",
                                "width": 2
                            },
                            "color": "rgb(0, 59, 128)"
                        },
                        "points": "outliers",
                        "textsrc": "TriArdhiansa:0:bd7d46",
                        "bandwidth": 0,
                        "boxpoints": false,
                        "fillcolor": "rgba(0, 69, 148, 0.5)",
                        "hoverinfo": "x+y",
                        "cumulative": {
                            "enabled": false
                        },
                        "orientation": "v",
                        "hovertemplate": "",
                        "autocolorscale": true
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18,
                        "family": "Times New Roman"
                    },
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                618.7483870967742
                            ],
                            "autorange": true
                        },
                        "angularaxis": {}
                    },
                    "title": {
                        "font": {
                            "size": 21
                        },
                        "text": "<b>Histogram Nilai TEFL Mahasiswa FTI 2018</b>"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            339.5,
                            619.5
                        ],
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "size": 19
                            },
                            "text": "Nilai TEFL"
                        },
                        "tickfont": {
                            "size": 20
                        },
                        "autorange": true,
                        "automargin": false,
                        "showspikes": true,
                        "rangeslider": {
                            "range": [
                                339.5,
                                619.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        }
                    },
                    "yaxis": {
                        "range": [
                            0,
                            29.473684210526315
                        ],
                        "title": {
                            "text": "Frekuensi"
                        },
                        "autorange": true
                    },
                    "barmode": "group",
                    "autosize": true,
                    "colorway": [
                        "#4c78a8",
                        "#f58518",
                        "#e45756",
                        "#72b7b2",
                        "#54a24b",
                        "#eeca3b",
                        "#b279a2",
                        "#ff9da6",
                        "#9d755d",
                        "#bab0ac"
                    ],
                    "template": {
                        "themeRef": "PLOTLY_CLASSIC"
                    },
                    "hoverlabel": {
                        "font": {
                            "size": 17
                        }
                    },
                    "showlegend": false,
                    "plot_bgcolor": "rgb(207, 207, 209)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~TriArdhiansa",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 04:35:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "TriArdhiansa",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:35:21.595976Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~chickenburrito1/4.embed",
            "fid": "chickenburrito1:4",
            "filename": "choropleth_california",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/chickenburrito1:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/chickenburrito1:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/chickenburrito1:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/chickenburrito1:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/chickenburrito1:4",
                "plots": "https://api.plotly.com/v2/plots/chickenburrito1:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=chickenburrito1"
            },
            "owner": "chickenburrito1",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Map of Anonymous Revisions for Cal Poly Wiki in US",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~chickenburrito1/4/map-of-anonymous-revisions-for-cal-poly-wiki-in-us/",
            "world_readable": true,
            "date_modified": "2019-04-28T19:42:20.709Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~chickenburrito1/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9bdf96c1-139f-400e-8ddc-f9404b4d336b",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "< 7.00",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:5:e9b934",
                        "ysrc": "chickenburrito1:5:b6efa8",
                        "fillcolor": "#030512",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "734d39dd-efe9-4780-ad2b-974346c09a64",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "7.00 - 109.00",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:5:43dd1e",
                        "ysrc": "chickenburrito1:5:605f21",
                        "fillcolor": "#1d1d3b",
                        "hoverinfo": "none"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "ba0d92b8-bcd6-4e77-885d-b7f9f8685144",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "109.00 - 211.00",
                        "type": "scatter",
                        "fillcolor": "#323268",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "995290f3-6edd-4244-bf49-e671ac0c6766",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "211.00 - 313.00",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:5:834a19",
                        "ysrc": "chickenburrito1:5:b9e062",
                        "fillcolor": "#3d4b94",
                        "hoverinfo": "none"
                    },
                    {
                        "x": [],
                        "y": [],
                        "uid": "7e619895-6896-4e5c-bb68-f8b7fb1c0465",
                        "fill": "toself",
                        "line": {
                            "color": "rgb(255,255,255)",
                            "width": 0.5
                        },
                        "mode": "lines",
                        "name": "> 313.00",
                        "type": "scatter",
                        "fillcolor": "#3e6ab0",
                        "hoverinfo": "none"
                    },
                    {
                        "uid": "a7da5151-6bc3-4996-a63a-0d3b526e0bf6",
                        "mode": "markers",
                        "name": "US Counties",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:5:e9ee02",
                        "ysrc": "chickenburrito1:5:7ca4ab",
                        "marker": {
                            "color": "white",
                            "opacity": 0
                        },
                        "textsrc": "chickenburrito1:5:1bcf7f",
                        "selected": {
                            "marker": {
                                "size": 3,
                                "color": "white",
                                "opacity": 1
                            }
                        },
                        "hoverinfo": "text",
                        "showlegend": false,
                        "unselected": {
                            "marker": {
                                "opacity": 0
                            }
                        },
                        "legendgroup": "centroids"
                    },
                    {
                        "uid": "2bdd2620-f8de-4e60-bdda-5ce907198315",
                        "line": {
                            "color": "rgb(240, 240, 240)",
                            "width": 1
                        },
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "chickenburrito1:5:7c8250",
                        "ysrc": "chickenburrito1:5:e0ca85",
                        "hoverinfo": "text",
                        "showlegend": false,
                        "legendgroup": "States"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Map of Anonymous Revisions for Cal Poly Wiki in US"
                    },
                    "width": 900,
                    "xaxis": {
                        "range": [
                            -125.0,
                            -55.0
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "range": [
                            23.0,
                            51.0
                        ],
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": false,
                        "fixedrange": true,
                        "showticklabels": false
                    },
                    "height": 450,
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "xanchor": "right",
                        "yanchor": "top",
                        "traceorder": "reversed"
                    },
                    "margin": {
                        "b": 20,
                        "l": 20,
                        "r": 20,
                        "t": 40
                    },
                    "dragmode": "select",
                    "hovermode": "closest",
                    "annotations": [
                        {
                            "x": 1,
                            "y": 1.05,
                            "text": "<b>Edits by County</b>",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "right",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgb(229,229,229)",
                    "paper_bgcolor": "rgb(229,229,229)"
                }
            },
            "height": 450,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~chickenburrito1",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-02-13 05:26:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "chickenburrito1",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:29:56.429440Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~lokesh899/1.embed",
            "fid": "lokesh899:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/lokesh899:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/lokesh899:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/lokesh899/1/8_JOO398JP80VC19NZCDJDMIGZ7PSR00.png",
                "list-thumb": "https://api.plotly.com/v2/files/lokesh899:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/lokesh899:1",
                "plots": "https://api.plotly.com/v2/plots/lokesh899:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=lokesh899"
            },
            "owner": "lokesh899",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~lokesh899/1/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:30:19.563Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~lokesh899/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "lokesh899:0:182b4e",
                        "ysrc": "lokesh899:0:ee1823"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            50
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -3.94888888888889,
                            75.02888888888889
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~lokesh899",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/21.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 04:29:32",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "lokesh899",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:28:32.599133Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~joemanto/12.embed",
            "fid": "joemanto:12",
            "filename": "Plot 12",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/joemanto:12/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/joemanto:12/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/joemanto/12/8_6MTNHM3MZ22LTGQBI9B9SON8YDGKSI.png",
                "list-thumb": "https://api.plotly.com/v2/files/joemanto:12/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/joemanto:12",
                "plots": "https://api.plotly.com/v2/plots/joemanto:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=joemanto"
            },
            "owner": "joemanto",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~joemanto/12/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:28:32.612Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~joemanto/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "name": "test1",
                        "type": "bar",
                        "xsrc": "joemanto:11:c43612",
                        "ysrc": "joemanto:11:2e2729",
                        "orientation": "v"
                    },
                    {
                        "name": "test2",
                        "type": "bar",
                        "xsrc": "joemanto:11:0410d3",
                        "ysrc": "joemanto:11:6e1e7e",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            70.5,
                            178.5
                        ],
                        "title": {
                            "text": "Systolic"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            183.1578947368421
                        ],
                        "title": {
                            "text": "Biastolic"
                        },
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~joemanto",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/56.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-14.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-15 23:12:10",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "joemanto",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:28:31.377719Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~timothynguye/9.embed",
            "fid": "timothynguye:9",
            "filename": "world_temp_map",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/timothynguye:9/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/timothynguye:9/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/timothynguye/9/8_U04FQ3CCZ8U2UBSM56XMEF62MZJYF7.png",
                "list-thumb": "https://api.plotly.com/v2/files/timothynguye:9/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/timothynguye:9",
                "plots": "https://api.plotly.com/v2/plots/timothynguye:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=timothynguye"
            },
            "owner": "timothynguye",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Average land temperature in countries",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~timothynguye/9/average-land-temperature-in-countries/",
            "world_readable": true,
            "date_modified": "2019-04-25T01:47:49.476Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~timothynguye/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "type": "choropleth",
                        "zsrc": "timothynguye:10:e065f0",
                        "marker": {
                            "line": {
                                "color": "rgb(0,0,0)",
                                "width": 1
                            }
                        },
                        "textsrc": "timothynguye:10:d6ba5d",
                        "colorbar": {
                            "title": "# Average<br>Temperature,<br>°C"
                        },
                        "locationmode": "country names",
                        "locationssrc": "timothynguye:10:b59752"
                    }
                ],
                "layout": {
                    "geo": {
                        "showframe": false,
                        "showocean": true,
                        "oceancolor": "rgb(0,255,255)"
                    },
                    "title": "Average land temperature in countries"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~timothynguye",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 03:59:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "timothynguye",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:27:41.971695Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AimonAllouache/56.embed",
            "fid": "AimonAllouache:56",
            "filename": "potd-lr-4-19-22",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/AimonAllouache:56/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AimonAllouache/56/2_LZQIXYQKK7G18H85SHVRVBR814HXOM.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AimonAllouache/56/8_KOO60L8D1OG51B5W4VLF6ENJSOWB3S.png",
                "list-thumb": "https://api.plotly.com/v2/files/AimonAllouache:56/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AimonAllouache:56",
                "plots": "https://api.plotly.com/v2/plots/AimonAllouache:56",
                "parent": "https://api.plotly.com/v2/folders/home?user=AimonAllouache"
            },
            "owner": "AimonAllouache",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 256,
            "web_url": "https://chart-studio.plotly.com/~AimonAllouache/56/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:27:42.363Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AimonAllouache/56/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "1e70cc28-c609-4b4c-a05e-c31236b215f6",
                        "type": "heatmap",
                        "zsrc": "AimonAllouache:57:",
                        "opacity": 0.75,
                        "hoverinfo": "none",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#00083e"
                            ],
                            [
                                0.5,
                                "#ededee"
                            ],
                            [
                                1,
                                "#ffffff"
                            ]
                        ]
                    }
                ],
                "layout": {
                    "xaxis": {
                        "dtick": 1,
                        "tick0": -0.5,
                        "ticks": "",
                        "zeroline": false,
                        "gridwidth": 2,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "dtick": 1,
                        "tick0": 0.5,
                        "ticks": "",
                        "zeroline": false,
                        "autorange": "reversed",
                        "gridwidth": 2,
                        "showticklabels": false
                    },
                    "height": 170,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "annotations": [
                        {
                            "x": -0.45,
                            "y": 0,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "<b>Player</b>",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 0,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "<b>Probability</b>",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 1,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "Jose Altuve",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 1,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.301",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 2,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "Kole Calhoun",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 2,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.284",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 3,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "Mitch Moreland",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 3,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.277",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 170,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AimonAllouache",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-01-15 02:54:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AimonAllouache",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:27:33.302673Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pallavi_s/16.embed",
            "fid": "pallavi_s:16",
            "filename": "plot from API (5)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pallavi_s:16/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/pallavi_s/16/2_WCD2G3ABHSW91VXU3HUEB9LTJIDG7E.png",
                "block-thumb": "https://api.plotly.com/v2/files/pallavi_s:16/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pallavi_s:16/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pallavi_s:16",
                "plots": "https://api.plotly.com/v2/plots/pallavi_s:16",
                "parent": "https://api.plotly.com/v2/folders/home?user=pallavi_s"
            },
            "owner": "pallavi_s",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~pallavi_s/16/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:27:33.843Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pallavi_s/16/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f1a3747a-64b6-11e9-910f-d20049411001",
                        "type": "mesh3d",
                        "xsrc": "pallavi_s:17:8f2b4e",
                        "ysrc": "pallavi_s:17:de0314",
                        "zsrc": "pallavi_s:17:ccaec3",
                        "color": "#FFB6C1",
                        "opacity": 1
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pallavi_s",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-03 07:09:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pallavi_s",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:27:21.377798Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~AimonAllouache/54.embed",
            "fid": "AimonAllouache:54",
            "filename": "potd-rf-4-19-22",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/AimonAllouache:54/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/AimonAllouache/54/2_85XYUDW4S7I43USGQD4OLWA3J0HAON.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/AimonAllouache/54/8_KWS1QSIR1C1A24JIX5P2LRK6UCYFIQ.png",
                "list-thumb": "https://api.plotly.com/v2/files/AimonAllouache:54/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/AimonAllouache:54",
                "plots": "https://api.plotly.com/v2/plots/AimonAllouache:54",
                "parent": "https://api.plotly.com/v2/folders/home?user=AimonAllouache"
            },
            "owner": "AimonAllouache",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 253,
            "web_url": "https://chart-studio.plotly.com/~AimonAllouache/54/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:27:21.831Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~AimonAllouache/54/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "9b811dad-8d69-45cb-be0f-0cc5ec11b9d6",
                        "type": "heatmap",
                        "zsrc": "AimonAllouache:55:",
                        "opacity": 0.75,
                        "hoverinfo": "none",
                        "showscale": false,
                        "colorscale": [
                            [
                                0,
                                "#00083e"
                            ],
                            [
                                0.5,
                                "#ededee"
                            ],
                            [
                                1,
                                "#ffffff"
                            ]
                        ]
                    }
                ],
                "layout": {
                    "xaxis": {
                        "dtick": 1,
                        "tick0": -0.5,
                        "ticks": "",
                        "zeroline": false,
                        "gridwidth": 2,
                        "showticklabels": false
                    },
                    "yaxis": {
                        "dtick": 1,
                        "tick0": 0.5,
                        "ticks": "",
                        "zeroline": false,
                        "autorange": "reversed",
                        "gridwidth": 2,
                        "showticklabels": false
                    },
                    "height": 170,
                    "margin": {
                        "b": 0,
                        "l": 0,
                        "r": 0,
                        "t": 0
                    },
                    "annotations": [
                        {
                            "x": -0.45,
                            "y": 0,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "<b>Player</b>",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 0,
                            "font": {
                                "color": "#ffffff"
                            },
                            "text": "<b>Probability</b>",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 1,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "Mitch Moreland",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 1,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.275",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 2,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "Jose Altuve",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 2,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.272",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": -0.45,
                            "y": 3,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "Mike Trout",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        },
                        {
                            "x": 0.55,
                            "y": 3,
                            "font": {
                                "color": "#000000"
                            },
                            "text": "0.27",
                            "xref": "x",
                            "yref": "y",
                            "align": "left",
                            "xanchor": "left",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 170,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~AimonAllouache",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/88.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-01-15 02:54:36",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "AimonAllouache",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:26:30.791848Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~timothynguye/7.embed",
            "fid": "timothynguye:7",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/timothynguye:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/timothynguye:7/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/timothynguye:7/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/timothynguye:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/timothynguye:7",
                "plots": "https://api.plotly.com/v2/plots/timothynguye:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=timothynguye"
            },
            "owner": "timothynguye",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Average land temperature on the continents",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~timothynguye/7/average-land-temperature-on-the-continents/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:26:31.187Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~timothynguye/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "56ce1fe0-95f5-48fe-b574-ea0c801f7f4c",
                        "line": {
                            "color": "rgb(0, 255, 255)"
                        },
                        "mode": "lines",
                        "name": "Russia",
                        "type": "scatter",
                        "xsrc": "timothynguye:8:a770cf",
                        "ysrc": "timothynguye:8:f348e2"
                    },
                    {
                        "uid": "5dcba6ff-f69d-483f-8703-8fff08e81657",
                        "line": {
                            "color": "rgb(255, 0, 255)"
                        },
                        "mode": "lines",
                        "name": "United States",
                        "type": "scatter",
                        "xsrc": "timothynguye:8:a770cf",
                        "ysrc": "timothynguye:8:14d94d"
                    },
                    {
                        "uid": "8ef41119-fdd0-4474-8f45-fde431cc113e",
                        "line": {
                            "color": "rgb(0, 0, 0)"
                        },
                        "mode": "lines",
                        "name": "Niger",
                        "type": "scatter",
                        "xsrc": "timothynguye:8:a770cf",
                        "ysrc": "timothynguye:8:83677f"
                    },
                    {
                        "uid": "bd8e8e57-dec6-414a-887f-fee3bb5edc4a",
                        "line": {
                            "color": "rgb(255, 0, 0)"
                        },
                        "mode": "lines",
                        "name": "Greenland",
                        "type": "scatter",
                        "xsrc": "timothynguye:8:a770cf",
                        "ysrc": "timothynguye:8:3cdfa1"
                    },
                    {
                        "uid": "3841ae33-2de1-4051-82df-dc93d0c9a807",
                        "line": {
                            "color": "rgb(0, 255, 0)"
                        },
                        "mode": "lines",
                        "name": "Australia",
                        "type": "scatter",
                        "xsrc": "timothynguye:8:a770cf",
                        "ysrc": "timothynguye:8:3e6399"
                    },
                    {
                        "uid": "bc7194ba-b395-4de4-8de1-d5cdb18d4dae",
                        "line": {
                            "color": "rgb(0, 0, 255)"
                        },
                        "mode": "lines",
                        "name": "Bolivia",
                        "type": "scatter",
                        "xsrc": "timothynguye:8:a770cf",
                        "ysrc": "timothynguye:8:47c317"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Average land temperature on the continents"
                    },
                    "xaxis": {
                        "title": {
                            "text": "year"
                        }
                    },
                    "yaxis": {
                        "title": {
                            "text": "Average Temperature, °C"
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~timothynguye",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/43.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-04-22 03:59:01",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "timothynguye",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-04-22T04:26:05.335878Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~pallavi_s/14.embed",
            "fid": "pallavi_s:14",
            "filename": "plot from API (4)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/pallavi_s:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/pallavi_s:14/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/pallavi_s:14/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/pallavi_s:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/pallavi_s:14",
                "plots": "https://api.plotly.com/v2/plots/pallavi_s:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=pallavi_s"
            },
            "owner": "pallavi_s",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~pallavi_s/14/",
            "world_readable": true,
            "date_modified": "2019-04-22T04:26:05.808Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~pallavi_s/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "bd6805a6-64b6-11e9-9a10-d20049411001",
                        "type": "mesh3d",
                        "xsrc": "pallavi_s:15:e62358",
                        "ysrc": "pallavi_s:15:6a780a",
                        "zsrc": "pallavi_s:15:cfb45c",
                        "color": "#FFB6C1",
                        "opacity": 1,
                        "alphahull": 1
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~pallavi_s",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-08-03 07:09:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "pallavi_s",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}