In this episode we write a full-text search engine using bloom filters! What other packages are you aware of that can act as search engines?

2020-06-14 Thread sjkelleyjr
https://youtu.be/MHatF6Hpm1U -- https://mail.python.org/mailman/listinfo/python-list

Re: Combing Search Engine with REST

2015-07-10 Thread subhabangalore
On Friday, July 10, 2015 at 5:36:48 PM UTC+5:30, Laura Creighton wrote: > In a message of Fri, 10 Jul 2015 04:46:25 -0700, > writes: > >Dear Group, > > > >I am trying to make a search engine. I used Whoosh to do it. > >I want to add documents to it. This is goin

Re: Combing Search Engine with REST

2015-07-10 Thread Laura Creighton
In a message of Fri, 10 Jul 2015 04:46:25 -0700, subhabrata.bane...@gmail.com writes: >Dear Group, > >I am trying to make a search engine. I used Whoosh to do it. >I want to add documents to it. This is going fine. >Now, I want to add documents in the index with REST framework.

Combing Search Engine with REST

2015-07-10 Thread subhabrata . banerji
Dear Group, I am trying to make a search engine. I used Whoosh to do it. I want to add documents to it. This is going fine. Now, I want to add documents in the index with REST framework. I could learn Flask well. My task is to use Flask to add documents (by using put/post) to index. I am

Re: How to design a search engine in Python?

2015-02-22 Thread subhabangalore
h, but I am trying to build > >a search engine first and then go for semantic I feel that would give me a > >solid background to work around the problem. > > > >Regards, > >Subhabrata. > > You may find the API docs surrounding rdelbru.github.io/SIREn/ > of in

Re: How to design a search engine in Python?

2015-02-22 Thread Laura Creighton
In a message of Sat, 21 Feb 2015 22:07:30 -0800, subhabangal...@gmail.com write >Dear Sir, > >Thank you for your kind suggestion. Let me traverse one by one. >My special feature is generally Semantic Search, but I am trying to build >a search engine first and then go for seman

Re: How to design a search engine in Python?

2015-02-21 Thread subhabangalore
structure books, that is not an issue but > > how a search engine is getting done, I am thinking bit on that. > > Presumably a search engine is simply a database of keyword -> result, > possibly with some scoring factor. > > Calculating scoring factor is going to be fun. >

Re: How to design a search engine in Python?

2015-02-21 Thread Denis McMahon
t I tried to consult you as I do not know whether they would be fine. > I am trying your way, let me see how much I go. There are so many search > algorithms in our popular data structure books, that is not an issue but > how a search engine is getting done, I am thinking bit on that. Presu

Re: How to design a search engine in Python?

2015-02-21 Thread subhabangalore
On Sunday, February 22, 2015 at 10:12:39 AM UTC+5:30, Steven D'Aprano wrote: > wrote: > > > Dear Group, > > > > I am trying to build a search engine in Python. > > How to design a search engine in Python? > > First, design a search engine. > > T

Re: How to design a search engine in Python?

2015-02-21 Thread Steven D'Aprano
subhabangal...@gmail.com wrote: > Dear Group, > > I am trying to build a search engine in Python. How to design a search engine in Python? First, design a search engine. Then, write Python code to implement that search engine. > To do this, I have read tutorials and working m

How to design a search engine in Python?

