diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index 6d2b425bd..ff92d701f 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -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 ================== diff --git a/docs/topics/settings.rst b/docs/topics/settings.rst index 27cbfc69d..dce63ff30 100644 --- a/docs/topics/settings.rst +++ b/docs/topics/settings.rst @@ -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 =======================