Compare commits

...

2 Commits

Author SHA1 Message Date
Cassowary Rusnov a0fa4252d4 Fix setup.cfg 2023-03-06 09:23:49 -08:00
Cassowary Rusnov 43a8b2fb45 Fix error in .get definition. 2021-11-22 11:02:30 -08:00
3 changed files with 5 additions and 5 deletions

View File

@ -2,4 +2,4 @@
__author__ = """Cassowary Rusnov"""
__email__ = "rusnovc@gmail.com"
__version__ = "0.0.1"
__version__ = "0.0.2"

View File

@ -191,7 +191,7 @@ class APIv4:
objName: str,
where: Optional[List] = None,
limit: Optional[int] = None,
select=Optional[List[str]]) -> List:
select: Optional[List[str]] = None) -> List:
"""
Get objects based on a where clause, optional limit and optional field list.

View File

@ -1,6 +1,6 @@
[metadata]
name = civicrmapi4
version = 0.0.1
version = 0.0.2
description = A simple layer to interact with the CiviCRM APIv4
author = Cassowary Rusnov
author_email = rusnovc@gmail.com
@ -11,6 +11,7 @@ license_file = LICENSE
url =
license = MIT
platform = any
python_requires=">= 3.6"
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
@ -30,7 +31,6 @@ packages =
zip_safe = true
install_requires =
python_version >= "3.6"
requests
beautifulsoup4