473,739 Members | 4,265 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is there something like Zoe in Python

Zoe is an application written in Java that is also a SMTP/POP/WEB server
that sits between your normal mail user agent (Thunderbird, mutt or
Outlook) and the rest of the world. Every mail you've received or sent is
stored and indexed in Zoe, so that you can perform searches (ala Google) on
your own mail database, via its web interface.

I was wondering if there's something similar but written in Python.

--
дамјан

"The moment you commit and quit holding back, all sorts of unforseen
incidents, meetings and material assistance will rise up to help you.
The simple act of commitment is a powerful magnet for help." -- Napoleon
Jul 18 '05 #1
4 1178
?????? ??????????? wrote:
Zoe is an application written in Java that is also a SMTP/POP/WEB server
that sits between your normal mail user agent (Thunderbird, mutt or
Outlook) and the rest of the world. Every mail you've received or sent is
stored and indexed in Zoe, so that you can perform searches (ala Google)
on your own mail database, via its web interface.

I was wondering if there's something similar but written in Python.


Not to my knowledge - I searched on such tools a while ago, and found ZOE to
be a great application. It shouldn't be too hard to create such an app
based on ZOPE and the usual standard libs - but I certainly don't have the
time to do it :)
--
Regards,

Diez B. Roggisch
Jul 18 '05 #2
Hi !

You can use Hamster (http://hamster-fr.sourceforge.net )

And drive it, from Python, via COM

sample :

# -*- coding: cp1252 -*-

''' Exemple d'appel de Hamster, depuis Python
-----------------------------------------
la fonction "exportgrou pe" exporte, dans le fichier
texte indiqu, un ensemble de messages d'un newsgroup.
(ralisation http://mclaveau.com)
'''

from win32com.client import Dispatch
ham = None

def exportgroupe(gr oupe,fichier,nd ebut=0,nfin=999 999999):
global ham
if ham == None:
ham = Dispatch("Hamst er.App")
grp = ham.NewsGrpOpen (groupe)
if grp>0:
print '\r\n','-'*70
print 'Groupe :',groupe,
print ' Messages, de',ham.NewsArt NoMin(grp),
print ' ',ham.NewsArtN oMax(grp)
ndebut = max(ham.NewsArt NoMin(grp), ndebut)
nfin = min(ham.NewsArt NoMax(grp), nfin)
fichier=open(fi chier,'w')
for numero in range(ndebut, nfin):
print numero,
txtArticle = ham.NewsArtText Export(grp, numero)
fichier.write(t xtArticle.encod e('cp1252','rep lace'))
fichier.close()
ham.NewsGrpClos e(grp)

'''usage :
exportgroupe( nom_groupe, fichier_destina taire, [num_message_db ut],
[num_message_fin])
les paramtres entre crochets sont facultatifs.'''

exportgroupe('f r.comp.lang.pyt hon','c:\pg.txt ')
exportgroupe('p are-feux','c:\pf.tx t', 3000,3002)


Jul 18 '05 #3

[??????]
Zoe is an application written in Java that is also a SMTP/POP/WEB server
that sits between your normal mail user agent (Thunderbird, mutt or
Outlook) and the rest of the world. Every mail you've received or sent is
stored and indexed in Zoe, so that you can perform searches (ala Google) on
your own mail database, via its web interface.

I was wondering if there's something similar but written in Python.


Divmod Quotient: http://www.divmod.org/Home/Projects/Quotient/index.html

I haven't used it, but I believe it's exactly what you describe.

--
Richie Hindle
ri****@entrian. com

Jul 18 '05 #4
Hello ????????????,
Zoe is an application written in Java that is also a SMTP/POP/WEB server
that sits between your normal mail user agent (Thunderbird, mutt or
Outlook) and the rest of the world. Every mail you've received or sent is
stored and indexed in Zoe, so that you can perform searches (ala Google) on
your own mail database, via its web interface.

I was wondering if there's something similar but written in Python.

You can do indexing with Lupy (http://www.divmod.org/Home/Projects/Lupy/)
The SMTP/POP/WEB stuff can be done with the standard Python library or with
twisted (http://twistedmatrix.com/).

HTH.
--
------------------------------------------------------------------------
Miki Tebeka <mi*********@gm ail.com>
http://tebeka.spymac.net
The only difference between children and adults is the price of the toys
Jul 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
521
by: pet100us | last post by:
Hi, Is there some program that is simular to java's hsqldb (http://hsqldb.sourceforge.net/). It is a relational database that can easily be used within a small java program without installing a MySQL, Postgresql etc. It is used within the same virtual machine whitout installing anything extra. Is there somthing similar for python? I need a small database that I can build into my application. When the program starts the database
1
1521
by: Player | last post by:
Hell all once again :) I just installed Python after giving Activestates distribution of python a try for a few days, and I have come across something that strikes me as a little weird, to my beginners eye anyways. In Activestates distribution of python, Idle or Pythonwin whatever their version of Idle is, loaded fast and smoothly, and if I click-held the idle GUI and moved the GUI window to reposition it somewhere else of the screen,...
9
2412
by: Harald Armin Massa | last post by:
I need to do some synchronisations like in a cron.job import time from threading import Thread class updater(Thread): def run(self): while True: do_updates() time.sleep(600)
9
2632
by: Jaime Wyant | last post by:
I know I've seen this somewhere, but can't seem to google it. Is there a way to use an alternate statement separator, other than the default ';'? jw
5
1899
by: Alex Gittens | last post by:
I'm new to Python from Perl, and loving it. Has there ever been any discussion of creating a similar resource as CPAN for Python, or a similar distribution method as PPMs? Seems like it would make a great language even better. Alex -- http://tangentspace.net/cz
44
4205
by: Tolga | last post by:
As far as I know, Perl is known as "there are many ways to do something" and Python is known as "there is only one way". Could you please explain this? How is this possible and is it *really* a good concept?
2
2694
by: Steven D'Aprano | last post by:
When using the timeit module, you pass the code you want to time as strings: import timeit t = timeit.Timer("foo(x, y)", \ """from module import foo x = 27 y = 45 """) elapsed_time = t.timeit()
8
1176
by: John Salerno | last post by:
I was just thinking, since Python 3.0 is supposed to clean up a lot of the unnecessary or redundant features of Python and make other things more streamlined, does it seem to anyone that including SQLite goes against this goal? This is just me thinking out loud, mind you, but it seems like including a database module (especially one that many people won't use in favor of MySQL or PostgreSQL, etc.) is weighing down the standard library. I...
28
1677
by: jmDesktop | last post by:
Studying OOP and noticed that Python does not have Interfaces. Is that correct? Is my schooling for nought on these OOP concepts if I use Python. Am I losing something if I don't use the "typical" oop constructs found in other languages (Java, C# come to mind.) I'm afraid that if I never use them I'll lose them and when I need them for something beside Python, I'll be lost. Thank you.
6
3013
by: dudeja.rajat | last post by:
Hi, How to check if something is a list or a dictionary or just a string? Eg: for item in self.__libVerDict.itervalues(): self.cbAnalysisLibVersion(END, item) where __libVerDict is a dictionary that holds values as strings or
0
8969
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
1
9266
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9209
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8215
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6754
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6054
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4826
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2193
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.