Skip to content

Commit

Permalink
Enviroment Vars Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ballomud committed May 7, 2015
1 parent 56f2841 commit fe3a5db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scraper.py
Expand Up @@ -27,6 +27,7 @@

#%%

import os
import itertools as it
import json
import scraperwiki
Expand All @@ -37,8 +38,8 @@
## Consts
JOGADORES_URL = 'http://cartolafc.globo.com/mercado/filtrar.json?page='
LOGIN_URL = 'https://loginfree.globo.com/login/438'
LOGIN_EMAIL = MORPH_LOGIN_EMAIL
LOGIN_SENHA = MORPH_LOGIN_SENHA
LOGIN_EMAIL = os.environ['MORPH_LOGIN_EMAIL']
LOGIN_SENHA = os.environ['MORPH_LOGIN_SENHA']

#%%

Expand Down

0 comments on commit fe3a5db

Please sign in to comment.