Metadata-Version: 2.1
Name: ksmyvoteinfo
Version: 1.7
Summary: Query the KS SOS site for voter registration
Author-Email: Peter Karman <peter@peknet.com>
License: KsMyVoteInfo is a Python module that interacts with the Kansas SOS voter registration site.
         
         Copyright 2018 by Blueprint Kansas
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in
         all copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         THE SOFTWARE.
         
Project-URL: Homepage, http://github.com/BlueprintKansas/ksmyvoteinfo-py
Requires-Python: >=3.12
Requires-Dist: beautifulsoup4
Requires-Dist: python-dateutil
Requires-Dist: requests
Requires-Dist: Werkzeug
Description-Content-Type: text/markdown

KsMyVoteInfo
=========================

KsMyVoteInfo Python module makes it easy to search the Kansas SOS voter registration site
for the registrant details. You supply first/last name and date of birth, this gem looks
it up and return the HTML snippet from the site.

Scrapes the https://kansasvoterinfo.gov/VoterView site.

# Example

```python
import ksmyvoteinfo
kmvi = ksmyvoteinfo.KsMyVoteInfo()
r = kmvi.lookup(first_name='No', last_name='Suchperson', dob='1966-03-26')
if r:
  print(r.parsed()[0]['tree'])
else:
  print("Sorry, No Suchperson is not registered")

```

# Development

```
% make deps
% make build
% make test
% make distcheck
% make dist
% make install
```

# Copyright and License

MIT license.

Copyright 2018 Blueprint Kansas
