Let's say you want to host domains first.com and second.com.
Create folders for their files:
| #!/usr/bin/env python | |
| import json | |
| import optparse | |
| import sys | |
| from datetime import datetime | |
| try: | |
| import requests | |
| except ImportError: |
| #!/bin/sh | |
| # Usage: `git url` or `git url <commitish>` | |
| # | |
| # * copies the commit's github url to your clipboard | |
| # * prints out the log message | |
| # * opens the bugzilla page if it found a bug number | |
| # | |
| # Set up the github url with `git config github.url <url>`. | |
| # Only for the Mac. |
| # To get the number of support forum contributors: | |
| from datetime import date | |
| from django.db.models import F, Count | |
| from kitsune.questions.models import Answer | |
| start_date =date(2013,1,1) | |
| end_date = date(2014,1,1) |