From 32017a76f8560d8cba2746d541adb63e03e68f62 Mon Sep 17 00:00:00 2001 From: Elias Dorneles Date: Wed, 21 Sep 2016 11:06:36 -0300 Subject: [PATCH] recommend learn python the hard way for beginners --- docs/intro/tutorial.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/intro/tutorial.rst b/docs/intro/tutorial.rst index ec68bf922..31228017b 100644 --- a/docs/intro/tutorial.rst +++ b/docs/intro/tutorial.rst @@ -20,16 +20,21 @@ 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 reading through `Dive Into Python 3`_. -Alternatively, you can follow the `Python Tutorial`_. If you're new to -programming and want to start with Python, take a look at `this list of Python -resources for non-programmers`_. +Scrapy. + +If you're already familiar with other languages, and want to learn Python +quickly, we recommend reading through `Dive Into Python 3`_. Alternatively, +you can follow the `Python Tutorial`_. + +If you're new to programming and want to start with Python, you may find useful +the online book `Learn Python The Hard Way`_. You can also take a look at `this +list of Python resources for non-programmers`_. .. _Python: https://www.python.org/ .. _this list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers .. _Dive Into Python 3: http://www.diveintopython3.net .. _Python Tutorial: https://docs.python.org/3/tutorial +.. _Learn Python The Hard Way: http://learnpythonthehardway.org/book/ Creating a project