├── .gitignore ├── LICENSE ├── README.md ├── comments.png ├── fbcrawl ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── items.cpython-37.pyc │ ├── pipelines.cpython-37.pyc │ └── settings.cpython-37.pyc ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── comments.cpython-37.pyc │ └── fbcrawl.cpython-37.pyc │ ├── comments.py │ ├── events.py │ ├── fbcrawl.py │ └── profiles.py ├── runner_facebook.sh ├── scrapy.cfg └── trump.png /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__/ 2 | 3 | .* 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/README.md -------------------------------------------------------------------------------- /comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/comments.png -------------------------------------------------------------------------------- /fbcrawl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fbcrawl/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/__pycache__/items.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/__pycache__/items.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/__pycache__/pipelines.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/__pycache__/pipelines.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/items.py -------------------------------------------------------------------------------- /fbcrawl/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/middlewares.py -------------------------------------------------------------------------------- /fbcrawl/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/pipelines.py -------------------------------------------------------------------------------- /fbcrawl/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/settings.py -------------------------------------------------------------------------------- /fbcrawl/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/__init__.py -------------------------------------------------------------------------------- /fbcrawl/spiders/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/spiders/__pycache__/comments.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/__pycache__/comments.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/spiders/__pycache__/fbcrawl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/__pycache__/fbcrawl.cpython-37.pyc -------------------------------------------------------------------------------- /fbcrawl/spiders/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/comments.py -------------------------------------------------------------------------------- /fbcrawl/spiders/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/events.py -------------------------------------------------------------------------------- /fbcrawl/spiders/fbcrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/fbcrawl.py -------------------------------------------------------------------------------- /fbcrawl/spiders/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/fbcrawl/spiders/profiles.py -------------------------------------------------------------------------------- /runner_facebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/runner_facebook.sh -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/scrapy.cfg -------------------------------------------------------------------------------- /trump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugantio/fbcrawl/HEAD/trump.png --------------------------------------------------------------------------------