I hereby claim:
- I am debrouwere on github.
- I am debrouwere (https://keybase.io/debrouwere) on keybase.
- I have a public key ASBkoTHjCxZfLes7DxvFDjr3qZIch9-cX1f3MWI0Ayp5fQo
To claim this, I am signing this object:
| <form action="/login" method="post"> | |
| <div> | |
| <label>Username:</label> | |
| <input type="text" name="username" /> | |
| </div> | |
| <div> | |
| <label>Password:</label> | |
| <input type="password" name="password" /> | |
| </div> | |
| <div> |
| import os | |
| import json | |
| from flask import Flask, request, redirect, jsonify | |
| from rauth import OAuth2Service | |
| GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' | |
| GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke' | |
| GOOGLE_TOKEN_URI = 'https://accounts.google.com/o/oauth2/token' | |
| GOOGLE_ANALYTICS_API_ENDPOINT = 'https://www.googleapis.com/analytics/v3/' |
| import os | |
| import tortilla | |
| import tweepy | |
| import facepy | |
| from apiclient import discovery | |
| import pandas as pd | |
| twitter_credentials = tweepy.AppAuthHandler( | |
| os.environ['TWITTER_CONSUMER_KEY'], | |
| os.environ['TWITTER_CONSUMER_SECRET'], |
| ExecStartPre=etcdctl ls /mydir \ | |
| | cut -d / -f 3 \ | |
| | xargs -I {} echo 'echo {}=$(etcdctl get /mydir/{})' \ | |
| | bash > mydir.env | |
| EnvironmentFile=/home/core/mydir.env |
I hereby claim:
To claim this, I am signing this object:
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| import pandas as pd | |
| import seaborn as sns | |
| from scipy.optimize import fmin | |
| from scipy.stats import * | |
| from scipy.stats.distributions import beta, binom | |
| from snakify import snakify |