diff --git a/README.md b/README.md index a77c871f..06af4dd1 100644 --- a/README.md +++ b/README.md @@ -331,12 +331,14 @@ Using [Alembic](https://alembic.sqlalchemy.org/en/latest/autogenerate.html) Auto ``` # If changes have already been applied and you want to recreate your alembic file: # 1. change to you main branch -# 2. start test container and run "pytest -vv -k api" to rebuild the state of the DB -# 3. rechange to your WIP branch and -# 4. connect to the test container : docker compose exec test bash +# 2. start test container and run "pytest -vv -k api" to rebuild the state of the DB (or drop table the table you want) +# 3. rechange to your WIP branch +# 4. connect to the test container : docker compose up test -d / docker compose exec test bash +# 5. reapply the latest saved state : poetry run alembic upgrade head +# 6. Save the new columns poetry run alembic revision --autogenerate -m "Add new column test for table keywords" # this should generate a file to commit inside "alembic/versions" -# to apply it we need to run, from our container +# 7. to apply it we need to run, from our container poetry run alembic upgrade head ``` diff --git a/alembic/versions/5bff4dceda53_add_info_public_to_program_metadata.py b/alembic/versions/5bff4dceda53_add_info_public_to_program_metadata.py new file mode 100644 index 00000000..76da1ad3 --- /dev/null +++ b/alembic/versions/5bff4dceda53_add_info_public_to_program_metadata.py @@ -0,0 +1,32 @@ +"""Add info/public to program metadata + +Revision ID: 5bff4dceda53 +Revises: c1d78b9968fe +Create Date: 2024-05-03 09:09:44.751432 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '5bff4dceda53' +down_revision: Union[str, None] = 'c1d78b9968fe' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + op.add_column('program_metadata', sa.Column('public', sa.Boolean(), nullable=True)) + op.add_column('program_metadata', sa.Column('infocontinue', sa.Boolean(), nullable=True)) + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + op.drop_column('program_metadata', 'infocontinue') + op.drop_column('program_metadata', 'public') + # ### end Alembic commands ### diff --git a/alembic/versions/5cc9e1ec5362_add_info_public_to_program_metadata.py b/alembic/versions/5cc9e1ec5362_add_info_public_to_program_metadata.py new file mode 100644 index 00000000..63936563 --- /dev/null +++ b/alembic/versions/5cc9e1ec5362_add_info_public_to_program_metadata.py @@ -0,0 +1,30 @@ +"""Add info/public to program metadata + +Revision ID: 5cc9e1ec5362 +Revises: 356882459cec +Create Date: 2024-05-03 08:54:16.764307 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = '5cc9e1ec5362' +down_revision: Union[str, None] = '356882459cec' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### diff --git a/alembic/versions/c1d78b9968fe_add_info_public_to_program_metadata.py b/alembic/versions/c1d78b9968fe_add_info_public_to_program_metadata.py new file mode 100644 index 00000000..794cebaf --- /dev/null +++ b/alembic/versions/c1d78b9968fe_add_info_public_to_program_metadata.py @@ -0,0 +1,30 @@ +"""Add info/public to program metadata + +Revision ID: c1d78b9968fe +Revises: 5cc9e1ec5362 +Create Date: 2024-05-03 08:56:47.087189 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision: str = 'c1d78b9968fe' +down_revision: Union[str, None] = '5cc9e1ec5362' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### diff --git a/postgres/program_metadata.json b/postgres/program_metadata.json index b41304d2..3fcff066 100644 --- a/postgres/program_metadata.json +++ b/postgres/program_metadata.json @@ -8,6 +8,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "e008c4077f2a3f1ec346ff222d7e57d30914bd4357f36e3b2025e05d2cf96b84" }, { @@ -19,6 +21,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "865c8fcdd09179acc8ab5ded2df8e6ab19c33e6dcbcef8dadf5c476cab3e7417" }, { @@ -30,6 +34,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "0ceb81c10a9c91d7b1fc4c385118d7a98193f81cdc8ca25be2f37ff66eb90aac" }, { @@ -41,6 +47,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "C8", + "public": false, + "infocontinue": false, "id": "b5490b78c9e49919934a4ef82f8cf5cbbccf6ef0041d9bc5f50e3d38e391e142" }, { @@ -52,6 +60,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "994cc943ca6538eb61f4910403efa90699b992cb5085f5c3b502b1c2faa383df" }, { @@ -63,6 +73,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "c71a863a26153495195746182eb69dfa28ae125cfeac0f7a47c0582ca559119b" }, { @@ -74,6 +86,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "3880711a96ee5af59bda0cd14589b87c03c2e800fbbab053a39871c813c37a28" }, { @@ -85,6 +99,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "a1eb99525c0964a7191f926961ea0edbc38df270ab2d84369ac787dd35e385ef" }, { @@ -96,6 +112,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "c71a863a26153495195746182eb69dfa28ae125cfeac0f7a47c0582ca559119b" }, { @@ -107,6 +125,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "3779a07b1d299be0e170d87c423a211ef6b8d643054ad3a6e2124a60068f3b46" }, { @@ -118,6 +138,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "8cd48e2722d138ef048be6fc17087f5a067de73ba0ad63880e74b2a182bce9a1" }, { @@ -129,6 +151,8 @@ "program_type": "Information - Journal", "duration": 120, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "69df3955cf5427cb20161fe303d2a61a2cd7724ab3815a2c7dc09d8611b06128" }, { @@ -140,6 +164,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "058ca097d7f964d14bcccff54592f9c3105f63a93bd2511642b1ecf37b1fe690" }, { @@ -151,6 +177,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "5018eca67b98963c816b3a3c34148aacc02dfcf5ffc8de0158fe02af2b58d5a6" }, { @@ -162,6 +190,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "f2b861e730507a7b8da77ce6b2f1ba4d4d404dfbb82d2c5d67065c0555aee463" }, { @@ -173,6 +203,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "9cf3fb9cd6ad138140298cb382b42ee25d9dd64fe8ef17c58e2eb99acb61035d" }, { @@ -184,6 +216,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "f610dd40d26367a92fb8f9a1d9e0949460a6d404aad819c28a94536640541f4a" }, { @@ -195,6 +229,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "443b83ce4c1155dd5f965d200adc07c4ebf14027235a2d6a6c1011cf1a671706" }, { @@ -206,6 +242,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "cb0ea84ff7727f06fc029a90994e8da26f358b3563a2948d02cc6c62633f0d04" }, { @@ -217,6 +255,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "a04c06d44e58aa69534364dded49e37fab9753b16fd0deea68f26af792387d76" }, { @@ -228,6 +268,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "98e7352a9cef206a57c65b0bff5ac5190e567340dc2bf047cd8374a6b17ea1c9" }, { @@ -239,6 +281,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "b4044517eb5ea419354477f0a8132b3c33dc393c81cd434d2c64ba30042bcd36" }, { @@ -250,6 +294,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "de7840807558b2024443b11430c6136c5b93c368138fad71a36bab55e6e7ce62" }, { @@ -261,6 +307,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "92a6e78cff0ab87c2f370bcc504a6ed35c9f794714bb15e5bc16c0af6b499e79" }, { @@ -272,6 +320,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "5267a0c66255abdb757ad883d4278470a81cbc49ec31d8942db914d3e165a6b8" }, { @@ -283,6 +333,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "e1160143efbdb19f87d7f53d4035f9b78fffaa2e5af86bc3719d6428b3adaa6c" }, { @@ -294,6 +346,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "7cfc96cc7c5473a0df49e96323e3fd9977ba25633b43cc94ab0a4c049ee6231c" }, { @@ -305,6 +359,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "d8fc1a167a998df5df06e03e0dd55f8e9d26db97282d2f83a4f5e045fe9e11e7" }, { @@ -316,6 +372,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "1a10aac5239337152ca54a2d834b4a05185f6f55a3299eb9812cbbf88208be1e" }, { @@ -327,6 +385,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "28260fc9d8661347b80e4aee01185e423036a48f10bd0a2a79f28983b6cfcfa1" }, { @@ -338,6 +398,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "7182c3463a8c4afda96c5e88f77276b12e88c7b33580cba1f8c1f679c711ac0e" }, { @@ -349,6 +411,8 @@ "program_type": "Information - Magazine", "duration": 210, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "cc4a2d02331449f4198431a47bb31c24150033a6f09d6d2a525ecc8c870654aa" }, { @@ -360,6 +424,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "03b8dab49a7a8d50c10595b0e73c30a33b47d09b3edc4bfd204708a86669d1d3" }, { @@ -371,6 +437,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -382,6 +450,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -393,6 +463,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -404,6 +476,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -415,6 +489,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -426,6 +502,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -437,6 +515,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -448,6 +528,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -459,6 +541,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -470,6 +554,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -481,6 +567,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -492,6 +580,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -503,6 +593,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -514,6 +606,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -525,6 +619,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -536,6 +632,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -547,6 +645,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "3170ad34dcb836517bdd46315955132bd7ee9d0d077dd62c896f2adfc9783514" }, { @@ -558,6 +658,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "49c9a15192ab6be64076d2884716318174f24958a4bcc3716f47b7d537058204" }, { @@ -569,6 +671,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "b198f6137086f5e7a509348e30d94352609fa5b244ad548469916dff9f0173c6" }, { @@ -580,6 +684,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "497eb2971fb770a4679433631e7630d7dfb6e1ffdd01078e2e2a8456c73043a8" }, { @@ -591,6 +697,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "fe30f03ef0018636d172f467452c5350729515a63f28886afaa673affb17dfdf" }, { @@ -602,6 +710,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "e70df20f171fdf6d9c3175e21d4406e95501bf6e659358fa1fe34a0d5db17b41" }, { @@ -613,6 +723,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "548be5199e55cde6228751fbe6567940ecfe356e4cca07a9a82b685b9fc68b4e" }, { @@ -624,6 +736,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "7132a4bdb5658ffa22cb31a5ab2aa9ed50bd5311a6953a567dd827f8b2858d1c" }, { @@ -635,6 +749,8 @@ "program_type": "Information - Magazine", "duration": 190, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "7eadcc69fb40d32f51a552b55fe1d69260e21752c9ef25e3f5de0f5738a018e8" }, { @@ -646,6 +762,8 @@ "program_type": "Information - Magazine", "duration": 80, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "899dde3daa8d98161119e3da666af86ba7d5885678793f001185ecde2a64a1e2" }, { @@ -657,6 +775,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "7495abe429ea2ceefdeddf89d2b17e14db83fc548459ef09e7db81e3e323e0ab" }, { @@ -668,6 +788,8 @@ "program_type": "Information - Magazine", "duration": 155, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "2a8d5572941a45390c36f7c09e8b096786f3e916cbb7ba57ac65534e383b5ef3" }, { @@ -679,6 +801,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "1232f3ef6b07a51c7780474ca31e16e63bfa1f3f9749b7e4edbfb2bb49cf45ca" }, { @@ -690,6 +814,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "6570c5769e1610e80195da4f3d2802baa2148b279f1a4945e92e0cdefd50e66f" }, { @@ -701,6 +827,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "c5df62c7e827d9e348c8c97e01e4947f271abad9ffde37aa712b961217a4f713" }, { @@ -712,6 +840,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "d7bcee8d919aa886f43f136562dde01944366d62b1a2dee1843aac678e4401d7" }, { @@ -723,6 +853,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "ef935aec5c8d0282593a48702d351463ef0935d4d68b3d561bfa9e5008d3fc05" }, { @@ -734,6 +866,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "C8", + "public": false, + "infocontinue": false, "id": "0537c81a96e6e7877d72b769c0de97184f86fd82dcbca23d244120ae94ef2b5b" }, { @@ -745,6 +879,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "944a0b4b55e29f1d9e51418950844d775ec664c826087990ffe05ad29db5da14" }, { @@ -756,6 +892,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "00ee38b683b1d0a1b2bcabbf6cb658c2d4c707cc14226cd31f32c8b7aecfe018" }, { @@ -767,6 +905,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "e890a5a9584b3cdb7ee7c56d7769aaa741d7ec13214f2b0240b816b7facad7ea" }, { @@ -778,6 +918,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "06be5ccd0a0dc351e8a2bdbfaa21df805935384207eec142cee8253ddd15adb0" }, { @@ -789,6 +931,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "00ee38b683b1d0a1b2bcabbf6cb658c2d4c707cc14226cd31f32c8b7aecfe018" }, { @@ -800,6 +944,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "00ccde6ea34deaa3345ba4889ed94830c3ac3c7da897bf21f600927b654654e9" }, { @@ -811,6 +957,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "694409de0fd7e491a640a80222284de1352802bf5383d9117db36e0ea9c32f97" }, { @@ -822,6 +970,8 @@ "program_type": "Information - Journal", "duration": 120, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "5fcbf73145402a21424b28df54fd4c5122b352982cc8d04bf9310eae05d05132" }, { @@ -833,6 +983,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "530e2311d56d6661510cffaf1e66fbb3fefccc1c0eca6b672525778da5856b43" }, { @@ -844,6 +996,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "b7ca727aa872d3fd9f8244acce9384300ec40afe261b21cb784383e4ebf724d8" }, { @@ -855,6 +1009,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "d4e9301959f13a97c543dd07517645b34795e466f2fc8efba33a72fc4400d84b" }, { @@ -866,6 +1022,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "bd2bf6ee393ff90f78982f44a4757ddffe1989f37e8e2d077f347f854864a854" }, { @@ -877,6 +1035,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "75092d98bd645d4a30a28c87c54d7a9f84fa502a058f9086a5204eea1244e6d0" }, { @@ -888,6 +1048,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "0ce45bbb402b07e4de285bdc60e59aaba02c591d719916fef7cb6e9090e88628" }, { @@ -899,6 +1061,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "5cc83fbef29456ff510a05128a942da26469406d83f30b5bf789056879672792" }, { @@ -910,6 +1074,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "3f7d687081855959fad4088ea0da9a5a362e1c364ea5bd81262db46c34b1a086" }, { @@ -921,6 +1087,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "3b5c8e78d47b85ec8f5e8d85a9a2255b30e9a037da75aff24829f581299ae2f5" }, { @@ -932,6 +1100,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "0022f21dd88bb1c3bb8c0ac66431ee0a6a56d634e9900ed3724b77f6f7521e6e" }, { @@ -943,6 +1113,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "a2c555b91088d059b8de59bb81c2b949d3772ba71ce66484b4bb1986ca7a5a15" }, { @@ -954,6 +1126,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "92bc0487e355bb9837f0ccd737a4d87e70f6904d9825c47ab50fca3e32a2ec8a" }, { @@ -965,6 +1139,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "1846d31068ed341b7c21cdd47e2ba8bd0aff40ca3f6c8b685dc34c8f38758893" }, { @@ -976,6 +1152,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "f49ddd82420f561239ec8d35b8993471397828e68b446775072a86d870ead932" }, { @@ -987,6 +1165,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "a7a9925baf4d5a5b6445d7c9cafcd457502d50a93e19dd213f01cd7796822c7f" }, { @@ -998,6 +1178,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "f1b7fc4e4eee9e25ae05cd042cd52c84672c0ed2f28d8c64022cc9823ddd2090" }, { @@ -1009,6 +1191,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "a255842820f0bfbc126c49801e2cf45be9f7e67633e98cf67c07b6133da4ef99" }, { @@ -1020,6 +1204,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "8a72eaa8a372d2b0387f06b90d7501b11056201cd7b5235ff542fa0dc649bdb7" }, { @@ -1031,6 +1217,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "907dda167cc8ebfc08ed6857ab158b8c16c51e755a723435eb820c9ea5d80b3a" }, { @@ -1042,6 +1230,8 @@ "program_type": "Information - Magazine", "duration": 210, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "e991f66c4a3e36501af628429f2e6a510b7ffcfd60058c29d6b4491a3baf7a0c" }, { @@ -1053,6 +1243,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "ca69aaafac156add1617efb9c7b9750d1084be78b6bab2d87dab8266c6ce66c0" }, { @@ -1064,6 +1256,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1075,6 +1269,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1086,6 +1282,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1097,6 +1295,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1108,6 +1308,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1119,6 +1321,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1130,6 +1334,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1141,6 +1347,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1152,6 +1360,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1163,6 +1373,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1174,6 +1386,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1185,6 +1399,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1196,6 +1412,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1207,6 +1425,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1218,6 +1438,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1229,6 +1451,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1240,6 +1464,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "235218b0da6ab524aef3a17f9ec960d8233553f0cf08b43efdfa8bb1be717b85" }, { @@ -1251,6 +1477,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "ac771e896c1da996f8d260ccd67b9de7e99573091127e270e293f49aece906e8" }, { @@ -1262,6 +1490,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "8beba348c3c902832f6453957534515dd5c55731115dedbca5e4b4553a400175" }, { @@ -1273,6 +1503,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "e6b0fa348d2d343d7ff29330c7b48d3830e34af570698b571aa62e8f9eb41b3e" }, { @@ -1284,6 +1516,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "5894da77a2a8f569ad77dbbddf1c94d54996340b70154cc481ce3141d66988d1" }, { @@ -1295,6 +1529,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "ac917ae1bd0ca6c77c58fb569b897458069b8bd8ddfbcd6ba7c901cbffb05b7d" }, { @@ -1306,6 +1542,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "d5974158f1f7b4ef962cd10624ee35a6768d9f1a0a89124b613731e16d67f9c2" }, { @@ -1317,6 +1555,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "1627a41713264784ef22067249bacf13027f02010cf4bbf4fc6c8aa14ccc96b1" }, { @@ -1328,6 +1568,8 @@ "program_type": "Information - Magazine", "duration": 190, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "ad6920af338563f9945283493340f051a7e177ee250bba352b9df120126c5602" }, { @@ -1339,6 +1581,8 @@ "program_type": "Information - Magazine", "duration": 80, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "4c3565ec4a1d217a0f8f4e7f54fc9884623dade70a26780fca4123a8d362d628" }, { @@ -1350,6 +1594,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "76edee9ab9d3c4a3cf07be7cb7e018ff1a9df16540c2fcf13c9b5eb5781a456d" }, { @@ -1361,6 +1607,8 @@ "program_type": "Information - Magazine", "duration": 155, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "32ebcc4559b823f40b4bddab613af7fcc8f7776616496160c8dc19ba7d01442b" }, { @@ -1372,6 +1620,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "0a88bf49ad9fbd4ce94d0118339ca1c0db3a2e043bf888ce93de5d6ff15325d5" }, { @@ -1383,6 +1633,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "41dc27715ed349006c2b21745313833e79263ea228b6e1c1cc0ae768bcd528a1" }, { @@ -1394,6 +1646,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "61fd093a1c8a6dfb236ea53bfd6443291ea45a012b988634cb40b5debf6a4a9f" }, { @@ -1405,6 +1659,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "7751624f865ac33a3dcf587315b15b0a463d0c82cab15793ada3933a8016e7cf" }, { @@ -1416,6 +1672,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "e553bde8c3a2fb3fb9d0091873756fee0e88780f71e11f59b473f8a23052882e" }, { @@ -1427,6 +1685,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "C8", + "public": false, + "infocontinue": false, "id": "36eb06c5da61f74c242dfe0627a899351df792538b007b2d3b7e909f43beb038" }, { @@ -1438,6 +1698,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "5d77feb8cf5e7089b60c7691211e5b9be047b2013cc457e3661c9dc75886e58d" }, { @@ -1449,6 +1711,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "85df7f9394d26a8269bee18138b7a6b9d9615985174ade6bc326b6997c07f4c8" }, { @@ -1460,6 +1724,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "f31710a2733f98e2ea5da18b36d8d360f406dbd10c7240d8bb8304b9f2d6f848" }, { @@ -1471,6 +1737,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "05683c1dc789d35875cd1b13a0849a2774cc496b0ce763ae4cc9e7f67a446588" }, { @@ -1482,6 +1750,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "85df7f9394d26a8269bee18138b7a6b9d9615985174ade6bc326b6997c07f4c8" }, { @@ -1493,6 +1763,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "5e58d1a1e4f9dd2eb6c5989f5dc3677eac49925ce1d895ebf337bbf27131bf8d" }, { @@ -1504,6 +1776,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "a4d473c153a79f20e5fc0d7622ce49871a10b8c51f322c4d9c868a2200e6522d" }, { @@ -1515,6 +1789,8 @@ "program_type": "Information - Journal", "duration": 120, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "39e504a617bd9435d792cf004ae1c78131146e633bdab223fce74a48d3bf2607" }, { @@ -1526,6 +1802,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "261b3b01384273150ed3ef41116eaa435807bb3416bcbde5bb9033d0f662d5dc" }, { @@ -1537,6 +1815,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "1bbafc8464dd880f5cbf87ac8c2108659b388a08394df0b162e0bc67fdc8bcfd" }, { @@ -1548,6 +1828,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "5381f94416be2b222204414fb220303c8d2b1b89ec139fb6703a4d7af1050f88" }, { @@ -1559,6 +1841,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "76de4cd5d266d6eb66cf71e5ea630efbaa02f3c2b4c9005633fe30fee6c95d63" }, { @@ -1570,6 +1854,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "7b7746184707b89dfb0c478839a33d1980f76d21f5de6a4ea5193011deac9cfb" }, { @@ -1581,6 +1867,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "bee2ab87bf0a55e599bea2d87b06b14c5cf2c88074869abfa7334adf34b2c1a5" }, { @@ -1592,6 +1880,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "1ce035e36e2a29d67dcd45307c77417798b6d72ee87821cdc381679bb80d6614" }, { @@ -1603,6 +1893,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "781479f86f71f665911a9d32cce6b1de8005da443aa5a92726d4a0eb6bad1868" }, { @@ -1614,6 +1906,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "63a2abd40e38c9571ac545abda927717aa60bbbe8b52ca144a4fc8f9bec54c84" }, { @@ -1625,6 +1919,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "107b03d932c60c2d99c0406faae56179b29243fdf0f6747c35efae1cbde3393c" }, { @@ -1636,6 +1932,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "72d745afc6cf638386be349eb9d506cb489172ed1ad0fb95a7d82ea21a9bd321" }, { @@ -1647,6 +1945,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "45b58ff2df3a66e53a8254658b02a14a2d704cc7a99b5e3654a2b5f6c4089f46" }, { @@ -1658,6 +1958,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "684ace48494b376b2e0c503798f51d9ae2db1886c3a2ec02c76b29104671ea23" }, { @@ -1669,6 +1971,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "eb492643d89dc4fc9208b67389cc6365af1961c0ddbad77d760e42df82884662" }, { @@ -1680,6 +1984,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "d5d896682e442651152e9974afa68c625b257a875beb4e8be20020511eeb5cef" }, { @@ -1691,6 +1997,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "fe514b9727a2e173c4eb6da963c733640e1749dfa0d1e2e207d0fd793a97528d" }, { @@ -1702,6 +2010,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "c130b9eba57ae4a2f0195ca76dc224ace56ff27f2857b6970fc5787e54c73e81" }, { @@ -1713,6 +2023,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "8e844ef0a6a4a91dfc0c6b5958cf1a54ae55f903812abc1046d4bb57e4f342ed" }, { @@ -1724,6 +2036,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "d0a925b9a270aa502958c77a6dfe66f1d4dfc45f229cb9d72f756751a131f4e3" }, { @@ -1735,6 +2049,8 @@ "program_type": "Information - Magazine", "duration": 210, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "d5dac14c9c635a22457a33ebddb84ed3df3e81d563a247995b0165292c90501c" }, { @@ -1746,6 +2062,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "c9c932150a2fe9f10307552743cdbe25b1903f28c11307739564a398b249e025" }, { @@ -1757,6 +2075,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1768,6 +2088,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1779,6 +2101,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1790,6 +2114,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1801,6 +2127,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1812,6 +2140,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1823,6 +2153,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1834,6 +2166,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1845,6 +2179,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1856,6 +2192,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1867,6 +2205,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1878,6 +2218,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1889,6 +2231,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1900,6 +2244,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1911,6 +2257,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1922,6 +2270,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1933,6 +2283,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "bfb430ce91a7033dd11a3eb73ce0989079992d82d50f3fe6dbcc44be5a19a5de" }, { @@ -1944,6 +2296,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "0254f096c4027156a65c91e9d5f7b2f2cd02a7ee3312454bca740cae432187a8" }, { @@ -1955,6 +2309,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "06da853a83fa702d1bc7ab4baa38d17fe5fff6d102bfa07e2ba711babcb65585" }, { @@ -1966,6 +2322,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "1d67e2404b8f362ee0ed2f44d6584aad5954639dd4cf7815f0db68d3d8590fa2" }, { @@ -1977,6 +2335,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "f4f92588d236841192f7eddf9b3c09342dccad34875ca3ede41ecd4494c6662f" }, { @@ -1988,6 +2348,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "d11af865853896f38c3fdb15e30a42e01463db38ee4a34d6453f65d6bd44f792" }, { @@ -1999,6 +2361,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "da0417445fbb82f9b946c187a3adff698db693bc5552cb9b1d5e44c1fddadd14" }, { @@ -2010,6 +2374,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "995b5106a29a9365742fbd62f52bb8a22e635caf527a2ff718b6cf626bc925e5" }, { @@ -2021,6 +2387,8 @@ "program_type": "Information - Magazine", "duration": 190, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "250e896ed0b8ecf756c833c923d3a5c0357e82e67e1bfe4e40513aa8f1f01b77" }, { @@ -2032,6 +2400,8 @@ "program_type": "Information - Magazine", "duration": 80, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "3c6546185d623419ea51adc0e7c217fcb1323b0a2d6a42c1691f0d41449c4f1d" }, { @@ -2043,6 +2413,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "7d04c90a3e550138c740847e6897ea63592a5a281091b28112e791f50139e54b" }, { @@ -2054,6 +2426,8 @@ "program_type": "Information - Magazine", "duration": 155, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "72fb17fbaaaae55b362ec7900e45a05e18c05215a0d53cea3f687b5546952da7" }, { @@ -2065,6 +2439,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "bcc28785e39c0f4aa12b5737e163fe7c618c699f1147fbdcf8826b204e186612" }, { @@ -2076,6 +2452,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "395e89266305a12f51dcfd5545796cec0f40cbe21cab96a05f7206f2b094b7e7" }, { @@ -2087,6 +2465,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "270e096eb693197d4912c255571d48a5dd8169e39d8cfd4a5f78053d26179d01" }, { @@ -2098,6 +2478,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "b13efcf89ef7a35dc9a52b3f9d79287ea13780071f139784b1dbb31afc77e38f" }, { @@ -2109,6 +2491,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "104128ff1a2496a771d1691f414d7c32106938090a47b2171d14edd70016f34c" }, { @@ -2120,6 +2504,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "C8", + "public": false, + "infocontinue": false, "id": "8ce734c277dbeeac5e9352b9c12cdd75513b6c184d13b8f8a9000c291327e3dd" }, { @@ -2131,6 +2517,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "ff85e78fb6daf84442b3a8d32eaa68b1d22544e3eae0c674c372e47859b5c7b5" }, { @@ -2142,6 +2530,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "c0fd700c4bc1d8136b075a18db8b975bf2289bc1a32b81c447b977f5ca0b9667" }, { @@ -2153,6 +2543,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "0d3700aa8a1dac99a1e17af0fc167547f95892ff79cf7be726ef4676df13ab40" }, { @@ -2164,6 +2556,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "7b1c376fb445df937236f561a6c151f03d34c23908dd07d32af1cc6974589f3d" }, { @@ -2175,6 +2569,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "c0fd700c4bc1d8136b075a18db8b975bf2289bc1a32b81c447b977f5ca0b9667" }, { @@ -2186,6 +2582,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "924a8b9012cc838c3da3ed1cf03ec96de63fb700747499f539f9c89e75e3391d" }, { @@ -2197,6 +2595,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "b7367f92772bac202a04870d205b80d4ba70940d391953c935d6e996f5c1192d" }, { @@ -2208,6 +2608,8 @@ "program_type": "Information - Journal", "duration": 120, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "f4280b2000825b27e3e3516ab74aba66d03c765515fc942668353f6ec616bcaf" }, { @@ -2219,6 +2621,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "dcb0f6144218dcdafacd8e498005ae23805e0871fb2f48ea5e742d85277679ac" }, { @@ -2230,6 +2634,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "e07cd3b677da94c4f47e8c95fa046850bf9ebae9e600d9e37c64b275c83dda5c" }, { @@ -2241,6 +2647,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "fabeb34f50381a7b995e461f3b242b7cdc16143685c0194d4047bdfa4233ace7" }, { @@ -2252,6 +2660,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "bd8ffd31fadf8b5fb9192bc0ac32f0b101ddc802b7a60e594cf6fce8c48ce5c0" }, { @@ -2263,6 +2673,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "e5c584a98bac43ada61c945cf2f946c0621419251bd2e6bcc82eb099e3e012db" }, { @@ -2274,6 +2686,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "de4d614e98d3fa18e708b218cc8c784c2fdfc8689273a1faf3c608faa8412ec9" }, { @@ -2285,6 +2699,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "8b500b3076c61a02eca649b77d8facf345b750720671787905159a2facb91532" }, { @@ -2296,6 +2712,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "9ccfc45afb42bd5724f18fd1e004cccdf72d354f89bc9cae8c2bc7509d7aad42" }, { @@ -2307,6 +2725,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "cf23f0bf26def2c61c3fcd9ab95666dc735827bf1936b92e300ed0f9d9da708a" }, { @@ -2318,6 +2738,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "5fc6aee16bd5950803a519a4c07f2e28bce257faa2cfef4bf318793b996280c7" }, { @@ -2329,6 +2751,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "9bafcbecb8f5e07b71967cbf12136aa5df82f6cbd6dacb9696e8f903ff65c9e9" }, { @@ -2340,6 +2764,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "bdf0ad8a3f9b11125708799ded2ae755a0029b3895e8f9695c1df69f32e1b16b" }, { @@ -2351,6 +2777,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "b093f549faef5ca4d5c7024dc3faedc2fb26416f46ff260e8cc36e535ab8dcd5" }, { @@ -2362,6 +2790,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "c1550584dbb5198439d5558bac3864f1e5e6f3d7a9097a4201b38e52b2706d58" }, { @@ -2373,6 +2803,8 @@ "program_type": "Information - Magazine", "duration": 110, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "b973fa1d699538767b6eb5bb39264a98756acb5c7fdce638b3266ed084d5308d" }, { @@ -2384,6 +2816,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "e32844a00f335a6aee249f206621a2f4d0eab76f87ddd36b70a33b182b819346" }, { @@ -2395,6 +2829,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "b108f4b98a99594bca0feb8de6568cb5b550358b8344db093342273c6b40dace" }, { @@ -2406,6 +2842,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "91f72a7aa419d1e60c1da73dfa4a8b291d3503f0f6666f841b59cc5e26b1ca67" }, { @@ -2417,6 +2855,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "d301dab132c4dac6dc37070db7d1f553747b679f41e8d570c55cb55e68f09074" }, { @@ -2428,6 +2868,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "4e3569b19d6f6310a34d68bbc36b24223988dff23883d440305b0a7f14c7ade6" }, { @@ -2439,6 +2881,8 @@ "program_type": "Information - Magazine", "duration": 210, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "147698b5152e12caa81bf40b19d5fd6ce09e82b99d0ceffc095b926d87dfd3d8" }, { @@ -2450,6 +2894,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "f14ff5479d11d4ceeadc03da3da11c1c04e433400995578d48b8e3556db61fb0" }, { @@ -2461,6 +2907,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2472,6 +2920,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2483,6 +2933,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2494,6 +2946,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2505,6 +2959,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2516,6 +2972,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2527,6 +2985,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2538,6 +2998,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2549,6 +3011,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2560,6 +3024,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2571,6 +3037,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2582,6 +3050,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2593,6 +3063,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2604,6 +3076,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2615,6 +3089,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2626,6 +3102,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2637,6 +3115,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "cb9cdfe21d77603250d0fe2c19640a688d9f41f0ddc5e5d8a2f6237e5cbd1bad" }, { @@ -2648,6 +3128,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "428df97d3af807ee7e973617f95c9cf8d119d60042fc4f04b5c4d2ebe68eede3" }, { @@ -2659,6 +3141,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "d41262a5245dc25fb5dd88f612c7bf671850a071c7a1b59468aac1d3cd4722b1" }, { @@ -2670,6 +3154,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "3fdd97201e32e39fdbdead67a9c6669831b7d46827daf021cd723646fb4b345a" }, { @@ -2681,6 +3167,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "82a0a3575584c03dbd4547e53e98588dd0ab2eb96758302432ca3f3265009a5d" }, { @@ -2692,6 +3180,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "1b888c3f42cd9537ab59739e84ba780d3bd15a5b60c200b8143032bc206ba718" }, { @@ -2703,6 +3193,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "ab53a1a888731218acdda4d2d838aa7bef5fbb2142896215f5d7972f1d5d0eb0" }, { @@ -2714,6 +3206,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "bcab0d51e355468456c281849b58fea1eb03d05f402ad33c099c8b3de3d05b5f" }, { @@ -2725,6 +3219,8 @@ "program_type": "Information - Magazine", "duration": 190, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "deeb20c8cd96b7c9f3ae91dc58c36e5d5fecfa01616e97da775e868cc2015245" }, { @@ -2736,6 +3232,8 @@ "program_type": "Information - Magazine", "duration": 80, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "965b96493bc6e4205e13f36dad252b1e0280a63d1a8acfc9960a572439343a4b" }, { @@ -2747,6 +3245,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "618a47f29848159a8132ab18715c1680d9922d60c9a5b8638879f6bab5950856" }, { @@ -2758,6 +3258,8 @@ "program_type": "Information - Magazine", "duration": 155, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "640ddbdd0ead37060f96f786f16bd27386d595baddd9d6de353a529b2f3d7071" }, { @@ -2769,6 +3271,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "abe7e2acac8def125b6f893ccebda46a17528ccc78bc83f640df234f2590681f" }, { @@ -2780,6 +3284,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "47fdab35b91809af1cc9a727df4a7ba1bca86f103e4335ab044d260612213aaf" }, { @@ -2791,6 +3297,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "87d90b42f65f7add4286790c3508c3b1aa8bba2b754d7307208d5820d454713d" }, { @@ -2802,6 +3310,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "63ba38ca44f6bbb123c25664034b836ea604275c133cac03a8ad40975ea06956" }, { @@ -2813,6 +3323,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "f6b01248a878d7c4262ad724ca4921dbb8b96402e71e975de8eafdc1b93d26de" }, { @@ -2824,6 +3336,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "C8", + "public": false, + "infocontinue": false, "id": "4724537ef787b64d254df9c885ac84f88ada486719722207eefbf55f5491df12" }, { @@ -2835,6 +3349,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "698489434d6b162ffca30613bf95cb8385e70106f2931ab8022f2f569e13d47a" }, { @@ -2846,6 +3362,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "79a1d29b5277a75e738cd5b70a85b889bb3e18f9a34ea96c5a2f161a38d13eba" }, { @@ -2857,6 +3375,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "8a43187154a25c98e3784a856a0f1bb75937aacca5208ac833d953fdc6754abd" }, { @@ -2868,6 +3388,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "ae5942b4e786c0d04f0a052384e65d43e9afa1511488539030a66cc57e1acf5a" }, { @@ -2879,6 +3401,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "79a1d29b5277a75e738cd5b70a85b889bb3e18f9a34ea96c5a2f161a38d13eba" }, { @@ -2890,6 +3414,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "47d4ff583c1a4a7fdf93b501900bd9f1d4cda80fce67c1a16cea7433663cd0d5" }, { @@ -2901,6 +3427,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "b479854bd62882c1b6e0eecdd1c56aa91bd98a5b3d69ab7331318dc0abeec100" }, { @@ -2912,6 +3440,8 @@ "program_type": "Information - Journal", "duration": 120, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "3eaa70001c332aa11cac09869cb30180be077ef48a0c49b5dd05b0a01ca272c1" }, { @@ -2923,6 +3453,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "ea363fa9aa4b8f90e2c590556ee8c2627b022c8af03ecfacbc244cd9ce4cd235" }, { @@ -2934,6 +3466,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "7616360e263ff0cf748da0c38227bb03161e95e7ce7c03196d834631edb95b58" }, { @@ -2945,6 +3479,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "af7faae7d43585a962604e7d28a779cae611a97e2ab5c58979367eecb3b38a55" }, { @@ -2956,6 +3492,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "294d9e0595ce3068004ce2540124110b4ad24033828d03c42d300c01634d3816" }, { @@ -2967,6 +3505,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "b8e573a4252b2febb7c483f3ea9081882dafa44e734a942453062eef57e83650" }, { @@ -2978,6 +3518,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "e4315233a0d3eabcbd36080ce24f742cc72705a060897ea1071755c5d8083b71" }, { @@ -2989,6 +3531,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "63406a475f3e4765a12f083e590ba44c22e66311a5a7b04160f5865d756eb919" }, { @@ -3000,6 +3544,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "433f0818a9f67055c4a21c2d61b3042ae573748da7c5110a7dfe780c21a34fd3" }, { @@ -3011,6 +3557,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "edaae606a6946183fe64aab879b7a45b2598be11abb661d01899a3042e928449" }, { @@ -3022,6 +3570,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "d2a41b242712a914d181013f1f00b0f21fb1175d24b71b4bb4d799b8c7e1b5ce" }, { @@ -3033,6 +3583,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "d214a9cc4281e997ba52d6ac58cdd8f229234af9a4445eedad4641f06cd688dc" }, { @@ -3044,6 +3596,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "a870bd9e971a1c3cefb02e4329f461c42008250a7bc7e12cdd505ef56f4009bf" }, { @@ -3055,6 +3609,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "a2792395938b6434205212e01e151b458a0fb2e72f9b3b08be9078dbb793b1f4" }, { @@ -3066,6 +3622,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "bc4bb2e848d6bebd7b990e8ce1e0320587b23215e64059e10efd406717a30ea1" }, { @@ -3077,6 +3635,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "82860142ae801927b1ddfc3bd9baf58926a2f10b605cb3933859fb187773180b" }, { @@ -3088,6 +3648,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "49fcfc6de7658cca51c3fc8401a9dc8d32c8d6907df9b44856f4528c57d487a7" }, { @@ -3099,6 +3661,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "d16f2715a32bdd853bfe1ba322d66d732d9f31b393809e3d4d0970e3c295ec23" }, { @@ -3110,6 +3674,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "5e0888caaf56bde3ef37388fed88f2f9c9b7469d2b7d4066a51b458e183fd058" }, { @@ -3121,6 +3687,8 @@ "program_type": "Information - Magazine", "duration": 210, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "a83c43bb126cf5d2a6e5c43fe84ccbd2484161715379d300e8dcf2b316151396" }, { @@ -3132,6 +3700,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "2c07da9bdf157a71370275b151bb0ed57a31c804044d6cf0ecdfa365eb518dbd" }, { @@ -3143,6 +3713,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3154,6 +3726,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3165,6 +3739,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3176,6 +3752,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3187,6 +3765,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3198,6 +3778,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3209,6 +3791,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3220,6 +3804,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3231,6 +3817,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3242,6 +3830,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3253,6 +3843,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3264,6 +3856,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3275,6 +3869,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3286,6 +3882,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3297,6 +3895,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3308,6 +3908,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3319,6 +3921,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "c9db7ac515cd6a17ca3cec15f65137a36cc9c20567117b08906ec302dae69cce" }, { @@ -3330,6 +3934,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "9738ee98fa19e1cfa36618e636fa00e985873cf4801e57a1498d9d355c10ffe0" }, { @@ -3341,6 +3947,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "5a97a2a4137447bc017e028ff4389322486823301c8426ee5703685ed68b06c5" }, { @@ -3352,6 +3960,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "32c5d63fa04605a7eab6a373829f5f28b4c328a72b8aa28cab90f951671b8a7c" }, { @@ -3363,6 +3973,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "cdee46fc01e7a331b5b8508bd9f17c18820f83d0461becbc3a65a7c6b811d8dc" }, { @@ -3374,6 +3986,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "54bbae726114d3dc63df6e5937382a54fc015c8e653b603efeeaed527e484e80" }, { @@ -3385,6 +3999,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "fff95433c74cd3061402f1b1adffd2173a4d2c43f1345112720967a442df1460" }, { @@ -3396,6 +4012,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "e2eda87a858f16101126c225f5404651f5b4ecc671899b92d78561b88f010577" }, { @@ -3407,6 +4025,8 @@ "program_type": "Information - Magazine", "duration": 190, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "5cab09e0887d040bc1496fa90a24d83a9d1782d7e64f2d0cc5b0e83699ee3d74" }, { @@ -3418,6 +4038,8 @@ "program_type": "Information - Magazine", "duration": 80, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "cab7955932337879acca4fea6c3a672fe972aec4033708043c8bf764b15c7bf1" }, { @@ -3429,6 +4051,8 @@ "program_type": "Information - Magazine", "duration": 120, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "bdb52642cf266b556aaf4a81c93dde62417b4007f133d8d5f6bb9ffb1b2efc9b" }, { @@ -3440,6 +4064,8 @@ "program_type": "Information - Magazine", "duration": 155, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "4de8abfa14700d7ce61bf52749a61f9c7c62159ed18cd1a274fc83a9ce9dc74c" }, { @@ -3451,6 +4077,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "d9cdc0a932ee6e14db8cf3e79f1727ce3cc786edaba4e7ae57f68c666e7fa8fb" }, { @@ -3462,6 +4090,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "b9d19ad4d7d89f8a93eb2cd7d091474007e51443e8ecb345d380627092241395" }, { @@ -3473,6 +4103,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "c1c67fdc1ebf0224f7c1a6e1667cd0a8d1b96addecaa4268febca422a064c447" }, { @@ -3484,6 +4116,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "8f93e556fc18c8c9a9adb47e2e20d66cf962fa75193341fcc0e5c55a3a6bd173" }, { @@ -3495,6 +4129,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "3f98aab14cebea719ad333205806acf355207941b2c4e218a2905c760b4f9e9e" }, { @@ -3506,6 +4142,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "f570870292e0348c334a6c7a804dea374c60f8a6ef5e73fc2b16701c8fbb65e3" }, { @@ -3517,6 +4155,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "b5a8c265df44b5b78633d07415c0e75ce4a7b2e7f034492fe39a0987ba83550b" }, { @@ -3528,6 +4168,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "c05e2ef26d9a56e76494f0a86d9fac9cfa0cd9be445ae9058614df450003c390" }, { @@ -3539,6 +4181,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "e866f4598fe7d2d84c9cbf4b3f1a5d0428ce0ef7f7a6c738770b21b180ffd7b1" }, { @@ -3550,6 +4194,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "d6d84191816f7c6731e20b9906a645c25a940b6babb52ae8bf10b86894d0d8c0" }, { @@ -3561,6 +4207,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "7f779901e3ca4a62de0a564a6d7d640560e0111b1340971842c57bc45b08440d" }, { @@ -3572,6 +4220,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "d72daa141c1bfe8d7b779a7d9cefb4638970db9340cc55414a94ab24f1ef804f" }, { @@ -3583,6 +4233,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "cd4c5b642e5b01762e4bd1249003e1507589fa7a535b0b39026b718893eff499" }, { @@ -3594,6 +4246,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "7cb223f6996a27fa45ce91773b0f2052cf32763e001451810b830355be9cf760" }, { @@ -3605,6 +4259,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "55d04457415d8d4d46526f9e684bdfcc9d791af2f660735d033e68711d9cd865" }, { @@ -3616,6 +4272,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "73b6b541106015a07767becbec35ff3ecc910d39350ce1bc49c51327c2dffa13" }, { @@ -3627,6 +4285,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "31df6a536577faa4b46353cfda12a969eb00b8cafbdf1fcc2f52c80edda3acc8" }, { @@ -3638,6 +4298,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "35210a03f924b65e5a2425eaec42ab6bb120d5b12ad4270763bae1f4a0f519d4" }, { @@ -3649,6 +4311,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "97051e58567374b404a8d9aef48ac8c025faa5ad08e8c3b345ada0df6e9f3a0c" }, { @@ -3660,6 +4324,8 @@ "program_type": "Information - Journal", "duration": 15, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "e7bde2947fb46d9b21df95faca2f578a8e661ac7135d75a8eaccbba28b0d1bcc" }, { @@ -3671,6 +4337,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "649aae5e90d2224f80a03053d7831afca6d078b26b4e11abdd546671b7ba95de" }, { @@ -3682,6 +4350,8 @@ "program_type": "Information - Journal", "duration": 35, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "3f2cb85ea70804b90fc41cfdedca128219963c69bf35f516bf74a1776e2df37f" }, { @@ -3693,6 +4363,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "4a32ea3585fca089eee2676d1c9740d5c854a9c5ee4803be2038ad05a795fa06" }, { @@ -3704,6 +4376,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "f54330012a3f2866ab867991fd41d6499f7a64f0f6cf34d07d1242f66b8cbffb" }, { @@ -3715,6 +4389,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "5686977e1bfb3ce45fec73e0e0c889077386c43acf87c961537b8a835842cbec" }, { @@ -3726,6 +4402,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "924e2fbb5fa5375d203d4837c1ab6375fad1799318582d4d0ab5303800de0f7e" }, { @@ -3737,6 +4415,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "3e507c8ccc7a179c2552aad64dffb00bdeab3db96d1ef2f6b093a9d3f9ff2bc5" }, { @@ -3748,6 +4428,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "7828019d07a9ccc13466d29866599ead6a6c305ab1ba2633f55a229c1fe69e49" }, { @@ -3759,6 +4441,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "61ae3a5140eb57b717410b6cd9fff77d7c2f7f6c2efa6a204f075aad32d4d841" }, { @@ -3770,6 +4454,8 @@ "program_type": "Information - Magazine", "duration": 90, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "fa2f30580e19cf7668e117dedc9b3b821b8dd802b2b6b62ef20061f847b87544" }, { @@ -3781,6 +4467,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3792,6 +4480,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3803,6 +4493,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3814,6 +4506,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3825,6 +4519,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3836,6 +4532,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3847,6 +4545,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3858,6 +4558,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3869,6 +4571,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3880,6 +4584,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3891,6 +4597,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3902,6 +4610,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3913,6 +4623,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3924,6 +4636,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3935,6 +4649,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3946,6 +4662,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3957,6 +4675,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "02f6e1473f6a4052869e4d29d40b684ead7d9cbc7b4b643f2a056512a529a5bb" }, { @@ -3968,6 +4688,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "befaf872295b179e605b566451d7ef8781c541ccc270102168a28e86b50b441f" }, { @@ -3979,6 +4701,8 @@ "program_type": "Information - Journal", "duration": 15, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "93d8cbed53cfd388ce307c8b799d7bece672313535ea72551ed29228fbffb059" }, { @@ -3990,6 +4714,8 @@ "program_type": "Information - Magazine", "duration": 195, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "4b216f156ef6289f9adbc1dd1229f665d12f76abe8937ce3221f2e0555715191" }, { @@ -4001,6 +4727,8 @@ "program_type": "Information - Magazine", "duration": 140, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "4e47b6b87a9acae9916427460e1e4c96c0d90a5d6fb37b870ca55207be336fff" }, { @@ -4012,6 +4740,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "d1987fcce55d52dd0290f25bc5ac0336bfea5b4365d9c040a81a5464e5d60d11" }, { @@ -4023,6 +4753,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "378f90a814a31dd24d73848421e60a7414e21bffd05cf2a3670d3c670308229c" }, { @@ -4034,6 +4766,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "b21e65e85ca94016626ed97de4cb8871f39e3cd16ae9a52d0f6075bcac4b6aea" }, { @@ -4045,6 +4779,8 @@ "program_type": "Information - Magazine", "duration": 45, "channel_title": "Arte", + "public": true, + "infocontinue": false, "id": "00067814c1af4a2a08baa50086ab87ee4b331bd377d4bfb8f902f1affb5ece92" }, { @@ -4056,6 +4792,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "BFM TV", + "public": false, + "infocontinue": true, "id": "10ec239bc942f89981744737f0324e9dfa3f001fe31f58f2a5cbbe2e42818670" }, { @@ -4067,6 +4805,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "1272615f592bb39c60885601d8f8c3a771989dcc2d56502472e0c328a4603c1d" }, { @@ -4078,6 +4818,8 @@ "program_type": "Information - Magazine", "duration": 30, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "e4937c484b7dd3eabbe2350723614947034dd96128d9a5a32d130b12dad2334d" }, { @@ -4089,6 +4831,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "Europe 1", + "public": false, + "infocontinue": false, "id": "5069147f91b14fb4bf99ff796d8be6d5d7990ce3d93e7a4ae2d3884f090058a3" }, { @@ -4100,6 +4844,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "3cfb93f6a59855240abe532b2091485d107bf221d2bbeb720cd727d6581fded5" }, { @@ -4111,6 +4857,8 @@ "program_type": "Information - Journal", "duration": 55, "channel_title": "France 3-idf", + "public": true, + "infocontinue": false, "id": "27468d262745520fbf7038e6cd308ad207c44b6d32c7d7edd8262a55d8409c2d" }, { @@ -4122,6 +4870,8 @@ "program_type": "Information - Magazine", "duration": 150, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "7a60694d07b77a80ccc38c1b8841b79e428e7a75da2b6bdd309a5ee7dbd3b93e" }, { @@ -4133,6 +4883,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "4f83bee1bffc312fe783ed00542df00cf47ba9b4f798e04015d07b1c1a16fe4f" }, { @@ -4144,6 +4896,8 @@ "program_type": "Information - Journal", "duration": 20, "channel_title": "France Culture", + "public": true, + "infocontinue": false, "id": "968b88c8c2a57198a6a86facee1a0b4a6b1de69cf5ed9efb0bd0244870943839" }, { @@ -4155,6 +4909,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "FranceinfoRadio", + "public": true, + "infocontinue": true, "id": "0caa83020c3b9d39e2aafe4ec87206ec3f871b8405308725ea3937aa8733270f" }, { @@ -4166,6 +4922,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "0792eb0f328ca3b8f8820ce7f9b6eafc3e969cd12a7733181fbf8801894b396c" }, { @@ -4177,6 +4935,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "c5761e5b472dde390e3d482c441c9e1390e1c18b6d7663aac08acda5d6b8b456" }, { @@ -4188,6 +4948,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "France Inter", + "public": true, + "infocontinue": false, "id": "adb02a067243da9e9c5b067d76dc23454cd0b6f3fb7bd0799d8e8463482efcc8" }, { @@ -4199,6 +4961,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "e30ae98a544cf9aaecd1e22cecd42618f81035d0182b5f4fe0191f4cdbadda90" }, { @@ -4210,6 +4974,8 @@ "program_type": "Information - Autres émissions", "duration": 180, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "59d72f62d5a47d713491868e3fd713d8ca3bc6ce474615e3c838e28998992548" }, { @@ -4221,6 +4987,8 @@ "program_type": "Information - Journal", "duration": 15, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "a73ac770de2dffb7763b72c33fe7ce8d371bdab19da245c172a4008cd528ef6c" }, { @@ -4232,6 +5000,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "da18520c4154bd2ccb8de770601a24b555c1fe28ff8f90e36b2fb88897d42a7e" }, { @@ -4243,6 +5013,8 @@ "program_type": "Information - Journal", "duration": 25, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "b66368bc078152f020abeede10bffd381976e50d914eea9c93ad1cf8945d8bdb" }, { @@ -4254,6 +5026,8 @@ "program_type": "Information - Journal", "duration": 35, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "da0ac74127935698b06e66cb63ae0d34e3dffc36f7d67fae7c2ea3fa60172263" }, { @@ -4265,6 +5039,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "France 2", + "public": true, + "infocontinue": false, "id": "ee037ae5a18ac2091d33549e7039550f77c964647a6240e0ccacc6b65cf60204" }, { @@ -4276,6 +5052,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France 24", + "public": true, + "infocontinue": true, "id": "19ed1b325865a5a8471cd35590ce6cb8ba29865a048196a64a7ecba1fa3f169d" }, { @@ -4287,6 +5065,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "France Info", + "public": true, + "infocontinue": true, "id": "3f3fa66c35e27893c0683db2c18c356eb00b8ad54433a73052dbc66a9e5506b4" }, { @@ -4298,6 +5078,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "CNews", + "public": false, + "infocontinue": true, "id": "5d809d46a56ffaa02cd82d2a052aba0ddfd2d84a985f5b356ff5561f782884f4" }, { @@ -4309,6 +5091,8 @@ "program_type": "Information en continu", "duration": 1020, "channel_title": "LCI", + "public": false, + "infocontinue": true, "id": "c4984b38d0b96c8f73c2af29131d69087bbb9c2a06bb8387b831657dc0a7f384" }, { @@ -4320,6 +5104,8 @@ "program_type": "Information - Journal", "duration": 50, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "9a593874db7dd0af5644068533adf94e930fdd5a78ef0cfc0228e554506927e4" }, { @@ -4331,6 +5117,8 @@ "program_type": "Information - Journal", "duration": 30, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "0bb7d8129fd436cab6519f33b339a0eda126b6f6c6d9df89a57e2d891ab18b0b" }, { @@ -4342,6 +5130,8 @@ "program_type": "Information - Magazine", "duration": 175, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "304549a8b60d8707800164feef51f15075946bd4990db8d5225d763cdc78ec4a" }, { @@ -4353,6 +5143,8 @@ "program_type": "Information - Magazine", "duration": 125, "channel_title": "M6", + "public": false, + "infocontinue": false, "id": "cb4baaaca5a012df3154fadd3be7963930b835ceb75b9444681bd129b7492b91" }, { @@ -4364,6 +5156,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4375,6 +5169,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4386,6 +5182,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4397,6 +5195,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4408,6 +5208,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4419,6 +5221,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4430,6 +5234,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4441,6 +5247,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4452,6 +5260,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4463,6 +5273,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4474,6 +5286,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4485,6 +5299,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4496,6 +5312,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4507,6 +5325,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4518,6 +5338,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4529,6 +5351,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4540,6 +5364,8 @@ "program_type": "Information - Journal", "duration": 10, "channel_title": "RFI", + "public": true, + "infocontinue": false, "id": "65e52b3cb7d78da039c4addc3c824d00550ded2a31d55805fb0566dc7c8f6292" }, { @@ -4551,6 +5377,8 @@ "program_type": "Information - Magazine", "duration": 180, "channel_title": "RMC", + "public": false, + "infocontinue": false, "id": "aa75b4b44376749fc965ad00164ec4dc0fedc5cdf1861025b3b10aafa5282b54" }, { @@ -4562,6 +5390,8 @@ "program_type": "Information - Magazine", "duration": 195, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "0ca6537b207752c53f036a52874625885d09d57ca1dd37a13bef92060c3ebaf2" }, { @@ -4573,6 +5403,8 @@ "program_type": "Information - Magazine", "duration": 75, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "885e2adf4cf378385c697c597ab2eb3c0c139bddae10c5a4dcfe65c8fcd7e404" }, { @@ -4584,6 +5416,8 @@ "program_type": "Information - Magazine", "duration": 60, "channel_title": "RTL", + "public": false, + "infocontinue": false, "id": "991a44e3e3241c043858a373fc1f3ce4dfab1c3643eea8be2da26b1588fab91b" }, { @@ -4595,6 +5429,8 @@ "program_type": "Information - Magazine", "duration": 140, "channel_title": "Sud Radio", + "public": false, + "infocontinue": false, "id": "a24abc782b2667369bd9183718cab6fca7577cd5bad2c7855d855ddc7f53771e" }, { @@ -4606,6 +5442,8 @@ "program_type": "Information - Journal", "duration": 40, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "0e0656508c23decea9f420de1acbb7685382f23846f910d42dd3628e61860cfb" }, { @@ -4617,6 +5455,8 @@ "program_type": "Information - Journal", "duration": 45, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "9bd50d589d131245f82e06850e25d802f029b81b74038b808c6b426e0bba9c8c" }, { @@ -4628,6 +5468,8 @@ "program_type": "Information - Magazine", "duration": 70, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "9d562f98e8a5e99340aa2163b1a131e67624674c4d232c8163b8a01152200221" }, { @@ -4639,6 +5481,8 @@ "program_type": "Information - Magazine", "duration": 70, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "9ad6696748694ef784e97f3805d9b290aa41352fb2007584217aeb03d068f22c" }, { @@ -4650,6 +5494,8 @@ "program_type": "Information - Magazine", "duration": 65, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "3acc3fca6bef46d5ffb434078a21611d0d45e84bb18567c04ccc630bc2a26e9b" }, { @@ -4661,6 +5507,8 @@ "program_type": "Information - Magazine", "duration": 85, "channel_title": "TF1", + "public": false, + "infocontinue": false, "id": "6e904d526898a868e3f8745507637d1c2dd18783a700235003b0cac4ab9da695" } ] \ No newline at end of file diff --git a/postgres/schemas/models.py b/postgres/schemas/models.py index 5ca7bdc6..2e6cc6b5 100644 --- a/postgres/schemas/models.py +++ b/postgres/schemas/models.py @@ -100,6 +100,8 @@ class Program_Metadata(Base): end= Column(String, nullable=False) channel_program= Column(String, nullable=False) channel_program_type= Column(String, nullable=False) + public = Column(Boolean, nullable=True) + infocontinue = Column(Boolean, nullable=True) def get_sitemap(id: str): session = get_db_session() @@ -173,6 +175,8 @@ def update_program_metadata(engine): 'id': item['id'], 'channel_name': item['channel_name'], 'channel_title': item['channel_title'], + 'infocontinue': item['infocontinue'], + 'public': item['public'], 'duration_minutes': int(item['duration']), 'weekday': int(item['weekday']), 'channel_program': item['program_name'], @@ -189,15 +193,17 @@ def update_program_metadata(engine): logging.error(f"Error : Update program metadata {error}") def drop_tables(): - """Drop table keyword in the PostgreSQL database""" + if(os.environ.get("ENV") == "docker" or os.environ.get("ENV") == "dev"): - logging.warning("drop tables") + logging.warning("""Drop table keyword / Program_Metadata / Channel_Metadata in the PostgreSQL database""") try: engine = connect_to_db() Base.metadata.drop_all(bind=engine, tables=[Keywords.__table__]) + Base.metadata.drop_all(bind=engine, tables=[Channel_Metadata.__table__]) + Base.metadata.drop_all(bind=engine, tables=[Program_Metadata.__table__]) - logging.info(f"Table {keywords_table} deletion done") + logging.info(f"Table keyword / Program_Metadata / Channel_Metadata deletion done") except (Exception) as error: logging.error(error) finally: diff --git a/transform_program.py b/transform_program.py index e60db638..a05b5b8c 100644 --- a/transform_program.py +++ b/transform_program.py @@ -23,28 +23,106 @@ def generate_program_id(channel_name, weekday, program_name): input_file_path = "quotaclimat/data_processing/mediatree/channel_program.json" output_file_path = "postgres/program_metadata.json" +# Detailed information for each channel channel_mapping = { - "bfmtv": "BFM TV", - "d8": "C8", - "europe1": "Europe 1", - "fr3-idf": "France 3-idf", - "france-culture": "France Culture", - "france-info": "FranceinfoRadio", - "france-inter": "France Inter", - "france2": "France 2", - "france24": "France 24", - "franceinfotv": "France Info", - "itele": "CNews", - "lci": "LCI", - "m6": "M6", - "rfi": "RFI", - "rmc": "RMC", - "rtl": "RTL", - "sud-radio": "Sud Radio", - "tf1": "TF1", - "arte": "Arte" + "bfmtv": { + "title": "BFM TV", + "public": False, + "infocontinue": True + }, + "d8": { + "title": "C8", + "public": False, + "infocontinue": False + }, + "europe1": { + "title": "Europe 1", + "public": False, + "infocontinue": False + }, + "fr3-idf": { + "title": "France 3-idf", + "public": True, + "infocontinue": False + }, + "france-culture": { + "title": "France Culture", + "public": True, + "infocontinue": False + }, + "france-info": { + "title": "FranceinfoRadio", + "public": True, + "infocontinue": True + }, + "france-inter": { + "title": "France Inter", + "public": True, + "infocontinue": False + }, + "france2": { + "title": "France 2", + "public": True, + "infocontinue": False + }, + "france24": { + "title": "France 24", + "public": True, + "infocontinue": True + }, + "franceinfotv": { + "title": "France Info", + "public": True, + "infocontinue": True + }, + "itele": { + "title": "CNews", + "public": False, + "infocontinue": True + }, + "lci": { + "title": "LCI", + "public": False, + "infocontinue": True + }, + "m6": { + "title": "M6", + "public": False, + "infocontinue": False + }, + "rfi": { + "title": "RFI", + "public": True, + "infocontinue": False + }, + "rmc": { + "title": "RMC", + "public": False, + "infocontinue": False + }, + "rtl": { + "title": "RTL", + "public": False, + "infocontinue": False + }, + "sud-radio": { + "title": "Sud Radio", + "public": False, + "infocontinue": False + }, + "tf1": { + "title": "TF1", + "public": False, + "infocontinue": False + }, + "arte": { + "title": "Arte", + "public": True, + "infocontinue": False + } } + with open(input_file_path, 'r', encoding='utf-8') as input_file: data = input_file.readlines() @@ -62,10 +140,14 @@ def generate_program_id(channel_name, weekday, program_name): # Map channel_name to channel_title channel_name = program_data['channel_name'] if channel_name in channel_mapping: - program_data['channel_title'] = channel_mapping[channel_name] + program_data['channel_title'] = channel_mapping[channel_name]['title'] + program_data['public'] = channel_mapping[channel_name]['public'] + program_data['infocontinue'] = channel_mapping[channel_name]['infocontinue'] else: + logging.error(f"Unknown channel_name {channel_name}") program_data['channel_title'] = channel_name # Default to channel_name if mapping not found - + program_data['public'] = False # Default public to False + program_data['infocontinue'] = False # Default infocontinue to False # Handle special cases for weekdays weekday = program_data['weekday'] if weekday == '*':