Romain Meson
Romain Meson
First of all, thanks for enact ! I would be great to detail under which license enact is available. It's necessary information to package it for various distros (gentoo in...
Address issue #41, #42 and #43. I tried to work around the current design in `master` to fix all corner cases but was unable to do that and, at the...
To demonstrate the behavior, consider the code below: ```python import logging from appnexus import Campaign, connect logging.basicConfig() logging.getLogger("appnexus-client").setLevel(logging.DEBUG) connect('XXXXXXXXXX, 'XXXXXXXXXX') def gather(cursor): print("Cursor.before:\tskip={}, limit={}".format(cursor._skip, cursor._limit)) results = [res for res...
This code snippet: ```python import logging from appnexus import Campaign, connect connect('XXXXXXXXXX', 'XXXXXXXXXX') def gather(cursor): print("----------") print("Cursor.before:\tskip={}, limit={}, len={}, size={}" \ .format(cursor._skip, cursor._limit, len(cursor), cursor.size())) results = [res for res...
Using the following code snippet: ```python import logging from appnexus import Campaign, connect logging.basicConfig() logging.getLogger("appnexus-client").setLevel(logging.DEBUG) connect('XXXXXXXXXX', 'XXXXXXXXXX') def gather(cursor): print("----------") print("Cursor.before:\tskip={}, limit={}".format(cursor._skip, cursor._limit)) results = [res for res in cursor]...
First of all, thanks for the work on this repository: it's super helpful! I'm working with Google's DisplayVideo 360 API (v3) and I'm using the openapi document generated in this...