added example

This commit is contained in:
Mark Baas 2015-11-19 22:25:22 -04:00
parent 32d3d31ae3
commit 51d7e82433
4 changed files with 12 additions and 1 deletions

View File

@ -41,6 +41,7 @@ before_install:
# Python language support # Python language support
- brew install python - brew install python
- pip install --upgrade autopep8 - pip install --upgrade autopep8
- pip install --upgrade isort
# SQL language support # SQL language support
- pip install --upgrade sqlparse - pip install --upgrade sqlparse
# Java, C, C++, C#, Objective-C, D, Pawn, Vala # Java, C, C++, C#, Objective-C, D, Pawn, Vala

View File

@ -33,6 +33,7 @@
indent_with_tabs: false indent_with_tabs: false
python: python:
indent_size: 2 indent_size: 2
sort_imports: true
#max_line_length: 79 #max_line_length: 79
#ignore: #ignore:
# - "E24" # - "E24"

View File

@ -0,0 +1,5 @@
import os
import sys
from pprint import pprint
from scrapy import FormRequest, Request

View File

@ -0,0 +1,4 @@
from scrapy import Request, FormRequest
import sys
import os
from pprint import pprint