This is the official library for Python clients of the BlockScore API. Click here to read the full documentation.
Via pip:
pip install blockscore
import blockscore
client = blockscore.Client({'username':'Your API Key','password':''})
verification_list = client.verifications().list()
verification_list = verification_list.body
verification_list = client.verifications().list(count=5)
verification_list = verification_list.body
verification = client.verifications().retrieve(verification_id)
verification = verification.body
verification = client.verifications().new('us_citizen','1980-01-01',{'ssn': '1234'},{'first': 'john', 'last': 'doe'},{'street1': '1 Infinite Loop', 'city': 'Palo Alto', 'state': 'ca', 'postal_code': '94309', 'country': 'us'})
verification = verification.body
question_set = client.questions().new(verification_id)
question_set = question_set.body
score = self.client.questions().score(verif_id, qset_id, [
{'question_id':1, 'answer_id':1},
{'question_id':2, 'answer_id':1},
{'question_id':3, 'answer_id':1},
{'question_id':4, 'answer_id':1},
{'question_id':5, 'answer_id':1}
])
score = score.body
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
- Fork the project.
- Start a feature/bugfix branch.
- Commit and push until you are happy with your contribution.
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
Copyright (c) 2014 BlockScore. See LICENSE.txt for further details.