Embloy's Python SDK for interacting with your Embloy integration.
Install Embloy-Node SDK:
# Install through pip
pip3 install --upgrade embloy_sdkor in your requirements.txt
# Find the version you want to pin: # https://pypi.org/project/embloy-sdk/#history # Specify that version in your requirements.txt file embloy_sdk>=0.3.28
Integrate it in your service:
# In your application or script from embloy_sdk import EmbloyClient, EmbloySession, SessionOptions # Replace with your actual values client_token = 'your_client_token' options = SessionOptions('your_success_url', 'your_cancel_url') session = EmbloySession("job", "your_job_slug", options) # Make a request to the Embloy API redirect_url = EmbloyClient(client_token, session).make_request()
python -m unittest tests/test_embloy_client.py
python setup.py sdist bdist_wheel
twine upload dist/*© Carlo Bortolan, Jan Hummel
Carlo Bortolan · GitHub @carlobortolan · contact via bortolanoffice@embloy.com
Jan Hummel · GitHub @github4touchdouble · contact via hummeloffice@embloy.com