- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
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
# Instalando e importando yahooquery | |
from yahooquery import Ticker | |
# Período máximo | |
petr = Ticker("PETR4.SA") | |
petr.history(period='max') | |
# Datas específicas | |
petr.history(start='2005-05-01', end='2013-12-31') |
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
#!/usr/bin/env python | |
from datetime import datetime | |
from json import loads | |
from time import gmtime, mktime, strptime | |
# LevelDict é um wrapper usando dicionário para LevelDB | |
# https://github.com/maurobaraldi/leveldict | |
from leveldict import LevelJsonDict | |
from requests import get |
As mensagens dos commits devem servir para três importantes coisas:
- Para acelerar o processo de revisão.
- Para ajudar a escrever uma boa nota de lançamento.
- Para ajudar os futuros mantenedores (que pode ser você), ou ajudar a descobrir porque uma mudança foi feita no código ou porque uma funcionalidade foi adicionada.
Escreva sua mensagem de commit desta forma: