#Download
Tags: 2 posts
April 24, 2020
•
2 min read
Download Data from a github folder using httr package in R
Import Libraries and Request to the master branch of git The following chunk of code, import required libraries and request the master branch of the required git repository.
library(httr) library(tidyverse) req <- …
December 22, 2018
•
1 min read
Connect to azure storage (blob) using python
The following code snippets are on creating a connection to Azure Blob Storage using Python with account access key.
For more details on Azure Blob Storage and generating the access key, visit : …