watex.property.Person#

class watex.property.Person(email=None, name=None, organization=None, organization_url=None, **kws)[source]#

Information for a person

Attributes

Type

Explanation

email

string

email of person

name

string

name of person

organization

string

name of person’s organization

organization_url

string

organizations web address

More attributes can be added by inputing a key word dictionary

Examples

>>> from watex.property import Person
>>> person =Person(**{'name':'ABA', 'email':'aba@water4all.ai.org',
...                  'phone':'00225-0769980706',
...          'organization':'WATER4ALL'})
>>> person.name
Out[23]: 'ABA
>>> person.organization
Out[25]: 'WATER4ALL'