ActiveState Code

Recipe 511501: recommandation engine for del.cious.us


based on user's profile/tag, and the target URL recommand

Python
1
2
3
4
5
6
7
f = open("rec_2.tmp")
try:
    for line in f:
        print line
finally:
    f.close()
sys.exit(0)

Comments

  1. 1. At 7:50 a.m. on 6 may 2007, Richard Harris said:

    Seems more like "cat" to me. cat rec_2.tmp would have worked as well

Sign in to comment