Skip to content

Instantly share code, notes, and snippets.

View ondrae's full-sized avatar

Andrew Hyder ondrae

View GitHub Profile
@ondrae
ondrae / export_repo_issues_to_csv.py
Last active July 24, 2018 04:43 — 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.
"""
import csv
import requests
@ondrae
ondrae / feeds.py
Last active August 29, 2015 13:56 — forked from ksamuel/feeds.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4
"""
Tools to extract feed links, test if they are valid and parse them
with feedparser, returning content or a proper error.
"""