Skip to content

Instantly share code, notes, and snippets.

@jmendozaore
jmendozaore / gist:384e59a0f2c841baf94b5f42ecbb5b44
Created August 25, 2017 21:09 — forked from econchick/gist:4666413
Python implementation of Dijkstra's Algorithm
class Graph:
def __init__(self):
self.nodes = set()
self.edges = defaultdict(list)
self.distances = {}
def add_node(self, value):
self.nodes.add(value)
def add_edge(self, from_node, to_node, distance):
@jmendozaore
jmendozaore / README.md
Created February 28, 2018 22:46 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

OP: @leonardofed founder @ plainflow.


Enter file contents here#http://blog.impiyush.me/2015/03/data-analysis-using-twitter-api-and.html
#http://stackoverflow.com/questions/27555343/python-ms-access-database-table-creation-from-pandas-dataframe-using-sqlalchemy
import tweepy
import pandas as pd
# only goes back one week
access_key = "xxx"
access_key_secret ="xxx"
consumer_key ="xxY"
@jmendozaore
jmendozaore / tweet-crawler.py
Created June 15, 2021 14:41
get all tweets between two dates from a specified twitter user
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import tweepy
import datetime
import xlsxwriter
import sys
# credentials from https://apps.twitter.com/
consumerKey = "CONSUMER_KEY"