Menu
  • HOME
  • TAGS

Using web-based API in python - retrieving response in Python [closed]

python,api,web-based

Here is one way. import urllib2 def ranker(host): api_key = 'xxxxxxxxxxxxxxxxx' url = 'http://pagerank.my-addr.com/external_fakepr_api/%s/%s'%(api_key, host) link = urllib2.urlopen(url) data = link.readline() return data.split('|')[0] print 'www.example.com', ranker('www.example.com') ...

How to convert PERL/BASH program into web-based [closed]

bash,perl,web-based

Hope this tutorial will help you for basics http://modernperl.net/developers/web-application-development.html ...

Any Non-server Javascript File Managers? [closed]

javascript,html,browser,file-manager,web-based

Wasting time indeed. JavaScript in the browser does not have access to files on the local machine. If you want a file manager there must be a server that actually handles the files. Simple as that. Now, if you're really afraid of writing a server because it sounds scary, rest...

MY SQL Database connectivity using PHP in WEB Based app

php,mysql,ubuntu-14.04,web-based

The flow Fetch the results from your database Include the result in your html Also there is a lot tutorials and how-to's to start with....

Web development using Python framework Django [closed]

python,django,widget,histogram,web-based

Dajngo essentially provides comprehensive coverage of all your backend needs (databases, templating, routing urls), while leaving the front end entirely up to you. Most basic examples just assume the front end will be a plain old html page, but in reality it will nearly always be more than that, with...