Skip to content

50onRed/openrtb-iab-categories

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

OpenRTB IAB categories

This repository contains a list of OpenRTB IAB categories in JSON format.

The list was generated from OpenRTB 2.4 specification using the following Python script:

from collections import OrderedDict
import json

raw_categories = ''  # TODO: copy/paste here a list of IAB categories from OpenRTB specification
categories = OrderedDict()

for line in raw_categories.splitlines():
    iab_id, iab_name = line.split(' ', 1)
    categories[iab_id] = iab_name

print(json.dumps(categories, indent=4))

Releases

No releases published

Packages

No packages published