|
| 1 | +<html> |
| 2 | +<head> |
| 3 | + |
| 4 | +<title>Python for .NET</title> |
| 5 | + |
| 6 | +<style type="text/css"><!-- |
| 7 | + |
| 8 | +body { |
| 9 | + font: 8pt/16pt georgia,verdana; |
| 10 | + text-decoration: none; |
| 11 | + color: #555753; |
| 12 | + background: #ffffff; |
| 13 | + margin: 0px; |
| 14 | +} |
| 15 | + |
| 16 | +p { |
| 17 | + font: 8pt/16pt georgia; |
| 18 | +} |
| 19 | + |
| 20 | +h1 { |
| 21 | + font: bold 14pt; |
| 22 | + color: #000044; |
| 23 | + |
| 24 | + background-color: #EFEFFF; |
| 25 | + color: #000044; |
| 26 | + border-style: solid; |
| 27 | + border-width: 1px; |
| 28 | + border-color: #555753; |
| 29 | + padding
C24
: 6px, 2px, 6px, 2px; |
| 30 | + |
| 31 | +} |
| 32 | + |
| 33 | +h2 { |
| 34 | + font: bold 14pt; |
| 35 | + margin-bottom: 0px; |
| 36 | + color: #000044; |
| 37 | +} |
| 38 | + |
| 39 | +h3 { |
| 40 | + font: bold 12pt; |
| 41 | + margin-bottom: 0px; |
| 42 | + color: #000044; |
| 43 | +} |
| 44 | + |
| 45 | +a:link { |
| 46 | + font-weight: bold; |
| 47 | + text-decoration: none; |
| 48 | + color: #000066; |
| 49 | +} |
| 50 | + |
| 51 | +a:visited { |
| 52 | + font-weight: bold; |
| 53 | + text-decoration: none; |
| 54 | + color: #000066; |
| 55 | +} |
| 56 | + |
| 57 | +a:hover, a:active { |
| 58 | + text-decoration: underline; |
| 59 | + color: #000066; |
| 60 | +} |
| 61 | + |
| 62 | +pre { |
| 63 | + font-family: monospace; |
| 64 | + background-color: #EFEFFF; |
| 65 | + color: #000044; |
| 66 | + border-style: solid; |
| 67 | + border-width: 1px; |
| 68 | + border-color: #555753; |
| 69 | + padding: 6px, 2px, 6px, 2px; |
| 70 | +} |
| 71 | + |
| 72 | +li { |
| 73 | + font: 8pt/16pt georgia,verdana; |
| 74 | + text-decoration: none; |
| 75 | + color: #555753; |
| 76 | +} |
| 77 | + |
| 78 | +.spacer { |
| 79 | + font: bold 14pt; |
| 80 | +} |
| 81 | + |
| 82 | +.menu { |
| 83 | + background-color: #EFEFFF; |
| 84 | + color: #000044; |
| 85 | + border-style: solid; |
| 86 | + border-width: 1px; |
| 87 | + border-color: #555753; |
| 88 | + padding: 6px, 2px, 6px, 2px; |
| 89 | + font-size: x-small; |
| 90 | +} |
| 91 | + |
| 92 | +.menu ul { |
| 93 | + margin: 0px; |
| 94 | + padding: 0px; |
| 95 | +} |
| 96 | + |
| 97 | +//--></style> |
| 98 | + |
| 99 | +</head> |
| 100 | +<body> |
| 101 | + |
| 102 | +<table width="98%" border="0" cellspacing="4"> |
| 103 | + |
| 104 | +<tr> |
| 105 | +<!-- |
| 106 | + <td align="left" valign="top" width="20%" class="menu"> |
| 107 | +
|
| 108 | + <h1>Python for .NET</h1> |
| 109 | +
|
| 110 | +
|
| 111 | + </td> |
| 112 | +--> |
| 113 | + |
| 114 | + <td align="left" valign="top"> |
| 115 | + |
| 116 | +<h1>Python for .NET</h1> |
| 117 | +<p> |
| 118 | + Python for .NET is a package that gives Python programmers nearly seamless |
| 119 | + integration with the .NET Common Language Runtime (CLR) and provides a |
| 120 | + powerful application scripting tool for .NET developers. Using this package |
| 121 | + you can script .NET applications or build entire applications in Python, |
| 122 | + using .NET services and components written in any language that targets the |
| 123 | + CLR (Managed C++, C#, VB, JScript). |
| 124 | +</p> |
| 125 | + |
| 126 | +<p> |
| 127 | + Note that this package does <em>not</em> implement Python as a first-class |
| 128 | + CLR language - it does not produce managed code (IL) from Python code. |
| 129 | + Rather, it is an integration of the C Python engine with the .NET runtime. |
| 130 | + This approach allows you to use use CLR services and continue to use existing |
| 131 | + Python code and C-based extensions while maintaining native execution speeds |
| 132 | + for Python code. If you are interested in a pure managed-code implementation |
| 133 | + of the Python language, you should check out the |
| 134 | + <a href="http://www.ironpython.com">IronPython</a> project, which is in |
| 135 | + active development. |
| 136 | +</p> |
| 137 | + |
| 138 | +<p> |
| 139 | + Python for .NET is currently compatible with Python releases 2.3 and greater. |
| 140 | + To subscribe to the |
| 141 | + <a href="http://mail.python.org/mailman/listinfo/pythondotnet"> |
| 142 | + Python for .NET mailing list |
| 143 | + </a> or read the |
| 144 | + <a href="http://mail.python.org/pipermail/pythondotnet/"> |
| 145 | + online archives |
| 146 | + </a> of the list, see the |
| 147 | + <a href="http://mail.python.org/mailman/listinfo/pythondotnet"> |
| 148 | + mailing list information |
| 149 | + </a> page. You can also send questions or comments to me at |
| 150 | + <a href="mailto:brian.lloyd@revolution.com">brian.lloyd@revolution.com</a> |
| 151 | + or use the |
| 152 | + <a href="http://sourceforge.net/tracker/?group_id=162464"> |
| 153 | + Python for .NET issue tracker</a> to report issues. |
| 154 | +</p> |
| 155 | + |
| 156 | +<p> |
| 157 | + My <a href="http://brianlloyd.blogspot.com">blog site</a> is also |
| 158 | + (sometimes) a good source for more information on Python for .NET ;) |
| 159 | +</p> |
| 160 | + |
| 161 | +<ul> |
| 162 | + <li>The <a href="./readme.html">README</a> |
| 163 | + provides a detailed overview of Python for .NET, as well as |
| 164 | + some basic usage examples. Many other examples can be found |
| 165 | + in the demos and unit tests for the package. |
| 166 | + </li> |
| 167 | + |
| 168 | + <li>Checkout the |
| 169 | + <a href="http://cvs.sourceforge.net/viewcvs.py/pythonnet">PythonNet</a> |
| 170 | + code |
| 171 | + from CVS. See the <a href="http://sourceforge.net/cvs/?group_id=162464"> |
| 172 | + instructions on Source Forge</a> for details. |
| 173 | + </li> |
| 174 | + |
| 175 | + <li><strong>Python 2.4 Releases</strong> |
| 176 | + <br /> |
| 177 | + <a href="./Releases/pythonnet-1.0-rc2-py2.4-clr1.1.exe"> |
| 178 | + pythonnet-1.0-rc2-py2.4-clr1.1.exe |
| 179 | + </a> |
| 180 | + <br /> |
| 181 | + <a href="./Releases/pythonnet-1.0-rc2-py2.4-clr1.1-src.tgz"> |
| 182 | + pythonnet-1.0-rc2-py2.4-clr1.1-src.tgz |
| 183 | + </a> |
| 184 | + </li> |
| 185 | + |
| 186 | + <li><strong>Python 2.3 Releases</strong> |
| 187 | + <br /> |
| 188 | + <a href="./Releases/pythonnet-1.0-rc2-py2.3-clr1.1.exe"> |
| 189 | + pythonnet-1.0-rc2-py2.3-clr1.1.exe |
| 190 | + </a> |
| 191 | + <br /> |
| 192 | + <a href="./Releases/pythonnet-1.0-rc2-py2.3-clr1.1-src.tgz"> |
| 193 | + pythonnet-1.0-rc2-py2.3-clr1.1-src.tgz |
| 194 | + </a> |
| 195 | + </li> |
| 196 | + |
| 197 | + |
| 198 | +</ul> |
| 199 | + |
| 200 | + |
| 201 | + |
| 202 | + |
| 203 | + |
| 204 | + |
| 205 | + </td> |
| 206 | +</tr> |
| 207 | +</table> |
| 208 | + |
| 209 | +</body> |
| 210 | +</html> |
0 commit comments