search engine

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • vinodh kumar

    #1

    search engine

    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.


    -
  • George Sakkis

    #2
    Re: search engine

    vinodh kumar wrote:[color=blue]
    > 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.[/color]

    There is not a "search engine module" around AFAIK. You should do your
    homework first and learn about search engines in a language-independent
    way from some good textbook such as "Mining the Web"
    (http://http.cs.berkeley.edu/~soumen/mining-the-web/), break the
    problem into subparts and decide which ones you will implement. By then
    you should have a much better idea of what modules to look for.

    George

    Comment

    • placid

      #3
      Re: search engine


      George Sakkis wrote:[color=blue]
      > vinodh kumar wrote:[color=green]
      > > 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.[/color]
      >
      > There is not a "search engine module" around AFAIK. You should do your
      > homework first and learn about search engines in a language-independent
      > way from some good textbook such as "Mining the Web"
      > (http://http.cs.berkeley.edu/~soumen/mining-the-web/), break the
      > problem into subparts and decide which ones you will implement. By then
      > you should have a much better idea of what modules to look for.
      >[/color]

      Anyway, if you are going to design a new search engine and implement it
      then you will probably need to use modules only as a helper to your
      algorithm.

      Comment

      • faulkner

        #4
        Re: search engine

        http://www.voidspace.org.uk/cgi-bin/pysearch/search.py
        http://www.voidspace.org.uk/

        The Python Package Index (PyPI) is a repository of software for the Python programming language.


        Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.


        vinodh kumar wrote:[color=blue]
        > 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.
        >
        >
        > -[/color]

        Comment

        • Daniel Nogradi

          #5
          Re: search engine

          > hai all,[color=blue]
          > 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.[/color]

          There are these two guys Sacha or Sergey and Larry (if I remember
          correctly) who already wrote a cute search engine in python, perhaps
          you could ask them for some help.

          Comment

          • gene tani

            #6
            Re: search engine


            George Sakkis wrote:[color=blue]
            > vinodh kumar wrote:[color=green]
            > > 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.[/color]
            >
            > There is not a "search engine module" around AFAIK. You should do your
            > homework first and learn about search engines in a language-independent
            > way from some good textbook such as "Mining the Web"
            > (http://http.cs.berkeley.edu/~soumen/mining-the-web/),[/color]

            There are python bindings for lucene, swish, Xapian, etc. As well as a
            Zcatalog. There *was* Pyndex, from Divmod, maybe they'll send you the
            source.

            More books: Manning and Schuetze "Statistica l NLP", Berry and Browne's
            "Understand ing Search Engines"


            Comment

            • placid

              #7
              Re: search engine


              Daniel Nogradi wrote:[color=blue][color=green]
              > > 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.[/color]
              >
              > There are these two guys Sacha or Sergey and Larry (if I remember
              > correctly) who already wrote a cute search engine in python, perhaps
              > you could ask them for some help.[/color]

              Sergey and Larry youre not talking about Google are you?

              *wink* ;)

              Comment

              Working...