[DSHub]RSS URL Reader 0.1

Python Script Releases, known supporting hubsofts for python scripting.

DSHub | ADCH++
Locked
Toast

[DSHub]RSS URL Reader 0.1

Post by Toast » 19 Aug 2008, 15:40

Code: Select all

#	RSS URL READER 0.1
#	By Toast 08-08-19
#
#	Prints RSS URL address in debug mode
#	Simple script (example for DSHub)
file = open('rss', 'r')
print "\n"
print "Your current RSS address is:"
print file.read()
print "\n"
while 1:
    char = file.read(1)
    if not char: break
    print char,
file.close()
it prints in debug mode only

Code: Select all

Starting DSHub Iota ...
Hi there. I'm the python script


Your current RSS address is:
http://www.adcportal.com/?mode=rss

Attachments
rss_url.py
(304 Bytes) Downloaded 408 times

Spookie
Junior Member
Posts: 19
Joined: 05 Dec 2007, 16:40

Re: [DSHub]RSS URL Reader 0.1

Post by Spookie » 19 Aug 2008, 18:08

:) toast the python scripter, good work, let them come

Locked