Skip to content

Latest commit

 

History

History
86 lines (61 loc) · 2.09 KB

File metadata and controls

86 lines (61 loc) · 2.09 KB

blockscore-python

This is the official library for Python clients of the BlockScore API. Click here to read the full documentation.

Install

Via pip:

pip install blockscore

Getting Started

Initializing BlockScore

import blockscore
client = blockscore.Client({'username':'Your API Key','password':''})

Verifications

List all verifications

verification_list = client.verifications().list()
verification_list = verification_list.body

List 5 verifications

verification_list = client.verifications().list(count=5)
verification_list = verification_list.body

View a verification by ID

verification = client.verifications().retrieve(verification_id)
verification = verification.body

Create a new verification

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 Sets

Create a new question set

question_set = client.questions().new(verification_id)
question_set = question_set.body

Score a question set

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

Contributing to BlockScore

  • 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

Copyright (c) 2014 BlockScore. See LICENSE.txt for further details.