Find a new release of python-ldap:
https://pypi.python.org/pypi/python-ldap/2.4.23
python-ldap provides an object-oriented API to access LDAP directory
servers from Python programs. It mainly wraps the OpenLDAP 2.x libs for
that purpose. Additionally it contains modules for other LDAP-related
stuff (e.g. processing LDIF, LDAP URLs and LDAPv3 schema).
Project's web site:
http://www.python-ldap.org/
Checksums:
md5sum python-ldap-2.4.23.tar.gz
3a53d482fd628500ceebe7eca7ace34c
sha1sum python-ldap-2.4.23.tar.gz
39d3f1004e414369d623ea68fd21fee3517355bf
sha256sum python-ldap-2.4.23.tar.gz
7f0406bd7acbdde6ff9ba91b3c9aefb22864d24c3fb35a92baf2e3ab6bf251a4
Ciao, Michael.
----------------------------------------------------------------
Released 2.4.23 2016-01-17
Changes since 2.4.22:
Modules/
* Ref count issue in attrs_from_List() was fixed
(thanks to Elmir Jagudin)
Python module for embedding C/C++ code within Python code. It is
designed to allow coders to easily speed up slow code by replacing small
portions of Python with compiled C/C++ that can transparently read
and modify Python variables. Keeping all the code in the same source
file simplifies development and improves code readability. All the
compiling and linking is done dynamically by the module to further
simplify development.
* Embed C/C++ within Python source code
* Automatically compile and dynamically link using GCC
* Access and modify Python variables as C variables
* Support arrays and strings
* Use ctypes for maximum portability
Simple Example:
from embedc import C
a=[1,4,9]
alen=len(a)
C("""
for (int i=0; i<alen; i++) {
a[i] = a[i]*a[i];
}
""")
print a
Output: [1,16,81]
<P><A HREF="http://pyembedc.sourceforge.net/">PyEmbedC 1.0</A> -
Module to embed C/C++ code within Python code and read/modify
variables natively. (16-Jan-2016)<P>
Hi again...
Sorry, but I have a new url for the video (it's just slightly modified).
https://youtu.be/71aqIwv3vJs
Thanks,
Leandro
On Thursday, January 14, 2016 at 9:23:47 AM UTC-2, Leandro T. C. Melo wrote:
> Hi everyone,
>
> I've recently published a Python (and other languages) plugin for the Qt Creator IDE. In fact, Qt Creator already has some official Python support, but it consists of only basic editing features. The plugin I'm working on gives you semantic highlighting, diagnostics, and completion.
>
> Here you go with an introduction video: https://youtu.be/XHrnvswtW6o
>
> The implementation is probably not mature enough to replace an industrial Python IDE or text editor yet, but hopefully I'll get there. If you'd like to try it out, please be patient with eventual bugs but feel free to report them to me.
>
> Notice the plugin is actually a thin layer bridging Qt Creator and the Uaiso engine[1], which is multi-language source code modeller. So if by any chance you'd like to write a plugin for any other IDE or text editor, you'll get the other languages out of the box (currently there's D and Go).
>
> Any kind of feed become is welcome.
>
> Thanks,
> Leandro
>
> [1] https://github.com/ltcmelo/uaiso
1
0
ANN: unicode 2.1
by garabik-news-2005-05@kassiopeia.juls.savba.sk
15 Jan '16
15 Jan '16
unicode is a simple python command line utility that displays
properties for a given unicode character, or searches
unicode database for a given name.
It was written with Linux in mind, but should work almost everywhere
(including MS Windows and MacOSX), UTF-8 console is recommended.
˙pɹɐpuɐʇs əpoɔı̣uՈ əɥʇ ɟo əsn pəɔuɐʌpɐ
puɐ səldı̣ɔuı̣ɹd əɥʇ ɓuı̣ʇɐɹʇsuoɯəp looʇ ɔı̣ʇɔɐpı̣p ʇuəlləɔxə uɐ sı̣ ʇI
˙sʇuı̣odəpoɔ ʇuəɹəɟɟı̣p ʎləʇəldɯoɔ ɓuı̣sn əlı̣ɥʍ 'sɥdʎlɓ ɟo ɯɐəɹʇs ɹɐlı̣ɯı̣s
ʎllɐnsı̣ʌ oʇuı̣ ʇxəʇ əɥʇ ʇɹəʌuoɔ oʇ pɹɐpuɐʇs əpoɔı̣uՈ əɥʇ ɟo ɹəʍod llnɟ
əɥʇ sʇı̣oldxə ʇɐɥʇ 'ʎʇı̣lı̣ʇn ,əpoɔɐɹɐd, oslɐ suı̣ɐʇuoɔ əɓɐʞɔɐd əɥ⊥
Changes since previous versions:
* add octal character code
* fix crash when displaying numeric and digit properties from internal
python database
* fix default unicodedata path(s)
URL:
http://kassiopeia.juls.savba.sk/~garabik/software/unicode.html
License: GPL v3
--
-----------------------------------------------------------
| Radovan Garabík http://kassiopeia.juls.savba.sk/~garabik/ |
| __..--^^^--..__ garabik @ kassiopeia.juls.savba.sk |
-----------------------------------------------------------
Antivirus alert: file .signature infected by signature virus.
Hi! I'm a signature virus! Copy me into your signature file to help me spread!
Hi,
Wingware has released version 5.1.9 of Wing IDE, our cross-platform
integrated development environment for the Python programming language.
Wing IDE features a professional code editor with vi, emacs, visual
studio, and other key bindings, auto-completion, call tips,
context-sensitive auto-editing, goto-definition, find uses, refactoring,
a powerful debugger, version control, unit testing, search, project
management, and many other features.
This release includes the following minor improvements:
Added --settings= and --cache= command line options for changing
the location of the settings and cache directories
Added Mercurial resolve command
French localization updates (thanks to Jean Sanchez)
Fix failure to enable Stack Data and Watch lists in some cases when
using multi-process debugging
Fix failure to call atexit functions when debug ends on Windows
Fix auto-spacing in PEP484 type annotations
Fix several problems with text rewrapping
Fix Run As Package Module in Testing properties
Fix debugger when using external console and Python 3.x
Partially fixed Django 1.9 template debugging (complete fix
requires changes to Django; see see
https://code.djangoproject.com/ticket/25848 )
Fix failure to goto base class in browser after switching projects
Fix defining custom keys with modifiers other than Alt and Ctrl in
non-English locales
About 10 other minor bug fixes
For details see http://wingware.com/news/2016-01-13 and
http://wingware.com/pub/wingide/5.1.9/CHANGELOG.txt
What's New in Wing 5.1:
Wing IDE 5.1 adds multi-process and child process debugging, syntax
highlighting in the shells, support for pytest, Find Symbol in Project,
persistent time-stamped unit test results, auto-conversion of indents on
paste, an XCode keyboard personality, support for Flask, Django 1.7,
1.8, and 1.9, Python 3.5 and recent Google App Engine versions, improved
auto-completion for PyQt, recursive snippet invocation, and many other
minor features and improvements.
Free trial: http://wingware.com/wingide/trial
Downloads: http://wingware.com/downloads
Feature list: http://wingware.com/wingide/features
Sales: http://wingware.com/store/purchase
Upgrades: https://wingware.com/store/upgrade
Questions? Don't hesitate to email us at support(a)wingware.com.
Thanks,
--
Stephan Deibel
Wingware | Python IDE
The Intelligent Development Environment for Python Programmers
wingware.com
Release Highlights:
-------------------------------
* Debugger
* Cython speedup modules are now available for the debugger (see
performance improvements at:
https://www.speedtin.com/reports/7_pydevd_cython).
* It is considerably faster even without the speedup modules (see
performance improvements at:
https://www.speedtin.com/reports/8_pydevd_pure_python).
* When debugging multiple processes the console wasn't being updated to the
selected stack in the debug view.
* Many bug-fixes.
* Improved the search to always play safe and update the index so that the
matches are always consistent (#PyDev-634).
* Fixed issue renaming top-level module on refactoring.
* Refactoring has option to rename variable to a standard case style.
* Improved the parser that extracted the outline for global tokens to deal
with async and consider declarations inside ifs.
* Code completion of properties with @property no longer shows arguments
parenthesis (#PyDev-453).
* Preventing a freeze if some code-analysis takes too much time
(#PyDev-636).
* Ctrl+1 can be used to wrap/unwrap the contents of brackets (patch by
yohell).
What is PyDev?
---------------------------
PyDev is an open-source Python IDE on top of Eclipse for Python, Jython and
IronPython development.
It comes with goodies such as code completion, syntax highlighting, syntax
analysis, code analysis, refactor, debug, interactive console, etc.
Details on PyDev: http://pydev.org
Details on its development: http://pydev.blogspot.com
What is LiClipse?
---------------------------
LiClipse is a PyDev standalone with goodies such as support for Multiple
cursors, theming, TextMate bundles and a number of other languages such as
Django Templates, Jinja2, Kivy Language, Mako Templates, Html, Javascript,
etc.
It's also a commercial counterpart which helps supporting the development
of PyDev.
Details on LiClipse: http://www.liclipse.com/
Cheers,
--
Fabio Zadrozny
------------------------------------------------------
Software Developer
LiClipse
http://www.liclipse.com
PyDev - Python Development Environment for Eclipse
http://pydev.orghttp://pydev.blogspot.com
PyVmMonitor - Python Profiler
http://www.pyvmmonitor.com/
Hi everyone,
I've recently published a Python (and other languages) plugin for the Qt Creator IDE. In fact, Qt Creator already has some official Python support, but it consists of only basic editing features. The plugin I'm working on gives you semantic highlighting, diagnostics, and completion.
Here you go with an introduction video: https://youtu.be/XHrnvswtW6o
The implementation is probably not mature enough to replace an industrial Python IDE or text editor yet, but hopefully I'll get there. If you'd like to try it out, please be patient with eventual bugs but feel free to report them to me.
Notice the plugin is actually a thin layer bridging Qt Creator and the Uaiso engine[1], which is multi-language source code modeller. So if by any chance you'd like to write a plugin for any other IDE or text editor, you'll get the other languages out of the box (currently there's D and Go).
Any kind of feed become is welcome.
Thanks,
Leandro
[1] https://github.com/ltcmelo/uaiso
Hi all,
I'm delighted to announce the release of Sphinx 1.3.4, now available on
the Python package index at <http://pypi.python.org/pypi/Sphinx>.
It includes about 42 bug fixes for the 1.3 release series, among them a
regression in 1.3.3.
For the full changelog, go to <http://sphinx-doc.org/en/1.3.4/changes.html>.
Thanks to all coraborators and contributers!
And another thing, sphinx official documentation has been moved on the
ReadTheDocs service. Now the documentation provides multiple versions and
multiple languages (en, ja, es, pt_BR).
- http://sphinx-doc.org/
- http://readthedocs.org/projects/sphinx/
What is it?
===========
Sphinx is a tool that makes it easy to create intelligent and beautiful
documentation for Python projects (or other documents consisting of
multiple reStructuredText source files).
Website: http://sphinx-doc.org/
IRC: #sphinx-doc on irc.freenode.net
Enjoy!
--
Takayuki SHIMIZUKAWA
http://about.me/shimizukawa
[This announcement is in German since it targets a local user group
meeting in Düsseldorf, Germany]
________________________________________________________________________
ANKÜNDIGUNG
Python Meeting Düsseldorf
http://pyddf.de/
Ein Treffen von Python Enthusiasten und Interessierten
in ungezwungener Atmosphäre.
Mittwoch, 21.10.2015, 18:00 Uhr
Raum 1, 2.OG im Bürgerhaus Stadtteilzentrum Bilk
Düsseldorfer Arcaden, Bachstr. 145, 40217 Düsseldorf
Diese Nachricht ist auch online verfügbar:
http://www.egenix.com/company/news/Python-Meeting-Duesseldorf-2016-01-19
________________________________________________________________________
NEUIGKEITEN
* Bereits angemeldete Vorträge:
Jens Diemer
"DragonPy - Dragon 32 Emulator in Python"
Charlie Clark
"Statische Code-Analyse mit Quantified Code"
Marc-Andre Lemburg
"MicroPython auf dem BBC MicroBit"
Weitere Vorträge können gerne noch angemeldet werden: info(a)pyddf.de
* Startzeit und Ort:
Wir treffen uns um 18:00 Uhr im Bürgerhaus in den Düsseldorfer
Arcaden.
Das Bürgerhaus teilt sich den Eingang mit dem Schwimmbad
und befindet sich an der Seite der Tiefgarageneinfahrt der
Düsseldorfer Arcaden.
Über dem Eingang steht ein großes Schwimm'in Bilk
Logo. Hinter der Tür direkt links zu den zwei Aufzügen,
dann in den 2. Stock hochfahren. Der Eingang zum Raum 1
liegt direkt links, wenn man aus dem Aufzug kommt.
Google Street View: http://bit.ly/11sCfiw
________________________________________________________________________
EINLEITUNG
Das Python Meeting Düsseldorf ist eine regelmäßige Veranstaltung in
Düsseldorf, die sich an Python Begeisterte aus der Region wendet:
* http://pyddf.de/
Einen guten Überblick über die Vorträge bietet unser YouTube-Kanal,
auf dem wir die Vorträge nach den Meetings veröffentlichen:
* http://www.youtube.com/pyddf/
Veranstaltet wird das Meeting von der eGenix.com GmbH, Langenfeld,
in Zusammenarbeit mit Clark Consulting & Research, Düsseldorf:
* http://www.egenix.com/
* http://www.clark-consulting.eu/
________________________________________________________________________
PROGRAMM
Das Python Meeting Düsseldorf nutzt eine Mischung aus Open Space
und Lightning Talks, wobei die Gewitter bei uns auch schon mal
20 Minuten dauern können ;-).
Lightning Talks können vorher angemeldet werden, oder auch
spontan während des Treffens eingebracht werden. Ein Beamer mit
XGA Auflösung steht zur Verfügung. Folien bitte als PDF auf USB
Stick mitbringen.
Lightning Talk Anmeldung bitte formlos per EMail an info(a)pyddf.de
________________________________________________________________________
KOSTENBETEILIGUNG
Das Python Meeting Düsseldorf wird von Python Nutzern für Python
Nutzer veranstaltet. Um die Kosten zumindest teilweise zu
refinanzieren, bitten wir die Teilnehmer um einen Beitrag
in Höhe von EUR 10,00 inkl. 19% Mwst, Schüler und Studenten
zahlen EUR 5,00 inkl. 19% Mwst.
Wir möchten alle Teilnehmer bitten, den Betrag in bar mitzubringen.
________________________________________________________________________
ANMELDUNG
Da wir nur für ca. 20 Personen Sitzplätze haben, möchten wir
bitten, sich per EMail anzumelden. Damit wird keine Verpflichtung
eingegangen. Es erleichtert uns allerdings die Planung.
Meeting Anmeldung bitte formlos per EMail an info(a)pyddf.de
________________________________________________________________________
WEITERE INFORMATIONEN
Weitere Informationen finden Sie auf der Webseite des Meetings:
http://pyddf.de/
Mit freundlichen Grüßen,
--
Marc-Andre Lemburg
eGenix.com
Professional Python Services directly from the Experts (#1, Jan 12 2016)
>>> Python Projects, Coaching and Consulting ... http://www.egenix.com/
>>> Python Database Interfaces ... http://products.egenix.com/
>>> Plone/Zope Database Interfaces ... http://zope.egenix.com/
________________________________________________________________________
::: We implement business ideas - efficiently in both time and costs :::
eGenix.com Software, Skills and Services GmbH Pastor-Loeh-Str.48
D-40764 Langenfeld, Germany. CEO Dipl.-Math. Marc-Andre Lemburg
Registered at Amtsgericht Duesseldorf: HRB 46611
http://www.egenix.com/company/contact/http://www.malemburg.com/