Justin Grover

Results 12 comments of Justin Grover

Do you know if you have git intsalled? You can check it by typing `git --version` If it gives you an error then you will need to install it. If...

@srivga You are really close. ``` python DCOM_report = suite.report.element('X',search=[{"type":'AND',"keyword":["us/en*"]}])\ ``` should be ``` python DCOM_report = suite.report.element('X',search={"keywords":["us/en*"]})\ ``` The search starts as an object then the keywords is an...

Very feasible now that Adobe updated the DW api to 1.4 https://marketing.adobe.com/developer/documentation/data-warehouse/r-report-2 just haven't had a chance to implement it. Would love contributions. Just submit a pull request a pull...

Cool. Look forward to it if it works out.

Pickling the response object might be one of the easiest way to accomplish this. At this point I am thinking of storing the pickled data in the current working directory....

@tylerfach How long do your reports usually take to run? (Seconds, minutes, hours)? From the errors it sounds like the API might have gone down for a brief amount of...

Thinking through this somemore to protect against small intermittent failure we should probably wrap the request methods in try catch statements. This would need to be done in the sync...

One thing to think about is who this should work with calculated metrics and such.

Another cool feature would be to down load all of the reports in the Queue that are finished. This would allow you come back to a synchronous job if you...

Would love too as I have a few projects that could use it. Need to find the time. Pull requests are always welcome. :-)