Skip to content

Commit ed14041

Browse files
committed
Import old web page from sourceforge
0 parents  commit ed14041

File tree

2 files changed

+821
-0
lines changed

2 files changed

+821
-0
lines changed

index.html

+149
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
<html>
2+
<head>
3+
<title>Python for .NET</title>
4+
<style type="text/css"><!--
5+
6+
body {
7+
font: 8pt/16pt georgia,verdana;
8+
text-decoration: none;
9+
color: #555753;
10+
background: #ffffff;
11+
margin: 0px;
12+
}
13+
14+
p {
15+
font: 8pt/16pt georgia;
16+
}
17+
18+
h1 {
19+
font: bold 14pt;
20+
color: #000044;
21+
22+
background-color: #EFEFFF;
23+
color: #000044;
24+
border-style: solid;
25+
border-width: 1px;
26+
border-color: #555753;
27+
padding: 6px, 2px, 6px, 2px;
28+
29+
}
30+
31+
h2 {
32+
font: bold 14pt;
33+
margin-bottom: 0px;
34+
color: #000044;
35+
}
36+
37+
h3 {
38+
font: bold 12pt;
39+
margin-bottom: 0px;
40+
color: #000044;
41+
}
42+
43+
a:link {
44+
font-weight: bold;
45+
text-decoration: none;
46+
color: #000066;
47+
}
48+
49+
a:visited {
50+
font-weight: bold;
51+
text-decoration: none;
52+
color: #000066;
53+
}
54+
55+
a:hover, a:active {
56+
text-decoration: underline;
57+
color: #000066;
58+
}
59+
60+
pre {
61+
font-family: monospace;
62+
background-color: #EFEFFF;
63+
color: #000044;
64+
border-style: solid;
65+
border-width: 1px;
66+
border-color: #555753;
67+
padding: 6px, 2px, 6px, 2px;
68+
}
69+
70+
li {
71+
font: 8pt/16pt georgia,verdana;
72+
text-decoration: none;
73+
color: #555753;
74+
}
75+
76+
.spacer {
77+
font: bold 14pt;
78+
}
79+
80+
.menu {
81+
background-color: #EFEFFF;
82+
color: #000044;
83+
border-style: solid;
84+
border-width: 1px;
85+
border-color: #555753;
86+
padding: 6px, 2px, 6px, 2px;
87+
font-size: x-small;
88+
}
89+
90+
.menu ul {
91+
margin: 0px;
92+
padding: 0px;
93+
}
94+
95+
//--></style>
96+
</head>
97+
<body>
98+
<table border="0" cellspacing="4" width="98%">
99+
<tbody>
100+
<tr>
101+
<!--
102+
<td align="left" valign="top" width="20%" class="menu"> <h1>Python for .NET</h1>
103+
</td>-->
104+
<td align="left" valign="top">
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
109+
developers. Using this package you can script .NET applications or
110+
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>
113+
<p> Note that this package does <em>not</em> implement Python as a
114+
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
117+
CLR services and continue to use existing Python code and C-based
118+
extensions while maintaining native execution speeds for Python
119+
code. If you are interested in a pure managed-code implementation
120+
of the Python language, you should check out the <a href="http://www.ironpython.com">IronPython</a>
121+
project, which is in active development. </p>
122+
<p> Python for .NET is currently compatible with Python releases 2.5
123+
and greater. To subscribe to the <a href="http://mail.python.org/mailman/listinfo/pythondotnet">
124+
Python for .NET mailing list </a> or read the <a href="http://mail.python.org/pipermail/pythondotnet/">
125+
online archives </a> of the list, see the <a href="http://mail.python.org/mailman/listinfo/pythondotnet">
126+
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 use the <a href="http://sourceforge.net/p/pythonnet/_list/tickets">
129+
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+
<ul>
134+
<li>The <a href="./readme.html">README</a> provides a detailed
135+
overview of Python for .NET, as well as some basic usage
136+
examples. Many other examples can be found in the demos and unit
137+
tests for the package. </li>
138+
<li>Checkout the <a href="http://sourceforge.net/p/pythonnet/code/147/tree/">PythonNet</a>
139+
code from Subversion.. </li>
140+
<li><a href="http://sourceforge.net/projects/pythonnet/files">
141+
Download releases</a> for various versions of Python and CLR.
142+
</li>
143+
</ul>
144+
</td>
145+
</tr>
146+
</tbody>
147+
</table>
148+
</body>
149+
</html>

0 commit comments

Comments
 (0)