Metadata-Version: 2.1
Name: airflow-provider-appops
Version: 0.0.3
Summary: App ops provider package built by papaya.
Home-page: https://github.com/wbchn/apache-airflow-providers-appops
Author: wb
Author-email: wbin.chn@gmail.com
Maintainer: wbchn
Maintainer-email: wbin.chn@gmail.com
License: Apache License 2.0
Description: # AppOps
        
        App 投放运营工具集
        
        ## Admob
        
        ### Hooks
        
        ```python
        from appops.hooks.admob import AdmobHook
        h = AdmobHook()
        
        h.accounts
        Out[3]: ['pub-xxxx']
        
        h.mediationreport_json(
            query_body={
                "report_spec": {
                    "dateRange": { "startDate": {"year": 2021, "month": 8, "day": 30}, "endDate": {"year": 2021, "month": 8, "day": 30} },
                    "dimensions": ["DATE","FORMAT"], # 
                    "metrics": ["ESTIMATED_EARNINGS","AD_REQUESTS","MATCH_RATE","MATCHED_REQUESTS","IMPRESSIONS","CLICKS"],
                    "sortConditions": [
                        {"metric":"ESTIMATED_EARNINGS", "order": "ASCENDING"}
                    ],
                    "localizationSettings": { "currencyCode": "USD", "languageCode": "en-US" }
                }
            },
            accounts=None, # using accounts from connection
        )
        ```
        
        ### Operator
        
        ignore
        
        
        ## Ads
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Intended Audience :: Developers
Requires-Python: ~=3.7
Description-Content-Type: text/markdown
