Skip to content

Instantly share code, notes, and snippets.

View dlitvakb's full-sized avatar

David Litvak Bruno dlitvakb

View GitHub Profile

New NetDNA REST API Clients

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.

Forget about OAuth problems

@dlitvakb
dlitvakb / ex.py
Created August 13, 2012 03:28 — forked from anonymous/ex_py
Pruebas
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]:
#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