2015-02-21 Thread subhabangalore
Dear Group, I am trying to build a search engine in Python. To do this, I have read tutorials and working methodologies from web and books like Stanford IR book [ http://www-nlp.stanford.edu/IR-book/]. I know how to design a crawler, I know PostgresSql, I am fluent with PageRank, TF-IDF

Search Engine optimization technique

2013-01-24 Thread Marlen Coner
jilltoler.com is a web blog where you can find WHAT IS Search Engine optimization, what is SEO Analytics, and how to you SEO tools and Importance of SEO Rankings. For more information please visit : http://www.jilltoler.com -- http://mail.python.org/mailman/listinfo/python-list

search engine for python source code

2010-02-01 Thread purui
I developed a source code search engine for python (http:// nullege.com). It helps you find samples from open source projects. Unlike other code search engines, it really understands python syntax and generates more relative results. I'm working on expend the source code collection now. Give

Re: ANN: Google custom search engine for Python

2008-07-31 Thread Gerard flanagan
Gerard flanagan wrote: What is it? --- A Google custom search engine which targets only the following sites: + `The Hazel Tree <http://thehazeltree.org>`__ + `The Python standard library docs <http://docs.python.org/lib>`__ + `The Python wiki <http://wiki.python.or

ANN: Google custom search engine for Python

2008-07-30 Thread Gerard flanagan
What is it? --- A Google custom search engine which targets only the following sites: + `The Hazel Tree <http://thehazeltree.org>`__ + `The Python standard library docs <http://docs.python.org/lib>`__ + `The Python wiki <http://wiki.python.org>`__ + `Python P

Python Search Engine powered by Google

2008-04-30 Thread Giovanni Giorgi
Hi all, I am working on a customized python search engine: http://blog.objectsroot.com/python/ It is done using a special feature of Google, and it is focused on python I'd like to have the contribution of other guys out of there to fine tuning it. Feel free to use it and give me your fee

Re: "Standard" Full Text Search Engine

2007-10-26 Thread Paul Boddie
On 26 Okt, 19:33, Paul Rubin wrote: > > Ferret is basically a Lucene clone, originally written in Ruby but > with the intensive parts later rewritten in C for speed since the Ruby > version was too slow. There was something similar done in Python > (PyLucene, I think) th

Re: "Standard" Full Text Search Engine

2007-10-26 Thread Paul Rubin
"Martin Marcher" <[EMAIL PROTECTED]> writes: > is there something like a standard full text search engine? > > I'm thinking of the equivalent for python like lucene is for java or > ferret for rails. Preferrably something that isn't exactly a clone of

Re: "Standard" Full Text Search Engine

2007-10-26 Thread Martin Marcher
2007/10/26, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > On Oct 26, 8:53 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > Martin Marcher wrote: > Thanks for the NUCULAR mention (http://nucular.sourceforge.net). It > certainly doesn't meet all the requirements requested (very few users > yet, some

Re: "Standard" Full Text Search Engine

2007-10-26 Thread aaron . watters
On Oct 26, 8:53 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Martin Marcher wrote: > > Hello, > > > is there something like a standard full text search engine? > > any hints? > > There are several python lucene implementations available

Re: "Standard" Full Text Search Engine

2007-10-26 Thread Stephan Diehl
Martin Marcher wrote: > Hello, > > is there something like a standard full text search engine? > > I'm thinking of the equivalent for python like lucene is for java or > ferret for rails. Preferrably something that isn't exactly a clone of > one of those but

Re: "Standard" Full Text Search Engine

2007-10-26 Thread Diez B. Roggisch
Martin Marcher wrote: > Hello, > > is there something like a standard full text search engine? > > I'm thinking of the equivalent for python like lucene is for java or > ferret for rails. Preferrably something that isn't exactly a clone of > one of those but

"Standard" Full Text Search Engine

2007-10-26 Thread Martin Marcher
Hello, is there something like a standard full text search engine? I'm thinking of the equivalent for python like lucene is for java or ferret for rails. Preferrably something that isn't exactly a clone of one of those but more that is python friendly in terms of the API it provides.

Re: 1)URL QueryString Parsing 2)Search Engine Spiders

2007-08-19 Thread mosscliffe
quot;" > > > gv.BackButton = ' > gv.orgQueryString + '">BACK' > > I'm not sure I understand your problem. Does the above code not work? > > > Am I right in thinking Search Engine Spiders will never see my script > > pages as they

Re: 1)URL QueryString Parsing 2)Search Engine Spiders

2007-08-19 Thread samwyse
not sure I understand your problem. Does the above code not work? > Am I right in thinking Search Engine Spiders will never see my script > pages as they exist only for the duration of the python script's > execution ? And even then as they are xxx.py, they would not be > se

1)URL QueryString Parsing 2)Search Engine Spiders

2007-08-19 Thread mosscliffe
cgi.FieldStorage, as I just want to return with the values that were current in the calling page. gv.orgQueryString = "" gv.BackButton = 'BACK' Am I right in thinking Search Engine Spiders will

