-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.py
More file actions
executable file
·93 lines (73 loc) · 4.03 KB
/
settings.py
File metadata and controls
executable file
·93 lines (73 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# -*- coding: utf-8 -*-
# Scrapy settings for hkjc project
#
# For simplicity, this file contains only the most important settings by
# default. All the other settings are documented here:
#
# http://doc.scrapy.org/en/latest/topics/settings.html
#
BOT_NAME = 'hkjc'
SPIDER_MODULES = ['hkjc.spiders']
NEWSPIDER_MODULE = 'hkjc.spiders'
# ITEM_PIPELINES = {'scrapy.contrib.pipeline.images.ImagesPipeline': 1}
ITEM_PIPELINES = {
# "hkjc.pipelines.MyImagesPipeline":1,
"hkjc.pipelines.ByteStorePipeline":1,
"hkjc.pipelines.SQLAlchemyPipeline": 10
# 'scrapy.contrib.pipeline.images.ImagesPipeline': 1
# "hkjc.pipelines.NoInRaceImagePipeLine": 20,
}
"""
DATABASE is kwargs dictionary for sqlalchemy.engine.url.URL http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html
:param drivername: the name of the database backend.
This name will correspond to a module in sqlalchemy/databases
or a third party plug-in.
:param username: The user name.
:param password: database password.
:param host: The name of the host.
:param port: The port number.
:param database: The database name.
:param query: A dictionary of options to be passed to the
dialect and/or the DBAPI upon connect.
s
"""
DATABASE = {'drivername': 'postgres',
'host': 'localhost',
'port': '5432',
'username': 'vmac',
'password': '',
'database': 'hkraces2'}
#mysql testing
#DATABASE = {'drivername': 'sqlite', 'database': 'db.sqlite'}
# Crawl responsibly by identifying yourself (and your website) on the user-agent
USER_AGENT = "Googlebot/2.1 ( http://www.google.com/bot.html)"
#for rotating user agents write middleware!
# USER_AGENTS = [
# "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; AcooBrowser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
# "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)",
# "Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.5; AOLBuild 4337.35; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
# "Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)",
# "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 2.0.50727; Media Center PC 6.0)",
# "Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322)",
# "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.04506.30)",
# "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN) AppleWebKit/523.15 (KHTML, like Gecko, Safari/419.3) Arora/0.3 (Change: 287 c9dfb30)",
# "Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/527+ (KHTML, like Gecko, Safari/419.3) Arora/0.6",
# "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2pre) Gecko/20070215 K-Ninja/2.1.1",
# "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) Gecko/20080705 Firefox/3.0 Kapiko/3.0",
# "Mozilla/5.0 (X11; Linux i686; U;) Gecko/20070322 Kazehakase/0.4.5",
# "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6",
# "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
# "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1036.7 Safari/535.20",
# "Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; fr) Presto/2.9.168 Version/11.52",
# ]
IMAGES_STORE = '/Users/vmac/RACING/HKG/scrapers/dist/hkjc/images'
#npt filter dups default 'scrapy.dupefilter.RFPDupeFilter'
# DUPEFILTER_CLASS = 'scrapy.dupefilter.BaseDupeFilter'
# LOG_FILE =
# DUPEFILTER_DEBUG = True
# WEBSERVICE_PORT = 6090
WEBSERVICE_LOGFILE = '/Users/vmac/RACING1/HKG/scrapers/dist/hkjc/webservice.log'
# 0.25 ms
DOWNLOAD_DELAY = 1
COOKIES_ENABLED = False
LOG_FILE = '/Users/vmac/RACING1/HKG/scrapers/dist/hkjc/logs/scrapylog.log'