forked from burakbayramli/books
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.html
886 lines (665 loc) · 35.2 KB
/
doc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
<HTML>
<HEAD>
<TITLE>Scripting Resoures</TITLE>
<BODY BGCOLOR="white">
<CENTER>
<H1>Scripting Resources</H1>
</CENTER>
<H1>Python</H1>
<H4>Documentation</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://python.org/doc/">
Python Documentation</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://docs.python.org/genindex.html">
Python Library Reference: Index</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://rgruet.free.fr/PQR26/PQR2.6.html">
Python Quick Reference (v2.6)</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.python.org/doc/faq">
Python FAQ</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://docs.python.org/py3k/whatsnew/">
Python 2.x to 3.x conversion</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://ipython.scipy.org/doc/manual/html">
IPython Documentation</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://docs.python.org/dev/howto/regex.html">
Python Regular Expression HOWTO</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://docs.scipy.org/doc/">
NumPy and SciPy reference guides</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://docs.scipy.org/doc/numpy/user/">
NumPy user guide</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Tentative_NumPy_Tutorial">
New NumPy tutorial</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://mentat.za.net/numpy/intro/intro.html">
NumPy tutorial</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Numpy_Example_List">
NumPy example list</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://mentat.za.net/numpy/numpy_advanced_slides/">
Numpy Medkit</A> (highly recommended)</TD><TD></TD></TR>
<TR><TD><A HREF="http://www.scipy.org/NumPy_for_Matlab_Users">
Matlab to NumPy transition</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://mathesaurus.sf.net">
NumPy for Matlab/IDL/R users</A></TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Additional_Documentation/New_SciPy_Tutorial?action=show&redirect=SciPy+Tutorial">
SciPy tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.rexx.com/~dkuhlman/scipy_course_01.html">
SciPy online course</A></TD></TR>
<TR><TD><A HREF="http://johnstachurski.net/lectures/index.html">
Python and scientific computing course</A></TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Cookbook">
NumPy and SciPy cookbook</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://fperez.org/py4science/warts.html">
Why Python for scientific computing?</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.python.org/idle/doc/idle2.html">
Introduction to IDLE</A></TD><TD></TD></TR>
<TR> <TD><A HREF="http://matplotlib.sourceforge.net/contents.html">
Matplotlib documentation</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.pythonware.com/library/tkinter/introduction/index.htm">
Introduction to Tkinter</A></TD><TD></TD></TR>
<TR> <TD><A HREF="http://docs.python.org/lib/tkinter.html">
Tkinter in Python Library Reference</A></TD><TD></TD></TR>
<TR> <TD><A HREF="http://infohost.nmt.edu/tcc/help/pubs/tkinter/">
Tkinter Quick Reference</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://pmw.sourceforge.net/doc/index.html">
Pmw documentation</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://pmwcontribd.sourceforge.net/">
PmwContribD documentation</A></TD><TD></TD></TR>
<TR> <TD><A HREF="http://www.python.org/doc/life-preserver/">
Tkinter Life Preserver</A></TD><TD></TD></TR>
<!-- <TR><TD><A HREF="http://www.tcl.tk/man/tcl8.4/TkCmd/contents.htm">
Original Tk manpages</A></TD><TD></TD></TR>-->
<TR><TD><A HREF="http://heim.ifi.uio.no/~hpl/Pmw.Blt/doc/">
Pmw.Blt documentation</A></TD></TR>
<TR><TD><A HREF="http://sphinx.pocoo.org/">
Sphinx</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://epydoc.sourceforge.net/">
Epydoc</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.onlamp.com/pub/a/python/2001/04/18/pydoc.html">
Pydoc tutorial</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://happydoc.sourceforge.net/">
HappyDoc</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://cens.ioc.ee/projects/f2py2e/#documentation">
F2PY</A></TD><TD>(<A HREF="http://www.scipy.org/F2py">part of NumPy</A>)</TD></TR>
<TR><TD><A HREF="http://guide.python-distribute.org/">
How to create Python packages</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.pythonware.com/library/pil/handbook/index.htm">
Python Imaging Library (PIL)</A></TD><TD></TD></TR>
<TR> <TD><A HREF="http://pymat.cvs.sourceforge.net/*checkout*/pymat/pymat/doc/pymat.html">
pymat: Python-Matlab interface</A></TD><TD></TD></TR>
<TR> <TD><A HREF="https://github.com/pv/advanced-numpy-tutorial">
Advanced NumPy tutorial/<A></TD><TD></TD></TR>
<TR> <TD><A HREF="http://scipy2010.blogspot.com/2010/06/tutorials-day-1-advanced-numpy.html">
Advanced NumPy course</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://datamining.anu.edu.au/~ole/pypar/DOC">
PyPar</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://datamining.anu.edu.au/~ole/publications/parallel_python.pdf">
PyPar tutorial</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.python.org/doc/essays/styleguide.html">
Style guide for Python Code</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.python.org/dev/peps/pep-0257/">
Style guide for docstrings</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://folk.uio.no/hpl/scripting/doc/python/py4cs/index.html">
py4cs package</A></TD><TD></TD></TR>
</TABLE>
<H4>Source code</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.python.org/download">
Python</A></TD><TD>Basic Python source</TD></TR>
<TR><TD><A HREF="http://www.activestate.com/Products/ActivePython/index.html">
ActivePython</A></TD><TD>ActiveState's Python distribution (for Linux and Windows)</TD></TR>
<TR><TD><A HREF="http://code.enthought.com/enthon/#download">
Enthought Python</A></TD><TD>Recommended Python for Windows</TD></TR>
<TR><TD> <A HREF="http://numpy.scipy.org/">
Numerical Python project page</A></TD><TD>Fast array computing in Python</TD></TR>
<TR><TD><A HREF="http://matplotlib.sourceforge.net/">
Matplotlib</A></TD><TD>Curve plotting with Matlab syntax</TD></TR>
<TR><TD><A HREF="http://dirac.cnrs-orleans.fr/ScientificPython/">
ScientificPython package</A></TD> <TD>More numerical extensions to Python</TD></TR>
<TR><TD><A HREF="http://gnuplot-py.sourceforge.net/">
Gnuplot interface</A></TD><TD>Direct visualization of Python data with Gnuplot</TD></TR>
<TR><TD><A HREF="http://pypi.python.org/pypi/pyIDL/">
PyIDL</A></TD><TD>Python interface to IDL</TD></TR>
<TR><TD><A HREF="http://www.its.caltech.edu/~mmckerns/software.html">
Pygrace</A></TD><TD>Python interface to the Grace plotting tool</TD></TR>
<TR><TD><A HREF="http://www.vtk.org/get-software.php">
Vtk</A></TD><TD>Visualization package w/Python interface</TD></TR>
<TR><TD><A HREF="http://mayavi.sourceforge.net/">
MayaVi</A></TD><TD>High-level GUI and scripting interface to Vtk</TD></TR>
<TR><TD><A HREF="http://pyopengl.sourceforge.net/">
PyOpenGL</A></TD><TD>Advanced (low level) graphics</TD></TR>
<TR><TD><A HREF="http://pyx.sourceforge.net/">
PyX</A></TD><TD>TeX-like Python interface to PostScript drawing</TD></TR>
<TR><TD><A HREF="http://kim.bio.upenn.edu/~pmagwene/disipyl.html">
disipyl</A></TD><TD>Python interface to the DISLIN curve/surface plotting package</TD></TR>
<TR><TD><A HREF="http://www.pythonware.com/products/pil/">
PIL: Python Imaging Library</A></TD><TD>Image processing tools</TD></TR>
<TR><TD><A HREF="http://www.scipy.org/">
SciPy</A></TD><TD>Comprehensive scientific computing support</TD></TR>
<TR><TD> <A HREF="http://www.netlib.org/lapack/">
LAPACK</A></TD><TD>Needed for SciPy</TD></TR>
<TR><TD><A HREF="http://math-atlas.sourceforge.net/">
ATLAS</A></TD><TD>Needed for SciPy</TD></TR>
<TR><TD><A HREF="http://matpy.sourceforge.net/">
MatPy</A></TD><TD>Linear Algebra Supplement to NumPy</TD></TR>
<TR><TD><A HREF="http://starship.python.net/crew/mhammond/win32/">
Python for Windows extensions</A></TD><TD>pywin* modules with MFC wrappers, COM support, etc. </TD></TR>
<TR><TD><A HREF="http://pmw.sourceforge.net/">
Pmw</A></TD><TD> Python megawidgets</TD></TR>
<TR><TD><A HREF="http://ipython.scipy.org/dist/">IPython
</A></TD><TD>Interactive Python shell</TD></TR>
<TR><TD><A HREF="http://blt.sourceforge.net/">
BLT</A></TD><TD>BLT extension to Tk</TD></TR>
<TR><TD><A HREF="http://pmwcontribd.sourceforge.net/">
PmwContribD</A> </TD> <TD>Additional Pmw widgets</TD></TR>
<TR><TD><A HREF="http://pymat.sourceforge.net/">
PyMat</A></TD><TD>Python interface to Matlab (use <a href="http://sourceforge.net/cvs/?group_id=83384">CVS version!</a>)</TD></TR>
<TR><TD><A HREF="http://docutils.sourceforge.net/">
Docutils</A></TD><TD>Utilities for writing documents, manuals, etc.</TD></TR>
<TR><TD><A HREF="http://sphinx.pocoo.org/">
Sphinx</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://epydoc.sourceforge.net/">
Epydoc</A></TD><TD>Tool for documenting Python source code</TD></TR>
<TR><TD><A HREF="http://HappyDoc.sourceforge.net/">
HappyDoc</A></TD><TD>Tool for documenting Python source code</TD></TR>
<TR><TD><A HREF="http://home.tiscali.be/be052320/Unum.html">
Unum</A></TD><TD>Unit conversion</TD></TR>
<TR><TD><A HREF="http://www.boost.org/libs/python/doc">
Boost.Python</A></TD><TD>Tool for writing extensions modules in C++</TD></TR>
<TR><TD><A HREF="http://www.riverbankcomputing.co.uk/sip/index.php/">
SIP</A> </TD> <TD>Tool for writing extensions modules in C++</TD></TR>
<TR><TD><A HREF="http://valgrind.org/docs/quick-start.html">
Valgrind</A></TD><TD>Tool for debugging extensions modules</TD></TR>
<TR><TD><A HREF="http://pypar.sourceforge.net/">
PyPar</A></TD><TD>Parallel Python programming</TD></TR>
<TR><TD><A HREF="http://ftp.ActiveState.com/Zope-Perl/">
pyperl</A></TD><TD>Call Perl from Python</TD></TR>
<TR><TD><A HREF="http://php.iupui.edu/~mmiller3/python/">
TableIO</A></TD><TD>C code for reading tables in files</TD></TR>
<TR><TD><A HREF="http://www.geocities.com/cristian_echeverria/Chevegui.html">
Cheve GUI</A></TD><TD>Configurable look and feel for Python/Tkinter GUI applications</TD></TR>
<TR><TD><A HREF="http://pyxml.sourceforge.net/">
PyXML</A></TD><TD> XML processing tools</TD></TR>
<TR><TD><A HREF="http://gnosis.cx/download/">
Gnosis</A></TD><TD>Higher-level XML processing tools</TD></TR>
</TABLE>
<H4>Useful links</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.python.org/">
Python home page</A></TD></TR>
<TR><TD><A HREF="http://www.python.org/pypi">
PyPI: Python package index</A> (3rd party modules)</TD></TR>
<TR><TD><A HREF="http://www.vex.net/parnassus/">
Vaults of Parnassus</A> (3rd party Python modules)</TD></TR>
<TR><TD><A HREF="http://www.awaretek.com/plf.html">
Python Learning Foundation</A> (tutorials, overviews, etc.)</TD></TR>
<TR><TD><A HREF="http://aspn.activestate.com/ASPN/Cookbook/Python">
Python online cookbook</A> (lots of useful recipes)</TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Documentation">
NumPy and SciPy documentation</A> (overview)</TD></TR>
<TR><TD><A HREF="http://ipython.scipy.org/">
IPython</A> (enhanced interactive Python shell)</TD></TR>
<TR><TD><A HREF="http://www.metaslash.com/brochure/tutorial/">
Python GUI programming overview</A></TD></TR>
<TR><TD><A HREF="http://www.awaretek.com/toolkits.html">
Another Python GUI programming overview</A></TD></TR>
<TR><TD><A HREF="http://pmw.sourceforge.net/">
Pmw home page</A></TD></TR>
<TR><TD><A HREF="http://page.sourceforge.net/">
PAGE</A> (a Tk GUI generator)</TD></TR>
<TR><TD><A HREF="http://excess.org/urwid/">
Urwid</A> (GUI in plain text windows)</TD></TR>
<TR><TD><A HREF="http://students.ceid.upatras.gr/~sxanth/twgui/index.html">
Twilight GUI</A> (wrapper for PyQt, PyGtk, wxPython, Tkinter)</TD></TR>
<TR><TD><A HREF="http://www.arson-network.org/index.php?class=tutorial&subargs=430">
Generation of Python GUIs with Glade</A> (a PyGtk GUI generator)</TD></TR>
<TR><TD><A HREF="http://www.linuxjournal.com/article.php?sid=6586">
Another introduction to Glade</A></TD></TR>
<!--
<TR><TD><A HREF="http://patrick.wagstrom.net/tutorials/pygtkmozembed/pygtkmozembed.html">
Case study in Glade-Python GUI building</A></TD></TR>
<TR><TD><A HREF="http://nat.org/demos/gtksharp.html">
Glade live demo</A></TD></TR>
-->
<TR><TD><A HREF="http://www.kplug.org/glade_tutorial/glade2_tutorial/glade2_introduction.html">
Glade-2 tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.moeraki.com/pygtktutorial/pygtk2tutorial/index.html">
PyGtk tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.cs.usfca.edu/~afedosov/qttut/">
PyQt/QtDesigner tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.tutorialized.com/tutorial/An-advanced-GUI-library-for-Python-PyQT/1191">
PyQt tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.wxpython.org/">
wxPython home page</A> (widespread GUI library)</TD></TR>
<TR><TD><A HREF="http://wiki.wxpython.org/index.cgi/Wax">
Wax</A> (Tkinter-like simple-to-use layer on top of wxPython)</TD></TR>
<TR><TD><A HREF="http://wxglade.sourceforge.net/">
wxGlade</A> (GUI designer for wxPython)</TD> </TR>
<TR><TD><A HREF="http://pythoncard.sourceforge.net">
PythonCard home page</A> (simplified wxPython interface)</TD></TR>
<TR><TD><A HREF="http://www.wxpython.org/py.php">
Py</A> (many useful tools, part of wxPython)</TD></TR>
<TR><TD><A HREF="http://www.scipy.org/">
SciPy home page</A> (tools for scientific computing with Python)</TD></TR>
<TR><TD><A HREF="http://www.jython.org/">
Jython home page</A></TD></TR>
<!--
<TR><TD><A HREF="http://developer.java.sun.com/developer/earlyAccess/j2dsk122/">
Java 1.2 for Linux</A></TD></TR>
-->
<TR><TD><A HREF="http://www.activestate.com/">
ActiveState home page</A> </TD>
<TR><TD><A HREF="http://tcl.tk/">
Tcl/Tk home page</A> </TD></TR>
<TR><TD><A HREF="http://www.logilab.org/projects/pylint">
PyLint</A> (source code style checker)</TD></TR>
<TR><TD><A HREF="http://wiki.python.org/moin/IntegratedDevelopmentEnvironments">
Python IDEs</A> (editors, graphical development environments for Python)</TD></TR>
<TR><TD><A HREF="http://pexpect.sourceforge.net/">
pexpect</A> (makes interactive applications scriptable)</TD></TR>
<TR><TD><A HREF="http://www.trentm.com/projects/which/">
which.py</A> (advanced application finder on Unix and Windows)</TD></TR>
<TR><TD><A HREF="http://www.penzilla.net/tutorials/python/">
Various tutorials for Python tools (Penzilla.net)</A></TD></TR>
<TR><TD><A HREF="http://www.mindview.net/Books/TIPython">
Thinking in Python</A> (design patterns and advanced programming)</TD></TR>
<TR><TD><A HREF="http://www.xminc.com/mt/archives/pythontut2.html">
Advanced Python Programming</A> tutorial by D. Beazley</TD></TR>
<TR><TD><A HREF="http://diveintopython.org/index.html">
Dive Into Python</A> (on-line Python book)</TD></TR>
<TR><TD><A HREF="http://www.brpreiss.com/books/opus7/">
Data Structures and Algorithms ... </A> (on-line Python book)</TD></TR>
<TR><TD><A HREF="http://www.thinkware.se/cgi-bin/thinki.cgi/PythonInScience">
PythonInScience</A> (overview of scientific Python applications and tools)</TD></TR>
<TR><TD><A HREF="http://pytables.sourceforge.net/html/WelcomePage.html">
PyTables</A> (Python interface to HDF5)</TD></TR>
<TR><TD><A HREF="http://geosci.uchicago.edu/~cdieterich/python/pynci/">
pynci</A> (Python interface to netCDF)</TD></TR>
<TR><TD><A HREF="http://www-md.fsl.noaa.gov/eft/developer/netCDFPythonInterface.html">
Scientific.IO.NetCDF</A> (Python interface to netCDF)</TD></TR>
<TR><TD><A HREF="http://pyparsing.wikispaces.com/">
pyparsing</A> (simple-to-use text parser)</TD></TR>
<TR><TD><A HREF="http://www.dabeaz.com/ply/index.html">
PLY</A> (lex/yacc-like parser in Python)</TD></TR>
<TR><TD><A HREF="http://kodos.sourceforge.net/">
Kodos</A> (visual debugging of regular expressions)</TD></TR>
<TR><TD><A HREF="http://gnosis.cx/publish/tech_index_xm.html">
Gnosis software review</A> (lots of XML/Python info by D. Merz)</TD></TR>
<TR><TD><A HREF="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/273844">
Simple CGI script for uploading files</A> (over the Internet)</TD></TR>
<TR><TD><A HREF="http://www.voidspace.org.uk/python/cgi.shtml#upload">
More advanced CGI script for uploading files</A> (over the Internet)</TD></TR>
<TR><TD><A HREF="http://cython.org/">
Cython</A> (Kind of Python to C compiler)</TD></TR>
<TR><TD><A HREF="http://psyco.sourceforge.net/">
Psyco</A> (just-in-time Python to C compiler)</TD></TR>
<TR><TD><A HREF="http://www.fenics.org/wiki/Instant">
Instant</A> (for inlining C/C++ code in Python)</TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Weave">
Weave</A> (for inlining C/C++ code in Python)</TD></TR>
<TR><TD><A HREF="http://pyinline.sourceforge.net/">
PyInline</A> (for inlining C code in Python)</TD></TR>
<TR><TD><A HREF="http://trific.ath.cx/resources/python/optimization/#about">
Python optimization tips</A></TD></TR>
<TR><TD><A HREF="http://www.python.org/doc/essays/list2str.html">
van Rossum: Loop optimizations in Python</A></TD></TR>
<TR><TD><A HREF="http://www.musi-cal.com/~skip/python/fastpython.html">
Montanaro: Optimization of Python scripts</A></TD></TR>
<!--
<TR><TD><A HREF="http://starship.python.net/crew/friedrich/HTMLgen/html/main.html">
HTMLgen</A> (generation of HTML code, like Perl's CGI module)</TD></TR>
-->
<TR><TD><A HREF="http://pygments.org/docs/quicktart">
Pygments</A> (HTMLize Python code)</TD></TR>
<TR><TD><A HREF="http://www.pybliographer.org/">
pybibliographer</A> (handles bibliographic databases)</TD></TR>
<TR> <TD><A HREF="http://modular.math.washington.edu/sage/">
SAGE</A> (symbolic and numerical math software in Python)</TR></TD>
<TR> <TD><A HREF="http://code.google.com/p/sympy/">
SymPy</A> (symbolic mathematics in Python, as a pure Python module)</TR></TD>
<TR> <TD><A HREF="http://swiginac.berlios.de/">
Swiginac</A> (symbolic mathematics in Python, based on GiNaC)</TR></TD>
<TR><TD><A HREF="http://mlabwrap.sourceforge.net/">
mlabwrap</A> (Matlab commands directly available as Python functions)</TD></TR>
<TR><TD><A HREF="http://www.sbc.su.se/~per/crng/">
Various random number generators</A> (C extension)</TD></TR>
<TR><TD><A HREF="http://www.videolan.org/vlc/">
VLC</A> (recommended movie player for MPEG, AVI, ...)</TD></TR>
<TR><TD><A HREF="http://cgkit.sourceforge.net/">
cgkit</A> (Python Computer Graphics Kit)</TD></TR>
<TR><TD><A HREF="http://vpython.org/">
VPython</A> (easy-to-use 3D visualization)</TD></TR>
<TR><TD><A HREF="http://www.thekompany.com/projects/vp/">
Visual Python</A> (scripting front end to GNOME and KDE)</TD></TR>
<TR><TD><A HREF="http://seesar.lbl.gov/anag/chombo/chombovis.html">
ChomboVis</A> (high-level Python-based GUI interface to Vtk)</TD></TR>
<TR><TD><A HREF="http://pivy.tammura.at/">
Pivy</A> (interface to the Coin 3D graphics library (an OpenInventor clone))</TD></TR>
<TR><TD><A HREF="http://pyqwt.sourceforge.net/">
PyQwt</A> (plotting widgets for PyGtk GUIs)</TD></TR>
<!--
<TR><TD><A HREF="http://starship.python.net/~arcege/extwriting/pyext.html">
Writing Python extensions in C</A> (tutorial)</TD></TR>
<TR><TD><A HREF="http://www.w3j.com/6/s3.vanrossum.html">
Web programming with Python</A></TD></TR>
-->
<TR><TD><A HREF="http://davidf.sjsoft.com/mirrors/mcmillan-inc/install1.html">
Install procedures</A> and <A HREF="http://www.cxtools.net/default.aspx?nav=cxfrlb">cx_Freeze</A>
(distributing scripts as compiled executables)</TD></TR>
<TR><TD><A HREF="http://www.codeproject.com/cpp/embedpython_1.asp">
Embedding Python in C/C++ code</A> (intro and examples)</TD></TR>
<TR><TD><A HREF="http://www.phyast.pitt.edu/~micheles/python/documentation.html">
Tools for implementing decorators</A></TD></TR>
<TR><TD><A HREF="http://www.scipy.org/Topical_Software">
scipy.org/Topical_Software</A> (list of Python-based scientific software)</TD></TR>
<TR><TD><A HREF="http://www.ctcms.nist.gov/fipy/">
FiPy</A> (tools for finite volume programming)</TD></TR>
<TR><TD><A HREF="http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/FrontPage">
PyDSTool</A> (simulation of dynamical systems)</TD></TR>
<TR><TD><A HREF="http://people.web.psi.ch/geus/pyfemax/">
PySparse</A> (sparse matrices, solvers, eigenvalues)</A></TD></TR>
<TR><TD><A HREF="http://guide.python-distribute.org/installation.html#distribute-info">
Distribute</A> (enhancements to Distutils)</A></TD></TR>
<TR><TD><A HREF="http://projects.scipy.org/scipy/numpy/wiki/DistutilsDoc">
Distutils for NumPy, SciPy, F2PY, etc.</A></A></TD></TR>
<TR><TD><A HREF="http://www.voidspace.org.uk/python/movpy/">
Moveable Python</A> (easy distribution of your complete Python environment)</A></TD></TR>
<TR><TD><A HREF="http://zephyrfalcon.org/labs/python_pitfalls.html">
Python pitfalls</A> (strange and dangerous things in Python)</A></TD></TR>
<TR><TD><A HREF="http://www.ferg.org/projects/python_gotchas.html">
Python gotchas</A> (more Python pitfalls)</A></TD></TR>
<TR><TD><A HREF="http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html">
reStructuredText intro</A> (powerful documentation format)</A></TD></TR>
<TR><TD><A HREF="http://code.google.com/p/preprocess/">
preprocess</A> (C-like preprocessor for Python code) </TD></TR>
<TR><TD><A HREF="http://www.alcyone.com/software/empy/">
EmPy</A> (system for processing Python as markup embedded in text)</TD></TR>
<TR><TD><A HREF="http://gael-varoquaux.info/computers/pyreport/">
PyReport</A> (system for nice printout of Python code and program output)</TD></TR>
<TR><TD><A HREF="http://www.python.org/workshops/2000-01/proceedings/papers/elkner/pyYHS.html">
Python for teaching programming in high schools</A></TD></TR>
</TABLE>
<H1>Other Tools</H1>
<UL>
<LI>
<H4>SWIG</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.swig.org/">
SWIG home page</A></TD></TR>
<TR><TD><A HREF="http://www.swig.org/download.html">
SWIG source code</A></TD></TR>
<TR><TD><A HREF="http://www.swig.org/doc.html">
SWIG Users Manual</A </TD><TD></TD></TR>
</TABLE>
<LI>
<H4>Subversion (svn)</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://subversion.tigris.org/">
Subversion home page</A> </TD></TR>
<TR><TD><A HREF="http://svnbook.red-bean.com/">
Subversion book/manual</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.onlamp.com/pub/a/onlamp/2002/10/31/subversion.html">
Garcia-Suarez' Subversion tutorial</A> </TD><TD></TD></TR>
<TR><TD><A HREF="http://www.germane-software.com/~ser/R_n_R/subversion.html">
Russel's Subversion tutorial (for CVS users)</A></TD></TR>
<TR><TD><A HREF="http://svn.collab.net/repos/svn/trunk/doc/user/cvs-crossover-guide.html">
CVS to Subversion crossover guide</A></TD></TR>
</TABLE>
<LI>
<H4>Mercurial (hg)</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.selenic.com/mercurial/wiki/">
Mercurial home page</A> </TD></TR>
<TR><TD><A HREF="http://hgbook.red-bean.com/">
Mercurial book</A></TD><TD></TD></TR>
<TR><TD><A HREF="http://www.selenic.com/mercurial/wiki/index.cgi/Tutorial">
Mercurial tutorial</A> </TD><TD></TD></TR>
</TABLE>
<LI>
<H4>Ghostscript, zlib, libpng, gd</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.ghostscript.com/awki/">
Ghostscript utilities</A></TD></TR>
<TR><TD><A HREF="http://www.libpng.org/pub/png/">
PNG home page</A></TD></TR>
<TR><TD><A HREF="http://www.zlib.net/">
Zlib home page</A></TD></TR>
<TR><TD><A HREF="http://www.boutell.com/gd/">
Boutell's GD library</A></TD></TR>
</TABLE>
<LI>
<H4>Gnuplot</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.gnuplot.info">
Gnuplot home page</A></TD></TR>
<TR><TD><A HREF="http://www.gnuplot.info/docs/gnuplot.html">
Gnuplot manual for version 4.2</A></TD></TR>
<TR><TD><A HREF="http://www.gnuplot.info/faq/">Gnuplot FAQ</A> </TD></TR>
<TR><TD><A HREF="http://t16web.lanl.gov/Kawano/gnuplot/index-e.html">
Lots of advanced Gnuplot tips</A></TD></TR>
<TR><TD>See also the <em>demo</em> subdirectory of the source distribution of Gnuplot </TD></TR>
<TR><TD><A HREF="http://sourceforge.net/projects/gnuplot/">
Downloading Gnuplot</A> (Unix and Windows)</TD></TR>
</TABLE>
<LI>
<H4>Image processing</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.imagemagick.org/">
ImageMagick home page</A></TD></TR>
<TR><TD><A HREF="http://imagemagick.sourceforge.net/docs/">
ImageMagick documentation</A></TD></TR>
<TR><TD><A HREF="http://www.sentex.net/~mwandel/jhead">
Jhead: JPEG header decoder (for digital camera images)</A></TD></TR>
</TABLE>
<LI>
<H4>PostScript</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://home.clara.net/nox/software/epsmerge/">
epsmerge</A></TD></TR>
<TR><TD><A HREF="http://user.it.uu.se/~jan/html2ps.html">
html2ps</A> (conversion of HTML to PostScript)</TD></TR>
</TABLE>
<LI>
<H4>LaTeX</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.ctan.org/">CTAN</A> (TeX/LaTeX archive) </TD></TR>
<TR><TD><A HREF="http://www.maths.abdn.ac.uk/~igc/latex/latex.html">Some Introductory Notes on LaTeX</A> </TD></TR>
<TR><TD><A HREF="http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/LaTeX_intro.html">Intro to LaTeX</A>
</TABLE>
<LI>
<H4>HTML</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://tutorialized.com/tutorials/HTML/">A tutorial</A></TD></TR></TABLE>
<LI>
<H4>mpeg_encode</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://bmrc.berkeley.edu/frame/research/mpeg/index.html#tools">
mpeg_endode</A></TD></TR>
<TR><TD><A HREF="http://www-vis.lbl.gov/NERSC/HowTos/mpeg/help/tools/vrmovie.html">
mpeg_encode parameter file</A> (template file with lots of comments)</TD></TR>
</TABLE>
<LI>
<H4>C, C++ and Fortran resources</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.cs.cf.ac.uk/Dave/C/">
A C tutorial</A></TD></TR>
<TR><TD><A HREF="http://gershwin.ens.fr/vdaniel/Doc-Locale/Langages-Program-Scientific/Fortran/Tutorial/">
A Fortran 77 tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.star.le.ac.uk/~cgp/prof77.html">
Professional Fortran Programming</A></TD></TR>
<TR><TD><a href="http://www.acm.org/crossroads/xrds1-1/ovp.html">
An Introduction to C++</a></TD></TR>
<TR><TD><a href="http://devcentral.iftech.com/articles/C++/default.php">
List of C++ tutorials</a></TD></TR>
<TR><TD><a href="http://www.mathtools.net">
www.mathtools.net</a></TD></TR>
<TR><TD><a href="http://www.dinkumware.com/manuals/?manual=compleat&page=lib_cpp.html">
Dinkum C++ Library Reference</a></TD></TR>
</TABLE>
<LI>
<H4>Unix</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.iu.hio.no/~mark/unix/unix_toc.html">
Introduction to and overview of Unix</A></TD></TR>
</TABLE>
</UL>
<!--
<H1>Applications of Python to Scientific Computing</H1>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://w3.pppl.gov/~pletzer/papers-reports/python9paper/ellipt2d.html">
ELLIPT2D: a flexible finite element code written in Python</A> (A. Pletzer and J. C. Mollis)</TD></TR>
<TR><TD><A HREF="http://www.adass.org/adass/proceedings/adass99/O3-02/">Scientific Computing with Python</A> (D. M. Beazley)</TD></TR>
<TR><TD><A HREF="http://www.inf.ethz.ch/~geus/pyfemax/">PySparse (sparse matrix eigenvalue problems)</A> (R. Geus)</TD></TR>
<TR><TD><A HREF="http://www.inf.ethz.ch/~geus/pyfemax/">PyFemax (finite element methods)</A> (R. Geus)</TD></TR>
<TR><TD><A HREF="http://www.pythonemproject.com/">Numerical Python Electromagnetic Fields Project</A></TD></TR>
<TR><TD><A HREF="http://www4.ncsu.edu/%7Erwchabay/mi/Public_Programs_VI.htm">VPython examples for an introductory mechanics course</A></TD></TR>
</TABLE>
-->
<H1>Perl</H1>
<H4>Documentation</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://perldoc.perl.org/index-faq.html">
Perl FAQ</A></TD><TD></TD></TR>
<TR><TD>Man pages: use <tt>perldoc</tt></TD><TD> (on the command line)</TD></TR>
</TABLE>
<!--
<TR><TD><A HREF="doc/perl/perl5-quickref.html">
Perl quick reference</A></TD><TD><A HREF="http://www.rexswain.com/perl5.html">Original source</A> </TD></TR>
</TABLE>
-->
<H4>Source code</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.perl.com/pub/language/info/software.html#stable">
Basic Perl</A> </TD><TD> Stable production release</TD></TR>
<TR><TD><A HREF="http://www.perl.com/CPAN/modules/by-module/Tk/">
Perl/Tk</A></TD><TD>Perl's Tk extension</TD></TR>
<TR><TD><A HREF="http://www.activestate.com/Products/ActivePerl/index.html">
ActivePerl</A></TD><TD>ActiveState's Perl distribution (recommended Perl for Windows)</TD></TR>
<TR><TD><A HREF="http://www.perl.com/CPAN/">
CPAN</A></TD <TD>Perl modules</TD></TR>
</TABLE>
<H4>Useful links</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://perldoc.perl.org/">
Perl documentation</A> (searchable)</TD></TR>
<TR><TD><A HREF="http://www.perl.com">
Perl home page</A></TD></TR>
<TR><TD><A HREF="http://www.perl.com/CPAN/">
CPAN</A></TD></TR>
<TR><TD><A HREF="http://www.perl.org">
Perl mongsters</A></TD></TR>
<TR><TD><A HREF="http://www.activestate.com/">
ActiveState home page</A> </TD>
<TR><TD><A HREF="http://www.perl.com/reference/">
A Perl reference with search facilities</A></TD></TR>
<TR><TD><A HREF="http://www.perl.com/pub/q/documentation">
A general resource for online Perl documentation</A></TD></TR>
<TR><TD><A HREF="http://www.w3.org/Security/Faq/www-security-faq.html">
The World Wide Web Security FAQ</A></TD></TR>
<TR><TD><A HREF="http://www.perl.com/doc/FAQs/cgi/idiots-guide.html">
The Idiot's Guide to Solving Perl CGI Problems</A></TD></TR>
<TR><TD><A HREF="http://www.perl.org/CGI_MetaFAQ.html">
Perl CGI Programming FAQ</A></TD></TR>
<TR><TD><A HREF="http://www.w3schools.com/html/html_forms.asp">
Web Forms Tutorial</A></TD></TR>
<TR><TD><A HREF="http://www.perl.com/cs/user/query/q/6?id_topic=40">
Perl debugging</A></TD></TR>
<TR><TD><A HREF="http://www.lehigh.edu/~sol0/ptk/tpj1.html">
Perl/Tk introduction</A></TD></TR>
<TR><TD><A HREF="http://members.tripod.com/~CurtMcKelvey/perldbgui/">
Perl debugger with GUI</A></TD></TR>
<TR><TD><A HREF="http://www.fred.net/brv/chart/">
CDchart</A> and its <A HREF="http://search.cpan.org/~rdp/GD-Chart-0.05/">
Perl interface</A> (graph/chart plotting for CGI scripts)</TD></TR>
<TR><TD><A HREF="http://www.perl.com/pub/a/2001/06/27/ctoperl.html">
Why Not Translate Perl to C?</A> (on the efficiency of Perl vs. C)</TD></TR>
</TABLE>
<!--
<H1>Tcl</H1>
<H4>Documentation</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="doc/tcl/TclTk-manpages/index.htm">Tcl/Tk manpages</TD><TD><A HREF="http://dev.scriptics.com/man/">Original source</TD> </TR>
<TR><TD><A HREF="doc/tcl/Tcl-FAQ.html">Tcl FAQ</TD><TD><A HREF="http://www.tclfaq.wservice.com/tcl-faq/">Original source</TD> </TR>
<TR><TD><A HREF="doc/tcl/Tk-FAQ.html">Tk FAQ</TD><TD><A HREF="http://www.tclfaq.wservice.com/tcl-faq/">Original source</TD> </TR>
<TR><TD><A HREF="doc/tcl/Tk-quickref.htm">Tk quick reference FAQ</TD><TD><A HREF="ftp://ftp.slac.stanford.edu/software/TkMail/tkref-8.0.3.tar.gz">Original source</TD> </TR>
<TR><TD><A HREF="doc/tcl/incr-Widgets/index.html">[incr Widgets]</TD> <TD><A HREF="http://www.tcltk.com/iwidgets/">Original source</TD> </TR>
<TR><TD><A HREF="doc/tcl/itcl-FAQ.html">[incr tcl], [incr Widgets] FAQ</TD><TD><A HREF="http://www.tclfaq.wservice.com/tcl-faq/">Original source</TD> </TR>
<TR><TD><A HREF="doc/tcl/cgi.pdf">CGI programming in Tcl</TD><TD><A HREF="doc/">Original source</TD> </TR>
</TABLE>
<H4>Source code</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://tcl.activestate.com/software">Tcl/Tk</A> </TD> <TD>Various Tcl/Tk versions</TD></TR>
<TR><TD><A HREF="http://tcl.activestate.com/ftp/blt">BLT</A> </TD> <TD>The BLT extension to Tk</TD></TR>
<TR><TD><A HREF="http://www.tcltk.com/itcl/">itcl</A> </TD> <TD>[incr Tcl], [incr Tk], [incr Widgets] (requires Tcl/Tk 8.0)
</TD></TR>
<TR><TD><A HREF="http://www.debian.org/Packages/unstable/devel/itcl3.1-dev.html">itcl</A> </TD> <TD>newer versions from Debian (for Tcl/Tk 8.3)</TD></TR>
</TABLE>
<H4>Useful links</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://tcl.activestate.com/">Tcl/Tk home page</A></TD></TR>
<TR><TD><A HREF="http://www.tcltk.com/">Various Tcl/Tk resources </A></TD> <TD>Applications, extensions, books etc.</TD></TR>
<TR><TD><A HREF="http://www.prs.de/int/products/gipsy/tcllinks.shtml">Various Tcl/Tk resources </A></TD></TR>
<TR><TD><A HREF="http://www.pconline.com/~erc/tcl.htm">Various Tcl/Tk resources </A></TD></TR>
<TR><TD><A HREF="http://www.tcltk.com/itcl">[incr Tcl] and [incr Widgets] home page</A></TD></TR>
<TR><TD><A HREF="http://www.tcltk.com/itcl/doc/itcl-intro.tar.gz">Tutorial and examples for itcl</A></TD></TR>
<TR><TD><A HREF="http://www.tcltk.com/blt">BLT home page</A></TD></TR>
<TR><TD><A HREF="http://www.dci.clrc.ac.uk/Publications/Cookbook/index.html">Tcl/Tk Cook Book</A></TD></TR>
<TR><TD><A HREF="http://www.msen.com/~clif/TclTutor.html">Interactive Tcl course</A></TD> <TD>(no Tk, but highly recommended)</TD></TR>
<TR><TD><A HREF="http://expect.nist.gov/cgi.tcl/">CGI programming with Tcl</A></TD></TR>
</TABLE>
<H1>Ruby</H1>
<H4>Documentation</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="doc/ruby/ProgrammingRuby-0.2/html/index.html">Programming Ruby</TD><TD><A HREF="http://www.pragmaticprogrammer.com/ruby/index.html">Original source</TD> </TR>
<TR><TD><A HREF="doc/"> </TD><TD><A HREF="doc/">Original source</TD> </TR>
<TR><TD><A HREF="doc/"> </TD><TD><A HREF="doc/">Original source</TD> </TR>
<TR><TD><A HREF="doc/"> </TD><TD><A HREF="doc/">Original source</TD> </TR>
</TABLE>
<H4>Source code</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.ruby-lang.org/en/index.html">Download</A> </TD> <TD>(from the Ruby home page)</TD></TR>
<TR><TD><A HREF="doc/"> </A> </TD> <TD></TD></TR>
<TR><TD><A HREF="doc/"> </A> </TD> <TD></TD></TR>
</TABLE>
<H4>Useful links</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.ruby-lang.org/en/index.html">Ruby home page</A></TD></TR>
<TR><TD><A HREF="doc/"></A></TD></TR>
<TR><TD><A HREF="doc/"></A></TD></TR>
<TR><TD><A HREF="doc/"></A></TD></TR>
<TR><TD><A HREF="doc/"></A></TD></TR>
</TABLE>
<H1>Bash</H1>
<H4>Documentation</H4>
<H4>Useful links</H4>
-->
<!--
<H4>wxWindows/wxPython</H4>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR><TD><A HREF="http://www.wxpython.org">wxPython home page</A> </TD></TR>
<TR><TD><A HREF="http://www.wxwindows.org">wxWindows home page</A> </TD></TR>
<TR><TD><A HREF="http://www.freiburg.linux.de/~wxxt/download.html">wxWindows source</A> (Gtk based) </TD></TR>
</TABLE>
-->
<p>
<A NAME="debian"><H1>Debian Packages</H1></A>
Many people, including the author, find it very convenient to download
software from the Debian package pages:
<A HREF="http://www.debian.org/Packages/stable/">
http://www.debian.org/Packages/stable/</A> or (preferably)
<A HREF="http://www.debian.org/Packages/unstable/">
http://www.debian.org/Packages/unstable/</A>.
In the unstable Debian distribution you can normally find the latest
version of a specific package. (The word unstable is in this context - of
downloading source codes - quite
misleading.)
<p>
At the Debian sites you can find all sorts of software,
with precise information on which versions of other packages
that the software depends on. If you are running a Debian Linux system,
you can download precompiled packages and install them with a single
command. However, the description in this appendix is based on compiling
the source code, which is a more general approach. The Debian packages
are also distributed as tar files with the complete source code; just focus at
the ``Source Code'' in small fonts under the ``Go To Download'' button.
</BODY></HEAD></HTML>
<TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR> <TD><A HREF="doc/"></A> </TD> <TD>
</TABLE>