We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here are all the ways oscn library is used on the codefortulsa/courtbot-python: Used in api/views.py Get case using:
oscn
case = oscn.request.Case(year='2018', number=case_num)
Get araignment event from the case using:
find_arraignment_or_return_False(case.events) which checks for `"arraignment"` in `event.Docket.lower()`
Get eligible jurisdictions using:
oscn.Counties
Get datetime of the event's arraignment date:
# where event = arraignment_event.Event event = event.replace('ARRAIGNMENT', '').rstrip() return datetime.strptime(event, "%A, %B %d, %Y at %I:%M %p")
We should replace these references to oscn to the new courtbot library.
courtbot
The text was updated successfully, but these errors were encountered:
No branches or pull requests
About this Issue
Here are all the ways
oscn
library is used on the codefortulsa/courtbot-python:Used in api/views.py
Get case using:
Get araignment event from the case using:
Get eligible jurisdictions using:
Get datetime of the event's arraignment date:
We should replace these references to
oscn
to the newcourtbot
library.The text was updated successfully, but these errors were encountered: