|
4 | 4 | <style type="text/css"><!--
|
5 | 5 |
|
6 | 6 | body {
|
7 |
| - font: 8pt/16pt georgia,verdana; |
| 7 | + font: 12pt/18pt georgia,verdana; |
8 | 8 | text-decoration: none;
|
9 | 9 | color: #555753;
|
10 | 10 | background: #ffffff;
|
11 | 11 | margin: 0px;
|
12 | 12 | }
|
13 | 13 |
|
14 | 14 | p {
|
15 |
| - font: 8pt/16pt georgia; |
| 15 | + font: 12pt/18pt georgia; |
16 | 16 | }
|
17 | 17 |
|
18 | 18 | h1 {
|
19 |
| - font: bold 14pt; |
| 19 | + font: bold 16pt; |
20 | 20 | color: #000044;
|
21 | 21 |
|
22 | 22 | background-color: #EFEFFF;
|
|
68 | 68 | }
|
69 | 69 |
|
70 | 70 | li {
|
71 |
| - font: 8pt/16pt georgia,verdana; |
| 71 | + font: 12pt/18pt georgia,verdana; |
72 | 72 | text-decoration: none;
|
73 | 73 | color: #555753;
|
74 | 74 | }
|
75 | 75 |
|
76 | 76 | .spacer {
|
77 |
| - font: bold 14pt; |
| 77 | + font: bold 16pt; |
78 | 78 | }
|
79 | 79 |
|
80 | 80 | .menu {
|
|
103 | 103 | </td>-->
|
104 | 104 | <td align="left" valign="top">
|
105 | 105 | <h1>Python for .NET</h1>
|
106 |
| - <p> Python for .NET is a package that gives Python programmers |
107 |
| - nearly seamless integration with the .NET Common Language Runtime |
108 |
| - (CLR) and provides a powerful application scripting tool for .NET |
| 106 | + <p> Python for .NET (pythonnet) is a package that gives Python programmers |
| 107 | + nearly seamless integration with the .NET 4.0+ Common Language Runtime |
| 108 | + (CLR) on Windows and Mono runtime on Linux and OSX. |
| 109 | + Python for .NET provides a powerful application scripting tool for .NET |
109 | 110 | developers. Using this package you can script .NET applications or
|
110 | 111 | build entire applications in Python, using .NET services and
|
111 |
| - components written in any language that targets the CLR (Managed |
112 |
| - C++, C#, VB, JScript). </p> |
| 112 | + components written in any language that targets the CLR (C#, VB.NET, F#, C++/CLI). |
| 113 | + </p> |
113 | 114 | <p> Note that this package does <em>not</em> implement Python as a
|
114 | 115 | first-class CLR language - it does not produce managed code (IL)
|
115 |
| - from Python code. Rather, it is an integration of the C Python |
116 |
| - engine with the .NET runtime. This approach allows you to use use |
| 116 | + from Python code. Rather, it is an integration of the CPython |
| 117 | + engine with the .NET or Mono runtime. This approach allows you to use use |
117 | 118 | CLR services and continue to use existing Python code and C-based
|
118 | 119 | extensions while maintaining native execution speeds for Python
|
119 | 120 | code. If you are interested in a pure managed-code implementation
|
120 | 121 | of the Python language, you should check out the <a href="http://www.ironpython.com">IronPython</a>
|
121 | 122 | project, which is in active development. </p>
|
122 |
| - <p> Python for .NET is currently compatible with Python releases 2.5 |
| 123 | + <p> Python for .NET is currently compatible with Python releases 2.7, 3.3, 3.4, and 3.5. |
123 | 124 | and greater. To subscribe to the <a href="http://mail.python.org/mailman/listinfo/pythondotnet">
|
124 | 125 | Python for .NET mailing list </a> or read the <a href="http://mail.python.org/pipermail/pythondotnet/">
|
125 | 126 | online archives </a> of the list, see the <a href="http://mail.python.org/mailman/listinfo/pythondotnet">
|
126 | 127 | mailing list information </a> page. You can also send questions
|
127 |
| - or comments to me at <a href="mailto:brian.lloyd@revolution.com">brian.lloyd@revolution.com</a> |
| 128 | + or comments to me at <a href="mailto:brian.d.lloyd@gmail.com ">brian.d.lloyd@gmail.com</a> |
128 | 129 | or use the <a href="http://github.com/pythonnet/pythonnet/issues">
|
129 | 130 | Python for .NET issue tracker</a> to report issues. </p>
|
130 |
| - <p> My <a href="http://brianlloyd.blogspot.com">blog site</a> is |
131 |
| - also (sometimes) a good source for more information on Python for |
132 |
| - .NET ;) </p> |
133 | 131 | <ul>
|
134 | 132 | <li>The <a href="./readme.html">README</a> provides a detailed
|
135 | 133 | overview of Python for .NET, as well as some basic usage
|
|
0 commit comments