/Doc/tutorial/whatnow.rst

http://unladen-swallow.googlecode.com/ · ReStructuredText · 68 lines · 52 code · 16 blank · 0 comment · 0 complexity · 63d6f3e9ac6099c4c493c62510a3f11a MD5 · raw file

  1. .. _tut-whatnow:
  2. *********
  3. What Now?
  4. *********
  5. Reading this tutorial has probably reinforced your interest in using Python ---
  6. you should be eager to apply Python to solving your real-world problems. Where
  7. should you go to learn more?
  8. This tutorial is part of Python's documentation set. Some other documents in
  9. the set are:
  10. * :ref:`library-index`:
  11. You should browse through this manual, which gives complete (though terse)
  12. reference material about types, functions, and the modules in the standard
  13. library. The standard Python distribution includes a *lot* of additional code.
  14. There are modules to read Unix mailboxes, retrieve documents via HTTP, generate
  15. random numbers, parse command-line options, write CGI programs, compress data,
  16. and many other tasks. Skimming through the Library Reference will give you an
  17. idea of what's available.
  18. * :ref:`install-index` explains how to install external modules written by other
  19. Python users.
  20. * :ref:`reference-index`: A detailed explanation of Python's syntax and
  21. semantics. It's heavy reading, but is useful as a complete guide to the
  22. language itself.
  23. More Python resources:
  24. * http://www.python.org: The major Python Web site. It contains code,
  25. documentation, and pointers to Python-related pages around the Web. This Web
  26. site is mirrored in various places around the world, such as Europe, Japan, and
  27. Australia; a mirror may be faster than the main site, depending on your
  28. geographical location.
  29. * http://docs.python.org: Fast access to Python's documentation.
  30. * http://pypi.python.org: The Python Package Index, previously also nicknamed
  31. the Cheese Shop, is an index of user-created Python modules that are available
  32. for download. Once you begin releasing code, you can register it here so that
  33. others can find it.
  34. * http://aspn.activestate.com/ASPN/Python/Cookbook/: The Python Cookbook is a
  35. sizable collection of code examples, larger modules, and useful scripts.
  36. Particularly notable contributions are collected in a book also titled Python
  37. Cookbook (O'Reilly & Associates, ISBN 0-596-00797-3.)
  38. For Python-related questions and problem reports, you can post to the newsgroup
  39. :newsgroup:`comp.lang.python`, or send them to the mailing list at
  40. python-list@python.org. The newsgroup and mailing list are gatewayed, so
  41. messages posted to one will automatically be forwarded to the other. There are
  42. around 120 postings a day (with peaks up to several hundred), asking (and
  43. answering) questions, suggesting new features, and announcing new modules.
  44. Before posting, be sure to check the list of `Frequently Asked Questions
  45. <http://www.python.org/doc/faq/>`_ (also called the FAQ), or look for it in the
  46. :file:`Misc/` directory of the Python source distribution. Mailing list
  47. archives are available at http://mail.python.org/pipermail/. The FAQ answers
  48. many of the questions that come up again and again, and may already contain the
  49. solution for your problem.
  50. .. Postings figure based on average of last six months activity as
  51. reported by www.egroups.com; Jan. 2000 - June 2000: 21272 msgs / 182
  52. days = 116.9 msgs / day and steadily increasing. (XXX up to date figures?)