bitrix24-python-rest icon indicating copy to clipboard operation
bitrix24-python-rest copied to clipboard

API wrapper for working with Bitrix24 REST API over webhooks.

Results 3 bitrix24-python-rest issues
Sort by recently updated
recently updated
newest added

edit prepare_params method

Refactor code and add some call variants: callMethodIter - return generator to iterate call results, callMethodList - fast fetch list data (recomended for large datasets). Backward compatible.

https://github.com/akopkesheshyan/bitrix24-python-rest/blob/master/bitrix24/bitrix24.py#L87 Let's say I'm calling `crm.deal.add`. `method.rsplit('.', 1)[0]` will compute to `crm.deal`. Looks like this is not breaking stuff, since Bitrix accepts GET requests even for methods like `crm.deal.add` and...