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
- brew install python
- pip install --upgrade autopep8
- pip install --upgrade isort
# SQL language support
- pip install --upgrade sqlparse
# Java, C, C++, C#, Objective-C, D, Pawn, Vala

View File

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

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