neptyne.data
Query the Google BigQuery database.
sql: the query to run
Example:
=data.big_query("SELECT * FROM bigquery-public-data.covid19_open_data.covid19_open_data
LIMIT 10")
Import a CSV file from the web.
Example: =data.csv("https://data.cityofnewyork.us/resource/erm2-nwe9.csv")
Get the latitude and longitude of an address.
address: the address to geocode
Example: =data.geocode("1600 Amphitheatre Parkway, Mountain View, CA")
Import a GeoJSON file from the web.
Example: =data.geojson("https://data.cityofnewyork.us/resource/erm2-nwe9.geojson")
Import a JSON file from the web.
Example: =data.json("https://data.cityofnewyork.us/resource/erm2-nwe9.json")
Import an RSS feed from the web.
Example: =data.rss("https://www.reddit.com/r/Python/.rss")
Lookup stock information for one or more stocks.
symbols: the stock symbols to lookup
Example: =data.stock_lookup("AAPL")
Search the web and return the top results.
query: the search query
Example: =data.web_search("python pandas")
Import a table from the web.
url: the url of the table idx: the index of the table on the page. Defaults to the largest table.
Example: =data.web_table("https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)")