www myspace
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1210
WWW::Myspace 0.60
WWW::Myspace is a Perl module to access MySpace.com profile information from Perl. more>>
WWW::Myspace is a Perl module to access MySpace.com profile information from Perl.
WARNING - DO NOT USE THIS MODULE FOR MASS MESSAGING OR COMMENTING.
Myspace will cripple or disable your account:
Older accounts:
Messages will appear in your Sent folder but not in the receivers inbox, although theyll be able to see it if theyre paging through from another message. The receiver will get a "New Comments" notification and be able to see your comment, but it wont appear on the profile page.
Newer accounts:
If you created your myspace account in or after June 2006 (approximately), and you use a "bot" (including this module) to send messages, your message sending ability will be disabled and your account may be deleted. This is due to security features myspace has implemented to prevent spam abuse by people using multiple accounts.
SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com account and functions automatically. It provides a simple interface for scripts to log in, access lists of friends, scan users profiles, retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and centralize redundant tasks so that you can better handle keeping in personal touch with numerous friends or fans, or coordinate fan communications among multiple band members. This module operates well within MySpaces security measures. If youre looking for a spambot, this aint it.
WWW::Myspace works by interacting with the site through a UserAgent object, using HTTP::Request::Form to process forms. Since by nature web sites are dynamic, if you find that some interaction with the site breaks, check for a new version of this module (or if you go source diving, submit a patch). You can run "cpan -i WWW::Myspace" as a cron job or before running your scripts, if appropriate, to make sure you have the latest version.
<<lessWARNING - DO NOT USE THIS MODULE FOR MASS MESSAGING OR COMMENTING.
Myspace will cripple or disable your account:
Older accounts:
Messages will appear in your Sent folder but not in the receivers inbox, although theyll be able to see it if theyre paging through from another message. The receiver will get a "New Comments" notification and be able to see your comment, but it wont appear on the profile page.
Newer accounts:
If you created your myspace account in or after June 2006 (approximately), and you use a "bot" (including this module) to send messages, your message sending ability will be disabled and your account may be deleted. This is due to security features myspace has implemented to prevent spam abuse by people using multiple accounts.
SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com account and functions automatically. It provides a simple interface for scripts to log in, access lists of friends, scan users profiles, retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and centralize redundant tasks so that you can better handle keeping in personal touch with numerous friends or fans, or coordinate fan communications among multiple band members. This module operates well within MySpaces security measures. If youre looking for a spambot, this aint it.
WWW::Myspace works by interacting with the site through a UserAgent object, using HTTP::Request::Form to process forms. Since by nature web sites are dynamic, if you find that some interaction with the site breaks, check for a new version of this module (or if you go source diving, submit a patch). You can run "cpan -i WWW::Myspace" as a cron job or before running your scripts, if appropriate, to make sure you have the latest version.
Download (0.13MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1044 downloads
WWW::Myspace::Data 0.13
WWW::Myspace::Data is a WWW::Myspace database interaction. more>>
WWW::Myspace::Data is a WWW::Myspace database interaction.
SYNOPSIS
This module is the database interface for the WWW::Myspace modules. It imports methods into the callers namespace which allow the caller to bypass the loader object by calling the methods directly. This module is intended to be used as a back end for the Myspace modules, but it can also be called directly from a script if you need direct database access.
my %db = (
dsn => dbi:mysql:database_name,
user => username,
password => password,
);
# create a new object
my $data = WWW::Myspace::Data->new( $myspace, { db => %db } );
# set up a database connection
my $loader = $data->loader();
# initialize the database with Myspace login info
my $account_id = $data->set_account( $username, $password );
# now do something useful...
my $update = $data->update_friend( $friend_id );
<<lessSYNOPSIS
This module is the database interface for the WWW::Myspace modules. It imports methods into the callers namespace which allow the caller to bypass the loader object by calling the methods directly. This module is intended to be used as a back end for the Myspace modules, but it can also be called directly from a script if you need direct database access.
my %db = (
dsn => dbi:mysql:database_name,
user => username,
password => password,
);
# create a new object
my $data = WWW::Myspace::Data->new( $myspace, { db => %db } );
# set up a database connection
my $loader = $data->loader();
# initialize the database with Myspace login info
my $account_id = $data->set_account( $username, $password );
# now do something useful...
my $update = $data->update_friend( $friend_id );
Download (0.016MB)
Added: 2007-07-26 License: Perl Artistic License Price:
824 downloads
WWW::Myspace::FriendAdder 0.12
WWW::Myspace::FriendAdder Perl module will interactively add friends to your Myspace account. more>>
WWW::Myspace::FriendAdder Perl module will interactively add friends to your Myspace account.
SYNOPSIS
This module gives you a little more flexibility when adding friends to your Myspace account. It is interactive and will occasionally prompt you for input. Youll have the most success when using it at the command line, but you do have the option of suppressing its reporting and interactive nature if you want to run it from a cgi script or if you just find it annoying. Hey, youve got your reasons, right? This module is an extension of Grant Grueningers handy WWW::Myspace module.
use WWW::Myspace;
use WWW::Myspace::FriendAdder;
my $myspace = WWW::Myspace->new();
my $adder = WWW::Myspace::FriendAdder->new( $myspace );
my @friend_ids = (List, of, friend, ids);
$adder->send_friend_requests( @friend_ids );
By default, this routine will try to add as many friends as possible until it it reaches max_count, which defaults to 50, but can be set to any number of your choosing. See below. When Myspace prompts you for user input, the routine will pause and allow you as much time as you need to fill out the Myspace form. Once you have done so, you may prompt the script to continue or to exit. Upon its exit, the script will report on its success and/or failure.
<<lessSYNOPSIS
This module gives you a little more flexibility when adding friends to your Myspace account. It is interactive and will occasionally prompt you for input. Youll have the most success when using it at the command line, but you do have the option of suppressing its reporting and interactive nature if you want to run it from a cgi script or if you just find it annoying. Hey, youve got your reasons, right? This module is an extension of Grant Grueningers handy WWW::Myspace module.
use WWW::Myspace;
use WWW::Myspace::FriendAdder;
my $myspace = WWW::Myspace->new();
my $adder = WWW::Myspace::FriendAdder->new( $myspace );
my @friend_ids = (List, of, friend, ids);
$adder->send_friend_requests( @friend_ids );
By default, this routine will try to add as many friends as possible until it it reaches max_count, which defaults to 50, but can be set to any number of your choosing. See below. When Myspace prompts you for user input, the routine will pause and allow you as much time as you need to fill out the Myspace form. Once you have done so, you may prompt the script to continue or to exit. Upon its exit, the script will report on its success and/or failure.
Download (0.014MB)
Added: 2007-07-26 License: Perl Artistic License Price:
830 downloads
MySpace Feed 1.01
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace. more>>
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace (or Friendster) page.
MySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
<<lessMySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
Download (0.072MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1146 downloads
MySpace Blog Editor 0.3
MySpace Blog Editor is an extension which allows you to post directly from within Firefox to your MySpace blog. more>>
MySpace Blog Editor is an extension which allows you to post directly from within Firefox to your MySpace blog.
The MySpace Blog Editor allows you to post directly from within Firefox to your MySpace blog aswell as save notes, drag and drop formatted text from webpages, handle images and much more.
<<lessThe MySpace Blog Editor allows you to post directly from within Firefox to your MySpace blog aswell as save notes, drag and drop formatted text from webpages, handle images and much more.
Download (0.030MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
975 downloads
WWW::Scraper::Dice 0.01
WWW::Scraper::Dice Perl module contains Scrapes Dice : (skills,locations) => (title, location ,residue). more>>
WWW::Scraper::Dice Perl module contains Scrapes Dice : (skills,locations) => (title, location ,residue).
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Scraper(Dice);
my $sQuery = WWW::Scraper::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) =
($res->company, $res->title, $res->date, $res->location);
print "$company $title $date $location " . $res->url . "n";
}
}
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Scraper(Dice);
my $sQuery = WWW::Scraper::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) =
($res->company, $res->title, $res->date, $res->location);
print "$company $title $date $location " . $res->url . "n";
}
}
Download (0.037MB)
Added: 2007-06-14 License: Perl Artistic License Price:
862 downloads
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);
<<lessSYNOPSIS
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);
Download (0.023MB)
Added: 2007-06-15 License: Perl Artistic License Price:
863 downloads
WWW::BF2Player 0.01
WWW::BF2Player is a Perl module that can fetch information about game servers from BF2Player.com more>>
WWW::BF2Player is a Perl module that can fetch information about game servers from BF2Player.com
SYNOPSIS
# example 1
use WWW::BF2Player;
my $bfp = WWW::BF2Player->new; # omitted UserId, must set it per-request
my $player = $bfp->getPlayer( UserId => 5307, PlayerId => 64246757 ); # userId specified per-request
# example 2
use WWW::BF2Player;
my $bfp = WWW::BF2Player->new( UserId => 5307 ); # set a default UserId, can omit UserId per-request
my $player = $bfp->getPlayer( PlayerId => 64246757 ); # use the default UserId
First, you must have an account (free) at BF2Player.com to make use of this module. Second, you must create and populate a buddy list on their site. You can only use this module to ask for information about players in your buddy list. This is a restriction on their part to prevent you from asking information for too many players. I guess to prevent you from competing and wasting their resources. Understandable, I suppose.
new
my $gm = WWW::BF2Player->new; # no options or defaults specified
my $gm = WWW::BF2Player->new( UserId => 5307 ); # default to a certain UserId
You can specify several options in the constructor.
my $gm = WWW::BF2Player->new(
Expires => 300,
UserId => 5307,
CacheFile => my_player_cache.xml,
DebugLog => my_debug_log.txt,
DebugLevel => 3,
);
<<lessSYNOPSIS
# example 1
use WWW::BF2Player;
my $bfp = WWW::BF2Player->new; # omitted UserId, must set it per-request
my $player = $bfp->getPlayer( UserId => 5307, PlayerId => 64246757 ); # userId specified per-request
# example 2
use WWW::BF2Player;
my $bfp = WWW::BF2Player->new( UserId => 5307 ); # set a default UserId, can omit UserId per-request
my $player = $bfp->getPlayer( PlayerId => 64246757 ); # use the default UserId
First, you must have an account (free) at BF2Player.com to make use of this module. Second, you must create and populate a buddy list on their site. You can only use this module to ask for information about players in your buddy list. This is a restriction on their part to prevent you from asking information for too many players. I guess to prevent you from competing and wasting their resources. Understandable, I suppose.
new
my $gm = WWW::BF2Player->new; # no options or defaults specified
my $gm = WWW::BF2Player->new( UserId => 5307 ); # default to a certain UserId
You can specify several options in the constructor.
my $gm = WWW::BF2Player->new(
Expires => 300,
UserId => 5307,
CacheFile => my_player_cache.xml,
DebugLog => my_debug_log.txt,
DebugLevel => 3,
);
Download (0.006MB)
Added: 2007-01-02 License: Perl Artistic License Price:
1026 downloads
WWW::GMail 0.07
WWW::GMail is a Perl extension for accessing Google Mail (gmail). more>>
WWW::GMail is a Perl extension for accessing Google Mail (gmail).
SYNOPSIS
use WWW::GMail;
my $obj = WWW::GMail->new(
username => "USERNAME",
password => "PASSWORD",
cookies => {
autosave => 1,
file => "./gmail.cookie",
},
);
my $ret = $obj->login();
if ($ret == -1) {
print "password incorrectn";
} elsif ($ret == 0) {
print "unable to login $obj->{error}n";
exit;
}
my @list = $obj->get_message_list(inbox);
# count the new messages in the inbox
my $new_msgs = 0;
for my $i ( 0 .. $#list ) {
$new_msgs += $list[$i]->[1]; # count the unread flags
}
print "you have $new_msgs new messages in your inboxn";
my @contacts = $obj->get_contact_list();
print "you have ".(@contacts)." contactsn";
my $gmail = 0;
for my $i ( 0 .. $#contacts ) {
$gmail += ($contacts[$i]->[3] =~ m/gmail.com$/i);
}
print "$gmail of them are gmail addressesn";
$obj->logout();
<<lessSYNOPSIS
use WWW::GMail;
my $obj = WWW::GMail->new(
username => "USERNAME",
password => "PASSWORD",
cookies => {
autosave => 1,
file => "./gmail.cookie",
},
);
my $ret = $obj->login();
if ($ret == -1) {
print "password incorrectn";
} elsif ($ret == 0) {
print "unable to login $obj->{error}n";
exit;
}
my @list = $obj->get_message_list(inbox);
# count the new messages in the inbox
my $new_msgs = 0;
for my $i ( 0 .. $#list ) {
$new_msgs += $list[$i]->[1]; # count the unread flags
}
print "you have $new_msgs new messages in your inboxn";
my @contacts = $obj->get_contact_list();
print "you have ".(@contacts)." contactsn";
my $gmail = 0;
for my $i ( 0 .. $#contacts ) {
$gmail += ($contacts[$i]->[3] =~ m/gmail.com$/i);
}
print "$gmail of them are gmail addressesn";
$obj->logout();
Download (0.008MB)
Added: 2006-11-28 License: Perl Artistic License Price:
1063 downloads
MySpace Friend Renamer .86
MySpace Friend Renamer provides an extension that allows you to rename your MySpace Friends. more>>
MySpace Friend Renamer provides an extension that allows you to rename your MySpace Friends.
This adds a right click option to Myspace Pages and allows you to change the display name for any of your friends. Handy if your friends change names often, or pick strange and obscure names.
Also in response to comments. If a tab is not in focus when the page loads, the extension will not rename.
I believe that the extension will conflict with other extensions that change pages when they load. If I find a better way to do it, I will change it.
<<lessThis adds a right click option to Myspace Pages and allows you to change the display name for any of your friends. Handy if your friends change names often, or pick strange and obscure names.
Also in response to comments. If a tab is not in focus when the page loads, the extension will not rename.
I believe that the extension will conflict with other extensions that change pages when they load. If I find a better way to do it, I will change it.
Download (0.004MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
934 downloads
Unofficial Myspace Toolbar 1.4.91
Unofficial Myspace Toolbar provides a way to automatically login to Myspace. more>>
Unofficial Myspace Toolbar provides a way to automatically login to Myspace.
Automatically login to Myspace, instantly access your messages, view hidden comments, create styled comments/bulletins and more with this intuitive and customizable toolbar!
NEW! Myspace Notifications: Find out if you have new comments, bulletins, etc without logging into myspace.
The toolbar can automatically hide when you are not using Myspace. To toggle this feature, click the "m" on the status bar.
<<lessAutomatically login to Myspace, instantly access your messages, view hidden comments, create styled comments/bulletins and more with this intuitive and customizable toolbar!
NEW! Myspace Notifications: Find out if you have new comments, bulletins, etc without logging into myspace.
The toolbar can automatically hide when you are not using Myspace. To toggle this feature, click the "m" on the status bar.
Download (0.059MB)
Added: 2007-07-09 License: MPL (Mozilla Public License) Price:
838 downloads
Test::WWW::Simple 0.24
Test::WWW::Simple is a Perl module to test Web applications using TAP. more>>
Test::WWW::Simple is a Perl module to test Web applications using TAP.
SYNOPSIS
use Test::WWW::Simple;
# This is the default user agent.
user_agent(Windows IE 6);
page_like("http://yahoo.com", qr/.../, "check for expected text");
page_unlike("http://my.yahoo.com", qr/.../, "check for undesirable text");
user_agent(Mac Safari);
...
Test::WWW::Simple is a very basic class for testing Web applications and Web pages. It uses WWW::Mechanize to fetch pages, and Test::Builder to implement TAP (Test Anything Protocol) for the actual testing.
Since we use Test::Builder for the page_like and page_unlike routines, these can be integrated with the other standard Test::Builder-based modules as just more tests.
<<lessSYNOPSIS
use Test::WWW::Simple;
# This is the default user agent.
user_agent(Windows IE 6);
page_like("http://yahoo.com", qr/.../, "check for expected text");
page_unlike("http://my.yahoo.com", qr/.../, "check for undesirable text");
user_agent(Mac Safari);
...
Test::WWW::Simple is a very basic class for testing Web applications and Web pages. It uses WWW::Mechanize to fetch pages, and Test::Builder to implement TAP (Test Anything Protocol) for the actual testing.
Since we use Test::Builder for the page_like and page_unlike routines, these can be integrated with the other standard Test::Builder-based modules as just more tests.
Download (0.012MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1040 downloads
WWW-OpenSVN 0.1.2
WWW::OpenSVN is an automated interface for the OpenSVN online Subversion repositories service. more>>
WWW::OpenSVN is an automated interface for the OpenSVN online Subversion repositories service. At the moment it allows one to backup the dumps of ones repositories.
<<less Download (0.003MB)
Added: 2007-03-20 License: Perl Artistic License Price:
954 downloads
WWW::NanoRef 0.01
WWW::NanoRef is a Perl module that uses the API published by nanoref.com to produce shortened URLs. more>>
WWW::NanoRef is a Perl module that uses the API published by nanoref.com to produce shortened URLs.
Installation:
perl Makefile.PL
make
make test
make install
Enhancements:
- Initial implementation.
- Supports retrieving a shortened URL and allows for setting a password for viewing stats.
<<lessInstallation:
perl Makefile.PL
make
make test
make install
Enhancements:
- Initial implementation.
- Supports retrieving a shortened URL and allows for setting a password for viewing stats.
Download (0.003MB)
Added: 2005-11-10 License: Perl Artistic License Price:
1443 downloads
WWW::Search 2.488
WWW::Search is a collection of Perl modules which provide an API to WWW search engines. more>>
WWW::Search is a collection of Perl modules which provide an API to WWW search engines like WebCrawler, AltaVista, Hotbot, Lycos and so on. Currently WWW::Search includes back-ends for variations of AltaVista, Lycos, and HotBot.
We include two applications built from this library: AutoSearch (an program to automate tracking of search results over time), and a small demonstration program to drive the library. Back-ends for other search engines and more sophisticated clients are currently under development.
WWW::Search includes AutoSearch, an program to automate web-based searches.
<<lessWe include two applications built from this library: AutoSearch (an program to automate tracking of search results over time), and a small demonstration program to drive the library. Back-ends for other search engines and more sophisticated clients are currently under development.
WWW::Search includes AutoSearch, an program to automate web-based searches.
Download (0.083MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1267 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above www myspace search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed