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 time import sleep | |
from os import linesep as delimiter | |
from twisted.internet import stdio | |
from twisted.protocols import basic | |
from twisted.internet import reactor | |
class WakeUpCall(basic.LineReceiver): | |
def connectionMade(self): |
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 scrapy.spider import BaseSpider | |
from scrapy.selector import HtmlCSSSelector | |
class DmozSpiderCSS(BaseSpider): | |
name = "pyquery" | |
allowed_domains = ["dmoz.org"] | |
start_urls = [ | |
"http://www.dmoz.org/Computers/Programming/Languages/Python/Books/", | |
"http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/" | |
] |
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
{ | |
"nome":"FRANCISCO EVERALDO OLIVEIRA SILVA", | |
"ocupacao":"ATOR E DIRETOR DE ESPETÁCULOS PÚBLICOS", | |
"nascimento_data":"01-MAY-65", | |
"nascimento_municipio":"ITAPIPOCA", | |
"instrucao":"LÊ E ESCREVE", | |
"numero":"2222", | |
"nome_urna":"TIRIRICA", | |
"ano":"2012", | |
"uf":"SP", |
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
$zen-width: 960px !default; | |
$zen-content-position: middle !default; //possible values are first, middle, last | |
$zen-first-sidebar-width: 200px !default; | |
$zen-second-sidebar-width: 200px !default; | |
$zen-navigation-width: 100% !default; | |
$zen-navigation-height: 2.3em !default; | |
@mixin zen-layout($direction: "ltr") { | |
$first: "left"; |
NewerOlder