This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pupa.scrape import Person, Scraper | |
import lxml.html | |
import re | |
import pdb | |
class IAPersonScraper(Scraper): | |
jurisdiction = 'ia' | |
def scrape(self, chamber=None): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"os" | |
"regexp" | |
"strconv" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function alphabet() { | |
let letter = | |
arguments.length > 0 ? | |
arguments[0] : | |
"a"; | |
let next = String.fromCharCode(letter.charCodeAt(0)+1); | |
return next == "z" ? | |
next : | |
letter + alphabet(next); |
NewerOlder