Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update index.html #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 15 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
<style type="text/css"><!--

body {
font: 8pt/16pt georgia,verdana;
font: 12pt/18pt georgia,verdana;
text-decoration: none;
color: #555753;
background: #ffffff;
margin: 0px;
}

p {
font: 8pt/16pt georgia;
font: 12pt/18pt georgia;
}

h1 {
font: bold 14pt;
font: bold 16pt;
color: #000044;

background-color: #EFEFFF;
Expand Down Expand Up @@ -68,13 +68,13 @@
}

li {
font: 8pt/16pt georgia,verdana;
font: 12pt/18pt georgia,verdana;
text-decoration: none;
color: #555753;
}

.spacer {
font: bold 14pt;
font: bold 16pt;
}

.menu {
Expand Down Expand Up @@ -103,33 +103,31 @@
</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
<p> Python for .NET (pythonnet) is a package that gives Python programmers
nearly seamless integration with the .NET 4.0+ Common Language Runtime
(CLR) on Windows and Mono runtime on Linux and OSX.
Python for .NET 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>
components written in any language that targets the CLR (C#, VB.NET, F#, C++/CLI).
</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
from Python code. Rather, it is an integration of the CPython
engine with the .NET or Mono 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.5
<p> Python for .NET is currently compatible with Python releases 2.7, 3.3, 3.4, and 3.5.
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 comments to me at <a href="mailto:brian.d.lloyd@gmail.com ">brian.d.lloyd@gmail.com</a>
or use the <a href="http://github.com/pythonnet/pythonnet/issues">
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
Expand Down