Re: wxPython, threads, and search engine

2007-07-17 Thread Stephen Hansen
On 7/17/07, Benjamin <[EMAIL PROTECTED]> wrote: I'm writing a search engine in Python with wxPython as the GUI. I have the actual searching preformed on a different thread from Gui thread. It sends it's results through a Queue to the results ListCtrl which adds a new item. This works

wxPython, threads, and search engine

2007-07-17 Thread Benjamin
I'm writing a search engine in Python with wxPython as the GUI. I have the actual searching preformed on a different thread from Gui thread. It sends it's results through a Queue to the results ListCtrl which adds a new item. This works fine or small searches, but when the results num

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-10 Thread Hendrik van Rooyen
"Steve Holden" <[EMAIL PROTECTED]> wrote: > Steven D'Aprano wrote: > > On Wed, 02 May 2007 19:47:28 -0700, Huck Phin wrote: > [a request for peace, love and understanding, concluding with] > >> We all should be a little more considerate of each other. > > > > And if the hippy hug fest fails to s

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-08 Thread Steven Howe
Steve Holden wrote: Steven D'Aprano wrote: On Wed, 02 May 2007 19:47:28 -0700, Huck Phin wrote: [a request for peace, love and understanding, concluding with] We all should be a little more considerate of each other. And if the hippy hug fest fails to stop spamming, perhaps

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-08 Thread Steve Holden
Steven D'Aprano wrote: > On Wed, 02 May 2007 19:47:28 -0700, Huck Phin wrote: [a request for peace, love and understanding, concluding with] >> We all should be a little more considerate of each other. > > And if the hippy hug fest fails to stop spamming, perhaps we'll be allowed > to hunt them do

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-02 Thread Steven D'Aprano
On Wed, 02 May 2007 19:47:28 -0700, Huck Phin wrote: > I understand how top posting is annoying, and when you check any > usenet group message, everyone seems to just jump at the chance to > yell at someone for doing it. What I do not understand is how > everyone is attacking the top poster, and

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-02 Thread Huck Phin
I understand how top posting is annoying, and when you check any usenet group message, everyone seems to just jump at the chance to yell at someone for doing it. What I do not understand is how everyone is attacking the top poster, and not the spammer. It seems that the real issue of this post is

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread Gabriel Genellina
En Tue, 01 May 2007 16:23:44 -0300, Bob Phillips <[EMAIL PROTECTED]> escribió: > That is the oft-quoted, idiotic type of example. The reality is that if > we > follow the thread, we know the question, we only want to see the answer, > not > wade through a morass of stuff we have already seen

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread Dom Robinson
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > You bottom posters really are a bunch of supercilious, self-righteous > bigots. > > Personally, I find bottom-posting like reading a book backwards ... it > doesn't work for me. > > And regardless of his response, Mr Bruney IS an MVP,

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread Jim Ford
Bob Phillips wrote: > That is the oft-quoted, idiotic type of example. The reality is that if we > follow the thread, we know the question, we only want to see the answer, not > wade through a morass of stuff we have already seen. If we haven't seen it, > guess what, we can go and read it. !tuo

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread Bob Phillips
That is the oft-quoted, idiotic type of example. The reality is that if we follow the thread, we know the question, we only want to see the answer, not wade through a morass of stuff we have already seen. If we haven't seen it, guess what, we can go and read it. "funfly3" <[EMAIL PROTECTED]>

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread funfly3
David wrote: > I am not going to join the argument, except you have except to say that as you can see, I > top post. In outlook express, you can see the messages as a thread, so you > read the initial message, come to the reply and you read the response > without having to scroll. Bottom postin

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread David
I am not going to join the argument, except to say that as you can see, I top post. In outlook express, you can see the messages as a thread, so you read the initial message, come to the reply and you read the response without having to scroll. Bottom posting would be fine if the previous messa

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread Sebastian Kaliszewski
Bob Phillips wrote: > You bottom posters really are a bunch of supercilious, self-righteous > bigots. Whatever. When reading answers to some statements normal people like first to see the statement then the response, not the other way around. Just because you're using broken tool (Outlook Expre

