Skip to content

Instantly share code, notes, and snippets.

View KevinLolochum's full-sized avatar

Kevin Lempi KevinLolochum

  • Apply Digital
  • Toronto
View GitHub Profile
// This example code is designed to quickly deploy an example contract using Remix.
pragma solidity ^0.6.7;
import "https://github.com/smartcontractkit/chainlink/blob/master/evm-contracts/src/v0.6/interfaces/AggregatorV3Interface.sol";
contract PriceConsumerV3 {
AggregatorV3Interface internal priceFeed;
import os
import glob
import csv
import pathlib
from xlsxwriter import Workbook
import win32com.client as win32
@KevinLolochum
KevinLolochum / twitter crawler.txt
Created October 27, 2020 03:55 — forked from vickyqian/twitter crawler.txt
A Python script to download all the tweets of a hashtag into a csv
import tweepy
import csv
import pandas as pd
####input your credentials here
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)