deployment: | |
---|---|
test/coverage: | |
build status: | |
docs: |
A set of dataclasses concerning roles (academic, politician, ...) of persons and their particulars
Currently names of this structure are supported:
Names: first_name middle_name_1 middle_name_2 last_name/s Names with academic title: academic_title/s first_name ... last_name/s Names with peer title: peer_title/s first_name ... last_name/s Names with peer preposition: first_name ... peer_preposition last_name/s Names with all titles: academic/peer_title first_name ... peer_preposition last_name/s
These roles have been sketched:
Academic - academic_title Person - gender, born, age, deceased Noble - peer_title, peer_preposition Politician - minister, offices, party, parties MoP - legislature, state, electoral_ward, ward_no, voter_count, parl_pres, parl_vicePres
from personroles import person tom = person.Academic("Thomas H.", "Smith", academic_title="MBA") print(tom) Academic: academic_title=MBA first_name=Thomas last_name=Smith middle_name_1=H.
from personroles import mop_role bob = mop_role.MoP("14", "NRW", "SPD", "Bob R.", "Smith", academic_title="Dr.", electoral_ward="Köln I") print(bob) MoP: academic_title=Dr. electoral_ward=Köln I first_name=Bob gender=male last_name=Smith legislature=14 membership={'14'} middle_name_1=R. parties=[Party(party_name='SPD', party_entry='unknown', party_exit='unknown')] party_name=SPD state=NRW voter_count=121721 ward_no=13
This package was started with Cookiecutter and the audreyr/cookiecutter-pypackage project template. Also the project setup by Martin Heinz was very helpful. I felt the changes were necessary to keep the files containing the roles small.
pip install personroles
or
pipenv install personroles
personroles ├── mop_role.py ├── person.py ├── politician_role.py ├── your-contribution_role.py ├── resources │ ├── constants.py │ └── helpers.py └── tests ├── test_mop.py ├── test_person.py ├── test_politician.py └── test_your-contribution.py
Because of its modular structure, all you need to do is add another role as "your-contribution_role.py", and another test as "test_your-contribution.py". Use current *_role modules as blueprint and delete if not needed.
Fork and improve.
Fork and repeat with different roles.
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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
MIT License
Copyright (c) 2020 Oliver Stapel