Skip to content

Instantly share code, notes, and snippets.

View bennylope's full-sized avatar
🪲

Ben Lopatin bennylope

🪲
View GitHub Profile
@bennylope
bennylope / generic_csv_exporter_basic.py
Last active December 22, 2015 14:29
A simple way of avoiding duplication in CSV exports. This example takes advantage of Python's `attrgetter` function to get chained attributes using strings like "attr.subattr.subattr".
import csv
from operator import attrgetter
def generic_csv(csvfile, objects, fields):
writer = csv.writer(csvfile, quoting=csv.QUOTE_ALL)
row_headers = fields.keys()
writer.writerow(row_headers)
for obj in objects:
@bennylope
bennylope / simple_scraper.py
Created May 9, 2013 20:13
Super simple scraper that uses `requests` to fetch a single page and then uses BeautifulSoup to parse the meta description.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import requests
from bs4 import BeautifulSoup
url = "http://www.wellfireinteractive.com"
@bennylope
bennylope / wpversions.py
Created March 25, 2013 17:09
Queries a list of WordPress installations for the version as found in the <meta name='generator'> tag.
import csv
import requests
from bs4 import BeautifulSoup
def is_generator(tag):
return True if tag.attrs.get('name', '') == 'generator' else False
import re
import simplejson
from django.http import HttpResponse
from django.conf import settings
class JSONResponse(HttpResponse):
def __init__(self, request, data):
indent = 2 if settings.DEBUG else None
@bennylope
bennylope / README.md
Created February 27, 2013 19:21
Vagrant file setup (basic)

File structure

  • Vagrantfile - primary configuration
  • vagrantconfig.yaml - default configuration
  • vagrantconfig_local.yaml - local configuration, this file never gets checked into source control

Setup

The primary Vagrantfile is set up to use Ubuntu 12.04 LTS (Precise) and Puppet configuration has been commented out.

@bennylope
bennylope / commandments.md
Last active December 14, 2015 02:38
Commandments for Collaborative Programming: Coding and VCS workflow.
  1. Thou shalt make diffs meaningful
  2. Thou shalt meaningfully order merged commits
  3. Thou shalt not include superfluous merge commits
  4. Thou shalt make meaningful, well formatted commit messages
  5. Thou shalt only branch off of the canonical branch
  6. Thou shalt run tests before merging or issuing a pull request
  7. Thou shalt add tests for new code before merging or issuing a pull request
  8. Thou shalt not hard code settings, URL schemes, or app-domains
  9. Thou shalt follow a consistent project coding style
@bennylope
bennylope / list_filter.py
Created November 16, 2012 16:33
Simplified filtering without validation
class MyListView(ListView):
def get(self, request, *args, **kwargs):
self.object_list = self.get_queryset()
search_query = request.GET.get('search_query')
if search_query:
self.object_list = self.object_list.filter(name=search_query)
context = self.get_context_data(object_list=self.object_list)
return self.render_to_response(context)
### MODEL
# -*- coding: utf-8 -*-
"""
Models for the "flatpages" project
"""
import time
import socket
from django.db import models
require "yaml"
# Load up our vagrant config files -- vagrantconfig.yaml first
_config = YAML.load(File.open(File.join(File.dirname(__FILE__),
"vagrantconfig.yaml"), File::RDONLY).read)
# Local-specific/not-git-managed config -- vagrantconfig_local.yaml
begin
_config.merge!(YAML.load(File.open(File.join(File.dirname(__FILE__),
"vagrantconfig_local.yaml"), File::RDONLY).read))
if CONF.has_key?("mounts")
for folder in CONF['mounts']
config.vm.share_folder(folder['name'], folder['virtual'], folder['host'], :nfs => true)
end
end