From a5f48449622004bbc0eb8fefd11fccb66f2eace7 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Thu, 17 Feb 2022 00:15:45 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 3d55d6f..babc17c 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,8 @@ https://iptv-org.github.io/api/channels.json | is_nsfw | boolean | Indicates whether the channel broadcasts adult content | | logo | string or null | Logo URL | +Source of data: https://github.com/iptv-org/database + ### Guides ``` @@ -77,6 +79,8 @@ https://iptv-org.github.io/api/guides.json | lang | string | Language of the guide ([ISO_639-1](https://en.wikipedia.org/wiki/ISO_639-1) code) | | url | string | Link to the guide | +Source of data: https://github.com/iptv-org/epg + ### Categories ``` @@ -99,6 +103,8 @@ https://iptv-org.github.io/api/categories.json | id | string | Category ID | | name | string | Name of the category | +Source of data: https://github.com/iptv-org/database + ### Languages ``` @@ -121,6 +127,8 @@ https://iptv-org.github.io/api/languages.json | name | string | Language name | | code | string | [ISO 639-3](https://en.wikipedia.org/wiki/ISO_639-3) code of the language | +Source of data: https://github.com/iptv-org/database + ### Countries ``` @@ -147,6 +155,8 @@ https://iptv-org.github.io/api/countries.json | lang | string | Official language ([ISO 639-3](https://en.wikipedia.org/wiki/ISO_639-3) code) | | flag | string | Country flag emoji | +Source of data: https://github.com/iptv-org/database + ### Subdivisions ``` @@ -171,6 +181,8 @@ https://iptv-org.github.io/api/subdivisions.json | name | string | Subdivision name | | code | string | [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) code of the subdivision | +Source of data: https://github.com/iptv-org/database + ### Regions ``` @@ -195,6 +207,8 @@ https://iptv-org.github.io/api/regions.json | code | string | Code of the region | | countries | array | List of countries in the region | +Source of data: https://github.com/iptv-org/database + ### Blocklist ``` @@ -217,6 +231,8 @@ https://iptv-org.github.io/api/blocklist.json | channel | string | Channel ID | | ref | string | Link to removal request or DMCA takedown notice | +Source of data: https://github.com/iptv-org/database + ## Contribution If you find a bug or want to contribute to the code or documentation, you can help by submitting an [issue](https://github.com/iptv-org/api/issues) or a [pull request](https://github.com/iptv-org/api/pulls). From aa17bce0eeb626ff40c838908449819a82862060 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 21 Feb 2022 14:27:31 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index babc17c..4d821b9 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ https://iptv-org.github.io/api/channels.json "languages": ["eng"], "categories": ["general"], "is_nsfw": false, + "website": "http://nbc.com/", "logo": "https://cdn.tvpassport.com/image/station/100x100/nbc.png" } //... @@ -49,6 +50,7 @@ https://iptv-org.github.io/api/channels.json | languages | array | List of languages broadcast | | categories | array | List of categories to which this channel belongs | | is_nsfw | boolean | Indicates whether the channel broadcasts adult content | +| website | string or null | Official website URL | | logo | string or null | Logo URL | Source of data: https://github.com/iptv-org/database