I've added a rudimentary Python-friendly ISP page to the python.org website:
http://www.python.org/hosting/
There are very few providers listed so far, and for those that are listed,
the information is pretty minimal, mostly taken from postings to c.l.py.
Send feedback to webmaster(a)python.org.
Virtually any web hosting service offers some level of Python support these
days, even if it's nothing more than /usr/local/bin/python or the ability
for shell customers to install their own copy of the interpreter. I am
especially interested in knowing what sort of support beyond the bare
minimum is provided. Many ISPs don't do a very good job publicizing such
features (Zope availability, PIL or mxTools installation, etc), so it's
helpful if the Python community can supplement the ISP's information.
Thanks,
--
Skip Montanaro (skip(a)pobox.com - http://www.mojam.com/)
Boycott Netflix - they spam
I've marked PEP 272: "API for Block Encryption Algorithms v1.0" as
final, adding the 1.0 version designation just in case there's a 1.1
or 2.0 some day.
The HTML version is at
http://www.python.org/peps/pep-0272.html
The only changes from the previous version posted on April 17th are
minor and purely editorial, so the full text won't be included in this
posting.
--amk (www.amk.ca)
I'm afraid we have no time for codes and manners.
-- The Doctor, in "The Edge of Destruction"
PdfSearch
---------
Find text strings in an archive of pdf files
With PdfSearch you can find text strings in an archive of pdf files.
PdfSearch is free, licensed under the GPL, and runs on W32 and on Unix
systems. It provides a cheap and simple alternative to more expensive
(and sophisticated) proprietary solutions. PdfSearch works by gluing
with Python the indexer utility module
(http://gnosis.cx/download/Gnosis_Utils-0.95.tar.gz by David Mertz) and
Xpdf (http://www.foolabs.com/xpdf by Derek B. Noonburgand). It can be
used from the a command line as well as through a simple graphic user
interface.
URL: http://pdfsearch.sourceforge.net/
Download: http://sourceforge.net/projects/pdfsearch/
License: GPL
Platform: Win32, Unix, Linux
Requires: Pmw, Tkinter
Binaries: Win32
Gui: Tkinter
Categories: Applications
carlo bifulco (c.bifulco(a)tin.it)
--
<a href="http://pdfsearch.sourceforge.net/">PdfSearch</a> -- Find text
strings in an archive of pdf files
A new release for this CGNS wrapper. This version has a larger wrap
of CGNS MLL, many examples and a lot of corrected bugs.
The web site has now the on-line docs, see
http://elsa.onera.fr/CGNS/releases
FEATURES:
- a simple wrapper on top of ADF calls and MLL calls
- an attempt to an Object-oriented interface to CGNS mid-level lib
- all data arrays are Python Numeric Arrays
- tests and demos for ADF/CGNS
- some User's Guide to CGNS examples, a naca0012 sample, etc...
- a tree parser demo with an XML tree output, date stamps...
- tests on ADF, MLL and SIDS calls (not 100% coverage so far)
-MP-
-----------------------------------------------------------------------
Marc POINOT Alias: marcvs Email: poinot(a)onera.fr
ONERA -MFE/DSNA/ELSA Tel: 01.46.73.42.84 Info: elsa-info(a)onera.fr
29, Div. Leclerc Fax: 01.46.73.41.66 Site:
92322 Chatillon FRANCE Project: elsA Web: http://www.onera.fr
[Resent, since the first try didn't make it to the list.]
As one of the EuroPython organizers, I would like to remind
you that the early bird registration period is coming to an end.
It is only available until May 31st, so...
Register now and enjoy the most exiting European Python
event this year !
Conference homepage and registration: http://www.europython.org/
The conference features keynotes from Guido van Rossum,
Eric S. Raymond and offers highlights on many Python and Zope
topics with a strong focus on Python based applications looked
at from both a management and a developer point of view.
Regards,
EuroPython Conference Team
As one of the EuroPython organizers I would like to remind
you that the early bird registration fee is available
only until May 31st, so...
Register now and enjoy the most exiting European Python
event this year !
Conference homepage and registration: http://www.europython.org/
The conference features keynotes from Guido van Rossum,
Eric S. Raymond and offers highlights on many Python and Zope
topics with a strong focus on Python based applications looked
at from both a management and a developer point of view.
Regards,
--
Marc-Andre Lemburg
CEO eGenix.com Software GmbH
______________________________________________________________________
Company & Consulting: http://www.egenix.com/
Python Software: http://www.egenix.com/files/python/
Meet us at EuroPython 2002: http://www.europython.org/
Sorry if you don't understand french, this annonce, exceptionaly,
concern only french reader.
Un wiki francophone vient de naitre, il habite chez tuxfamily :
http://wikipython.tuxfamily.org
Un wiki est un système de gestion de pages collaboratif, chacun est libre de
contribuer en ajoutant de nouvelles pages o�� en complétant celles existantes.
La version utilisée est écrite en Python et basée sur MoinMoin.
J'en profite également pour rapeller à tous les utilisateurs francophone
qu'il existe un newsgroup fr.comp.lang.python, une liste de diffusion
http://www.aful.org/mailman/listinfo/python, un cannal irc #python-fr sur
irc.openprojects.net
A bientôt donc
--
William Dodé - Informaticien Indépendant
http://www.flibuste.net
Python World
------------
A website focus on Python and Zope for enterprise application.
This is a new website focus on Python and Zope, aims at helping
programmer with tools and modules, especially for enterprise and
globalizing application.
URL: http://www.dohao.org/python
Categories: Web Sites
Wenshan Du (python(a)dohao.org)
http://www.dohao.org/python
--
<a href="http://www.dohao.org/python">Python World</a> -- A website
focus on Python and Zope for enterprise application.
NAME:
pysqlite - Extension module for SQLite database.
DESCRIPTION:
A Python-DB API Spec v2.0 compliant entension module that connects to
SQLite databases.
SQLite is a powerful, embedded relational database in a compact C
library. It supports a large subset of SQL92 and transactions.
It has a simple C/C++ interface requiring only three functions to
perform queries. It has TCL bindings and an ODBC driver. Sources are
uncopyrighted and can be used for any purpose. More information can be
found at <http://www.hwaci.com/sw/sqlite/index.html>.
USAGE:
import sqlite
conn = sqlite.connect(db="db", mode=077)
cursor = conn.cursor()
SQL = "select genus, species, family, category, author1, rank " \
+ " from calflora order by genus, species limit 10;"
cursor.execute(SQL)
for col in cursor.description():
print "\t %12s - %3s bytes" % (col[0], repr(col[3]))
row = cursor.fetchone()
while row != None:
print "%14s, %15s, %19s, %8s, %25s" % tuple(row)
row = cursor.fetchone()
SQL = "insert into calflora (family,genus,species) values(%s,%s,%s)"
cursor.execute(SQL, ('weedus', 'itchus', 'maximus'))
conn.close()
HOMEPAGE:
There is not much there yet at <http://pysqlite.sourceforge.net>
DOWNLOAD:
But you can download it at <http://www.sourceforge.net/projects/pysqlite>
AUTHOR:
Michael Owens <owensmk(a)earthlink.net>
LICENSE:
BSD
NOTES:
- Built and tested on Gentoo Linux
Greetings everyone,
My name is Xavier, and I am in a state of ecstacy right now (quite literally, too). Because, I am proud to announce that the official NYCPUG website is online, and nere its final layout state. I am calling out to all the New York City Python hackers out there to come, integrate their knowledge into one big mass of hairy information.
Thus far, since the idea is very young (so is the site), there is only one official member (me being). At NYCPUG, it'll be all about us, our knowledge, our ideas, just 'us' having a fun time and enjoying what we have and can do.
The website is located at: http://www.nycpug.org. You can also go to http://www.python.org/UserGroups.html to find the URL if anything. The base mailing-list for NYCPUG is not up yet; however, if you have any ideas, suggestions, inqueries, or want to join up and find out more information about NYCPUG -- then, e-mail me at: xavier(a)nycpug.org.
Thanks, and take care.
Xavier M. (xavier(a)nycpug.org)
NYCPUG, Founder.
http://www.nycpug.org
--
_______________________________________________
Sign-up for your own FREE Personalized E-mail at Mail.comhttp://www.mail.com/?sr=signup