On a previous post we've talked abut our new REST API and the benefits it provides to our power users. If that was not enough for your satisfaction, we are releasing REST Clients for Python and Ruby to help you use our service without having to worry about anything.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ex_or = 0 | |
| while True: | |
| num=raw_input('Ingrese el numero 1: ') | |
| num2=raw_input('Ingrese el segundo numero 2: ') | |
| if len(num) == len(num2): | |
| for indice, letra in enumerate(num): | |
| if letra == num2[indice]: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #NetDNA API Sample Code - Python | |
| #Version 1.0a | |
| # Thanks to @sajal from TurboBytes.com for getting this script started | |
| # Contributed: @jdorfman & the @netdna family | |
| import oauth.oauth as oauth | |
| import httplib2, json | |
| import pprint | |