theparanoidpickaxe
Posts: 2
Joined: Fri Feb 14, 2014 12:19 pm

SMS/Email/Twitter to eticker board

Fri Feb 14, 2014 12:26 pm

Hey,
I am looking for a solution using Python and a RPi to convert either SMS messages, emails or tweets with a hashtag to a print out on a ticker board. I have some coding experience, but what should I do?
Thanks
Jonathan

User avatar
elParaguayo
Posts: 1943
Joined: Wed May 16, 2012 12:46 pm
Location: London, UK

Re: SMS/Email/Twitter to eticker board

Fri Feb 14, 2014 1:20 pm

The biggest risk is you try to do too much too soon.

Break your task down into separate, smaller, distinct tasks.
  • Make a script that just retrieves emails
  • One that gets tweets
  • One that gets sms (you may need some hardware to do this)
  • For each of these, just print the output to the screen
  • Then work out how to do your ticker - e.g. have you got a monitor/display you'd like to use? If so, get used to writing code for it
  • Only once your comfortable with all of the above should you start pulling it all together
For the first 3 I suspect there will be plenty of python code examples to get you started. If you get stuck, post some code here and people will help out.

Good luck!
RPi Information Screen: plugin based system for displaying weather, travel information, football scores etc.

User avatar
DougieLawson
Posts: 39304
Joined: Sun Jun 16, 2013 11:19 pm
Location: A small cave in deepest darkest Basingstoke, UK
Contact: Website Twitter

Re: SMS/Email/Twitter to eticker board

Fri Feb 14, 2014 1:37 pm

Note: Any requirement to use a crystal ball or mind reading will result in me ignoring your question.

Criticising any questions is banned on this forum.

Any DMs sent on Twitter will be answered next month.
All non-medical doctors are on my foes list.

theparanoidpickaxe
Posts: 2
Joined: Fri Feb 14, 2014 12:19 pm

Re: SMS/Email/Twitter to eticker board

Fri Feb 14, 2014 2:00 pm

Thanks for all the help. I would like to use Twitter as a base. I have found "tweepy", but I am having difficulty setting up.
I am using Fedora 20, but want it to run on Fedora Remix on the pi.

Return to “Python”