t1-python icon indicating copy to clipboard operation
t1-python copied to clipboard

Python SDK for MediaMath Platform APIs

Results 12 t1-python issues
Sort by recently updated
recently updated
newest added

Are there any plans to drop Python 2 support? There are security relevant libraries which haven't been upgraded in years due to that I suppose (e.g. https://pyjwt.readthedocs.io/en/stable/changelog.html#v2-0-0). This is causing...

This would ease some of the use cases like retrying requests with `urllib3.util.retry` or adding performance logging. Right now we have to rely on hacks like replacing global `requests.Session` which...

Hi, I am using MediaMath SDK which does auth using the username, pass, and api_key. what I would like to implement is a script that can upload audience data from...

I found that if I have a strategy with retired audiences segments, using the 'get_all' flag will return an empty list. So `retired_segments = list(t1_client.get('strategies', strategy.id, child='retired_audience_segments', include='retired_audience_segments')) ` will...

Hi there, in your API didn't find logout endpoint, so there is no possibility to destroy current session

https://auth0.com/docs/api-auth/tutorials/password-grant

A todo of missing entities in SDK - Margin (campaign_margin_calc) - ~~SupplySource~~ - ~~VendorContract~~ - ~~VendorDomain~~ - ~~VendorPixel~~ - ~~VendorPixelDomain~~ - ~~Vertical~~

Three ways to get these: - top level `/site_list_assignments` - `/site_lists/:id/?with=site_list_assignments` - `/site_lists/:id/assignments`

If you run the below code in interpreter: ``` >>> safety = t1.get('strategies', 319492, child='safety', full="*") >>> safety.include = [] >>> safety.save() >>> safety = t1.get('strategies', 319492, child='safety', full="*") ```...