1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 16:03:49 +00:00

Updated tutorial.rst to include more and up-to-date beginner resources

This commit is contained in:
Raphael Wuillemier 2018-08-06 17:40:31 +02:00
parent eb007bafab
commit d3aa1e8666

View File

@ -26,15 +26,26 @@ If you're already familiar with other languages, and want to learn Python
quickly, we recommend reading through `Dive Into Python 3`_. Alternatively, quickly, we recommend reading through `Dive Into Python 3`_. Alternatively,
you can follow the `Python Tutorial`_. you can follow the `Python Tutorial`_.
If you're new to programming and want to start with Python, you may find useful If you're new to programming and want to start with Python, the following books
the online book `Learn Python The Hard Way`_. You can also take a look at `this may be useful to you:
list of Python resources for non-programmers`_.
* `Automate the Boring Stuff With Python`_
* `How To Think Like a Computer Scientist`_
* `Learn Python 3 The Hard Way`_
You can also take a look at `this list of Python resources for non-programmers`_,
as well as the `suggested resources in the learnpython-subreddit`_.
.. _Python: https://www.python.org/ .. _Python: https://www.python.org/
.. _this list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers .. _this list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers
.. _Dive Into Python 3: http://www.diveintopython3.net .. _Dive Into Python 3: http://www.diveintopython3.net
.. _Python Tutorial: https://docs.python.org/3/tutorial .. _Python Tutorial: https://docs.python.org/3/tutorial
.. _Learn Python The Hard Way: https://learnpythonthehardway.org/book/ .. _Automate the Boring Stuff With Python: https://automatetheboringstuff.com/
.. _How To Think Like a Computer Scientist: http://openbookproject.net/thinkcs/python/english3e/
.. _Learn Python 3 The Hard Way: https://learnpythonthehardway.org/python3/
.. _suggested resources in the learnpython-subreddit: https://www.reddit.com/r/learnpython/wiki/index#wiki_new_to_python.3F
Creating a project Creating a project