From 3cbaa998179319b62582d65320c9f69f609f09ad Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Sat, 8 Mar 2014 21:40:09 +0100 Subject: [PATCH] Added an basic Scrapy setup --- Scrapy/__init__.py | 0 Scrapy/__init__.pyc | Bin 0 -> 143 bytes Scrapy/items.py | 11 +++++++++++ Scrapy/pipelines.py | 8 ++++++++ Scrapy/settings.py | 15 +++++++++++++++ Scrapy/settings.pyc | Bin 0 -> 251 bytes Scrapy/spiders/__init__.py | 4 ++++ Scrapy/spiders/__init__.pyc | Bin 0 -> 151 bytes scrapy.cfg | 11 +++++++++++ 9 files changed, 49 insertions(+) create mode 100644 Scrapy/__init__.py create mode 100644 Scrapy/__init__.pyc create mode 100644 Scrapy/items.py create mode 100644 Scrapy/pipelines.py create mode 100644 Scrapy/settings.py create mode 100644 Scrapy/settings.pyc create mode 100644 Scrapy/spiders/__init__.py create mode 100644 Scrapy/spiders/__init__.pyc create mode 100644 scrapy.cfg diff --git a/Scrapy/__init__.py b/Scrapy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Scrapy/__init__.pyc b/Scrapy/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f1096fd5de3c353baeeef45805c9e5c90c6fb80c GIT binary patch literal 143 zcmZSn%*%DEQaU)90SXv_v;z^JG&>$#_wg|jPxQklpinAU(^`rX(jTzLyeDh}B z9G>~=b;r*U56QPE&IL9M5rPmONl8SBPix^DL>PqICc4@}tW{a03G`9&u(;;c1oA}4 z0=(v@jmBz!3cTgc)t|4!#&M6qZttA8F4qI}J@>-@uQuMu4=}}*#VVETCglAt3+AY> qOl78l9V#8Gj5RS>6M=!$I>{oK-J literal 0 HcmV?d00001 diff --git a/Scrapy/spiders/__init__.py b/Scrapy/spiders/__init__.py new file mode 100644 index 0000000..ebd689a --- /dev/null +++ b/Scrapy/spiders/__init__.py @@ -0,0 +1,4 @@ +# This package will contain the spiders of your Scrapy project +# +# Please refer to the documentation for information on how to create and manage +# your spiders. diff --git a/Scrapy/spiders/__init__.pyc b/Scrapy/spiders/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c2fd93959faa39176f3f6aca2ae6dd4d68149d9b GIT binary patch literal 151 zcmZSn%*z#8Cmo#300oRd+5w1*S%5?e14FO|NW@PANHCxg#STC*{fzwFRQ;@!)a>lk zB7K+qbP{rLFIyv&mLc)fzk W5)PmtHo5sJr8%i~AghXjm;nG#4I(uF literal 0 HcmV?d00001 diff --git a/scrapy.cfg b/scrapy.cfg new file mode 100644 index 0000000..6f432fb --- /dev/null +++ b/scrapy.cfg @@ -0,0 +1,11 @@ +# Automatically created by: scrapy startproject +# +# For more information about the [deploy] section see: +# http://doc.scrapy.org/en/latest/topics/scrapyd.html + +[settings] +default = Scrapy.settings + +[deploy] +#url = http://localhost:6800/ +project = Fourmi