forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·210 lines (168 loc) · 4.55 KB
/
index.html
File metadata and controls
executable file
·210 lines (168 loc) · 4.55 KB
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
<html>
<head>
<title>Python for .NET</title>
<style type="text/css"><!--
body {
font: 8pt/16pt georgia,verdana;
text-decoration: none;
color: #555753;
background: #ffffff;
margin: 0px;
}
p {
font: 8pt/16pt georgia;
}
h1 {
font: bold 14pt;
color: #000044;
background-color: #EFEFFF;
color: #000044;
border-style: solid;
border-width: 1px;
border-color: #555753;
padding: 6px, 2px, 6px, 2px;
}
h2 {
font: bold 14pt;
margin-bottom: 0px;
color: #000044;
}
h3 {
font: bold 12pt;
margin-bottom: 0px;
color: #000044;
}
a:link {
font-weight: bold;
text-decoration: none;
color: #000066;
}
a:visited {
font-weight: bold;
text-decoration: none;
color: #000066;
}
a:hover, a:active {
text-decoration: underline;
color: #000066;
}
pre {
font-family: monospace;
background-color: #EFEFFF;
color: #000044;
border-style: solid;
border-width: 1px;
border-color: #555753;
padding: 6px, 2px, 6px, 2px;
}
li {
font: 8pt/16pt georgia,verdana;
text-decoration: none;
color: #555753;
}
.spacer {
font: bold 14pt;
}
.menu {
background-color: #EFEFFF;
color: #000044;
border-style: solid;
border-width: 1px;
border-color: #555753;
padding: 6px, 2px, 6px, 2px;
font-size: x-small;
}
.menu ul {
margin: 0px;
padding: 0px;
}
//--></style>
</head>
<body>
<table width="98%" border="0" cellspacing="4">
<tr>
<!--
<td align="left" valign="top" width="20%" class="menu">
<h1>Python for .NET</h1>
</td>
-->
<td align="left" valign="top">
<h1>Python for .NET</h1>
<p>
Python for .NET is a package that gives Python programmers nearly seamless
integration with the .NET Common Language Runtime (CLR) and provides a
powerful application scripting tool for .NET developers. Using this package
you can script .NET applications or build entire applications in Python,
using .NET services and components written in any language that targets the
CLR (Managed C++, C#, VB, JScript).
</p>
<p>
Note that this package does <em>not</em> implement Python as a first-class
CLR language - it does not produce managed code (IL) from Python code.
Rather, it is an integration of the C Python engine with the .NET runtime.
This approach allows you to use use CLR services and continue to use existing
Python code and C-based extensions while maintaining native execution speeds
for Python code. If you are interested in a pure managed-code implementation
of the Python language, you should check out the
<a href="http://www.ironpython.com">IronPython</a> project, which is in
active development.
</p>
<p>
Python for .NET is currently compatible with Python releases 2.3 and greater.
To subscribe to the
<a href="http://mail.python.org/mailman/listinfo/pythondotnet">
Python for .NET mailing list
</a> or read the
<a href="http://mail.python.org/pipermail/pythondotnet/">
online archives
</a> of the list, see the
<a href="http://mail.python.org/mailman/listinfo/pythondotnet">
mailing list information
</a> page. You can also send questions or comments to me at
<a href="mailto:brian.lloyd@revolution.com">brian.lloyd@revolution.com</a>
or use the
<a href="http://sourceforge.net/tracker/?group_id=162464">
Python for .NET issue tracker</a> to report issues.
</p>
<p>
My <a href="http://brianlloyd.blogspot.com">blog site</a> is also
(sometimes) a good source for more information on Python for .NET ;)
</p>
<ul>
<li>The <a href="./readme.html">README</a>
provides a detailed overview of Python for .NET, as well as
some basic usage examples. Many other examples can be found
in the demos and unit tests for the package.
</li>
<li>Checkout the
<a href="http://cvs.sourceforge.net/viewcvs.py/pythonnet">PythonNet</a>
code
from CVS. See the <a href="http://sourceforge.net/cvs/?group_id=162464">
instructions on Source Forge</a> for details.
</li>
<li><strong>Python 2.4 Releases</strong>
<br />
<a href="./Releases/pythonnet-1.0-rc2-py2.4-clr1.1.exe">
pythonnet-1.0-rc2-py2.4-clr1.1.exe
</a>
<br />
<a href="./Releases/pythonnet-1.0-rc2-py2.4-clr1.1-src.tgz">
pythonnet-1.0-rc2-py2.4-clr1.1-src.tgz
</a>
</li>
<li><strong>Python 2.3 Releases</strong>
<br />
<a href="./Releases/pythonnet-1.0-rc2-py2.3-clr1.1.exe">
pythonnet-1.0-rc2-py2.3-clr1.1.exe
</a>
<br />
<a href="./Releases/pythonnet-1.0-rc2-py2.3-clr1.1-src.tgz">
pythonnet-1.0-rc2-py2.3-clr1.1-src.tgz
</a>
</li>
</ul>
</td>
</tr>
</table>
</body>
</html>