This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(httr) | |
library(magrittr) | |
library(xml2) | |
library(rvest) | |
url_raw <- "http://dados.cvm.gov.br/dados/FI/DOC/INF_DIARIO/DADOS/" | |
output_file <- "fundos/api/informe_diario.csv" | |
csv_links <- httr::GET(url_raw) %>% | |
httr::content("text") %>% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.5.1 | |
MAINTAINER Katy Lavallee <[email protected]> | |
RUN mkdir -p /dockeripdb/ | |
ENTRYPOINT ["/usr/local/bin/python"] | |
WORKDIR /dockeripdb/ | |
ENV PYTHONPATH /dockeripdb/ | |
ENV DJANGO_SETTINGS_MODULE dockeripdb.settings |