Skip to content

Instantly share code, notes, and snippets.

View a-y-khan's full-sized avatar

Ayla Khan a-y-khan

  • Salt Lake City, UT, USA
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@a-y-khan
a-y-khan / df_basics_2.ipynb
Last active April 13, 2018 07:08
Pandas DataFrame axis basics (Part 2)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@a-y-khan
a-y-khan / df_basics_1.ipynb
Created April 2, 2018 06:57
Pandas DataFrame axis basics (Part 1)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@a-y-khan
a-y-khan / query_github_graphql.py
Last active February 21, 2018 06:02
TeamCity Python build step to query GitHub GraphQL endpoint
import json
import requests
import subprocess
def query_github_graphql(url: str, api_token: str, owner: str, service: str, pull_request: int):
headers = {'Authorization': 'bearer {}'.format(api_token), 'Content-Type': 'application/json'}
payload = {'query': '{repository(owner:\"%s\", name: \"%s\"){pullRequest(number: %d){headRefName,baseRefName}}}' % (owner, service, pull_request)}
response = requests.post(url=url, json=payload, headers=headers)
print(response.text)
@a-y-khan
a-y-khan / type_aliases.ipynb
Created February 16, 2018 06:07
Python type alias example
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.