Skip to content

Instantly share code, notes, and snippets.

View leogonzalez's full-sized avatar

Leonardo Gonzalez leogonzalez

  • Sao Paulo, Brazil
View GitHub Profile
@turicas
turicas / bovespa.py
Last active July 20, 2020 15:15
Get stock prices from BMF Bovespa API (not working anymore)
# coding: utf-8
# WARNING: as far as I checked, this script is not working anymore.
# B3 moved to use TradingView in their own website, but there's a way
# to download daily data at:
# <http://www.b3.com.br/pt_br/market-data-e-indices/servicos-de-dados/market-data/cotacoes/cotacoes/>.
# Copyright 2015 Álvaro Justen <https://github.com/turicas/rows/>
#
# This program is free software: you can redistribute it and/or modify
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active November 12, 2023 23:00
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>