Main > Free Download Search >

Free search for torrents software for linux

search for torrents

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2437
Search Into Directory 0.1

Search Into Directory 0.1


Search Into Directory starts a kfind window (part of kdebase) ready to search into the selected directory. more>>
With this service menu you will be able to search into directory by right-clicking on it. Search Into Directory starts a kfind window (part of kdebase) ready to search into the selected directory.

Note : This servicemenu is in fact duplicated of an existing one on kde-apps. So Ive removed mine and I wont maintain it. Youll find another one named Find in Folder

<<less
Download (0.083MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1185 downloads
FoxTorrent 1.10

FoxTorrent 1.10


FoxTorrent is a Firefox extension that lets you stream torrents as they download, from your web browser, with zero configuration more>>
FoxTorrent is a Firefox extension that lets you stream torrents as they download, from your web browser, with zero configuration needed.
Main features:
Streaming Fast Delivery
- Watch video and listen to audio as it downloads.
Complete Firefox Integration
- Manage your torrent downloads from your browser window.
Windows, Mac, and Ubuntu Linux
- Consistent downloading experience across all three platforms.
Background Downloading
- Continues to work even after your browser window has been closed.
Low Resource Footprint
- Foxtorrent uses less than 8 MB of RAM, and doesnt hog bandwidth.
Configuration-Free
- Automatic support for NATs, uPNP, and firewalls, with no tinkering necessary.
<<less
Download (0.21MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
1542 downloads
Celebrity Search 0.4 for Firefox

Celebrity Search 0.4 for Firefox


Celebrity Search allows you to search movie starts - actors, actresses and directors, musical performers and so on. more>>
Celebrity Search allows you to search movie starts - actors, actresses and directors, musical performers and so on.

Highlight a name of a celebrity on a web page, right click it with the mouse, and choose Search Celebrity menu item to see the info about the celebrity in a separate tab.

You can search movie starts - actors, actresses and directors, musical performers, supermodels, politicians, prominent businessmen, other publicly known people. Nice research tool.

<<less
Download (0.080MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
911 downloads
Search::Tools 0.01

Search::Tools 0.01


Search::Tools are tools for building search applications. more>>
Search::Tools are tools for building search applications.

SYNOPSIS

use Search::Tools;

my $re = Search::Tools->regexp(query => the quick brown fox);

my $snipper = Search::Tools->snipper(query => $re);

my $hiliter = Search::Tools->hiliter(query => $re);

for my $result (@search_results)
{
print $hiliter->light( $snipper->snip( $result->summary ) );
}

Search::Tools is a set of utilities for building search applications. Rather than adhering to a particular search application, the goal of Search::Tools is to provide general-purpose methods for common search application features. Think of Search::Tools like a toolbox rather than a hammer.

Examples include:

Parsing search queries for the meaningful keywords
Rich regular expressions for locating keywords in the original indexed documents
Contextual snippets showing query keywords
Highlighting of keywords in context

Search::Tools is derived from some of the features in HTML::HiLiter and SWISH::HiLiter, but has been re-written with an eye to accomodating more general purpose features.

<<less
Download (0.038MB)
Added: 2006-08-31 License: Perl Artistic License Price:
1149 downloads
rTorrent 0.7.6

rTorrent 0.7.6


rTorrent is a console-based BitTorrent client. more>>
rTorrent is a console-based BitTorrent client. It aims to be a fully-featured and efficient client with the ability to run in the background using screen.
rTorrent project supports fast-resume and session management.
Main features:
- Use an URL or file path to add torrents at runtime
- Emacsish find-file support for opening torrents
- Stop/delete/resume torrents
- Optionally loads/saves/deletes torrents automatically in a session directory
- Safe fast resume support
- Shows lots of information about peers and the torrent
- Only one torrent at a time is checked.
Enhancements:
- Support for XMLRPC.
<<less
Download (0.40MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
505 downloads
Web Search Aggregator 1.2.0

Web Search Aggregator 1.2.0


Web Search Aggregator (WSA) provides multiple Web searches from one place. more>>
Web Search Aggregator (WSA) provides multiple Web searches from one place. It features multiple categories and the display of results from many sites with a single search.
Your last search and the state of the tabs are remembered. Tabs can be navigated with the keyboard.
Enhancements:
- Mouse navigation has been added (hold down the Ctrl key).
- History of searches has been added (+statistics).
<<less
Download (0.005MB)
Added: 2006-07-15 License: BSD License Price:
1196 downloads
Search::VectorSpace 0.02

Search::VectorSpace 0.02


Search::VectorSpace is a very basic vector-space search engine. more>>
Search::VectorSpace is a very basic vector-space search engine.

SYNOPSIS

use Search::VectorSpace;

my @docs = ...;
my $engine = Search::VectorSpace->new( docs => @docs, threshold => .04);
$engine->build_index();

while ( my $query = ) {
my %results = $engine->search( $query );
print join "n", keys %results;
}

This module takes a list of documents (in English) and builds a simple in-memory search engine using a vector space model. Documents are stored as PDL objects, and after the initial indexing phase, the search should be very fast. This implementation applies a rudimentary stop list to filter out very common words, and uses a cosine measure to calculate document similarity. All documents above a user-configurable similarity threshold are returned.

<<less
Download (0.004MB)
Added: 2007-04-06 License: Perl Artistic License Price:
933 downloads
Torrent Bubbles 0.1

Torrent Bubbles 0.1


Torrent Bubbles is an easy-to-use BitTorrent utility program which can search for torrents on the Web. more>>
Torrent Bubbles is an easy-to-use BitTorrent utility program which can search for torrents on the Web.

The main goal of Torrent Bubbles is simplicity, with only a search bar, two buttons, and the ability to double click a search result (to launch a download).
<<less
Download (0.58MB)
Added: 2005-06-29 License: GPL (GNU General Public License) Price:
1586 downloads
Search::Tools::RegExp 0.06

Search::Tools::RegExp 0.06


Search::Tools::RegExp is a Perl module to build regular expressions from search queries. more>>
Search::Tools::RegExp is a Perl module to build regular expressions from search queries.

SYNOPSIS

my $regexp = Search::Tools::RegExp->new();

my $kw = $regexp->build(the quick brown fox);

for my $w ($kw->keywords)
{
my $r = $kw->re( $w );

# the word itself
printf("the word is %sn", $r->word);

# is it flagged as a phrase?
print "the word is a phrasen" if $r->phrase;

# each of these are regular expressions
print $r->plain;
print $r->html;
}

Build regular expressions for a string of text.
All text is converted to UTF-8 automatically if it isnt already, via the Search:Tools::Keywords module.

<<less
Download (0.048MB)
Added: 2006-10-19 License: Perl Artistic License Price:
1100 downloads
WWW::Search::OpenDirectory 2.02

WWW::Search::OpenDirectory 2.02


WWW::Search::OpenDirectory is a Perl class for searching dmoz.org! more>>
WWW::Search::OpenDirectory is a Perl class for searching dmoz.org!

SYNOPSIS

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

This class uses the Open Directory engine http://dmoz.org. Yahoo! type directory that is user maintained. Very nice!

Seperate search terms with and to include all words. Accepts double quotes for phrase searching: "Tour de France"

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
WWW::Search::GoTo 1.07

WWW::Search::GoTo 1.07


WWW::Search::GoTo is Perl class for searching GoTo.com. more>>
WWW::Search::GoTo is Perl class for searching GoTo.com.

SYNOPSIS

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

This class is an GoTo specialization of WWW::Search. It handles making and interpreting GoTo searches www-GoTo.com.

Nothing special about GoTo: no search options. It is much like Google in that it attempts to returm relavent search results using simple queries.

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

<<less
Download (0.004MB)
Added: 2006-11-30 License: Perl Artistic License Price:
1058 downloads
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
Ethics Search Protocol 1.87

Ethics Search Protocol 1.87


Ethics Search Protocol in short ESP is an XML-based protocol for search engines. more>>
Ethics Search Protocol in short ESP is an XML-based protocol for search engines that is designed to allow people to express specific ethical requirements when performing searches.
Consumers seldom get the chance to communicate ethical requirements because the proper communication channel does not exist. This project has the goal to offer an open source specification and implementation for that missing communication channel.
Enhancements:
- Changes were made to Category, OrganizationSearchParameters, SearchProfile, and Community.
- PolicyReference complements PolicyStatement.
- EvaluationScheme complements VotingScheme.
- The Envelope type was removed.
- The documentation was improved.
<<less
Download (0.020MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1023 downloads
QTorrent 0.9.5

QTorrent 0.9.5


QTorrent is a BitTorrent client that uses the Qt widget-set. more>>
QTorrent is a BitTorrent client that uses the Qt widget-set. QTorrent allows you to have several torrents open at the same time from within the same program window, offering you easy overview, access and management through a list-mode.

Every torrent also has its own page where you can control things like upload speed and upload slots. A page that shows some statistics of all open torrents is also available.

To use QTorrent, just download the tarball, extract it somewhere and run the qtorrent binary. Installing QTorrent is not necessary.

<<less
Download (0.072MB)
Added: 2006-05-11 License: GPL (GNU General Public License) Price:
6131 downloads
WWW::Search::Google 0.22

WWW::Search::Google 0.22


WWW::Search::Google is a Perl module to search Google via SOAP. more>>
WWW::Search::Google is a Perl module to search Google via SOAP.

SYNOPSIS

use WWW::Search;
my $search = WWW::Search->new(Google, key => $key);
$search->native_query("leon brocard");
while (my $result = $search->next_result()) {
print $result->title, "n";
print $result->url, "n";
print $result->description, "n";
print "n";
}

This class is a Google specialization of WWW::Search. It handles searching Google http://www.google.com/ using its new SOAP API http://www.google.com/apis/.
All interaction should be done through WWW::Search objects.

Note that you must register for a Google Web API account and have a valid Google API license key before using this module.

This module reports errors via croak().

This module uses Net::Google to do all the dirty work.

<<less
Download (0.003MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5