Main > Free Download Search >

Free search http software for linux

search http

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3850
js-search 1.0

js-search 1.0


js-search is a javascript indexing and searching. more>>
js-search is a javascript indexing and searching.

A client-side library for building a simple inverted index, and searching it.

You can download the source code from SVN with the following command:

svn checkout http://js-search.googlecode.com/svn/trunk/ js-search
<<less
Download (MB)
Added: 2006-11-03 License: The Apache License 2.0 Price:
1093 downloads
DGS Search 0.9.6

DGS Search 0.9.6


DGS Search was created to provide an easy to install search utility. more>>
DGS Search was created to provide an easy to install search utility capable of handling filesystem and database searches on UNIX and Windows based platforms.

DGS Search is aimed at supporting the small to medium sized web site.

<<less
Download (0.044MB)
Added: 2006-05-04 License: GPL (GNU General Public License) Price:
1269 downloads
pro-search 0.17.2

pro-search 0.17.2


pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks. more>>
pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks.

<<less
Download (0.17MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
896 downloads
Search::ContextGraph 0.15

Search::ContextGraph 0.15


Search::ContextGraph is a Perl module for spreading activation search engine. more>>
Search::ContextGraph is a Perl module for spreading activation search engine.

SYNOPSIS

use Search::ContextGraph;

my $cg = Search::ContextGraph->new();

# first you add some documents, perhaps all at once...

my %docs = (
first => [ elephant, snake ],
second => [ camel, pony ],
third => { snake => 2, constrictor => 1 },
);

$cg->bulk_add( %docs );

# or in a loop...

foreach my $title ( keys %docs ) {
$cg->add( $title, $docs{$title} );
}

# or from a file...

my $cg = Search::ContextGraph->load_from_dir( "./myfiles" );

# you can store a graph object for later use

$cg->store( "stored.cng" );

# and retrieve it later...

my $cg = ContextGraph->retrieve( "stored.cng" );


# SEARCHING

# the easiest way

my @ranked_docs = $cg->simple_search( peanuts );


# get back both related terms and docs for more power

my ( $docs, $words ) = $cg->search(snake);


# you can use a document as your query

my ( $docs, $words ) = $cg->find_similar(First Document);


# Or you can query on a combination of things

my ( $docs, $words ) =
$cg->mixed_search( { docs => [ First Document ],
terms => [ snake, pony ]
);


# Print out result set of returned documents
foreach my $k ( sort { $docs->{$b} $docs->{$a} }
keys %{ $docs } ) {
print "Document $k had relevance ", $docs->{$k}, "n";
}

# Reload it
my $new = Search::ContextGraph->retrieve( "filename" );

Spreading activation is a neat technique for building search engines that return accurate results for a query even when there is no exact keyword match. The engine works by building a data structure called a context graph, which is a giant network of document and term nodes. All document nodes are connected to the terms that occur in that document; similarly, every term node is connected to all of the document nodes that term occurs in. We search the graph by starting at a query node and distributing a set amount of energy to its neighbor nodes. Then we recurse, diminishing the energy at each stage, until this spreading energy falls below a given threshold. Each node keeps track of accumulated energy, and this serves as our measure of relevance.

This means that documents that have many words in common will appear similar to the search engine. Likewise, words that occur together in many documents will be perceived as semantically related. Especially with larger, coherent document collections, the search engine can be quite effective at recognizing synonyms and finding useful relationships between documents. You can read a full description of the algorithm at http://www.nitle.org/papers/Contextual_Network_Graphs.pdf.

The search engine gives expanded recall (relevant results even when there is no keyword match) without incurring the kind of computational and patent issues posed by latent semantic indexing (LSI). The technique used here was originally described in a 1981 dissertation by Scott Preece.

<<less
Download (0.093MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1120 downloads
Search::Lemur 1.00

Search::Lemur 1.00


Search::Lemur is a Perl class to query a Lemur server, and parse the results. more>>
Search::Lemur is a Perl class to query a Lemur server, and parse the results.

SYNOPSYS

use Search::Lemur;

my $lem = Search::Lemur->new("http://url/to/lemur.cgi");

# run some queries, and get back an array of results
# a query with a single term:
my @results1 = $lem->query("encryption");
# a query with two terms:
my @results2 = $lem->query("encryption MD5");

# get corpus term frequency of MD5:
my $md5ctf = $results2[1]->ctf();

This module will make it easy to interact with a Lemur Toolkit for Language Modeling and Information Retrieval server for information retreival exercises. For more information on Lemur, see http://www.lemurproject.org/.

This module takes care of all parsing of responses from the server. You can just pass a query as a space-separated list of terms, and the module will give you back an array of result objects.

<<less
Download (0.008MB)
Added: 2007-04-06 License: Perl Artistic License Price:
932 downloads
Socks via HTTP 1.2

Socks via HTTP 1.2


Socks via HTTP provides a socks tunnel via HTTP. more>>
Socks via HTTP provides a socks tunnel via HTTP.

Socks via HTTP is a program converting SOCKS requests into HTTP requests and tunnelling them through HTTP proxies if needed.

The SOCKS protocol allows programs to traverse firewalls on any port number and is used by many popular programs, like Napster, MSN Messenger, CRT(telnet client) and many others.

Many companies restrict firewall traversals only to HTTP requests, disabling SOCKS proxy.

Socks via HTTP provides a miniature SOCKS server for the SOCKS client, performing its connection through an HTTP proxy to a remote server, which establishes the real connection.

Socks via HTTP is 100% Java, and can run on any OS. It is entirely written in Java.

<<less
Download (0.35MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
854 downloads
Wikipedia search 0.3

Wikipedia search 0.3


Wikipedia search is a superkaramba theme for searching on en.wikipedia.org. more>>
Wikipedia search is a superkaramba theme for searching on en.wikipedia.org.

Based on Answers.com karamba by sg1 http://www.kde-look.org/content/show.php?content=30887

Thanks to Rcio Zienke for language config entry.

To-do

- make some transtalations
- display article in wikipedia search window

<<less
Download (0.012MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1214 downloads
Yahoo::Search 1.7.10

Yahoo::Search 1.7.10


Yahoo::Search is a Perl interface to the Yahoo! Search public API. more>>
Yahoo::Search is a Perl interface to the Yahoo! Search public API.

The following search spaces are supported:

Doc
Common web search for documents (html, pdf, doc, ...), including Y!Q contextual search.

Image
Image search (jpeg, png, gif, ...)

Video
Video file search (avi, mpeg, realmedia, ...)

News
News article search

Local
Yahoo! Local area (ZIP-code-based Yellow-Page like search)

Terms
A pseudo-search to report the important search terms from the provided content or content+query.

Spell
A pseudo-search to fetch a "did you mean?" spelling suggestion for a search term.

Related
A pseudo-search to fetch "also try" related-searches for a search term.

(Note: what this Perl API calls "Doc" Search is what Yahoo! calls "Web" Search. But gee, arent all web searches "Web" search, including Image/News/Video/etc?)

Yahoo!s raw API, which this package uses, is described at:

http://developer.yahoo.net/

<<less
Download (0.035MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1136 downloads
Archive Search 0.9.2

Archive Search 0.9.2


Archive Search is an extension which displays an archived versions of the webpage. more>>
Archive Search is an extension which displays an archived versions of the webpage.

Displays an archived versions of the webpage.

First click: Internet Archive
Second click: Google cache
Third click: Yahoo
Fourth click: MSN

<<less
Download (0.005MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
931 downloads
WWW::Search::HotJobs 1.30

WWW::Search::HotJobs 1.30


WWW::Search::HotJobs is a Perl class for searching HotJobs. more>>
WWW::Search::HotJobs is a Perl class for searching HotJobs.

SYNOPSIS

require WWW::Search;
$search = new WWW::Search(HotJobs);

This class is an HotJobs specialization of WWW::Search. It handles making and interpreting HotJobs searches http://www.HotJobs.com.

This class exports no public interface; all interaction should be done through WWW::Search objects.

OPTIONS

None at this time (2001.04.25)

search_url=URL

Specifies who to query with the HotJobs protocol. The default is at http://www.HotJobs.com/cgi-bin/job-search.

search_debug, search_parse_debug, search_ref Specified at WWW::Search.

HOW DOES IT WORK?

native_setup_search is called before we do anything. It initializes our private variables (which all begin with underscores) and sets up a URL to the first results page in {_next_url}.

native_retrieve_some is called (from WWW::Search::retrieve_some) whenever more hits are needed. It calls the LWP library to fetch the page specified by {_next_url}. It parses this page, appending any search hits it finds to {cache}. If it finds a ``next button in the text, it sets {_next_url} to point to the page for the next set of results, otherwise it sets it to undef to indicate were done.

<<less
Download (0.039MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
lns.http 0.1

lns.http 0.1


lns.http is a simple framework for writing Common LISP Web applications. more>>
lns.http is a simple framework for writing Common Lisp web applications. The project handles the incoming connections, parses HTTP headers and queries, and finally hands control over to your URL handler.

lns.http is a HTTP/1.1 compatible web server but tries to achieve compatibility with lesser (down to the informal HTTP/0.9) clients.

The lns.http web server uses lisp-network-server to take care of network handling.

This software is licensed unter the LGPL.
<<less
Download (0.017MB)
Added: 2006-12-19 License: LGPL (GNU Lesser General Public License) Price:
1046 downloads
Answers.com Search 1.3

Answers.com Search 1.3


Answers.com Search is a Superkaramba theme that searches Answers.com. more>>
Answers.com Search is a Superkaramba theme that searches Answers.com.

If you tried this theme before and it doesnt works for you, please try this new version since it fixes a major problem that used to prevent the theme from working.

<<less
Download (0.008MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1188 downloads
WWW::Search::Nomade 1.3

WWW::Search::Nomade 1.3


WWW::Search::Nomade is a Perl class for searching Nomade. more>>
WWW::Search::Nomade is a Perl class for searching Nomade.

SYNOPSIS

use WWW::Search;

my $oSearch = new WWW::Search(Nomade);

$oSearch->maximum_to_retrieve(100);

#$oSearch ->{_debug}=1;

# Create request
$oSearch->native_query(WWW::Search::escape_query("cgi"));

# or Make an international search (on google db)
$oSearch->native_query(WWW::Search::escape_query("cgi"),
{ opt => 1 });

print "I find ", $oSearch->approximate_result_count(),"n";
while (my $oResult = $oSearch->next_result())
{ print "Url:", $oResult->url,"n","Titre:", $oResult->title,"n"; }

This class is an Nomade specialization of WWW::Search. It handles making and interpreting Nomade searches http://www.Nomade.fr, a french search engine.

This class exports no public interface; all interaction should be done through WWW::Search objects.

<<less
Download (0.004MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
WWW::Search::Dice 2.026

WWW::Search::Dice 2.026


WWW::Search::Dice is a class for searching Dice. more>>
WWW::Search::Dice is a class for searching Dice.

SYNOPSIS

use WWW::Search;
my $oSearch = new WWW::Search(Dice);
my $sQuery = WWW::Search::escape_query("unix and (c++ or java)");
$oSearch->native_query($sQuery,
{method => bool,
state => CA,
daysback => 14});
while (my $res = $oSearch->next_result()) {
if(isHitGood($res->url)) {
my ($company,$title,$date,$location) =
$oSearch->getMoreInfo($res->url);
print "$company $title $date $location " . $res->url . "n";
}
}

sub isHitGood {return 1;}

This class is a Dice specialization of WWW::Search. It handles making and interpreting Dice searches at http://www.dice.com.

By default, returned WWW::SearchResult objects contain only url, title and description which is a mixture of location and skills wanted. Function getMoreInfo( $url ) provides more specific info - it has to be used as

my ($company,$title,$date,$location) =
$oSearch->getMoreInfo($res->url);

<<less
Download (0.023MB)
Added: 2007-06-15 License: Perl Artistic License Price:
863 downloads
WWW::Search::ZDnet 2.02

WWW::Search::ZDnet 2.02


WWW::Search::ZDnet is a Perl class for searching ALL of ZDnet. more>>
WWW::Search::ZDnet is a Perl class for searching ALL of ZDnet.

SYNOPSIS

require WWW::Search; $search = new WWW::Search(ZDnet);

Class for searching ALL of ZDnet. http://xlink.zdnet.com.

ZDNet is no longer returning descriptions

Searches articles in: Anchordesk, Community, Computer Life, Computer Shopper, NetBuyer, DevHead, Family PC, Help Channel, Inter@ctive Week, Internet, MacWEEK, PC Computing, PC Magazine CD, PC Week, Products, Sm@rt Reseller, Software, Library, Yahoo Internet Life, ZDNN, ZDTV.

Note that dupe articles can appear because they are published in more than one category on ZDnet, or same Title published on different dates.

Print options:

Using $result->{source} will return category and date enclosed in brackets, example: [PC Week, 12-14-98]. use this in place of description since there is NO descriptions anymore with ZDNet.

Raw, of course, returns all the HTML of each hit.

This class exports no public interface; all interaction should be done through WWW::Search objects.

<<less
Download (0.004MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1044 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5