{ "metadata": { "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": 3 }, "orig_nbformat": 2 }, "nbformat": 4, "nbformat_minor": 2, "cells": [ { "source": [ "### Try out the Vortexa SDK" ], "cell_type": "markdown", "metadata": {} }, { "source": [ "First, let's import our requirements" ], "cell_type": "markdown", "metadata": {} }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from vortexasdk import OnshoreInventoriesSearch" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "df = OnshoreInventoriesSearch().search(crude_confidence=['confirmed']).to_df()\n", "df.head(10)\n", "\n", "lst = OnshoreInventoriesSearch().search(storage_types=['refinery']).to_list()\n", "lst" ] }, { "source": [ "That's it! You've successfully loaded data using the Vortexa SDK and should see a list of results. Check out https://vortechsa.github.io/python-sdk/ for more examples" ], "cell_type": "markdown", "metadata": {} } ] }