theY4Kman / infusionsoft-client

Sexy Infusionsoft XML-RPC API client
https://pypi.python.org/pypi/infusionsoft-client
Apache License 2.0
7 stars 1 forks source link

Allow customization of ServerProxy options #8

Closed theY4Kman closed 7 years ago

theY4Kman commented 7 years ago

For instance, to set use_builtin_types=True on the ServerProxy. Due to the way the ServerProxy is currently initialized (i.e. not lazily), it may be infeasible to pass these args at initialization time.

Note: use_builtin_types and use_datetime are passed to the underlying Transport, and can be hacksessed with infusionsoft._ServerProxy__transport._use_builtin_types and infusionsoft._ServerProxy__transport._use_datetime, respectively.