Re: SEO - Search Engine Optimization - Seo Consulting

2007-05-01 Thread Bob Phillips
You bottom posters really are a bunch of supercilious, self-righteous bigots. Personally, I find bottom-posting like reading a book backwards ... it doesn't work for me. And regardless of his response, Mr Bruney IS an MVP, he is clearly knowledgeable in his subject, and his book is well enough

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Spin Dryer
On Sun, 29 Apr 2007 20:55:11 -0400, [Juan T. Llibre] said :- >re: >!>>>Top posting >!>> Did not. I replied to the message at the bottom of the thread. >!> Congratulations, you've now made a fool of yourself in public. > >OK, cut it out. > >Top or bottom posting is a user choice. >No need to flame

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Sherm Pendley
"Juan T. Llibre" <[EMAIL PROTECTED]> writes: > Top or bottom posting is a user choice. Yes, one can choose to be polite and follow established usenet conventions, or one can choose to be rude and self-centered. Those who choose rudeness over courtesy can expect to be called down for it - which i

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Juan T. Llibre
re: !>>>Top posting !>> Did not. I replied to the message at the bottom of the thread. !> Congratulations, you've now made a fool of yourself in public. OK, cut it out. Top or bottom posting is a user choice. No need to flame someone for using either. Juan T. Llibre, asp.net MVP asp.net faq :

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Sherm Pendley
"Alvin Bruney [MVP]" writes: >>Top posting > Did not. I replied to the message at the bottom of the thread. Congratulations, you've now made a fool of yourself in public. Top posting has nothing to do with where your reply is placed with respect to other messages. Top posting is when you add yo

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Alvin Bruney [MVP]
>Top posting Did not. I replied to the message at the bottom of the thread. >Call yourself an MVP, that's a joke Slick. Yup, I do call myself an MVP, it's not a joke either. -- Regards, Alvin Bruney -- Shameless author plug Excel Services for .

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Spin Dryer
On Sat, 28 Apr 2007 21:21:39 -0400, ["Alvin Bruney [MVP]" ] said :- >Please don't spam this group Top posting and without removing the spamvertised site, you are as bad as the spammer. Call yourself an MVP, that's a joke Slick. Indeed the spam was not even seen by probably many servers until you

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-29 Thread Dom Robinson
In article <[EMAIL PROTECTED]>, "Alvin Bruney [MVP]" says... > Please don't spam this group > A top-poster replies to a spammer. Now that world has truly gone mad(!) -- Dom Robinson Gamertag: DVDfever email: dom at dvdfever dot co dot uk /* http://DVDfever.co.uk (editor) /* 1132 DVDs,

Re: SEO - Search Engine Optimization - Seo Consulting

2007-04-28 Thread Alvin Bruney [MVP]
Please don't spam this group -- Regards, Alvin Bruney -- Shameless author plug Excel Services for .NET is coming... OWC Black book on Amazon and www.lulu.com/owc Professional VSTO 2005 - Wrox/Wiley <[EMAIL PROTECTED]> wrote in message news:[E

SEO - Search Engine Optimization - Seo Consulting

2007-04-28 Thread Leisure . 210
Free Seo Consulting http://seo-optimizer.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread azrael
That's right. It all depends on your design. When you do a select you could brute force it to to return the data, but the speed comes from elegant designing and programing skills. Using C++ or even Better C would probably boost your database model. Try to sort the data in the database so you can ef

Re: Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread Larry Bates
Clement wrote: > I am now creating IR engine in python which has its own database > implementation . For nearly 2GB files it works fast. Can i expect the > same speed when my database goes large. Else i have to chose other > language[c/c++] for the speed. > Please tell me the solution..

Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread Clement
I am now creating IR engine in python which has its own database implementation . For nearly 2GB files it works fast. Can i expect the same speed when my database goes large. Else i have to chose other language[c/c++] for the speed. Please tell me the solution...

Seo , Search Engine Optimizer , Seo Search engine Optimization , search engine optimization services, SEO Consulting

2007-03-07 Thread Se0 Guy
Search Engine Optimization http://www.yourseoconsulting.com/ Seo Optimization , Semantic Results, Artificial intelligence in Search, Auto Content Generators, Search Engine Results. SEO optimizer. SEO consulting -- http://mail.python.org/mailman/listinfo/python-list

