mailerlite-api-python
mailerlite-api-python copied to clipboard
Python wrapper for Mailerlite API v2
Hello~ Thanks so much for the library I'm looking at the mailer docs and I think the endpoint might have updated to add a single subscriber. It looks like we...
The current performance is ok but Faster is better. For learning purposes and to improve the performance of huge mailing lists, it would be good to use `aiohttp` and `asyncio`....
ok, I might have found a solution using `make_dataclasses`. e.g: https://stackoverflow.com/a/52536584/17925831 I will try to add that this weekend _Originally posted by @skoudoro in https://github.com/skoudoro/mailerlite-api-python/issues/43#issuecomment-1022272703_
Need to add campaign sent attributes in a `Campaign` object response example of the campaign sent: ```bash {'id': 42706640, 'total_recipients': 0, 'type': 'regular', 'extra_type': None, 'name': 'Regular campaign name', 'status':...
More information: - https://developers.mailerlite.com/reference/campaign-actions-and-triggers#send-later-schedule - https://github.com/skoudoro/mailerlite-api-python/blob/master/mailerlite/campaign.py#L238
Thanks for making this library! FWIW, I think it's good Python practice to not execute remote calls upon instantiating a new object. In this case, creating an API object will...
I am trying to update several hundred contacts which fails because of the rate limit. It would be cool if this library would recognize the rate limit headers and delayed...
Can get and search subscriber by email, but via postman it works. ``` In [25]: mailerLiteApi.subscribers.get(email='[email protected]') --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in ----> 1 mailerLiteApi.subscribers.get(email='[email protected]') ~/.local/lib/python3.8/site-packages/mailerlite/subscriber.py in get(self,...