Metadata-Version: 2.1
Name: eloqua-formhandler
Version: 0.9a0
Summary: Validate and send Oracle Eloqua Forms.
Home-page: https://gitlab.com/intheflow/python-eloqua-formhandler
Author: Florian Schweikert
Author-email: florian.schweikert@zumtobelgroup.com
License: MIT License
Keywords: eloqua
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/x-rst
Requires-Dist: requests
Requires-Dist: structlog
Requires-Dist: attrs

==================
Eloqua Formhandler
==================

Validate and send Oracle Eloqua Forms.

`REST API for Oracle Eloqua Marketing Cloud Service <https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAC/index.html>`_

Quickstart
----------

.. code-block:: python

   import requests
   from eloquaformhandler.handler import HandlerFactory

   session = requests.Session()
   session.auth = (ELOQUA_USER, ELOQUA_PASSWORD)
   handler = HandlerFactory.get(session)(FORM_ID)
   # send form data
   # if everything went fine status_code is 201 and json_response is None
   json_response, status_code = handler(form_data)