Google Custom Search Engine

2006-12-26 Thread robert . hundt
Hi, I created a Google Custom Search Engine for searching on: "Software / Compilers / Optimization" This is basically a regular full Google search giving preference to technical sites such as IEEE, ACM, citeseer, the Universities, news-group (this one included), commercial sites suc

Re: search engine

2006-06-24 Thread placid
Daniel Nogradi wrote: > > hai all, > > i am student of computer science dept. i have planned to > > design a search engine in python. i am seeking info about how to > > proceed further. > > i need to know what r the modules that can be used. >

Re: search engine

2006-06-24 Thread gene tani
George Sakkis wrote: > vinodh kumar wrote: > > hai all, > > i am student of computer science dept. i have planned to > > design a search engine in python. i am seeking info about how to > > proceed further. > > i need to know what r the modul

Re: search engine

2006-06-24 Thread Daniel Nogradi
> hai all, > i am student of computer science dept. i have planned to > design a search engine in python. i am seeking info about how to > proceed further. > i need to know what r the modules that can be used. There are these two guys Sacha or Sergey and Larry

Re: search engine

2006-06-24 Thread faulkner
cience dept. i have planned to > design a search engine in python. i am seeking info about how to > proceed further. > i need to know what r the modules that can be used. > > > - -- http://mail.python.org/mailman/listinfo/python-list

Re: search engine

2006-06-24 Thread placid
George Sakkis wrote: > vinodh kumar wrote: > > hai all, > > i am student of computer science dept. i have planned to > > design a search engine in python. i am seeking info about how to > > proceed further. > > i need to know what r the modul

Re: search engine

2006-06-24 Thread George Sakkis
vinodh kumar wrote: > hai all, > i am student of computer science dept. i have planned to > design a search engine in python. i am seeking info about how to > proceed further. > i need to know what r the modules that can be used. There is not a "search e

search engine

2006-06-24 Thread vinodh kumar
hai all, i am student of computer science dept. i have planned to design a search engine in python. i am seeking info about how to proceed further. i need to know what r the modules that can be used. - -- http://mail.python.org/mailman/listinfo/python-list

Funny! More offers to select a search engine!

2006-01-17 Thread zizi2002198
www.goodugle.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Python for search engine development

2005-10-08 Thread Alex Martelli
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Well, Google applies some Python in their implementation, see > http://www-db.stanford.edu/~backrub/google.html "Some" is correct. As for writing a search engine in Python _only_, hmmm -- I honestly don't know. You cou

Re: Python for search engine development

2005-10-02 Thread gene tani
http://groups.google.com/group/comp.lang.python/browse_thread/thread/6e6dc84e68e25039/1436d0b3466e262a?q=lucene&rnum=1#1436d0b3466e262a Mike Meyer wrote: > "corebump" <[EMAIL PROTECTED]> writes: > > > hi everybody, > > i planinng develop a search engin

Re: Python for search engine development

2005-10-02 Thread Mike Meyer
"corebump" <[EMAIL PROTECTED]> writes: > hi everybody, > i planinng develop a search engine and i think using the python. Python > performance is enough this project? If you're going to do the heavy lifting in Python, maybe. It depends on what you're g

Re: Python for search engine development

2005-10-02 Thread [EMAIL PROTECTED]
Well, Google applies some Python in their implementation, see http://www-db.stanford.edu/~backrub/google.html -- http://mail.python.org/mailman/listinfo/python-list

Python for search engine development

2005-10-02 Thread corebump
hi everybody, i planinng develop a search engine and i think using the python. Python performance is enough this project? Best Regards -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Search Engine app

2005-09-15 Thread asmlinkage
Will McGugan wrote: > > Wasn't Google's first search engine actualy written in Python? I would'nt be surprised if they actually used python to do some prototyping of their algorithms but I cannot imagine the search engine actually being written in python. Search engine

Re: Python Search Engine app

