doc: remove links to diveintopython.org, which is no longer available. closes #246

This commit is contained in:
Pablo Hoffman 2013-02-14 11:09:40 -02:00
parent e3d694543f
commit bd58bfae8e
2 changed files with 3 additions and 3 deletions

View File

@ -22,13 +22,13 @@ This tutorial will walk you through these tasks:
Scrapy is written in Python_. If you're new to the language you might want to
start by getting an idea of what the language is like, to get the most out of
Scrapy. If you're already familiar with other languages, and want to learn
Python quickly, we recommend `Dive Into Python`_. If you're new to programming
Python quickly, we recommend `Learn Python The Hard Way`_. If you're new to programming
and want to start with Python, take a look at `this list of Python resources
for non-programmers`_.
.. _Python: http://www.python.org
.. _this list of Python resources for non-programmers: http://wiki.python.org/moin/BeginnersGuide/NonProgrammers
.. _Dive Into Python: http://www.diveintopython.org
.. _Learn Python The Hard Way: http://learnpythonthehardway.org/book/
Creating a project
==================

View File

@ -26,7 +26,7 @@ The value of ``SCRAPY_SETTINGS_MODULE`` should be in Python path syntax, e.g.
``myproject.settings``. Note that the settings module should be on the
Python `import search path`_.
.. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html
.. _import search path: http://docs.python.org/2/tutorial/modules.html#the-module-search-path
Populating the settings
=======================