TODO: write readme
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
{ | |
"meta":{ | |
"theme":"elegant" | |
}, | |
"basics":{ | |
"name":"Michael Hill", | |
"label":"Python Developer", | |
"image":"https://i.imgur.com/W6jGvtE.png", | |
"summary":"Self-taught workaholic whose strongest areas are API and microservice-related development, as well as webscraping. I learn what I need to when I need to. Highly-driven & low-maintenance. Only interested in backend development, looking to move away from full-stack.", | |
"email":"michaelhill24@comcast.net", |
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
//////////////////////////////////////////// | |
; | |
(function(packageFunction) { | |
var p = window.AmazonUIPageJS || window.P; | |
var attribute = p._namespace || p.attributeErrors; | |
var namespacedP = attribute ? attribute("FWCIMAssets", "") : p; | |
if (namespacedP.guardFatal) { | |
namespacedP.guardFatal(packageFunction)(namespacedP, window); | |
} else { |
ESPN's hidden API endpoints
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
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
import requests | |
import json | |
class JiraAPI(): | |
def __init__(self, root, username, password): | |
#Initialize Data Variables | |
self.root = root | |
self.username = username | |
self.password = password | |
self.credentials = {'username': self.username, |