2005-09-15 Thread Jim
I am finding this discussion illuminating. Can I ask: does it possibly make sense to use a dB? For an application of mine, I had been looking at putting the text into PostGres, and using their OpenFTS, at //http://openfts.sourceforge.net/ (there is a Python module to talk to OpenFTS, although it

Re: Python Search Engine app

2005-09-15 Thread Thomas Guettler
Am Wed, 14 Sep 2005 07:39:35 -0700 schrieb Harlin Seritt: > Hi, > > Is anyone aware of an available open-source/free search engine app > (something similar to HTDig) written in Python that is out there? > Googling has turned up nothing. Thought maybe I'd mine some of you &

Re: Python Search Engine app

2005-09-14 Thread Peter Hansen
Will McGugan wrote: > Alan Meyer wrote: >> I stand ready to be corrected, but I think Python would not be a >> good language for writing search engines. > Wasn't Google's first search engine actualy written in Python? Not unless it was some kind of quickie pr

Re: Python Search Engine app

2005-09-14 Thread Alan Meyer
the query are indeed mostly Python wrappings for C++ engines. One that might not be, "lupy", notes under performance in the FAQ the simple statement that "Java is faster". As between Java and C++, I like Java much more as a programmer friendly programming language, but I think I

Re: Python Search Engine app

2005-09-14 Thread Kent Johnson
afoundation.org/ http://divmod.org/projects/lupy Kent > > Harlin Seritt wrote: > >>Hi, >> >>Is anyone aware of an available open-source/free search engine app >>(something similar to HTDig) written in Python that is out there? >>Googling has turned up nothing. Thought

Re: Python Search Engine app

2005-09-14 Thread Will McGugan
ery high speed operations on highly compressed binary > structures - which is not Python's forte. > > You might be able to put a Python interface over an engine written > in another language. Wasn't Google's first search engine actualy written in Python? Will McGugan -- h

Re: Python Search Engine app

2005-09-14 Thread Fredrik Lundh
Harlin Seritt wrote: > Is anyone aware of an available open-source/free search engine app > (something similar to HTDig) written in Python that is out there? > Googling has turned up nothing. Thought maybe I'd mine some of you > guys' minds on this. http://divmo

Re: Python Search Engine app

2005-09-14 Thread gene tani
Yes, there's a bunch. Google for "query parser" + python, "porter stemming" "stopwords" "text indexer". Maybe lucene has some python bindings, hmm? Harlin Seritt wrote: > Hi, > > Is anyone aware of an available open-source/free search engin

Re: Python Search Engine app

2005-09-14 Thread Alan Meyer
"Harlin Seritt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > Is anyone aware of an available open-source/free search engine app > (something similar to HTDig) written in Python that is out there? > Googling has turned up nothing. Thought ma

Python Search Engine app

2005-09-14 Thread Harlin Seritt
Hi, Is anyone aware of an available open-source/free search engine app (something similar to HTDig) written in Python that is out there? Googling has turned up nothing. Thought maybe I'd mine some of you guys' minds on this. thanks, Harlin Seritt Internet Villa: www.seritt.org

ideal rankings for python related search engine queries

2005-04-09 Thread Amir Michail
Hi, Google is good, but not perfect. CollaborativeRank takes Google rankings as a starting point but allows users to tweak them in a collaborative way to achieve something even better. Perhaps some people in this group might be interested in producing even better rankings for python related quer

Re: search engine

2005-01-30 Thread BJörn Lindqvist
> hi all, i´m doing a search engine using python for the spider and php > to make a web for the search. The Database i have choosen is > postgreSQL. Do you think it is a good choosen? Any suggestion? "Databases are implementation details! Considering the database should be defer

Re: search engine

2005-01-30 Thread Premshree Pillai
On 30 Jan 2005 11:19:30 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > hi all, i´m doing a search engine using python for the spider and php > to make a web for the search. The Database i have choosen is Just curious: is there any particular reason you want to use PHP for buil

search engine

2005-01-30 Thread jlrodilla
hi all, i´m doing a search engine using python for the spider and php to make a web for the search. The Database i have choosen is postgreSQL. Do you think it is a good choosen? Any suggestion? if anybody in interested in colaborate please send an e-mail to [EMAIL PROTECTED] In a few weeks i