Skip to content

Instantly share code, notes, and snippets.

@tedsteinmann
tedsteinmann / LICENSE
Created August 28, 2018 02:17
This license applies to all public gists https://gist.github.com/martinbuberl
MIT License
Copyright (c) 2018 Ted Steinmann
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
/*
Google Apps Script to automatically archive or delete mail with a certain label after a certain time
Copyright @tedsteinmann https://gist.github.com/tedsteinmann/0ee248856de6e75498470db7c98fab09
Original author fwed (contact@fwed.fr)
https://medium.com/@fw3d/auto-archive-emails-in-gmail-after-2-days-1ebf0e076b1c
Use at your own risk. The author is not responsible for erroneous deletion of email.
@tedsteinmann
tedsteinmann / github_export_repo_issues_to_csv.py
Last active August 28, 2018 02:57 — 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
import datetime