473,698 Members | 2,556 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 1173
?????? ??????????? 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
1516
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
2409
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
2628
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
1898
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
4199
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
2691
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
1175
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
1667
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
3010
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
8683
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...
0
8609
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9170
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9031
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7739
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...
0
5862
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
4371
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2007
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.