On the API page there's a list of various addons.
The web services list details the services which can send things to Prowl.
The plugins list details the plugins which can be added onto existing programs you use.
If you want any added, feel free to respond to this thread.
Web Services/Plugins
Re: Web Services/Plugins
I just posted a similar list over in another thread, but here goes:
For the OSX Dashboard, I wrote a widget - Prowler - for sending quick links, phone numbers, and other notes to my phone. Includes event, message, and priority inputs (application string is hardcoded as "prowler"). It's also available on macupdate.com (just search for "prowler").
For After Effects, I modified a script posted in another forum to directly interface with prowl.pl, growlnotifiy, and/or a simple https request. I just recently posted version 1.4 on my site. Includes fully customisable settings for all Prowl variables (plus a few extras, like automated speech at the end of a render, in case I'm within earshot of the computer).
For Lightwave, DB&W Tools includes a scene plugin that sends Growl alerts on various states, such as render complete. Not exactly a direct Prowl interface (since it's really just a Growl plugin), but it works nicely!
For the OSX Dashboard, I wrote a widget - Prowler - for sending quick links, phone numbers, and other notes to my phone. Includes event, message, and priority inputs (application string is hardcoded as "prowler"). It's also available on macupdate.com (just search for "prowler").
For After Effects, I modified a script posted in another forum to directly interface with prowl.pl, growlnotifiy, and/or a simple https request. I just recently posted version 1.4 on my site. Includes fully customisable settings for all Prowl variables (plus a few extras, like automated speech at the end of a render, in case I'm within earshot of the computer).
For Lightwave, DB&W Tools includes a scene plugin that sends Growl alerts on various states, such as render complete. Not exactly a direct Prowl interface (since it's really just a Growl plugin), but it works nicely!
-
- Harmless
- Posts: 12
- Joined: Sun Sep 20, 2009 6:22 pm
Re: Web Services/Plugins
Hello,
I've created a Python script that listens using IMAP's IDLE mode and sends a Prowl notification to an iPhone every time a new Gmail message arrives. It is simple, well commented and well documented. The only requirement is OpenSSL installed on the computer that runs the script.
Can you please link to my SourceForge project on your API page? You can find it here: https://sourceforge.net/projects/gprowl/
Thanks,
Chris
I've created a Python script that listens using IMAP's IDLE mode and sends a Prowl notification to an iPhone every time a new Gmail message arrives. It is simple, well commented and well documented. The only requirement is OpenSSL installed on the computer that runs the script.
Can you please link to my SourceForge project on your API page? You can find it here: https://sourceforge.net/projects/gprowl/
Thanks,
Chris
- tofumatt
- Harmless
- Posts: 20
- Joined: Thu Aug 20, 2009 1:48 am
- Location: Halifax, Nova Scotia, Canada
- Contact:
Re: Web Services/Plugins
I just wrote a script after someone on the forums suggested it: it monitors URLs and messages you when they go down. It's called FindTheProblems.
Re: Web Services/Plugins
I've been working on a WebApp that will eventually be a one stop shop for your notification needs! Its pretty limited right now, but it will push twitter feeds, twitter trends and some shipping notifications (UPS and USPS) to the iPhone via Prowl. I'll build it out over time, but maybe some of you would enjoy it as-is.
Update (1/6/10) - I've made some stability improvements as well as added a few features, including much better support for Twitter. It's now using the Twitter Search API, so (most) anything you can search for (hash tags, location, to and from, mentions, etc) you can set up a prowl notification for.
Update (1/14/10) - I got tired of not having fine control over the notifications on the iPhone, so I added in priority controls. I've also tweaked the notifications a bit so each type (UPS and USPS Shipping, Twitter, and Twitter Trends) have unique Application names, so users can control redirects easily.
Update (1/20/10) - I've added in generic rss feeds to the notification types. Since Prowl doesn't render html code, the notification only includes the title of each feed item, but the notification includes a shortened (by bit.ly) link to the original article.
What's next...
Check out AutoNote at uSubscription.com.
Update (1/6/10) - I've made some stability improvements as well as added a few features, including much better support for Twitter. It's now using the Twitter Search API, so (most) anything you can search for (hash tags, location, to and from, mentions, etc) you can set up a prowl notification for.
Update (1/14/10) - I got tired of not having fine control over the notifications on the iPhone, so I added in priority controls. I've also tweaked the notifications a bit so each type (UPS and USPS Shipping, Twitter, and Twitter Trends) have unique Application names, so users can control redirects easily.
Update (1/20/10) - I've added in generic rss feeds to the notification types. Since Prowl doesn't render html code, the notification only includes the title of each feed item, but the notification includes a shortened (by bit.ly) link to the original article.
What's next...
Check out AutoNote at uSubscription.com.
Last edited by Steve on Thu Jan 21, 2010 4:45 am, edited 1 time in total.
Check out AutoNote, a web service that pushes information scraped from the tubes to your iPhone through Prowl. Free and easy!
Re: Web Services/Plugins
Hey, guys, I just created a gem called Prowly, it has a command line utility. you can see the code at http://github.com/rafmagana/prowly
- tofumatt
- Harmless
- Posts: 20
- Joined: Thu Aug 20, 2009 1:48 am
- Location: Halifax, Nova Scotia, Canada
- Contact:
Re: Web Services/Plugins
Wrote a new Ruby library (using libcurl-multi) called FastProwl. Handy if you need to queue up batches of requests and send them concurrently.
It's available as a gem on Gemcutter or in source form on GitHub.
It's available as a gem on Gemcutter or in source form on GitHub.
Re: Web Services/Plugins
Hello,
I've created a simple app/service/framework that you yourself can run on Google App Engine for free.
Google App Engine can be configured to receive emails to `nobody@your-app-id.appspotmail.com`, and POST the message to a Python handler.
The code provided takes this message and filters it based on to, sender, subject, and body regular expressions, parses out the interesting bits of the message, then makes a Prowl (or more) API call.
With this strategy, I run my own secure web service, I write as many custom routes and message parsers as I need, and I never give anything up to a 3rd party. You can do the same.
I would love to get some feedback on this strategy and code.
I've created a simple app/service/framework that you yourself can run on Google App Engine for free.
Google App Engine can be configured to receive emails to `nobody@your-app-id.appspotmail.com`, and POST the message to a Python handler.
The code provided takes this message and filters it based on to, sender, subject, and body regular expressions, parses out the interesting bits of the message, then makes a Prowl (or more) API call.
With this strategy, I run my own secure web service, I write as many custom routes and message parsers as I need, and I never give anything up to a 3rd party. You can do the same.
I would love to get some feedback on this strategy and code.
- tofumatt
- Harmless
- Posts: 20
- Joined: Thu Aug 20, 2009 1:48 am
- Location: Halifax, Nova Scotia, Canada
- Contact:
Re: Web Services/Plugins
An update about Prey Fetcher: it's now open source (AGPL 3) -- the source is at http://github.com/tofumatt/Prey-Fetcher
-
- Harmless
- Posts: 3
- Joined: Sat Apr 03, 2010 6:24 pm
Re: Web Services/Plugins
PokerNews updates. http://wsop-updates.com
Ok. So definitely in beta for now, but still usable. I've done as much bug testing as I can, and should be up for a bit, as long as PokerNews doesn't ban me. (And as long as PokerNews is actually UP which it isn't right now...2 hours before the Casino Employee's event kicks off...)
It's pretty user-friendly and easy to understand. You can get updates for specified players, or just chip counts even (combine for specified players' chip counts). I don't send out emails, not even for registering. It's mostly there just to ensure your lost password gets recovered. Feel free to PM w/ any questions or the like.
Ok. So definitely in beta for now, but still usable. I've done as much bug testing as I can, and should be up for a bit, as long as PokerNews doesn't ban me. (And as long as PokerNews is actually UP which it isn't right now...2 hours before the Casino Employee's event kicks off...)
It's pretty user-friendly and easy to understand. You can get updates for specified players, or just chip counts even (combine for specified players' chip counts). I don't send out emails, not even for registering. It's mostly there just to ensure your lost password gets recovered. Feel free to PM w/ any questions or the like.
Re: Web Services/Plugins
The God process monitoring framework (http://god.rubyforge.org/) now support sending notifications to an iPhone through Prowl via my Prowly gem (http://github.com/rafmagana/prowly) . YAAY! Your server is using a lot of RAM, or it's running out of space?, you'll get the notification right on your iPhone.
Re: Web Services/Plugins
I created a module for ejabberd that will allow an administrator to configure certain JIDs to receive offline messages via Prowl. If you would like to include a link to my site or the my post on the module, my site is http://www.unsleeping.com, and the specific post is: http://www.unsleeping.com/2010/07/31/prowl-module-for-ejabberd/
Re: Web Services/Plugins
Updated.
Re: Web Services/Plugins
There's a Chrome extension that lets you send the URL and title of the current page to Prowl: https://chrome.google.com/extensions/de ... b?hl=en-US
Who is online
Users browsing this forum: No registered users