Skip to content

Instantly share code, notes, and snippets.

View pixelead0's full-sized avatar
👨‍💻
Programando.... ando...

AdanGQ pixelead0

👨‍💻
Programando.... ando...
View GitHub Profile
# -*- coding: utf-8 -*-
"""
Data models for the Deis API.
"""
from __future__ import unicode_literals
import base64
from datetime import datetime
import etcd
@pixelead0
pixelead0 / export_repo_issues_to_csv.py
Last active July 26, 2016 21:05 — forked from unbracketed/export_repo_issues_to_csv.py
Export Issues from Github repo to CSV (API v3)
"""
Exports Issues from a specified repository to a CSV file
Uses basic authentication (Github username + password) to retrieve Issues
from a repository that username has access to. Supports Github API v3.
reference: https://developer.github.com/v3/issues/
"""
import csv
import requests