pyNVML - GPU Monitoring and Management

2011-06-16 Thread Robert Alexander
I'm pleased to announce the release of pyNVML 2.0: Python Bindings for the 
NVIDIA Management Library

pyNVML provides programmatic access to static information and monitoring data 
for NVIDIA GPUs, as well as limited management capabilities.

http://pypi.python.org/pypi/nvidia-ml-py/
http://packages.python.org/nvidia-ml-py/

Requires Python 2.5, or an earlier version with the ctypes module.  Released 
under the BSD license.


---
This email message is for the sole use of the intended recipient(s) and may 
contain
confidential information.  Any unauthorized review, use, disclosure or 
distribution
is prohibited.  If you are not the intended recipient, please contact the 
sender by
reply email and destroy all copies of the original message.
---
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


PyCon Finland 2011 Call For Proposals

2011-06-16 Thread Jyry Suvilehto
PyCon Finland will take place October 17-18 in Turku. The first day
will feature presentations and the second is reserved for sprints.

We are currently accepting proposals for both talks and sprints. If
you would like to give a presentation, organize a sprint or see
presentations on a particular topic, please see instructions at
http://python.fi/pyconfi. The deadline for proposals is 1.8. The
organizers will notify accepted presenters and sprint coordinators by
14.8.

The presentation slots will be 40 minutes + 10 minutes of discussion
at the end. Shared sessions are also possible. The language for the
presentations should be English to encourage international
participation.

We are also looking for sponsors for the event. If you are interested
in sponsoring, please contact Python Finland at halli...@python.fi for
details about sponsorship packages.

--
Jyry Suvilehto
Spokesperson, Python Finland
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Nimp: Nested Imports (a la Java)

2011-06-16 Thread Tomer Filiba
Nimp (Nested Imports) is a little meta-importer hook for Python 2.3-2.7 and 
3.0-3.2 that enables the use of *nested packages* (`com.ibm.foo.bar`), as is 
commonplace in Java and various other languages. It works by collecting all 
packages that begin with a common prefix on your `sys.path` and "merging" them 
into logical packages.

Homepage: http://pypi.python.org/pypi/nimp
Install: pip install nimp

Example
---
Consider the following package layout (say, under site-packages, or anywhere on 
your python path):

  site-packages/
com-ibm-storage/
  ... package files ...
com-ibm-storage-plugins/
  ... package files ...
com-google-protobuf/
  ... package files ...
com-google-appengine/
  ... package files ...

Using Nimp is easy:

  import nimp
  nimp.install()

You can place these two lines in your `site.py`; after calling 
`nimp.install()`, the following imports will "magically" work:

  import com # a namespace package (empty)
  import com.google.protobuf
  import com.ibm.storage
  from com.ibm.storage.plugins import MySQLPlugin
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


[ANN] OpenOpt Suite release 0.34

2011-06-16 Thread dmitrey
Hi all,
I'm glad to inform you about new quarterly release 0.34 of the free
(even for commercial purposes, license: BSD) cross-platform OOSuite
package software (OpenOpt, FuncDesigner, SpaceFuncs,
DerApproximator),

Main changes:
* Python 3 compatibility
* Lots of improvements and speedup for interval calculations
* Now interalg can obtain all solutions of nonlinear equation
(example) or systems of them (example) in the involved box lb_i <= x_i
<= ub_i (bounds can be very large), possibly constrained (e.g. sin(x)
+ cos(y+x) > 0.5).
* Many other improvements and speedup for interalg.

See http://forum.openopt.org/viewtopic.php?id=425 for more details.

Regards, D.
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/