Skip to content

Instantly share code, notes, and snippets.

@pasali
Created April 5, 2011 11:32
Show Gist options
  • Save pasali/903444 to your computer and use it in GitHub Desktop.
Save pasali/903444 to your computer and use it in GitHub Desktop.
doviz
#!/usr/bin/env python
#-*-coding:utf-8-*-
from urllib2 import urlopen
url = "http://www.serbestdoviz.com/"
tl = input("TL miktarını girin:")
print "Kur bilgileri alınıyor..."
site = urlopen(url)
sayfa = site.read()
a = sayfa.find('"usd"')
c = sayfa.find('>', a) + 1
d = sayfa.find('<', c)
kur = float(sayfa[c:d])
print"Bilgiler alındı.Dolar = %f TL"%(kur)
dolar = tl / kur
print"%s $ alabilirsiniz."%(dolar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment