From 23fd8ddcb0bdffd83f038ca998bb5cfdd7b3a727 Mon Sep 17 00:00:00 2001 From: JIAYUE LIU Date: Sun, 18 Apr 2021 21:03:16 +0200 Subject: [PATCH] Annexe du rendu au data challenge - Equipe KOL Hunter --- analyse_twitter_LIU.ipynb | 5245 ++++++++++++++++++++++++++ tweets_database.csv | 1194 ++++++ twitter_network_mapping_degree.pdf | Bin 0 -> 44451 bytes twitter_network_mapping_follower.pdf | Bin 0 -> 42151 bytes 4 files changed, 6439 insertions(+) create mode 100644 analyse_twitter_LIU.ipynb create mode 100644 tweets_database.csv create mode 100644 twitter_network_mapping_degree.pdf create mode 100644 twitter_network_mapping_follower.pdf diff --git a/analyse_twitter_LIU.ipynb b/analyse_twitter_LIU.ipynb new file mode 100644 index 0000000..ebc10a1 --- /dev/null +++ b/analyse_twitter_LIU.ipynb @@ -0,0 +1,5245 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Identifier les leaders d’opinion du domaine de l’IA sur Twitter\n", + "\n", + "Auteur : Jiayue LIU (MSc Data Management, Paris School of Business)\n", + "\n", + "Date : 18 Avril 2021 " + ] + }, + { + "cell_type": "code", + "execution_count": 204, + "metadata": {}, + "outputs": [], + "source": [ + "# Installer toutes les librairies nécessaires à l'exercice\n", + "import tweepy\n", + "import pandas as pd\n", + "pd.options.mode.chained_assignment = None\n", + "import igraph as ig\n", + "import datetime\n", + "\n", + "# Authentification API\n", + "auth = tweepy.OAuthHandler(\n", + " 'g5ktEfyoenGVaxGFbbz5Xt6CH', \n", + " 'D5RFlzzO5FMDvFFkUf5piWFF1mNKpgzEZpZEjC40uP7ZA4QhrY')\n", + "auth.set_access_token(\n", + " '1313171160973139973-eVa2VAFWUoha0lLgUzVwCQwQycWJ0c', \n", + " 'c4DdmZV6DWV2NwjpBTy5cZlN9tdPvwACbUrwWQyj3RKfX')\n", + "api = tweepy.API(auth,wait_on_rate_limit=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 321, + "metadata": {}, + "outputs": [], + "source": [ + "# Extraire les tweets contenant les mots-clés définis\n", + "hashtags = ['#IA', '#IntelligenceArtificielle']\n", + "results = tweepy.Cursor(api.search, q=hashtags, lang='fr').items()\n", + "\n", + "# Convertir les résultats de recherche du json en dataframe\n", + "json_data = [r._json for r in results]\n", + "results_df = pd.json_normalize(json_data)\n", + "\n", + "results_df.to_csv(\"tweets_database.csv\", sep=\",\")" + ] + }, + { + "cell_type": "code", + "execution_count": 471, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pendant la semaine du 11/04/2021 au 18/04/2021 , les tweets en français et ayant pour hashtags #IA ou #IntelligenceArtificielle sont les suivants : \n", + " time location user_id \\\n", + "0 Sun Apr 18 14:27:29 +0000 2021 France /Japon cerise_masquee \n", + "1 Sun Apr 18 14:00:32 +0000 2021 Paris ORSYS \n", + "2 Sun Apr 18 13:48:21 +0000 2021 France mdrechsler \n", + "3 Sun Apr 18 13:34:32 +0000 2021 RISKINTEL4 \n", + "4 Sun Apr 18 13:30:17 +0000 2021 NACREspirale \n", + ".. ... ... ... \n", + "384 Sat Apr 10 11:21:06 +0000 2021 Avignon, France ThibFay \n", + "385 Sat Apr 10 11:03:50 +0000 2021 Paris YvesPDB \n", + "386 Sat Apr 10 10:22:04 +0000 2021 Paris, France DailyDigital \n", + "387 Sat Apr 10 10:02:25 +0000 2021 PierreRamette \n", + "388 Sat Apr 10 10:00:01 +0000 2021 Paris, France LaForge_AI \n", + "\n", + " num_followers mentions \n", + "0 201 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n", + "1 5440 [] \n", + "2 20850 [{'screen_name': 'mdrechsler', 'name': 'Michèl... \n", + "3 103 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n", + "4 2753 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n", + ".. ... ... \n", + "384 164 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n", + "385 31445 [{'screen_name': 'Inst_Lecanuet', 'name': 'Ins... \n", + "386 13819 [] \n", + "387 244 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n", + "388 9932 [] \n", + "\n", + "[389 rows x 5 columns]\n" + ] + } + ], + "source": [ + "# Garder des informations qui nous intéresseraient en renommant les colonnes\n", + "simple_results = results_df[['created_at',\n", + " 'user.location',\n", + " 'user.screen_name',\n", + " 'user.followers_count',\n", + " 'entities.user_mentions']]\n", + "simple_results.columns = ['time',\n", + " 'location',\n", + " 'user_id',\n", + " 'num_followers',\n", + " 'mentions']\n", + "\n", + "# Afficher le résultat brute mais simplifié\n", + "today = datetime.date.today()\n", + "week_ago = today - datetime.timedelta(days=7)\n", + "print(\"Pendant la semaine du\", week_ago.strftime(\"%d/%m/%Y\"),\n", + " \"au\", today.strftime(\"%d/%m/%Y\"),\n", + " \", les tweets en français et ayant pour hashtags #IA ou #IntelligenceArtificielle sont les suivants : \\n\",\n", + " simple_results)" + ] + }, + { + "cell_type": "code", + "execution_count": 472, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "La liste des mentions entre les utilisateurs : \n", + " mentions user_id num_followers\n", + "0 LaForge_AI cerise_masquee 201\n", + "1 mdrechsler mdrechsler 20850\n", + "2 LaForge_AI RISKINTEL4 103\n", + "3 LaForge_AI NACREspirale 2753\n", + "4 VincentCespedes mpbarrouillet 893\n", + ".. ... ... ...\n", + "314 TeensInAI ActuIAFr 11902\n", + "315 LaForge_AI ClaudioCimelli 1470\n", + "316 LaForge_AI ThibFay 164\n", + "317 Inst_Lecanuet YvesPDB 31445\n", + "318 LaForge_AI PierreRamette 244\n", + "\n", + "[319 rows x 3 columns]\n", + "La liste des utilisateurs Twitter ayant publié du contenu relatif à l'IA durant la semaine passée : \n", + " user_id num_followers\n", + "0 236News 4417.0\n", + "1 49mamie51 244.0\n", + "2 4inData NaN\n", + "3 AFD_France 85619.0\n", + "4 AIVids NaN\n", + ".. ... ...\n", + "292 thot NaN\n", + "293 toniojj 1617.0\n", + "294 univbordeaux NaN\n", + "295 xavierquerat 8685.0\n", + "296 zdnetfr NaN\n", + "\n", + "[297 rows x 2 columns]\n" + ] + } + ], + "source": [ + "# Convertir la colonne \"mentions\" en liste simple\n", + "mentioned_users = []\n", + "for mention in simple_results.mentions:\n", + " mentioned_users.append(list(map(lambda d: d['screen_name'], mention)))\n", + "simple_results['mentions'] = mentioned_users\n", + "\n", + "# Stocker tous les edges et nodes dans des dataframes\n", + "edges_df = simple_results.loc[:, ['mentions', 'user_id', 'num_followers']]\n", + "edges_df = edges_df.explode('mentions').reset_index().drop('index',1)\n", + "\n", + "mention_list = edges_df.mentions.to_list()\n", + "user_list = edges_df.user_id.to_list()\n", + "nodes_list = set(user_list + mention_list)\n", + "\n", + "edges = edges_df.dropna().reset_index().drop('index',1)\n", + "nodes = pd.DataFrame(nodes_list)\n", + "nodes.columns = (['user_id'])\n", + "nodes = pd.merge(nodes, edges, on='user_id', how='left')\n", + "nodes = nodes.drop(columns=['mentions']).groupby(by='user_id').mean().reset_index()\n", + "\n", + "print(\"La liste des mentions entre les utilisateurs : \\n\",\n", + " edges)\n", + "print(\"La liste des utilisateurs Twitter ayant publié du contenu relatif à l'IA durant la semaine passée : \\n\",\n", + " nodes)" + ] + }, + { + "cell_type": "code", + "execution_count": 483, + "metadata": {}, + "outputs": [], + "source": [ + "# Générer le graphe représentant le réseau social avec le package iGraph\n", + "\n", + "kol_map = ig.Graph.DataFrame(edges,\n", + " directed = True,\n", + " vertices = nodes)\n", + "kol_map.vs['name'] = nodes['user_id']\n", + "kol_map.vs['num_followers'] = nodes['num_followers']*0.001" + ] + }, + { + "cell_type": "code", + "execution_count": 489, + "metadata": {}, + "outputs": [], + "source": [ + "# Comparer le nombre d'abonnés des utilisateurs du réseau\n", + "nodes['num_followers'] = nodes['num_followers'].astype(pd.Int64Dtype())\n", + "rank_followers = nodes.sort_values(by='num_followers',\n", + " ascending=False)\n", + "rank_followers" + ] + }, + { + "cell_type": "code", + "execution_count": 476, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Les dix comptes Twitter ayant été le plus mentionnés durant la semaine passée sont : \n", + " node degree\n", + "233 eduscol_EMI 26\n", + "130 ModisFrance 25\n", + "268 mdrechsler 22\n", + "71 Edu_Num 20\n", + "7 ActuIAFr 14\n", + "90 GroupeLaPoste 10\n", + "9 AgenceRecherche 10\n", + "3 AFD_France 9\n", + "143 OpenvalueFR 9\n", + "223 ctricot 8\n" + ] + } + ], + "source": [ + "# Calculer la centralité de degré en utilisant le package igraph\n", + "out_degrees = pd.DataFrame({'node': nodes['user_id'],\n", + " 'degree':kol_map.degree(mode=\"out\")})\n", + "out_degrees = out_degrees.sort_values(by='degree',\n", + " ascending=False)\n", + "\n", + "print(\"Les dix comptes Twitter ayant été le plus mentionnés durant la semaine passée sont : \\n\",\n", + " out_degrees.head(10))" + ] + }, + { + "cell_type": "code", + "execution_count": 497, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \n", + " (la taille des noeuds est proportionnelle à leur degré sortant) \n", + "\n", + "Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \n", + "(la taille des noeuds est proportionnelle à leur nombre d'abonnés) \n", + "\n" + ] + }, + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 497, + "metadata": { + "image/svg+xml": { + "isolated": true + } + }, + "output_type": "execute_result" + } + ], + "source": [ + "# Apppliquer la méthode \"Fruchterman-Reingold force-directed\" pour construire le réseau\n", + "layout = kol_map.layout('fr')\n", + "\n", + "visual_style = {}\n", + "visual_style[\"vertex_size\"] = kol_map.degree()\n", + "visual_style[\"vertex_color\"] = \"#1DA1F2\"\n", + "visual_style[\"vertex_label\"] = kol_map.vs[\"name\"]\n", + "visual_style[\"vertex_label_size\"] = 5\n", + "visual_style[\"edge_arrow_size\"] = 0.5\n", + "visual_style[\"layout\"] = layout\n", + "visual_style[\"bbox\"] = (500, 500)\n", + "visual_style[\"margin\"] = 20\n", + "\n", + "kol_map0 = kol_map.copy()\n", + "visual_style0 = visual_style.copy()\n", + "visual_style0[\"vertex_size\"] = kol_map.vs['num_followers']\n", + "\n", + "# Afficher et sauvegarder les graphes générés\n", + "print(\"Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \\n\",\n", + " \"(la taille des noeuds est proportionnelle à leur degré sortant) \\n\")\n", + "ig.plot(kol_map, \"twitter_network_mapping_degree.pdf\", **visual_style)\n", + "\n", + "print(\"Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \\n\"\n", + " \"(la taille des noeuds est proportionnelle à leur nombre d'abonnés) \\n\")\n", + "ig.plot(kol_map0, \"twitter_network_mapping_follower.pdf\", **visual_style0)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.5" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/tweets_database.csv b/tweets_database.csv new file mode 100644 index 0000000..3944115 --- /dev/null +++ b/tweets_database.csv @@ -0,0 +1,1194 @@ +,created_at,id,id_str,text,truncated,source,in_reply_to_status_id,in_reply_to_status_id_str,in_reply_to_user_id,in_reply_to_user_id_str,in_reply_to_screen_name,geo,coordinates,place,contributors,is_quote_status,retweet_count,favorite_count,favorited,retweeted,lang,entities.hashtags,entities.symbols,entities.user_mentions,entities.urls,metadata.iso_language_code,metadata.result_type,user.id,user.id_str,user.name,user.screen_name,user.location,user.description,user.url,user.entities.description.urls,user.protected,user.followers_count,user.friends_count,user.listed_count,user.created_at,user.favourites_count,user.utc_offset,user.time_zone,user.geo_enabled,user.verified,user.statuses_count,user.lang,user.contributors_enabled,user.is_translator,user.is_translation_enabled,user.profile_background_color,user.profile_background_image_url,user.profile_background_image_url_https,user.profile_background_tile,user.profile_image_url,user.profile_image_url_https,user.profile_link_color,user.profile_sidebar_border_color,user.profile_sidebar_fill_color,user.profile_text_color,user.profile_use_background_image,user.has_extended_profile,user.default_profile,user.default_profile_image,user.following,user.follow_request_sent,user.notifications,user.translator_type,retweeted_status.created_at,retweeted_status.id,retweeted_status.id_str,retweeted_status.text,retweeted_status.truncated,retweeted_status.entities.hashtags,retweeted_status.entities.symbols,retweeted_status.entities.user_mentions,retweeted_status.entities.urls,retweeted_status.metadata.iso_language_code,retweeted_status.metadata.result_type,retweeted_status.source,retweeted_status.in_reply_to_status_id,retweeted_status.in_reply_to_status_id_str,retweeted_status.in_reply_to_user_id,retweeted_status.in_reply_to_user_id_str,retweeted_status.in_reply_to_screen_name,retweeted_status.user.id,retweeted_status.user.id_str,retweeted_status.user.name,retweeted_status.user.screen_name,retweeted_status.user.location,retweeted_status.user.description,retweeted_status.user.url,retweeted_status.user.entities.url.urls,retweeted_status.user.entities.description.urls,retweeted_status.user.protected,retweeted_status.user.followers_count,retweeted_status.user.friends_count,retweeted_status.user.listed_count,retweeted_status.user.created_at,retweeted_status.user.favourites_count,retweeted_status.user.utc_offset,retweeted_status.user.time_zone,retweeted_status.user.geo_enabled,retweeted_status.user.verified,retweeted_status.user.statuses_count,retweeted_status.user.lang,retweeted_status.user.contributors_enabled,retweeted_status.user.is_translator,retweeted_status.user.is_translation_enabled,retweeted_status.user.profile_background_color,retweeted_status.user.profile_background_image_url,retweeted_status.user.profile_background_image_url_https,retweeted_status.user.profile_background_tile,retweeted_status.user.profile_image_url,retweeted_status.user.profile_image_url_https,retweeted_status.user.profile_banner_url,retweeted_status.user.profile_link_color,retweeted_status.user.profile_sidebar_border_color,retweeted_status.user.profile_sidebar_fill_color,retweeted_status.user.profile_text_color,retweeted_status.user.profile_use_background_image,retweeted_status.user.has_extended_profile,retweeted_status.user.default_profile,retweeted_status.user.default_profile_image,retweeted_status.user.following,retweeted_status.user.follow_request_sent,retweeted_status.user.notifications,retweeted_status.user.translator_type,retweeted_status.geo,retweeted_status.coordinates,retweeted_status.place,retweeted_status.contributors,retweeted_status.is_quote_status,retweeted_status.retweet_count,retweeted_status.favorite_count,retweeted_status.favorited,retweeted_status.retweeted,retweeted_status.possibly_sensitive,retweeted_status.lang,possibly_sensitive,user.entities.url.urls,user.profile_banner_url,quoted_status_id,quoted_status_id_str,retweeted_status.quoted_status_id,retweeted_status.quoted_status_id_str,retweeted_status.quoted_status.created_at,retweeted_status.quoted_status.id,retweeted_status.quoted_status.id_str,retweeted_status.quoted_status.text,retweeted_status.quoted_status.truncated,retweeted_status.quoted_status.entities.hashtags,retweeted_status.quoted_status.entities.symbols,retweeted_status.quoted_status.entities.user_mentions,retweeted_status.quoted_status.entities.urls,retweeted_status.quoted_status.metadata.iso_language_code,retweeted_status.quoted_status.metadata.result_type,retweeted_status.quoted_status.source,retweeted_status.quoted_status.in_reply_to_status_id,retweeted_status.quoted_status.in_reply_to_status_id_str,retweeted_status.quoted_status.in_reply_to_user_id,retweeted_status.quoted_status.in_reply_to_user_id_str,retweeted_status.quoted_status.in_reply_to_screen_name,retweeted_status.quoted_status.user.id,retweeted_status.quoted_status.user.id_str,retweeted_status.quoted_status.user.name,retweeted_status.quoted_status.user.screen_name,retweeted_status.quoted_status.user.location,retweeted_status.quoted_status.user.description,retweeted_status.quoted_status.user.url,retweeted_status.quoted_status.user.entities.url.urls,retweeted_status.quoted_status.user.entities.description.urls,retweeted_status.quoted_status.user.protected,retweeted_status.quoted_status.user.followers_count,retweeted_status.quoted_status.user.friends_count,retweeted_status.quoted_status.user.listed_count,retweeted_status.quoted_status.user.created_at,retweeted_status.quoted_status.user.favourites_count,retweeted_status.quoted_status.user.utc_offset,retweeted_status.quoted_status.user.time_zone,retweeted_status.quoted_status.user.geo_enabled,retweeted_status.quoted_status.user.verified,retweeted_status.quoted_status.user.statuses_count,retweeted_status.quoted_status.user.lang,retweeted_status.quoted_status.user.contributors_enabled,retweeted_status.quoted_status.user.is_translator,retweeted_status.quoted_status.user.is_translation_enabled,retweeted_status.quoted_status.user.profile_background_color,retweeted_status.quoted_status.user.profile_background_image_url,retweeted_status.quoted_status.user.profile_background_image_url_https,retweeted_status.quoted_status.user.profile_background_tile,retweeted_status.quoted_status.user.profile_image_url,retweeted_status.quoted_status.user.profile_image_url_https,retweeted_status.quoted_status.user.profile_banner_url,retweeted_status.quoted_status.user.profile_link_color,retweeted_status.quoted_status.user.profile_sidebar_border_color,retweeted_status.quoted_status.user.profile_sidebar_fill_color,retweeted_status.quoted_status.user.profile_text_color,retweeted_status.quoted_status.user.profile_use_background_image,retweeted_status.quoted_status.user.has_extended_profile,retweeted_status.quoted_status.user.default_profile,retweeted_status.quoted_status.user.default_profile_image,retweeted_status.quoted_status.user.following,retweeted_status.quoted_status.user.follow_request_sent,retweeted_status.quoted_status.user.notifications,retweeted_status.quoted_status.user.translator_type,retweeted_status.quoted_status.geo,retweeted_status.quoted_status.coordinates,retweeted_status.quoted_status.place,retweeted_status.quoted_status.contributors,retweeted_status.quoted_status.is_quote_status,retweeted_status.quoted_status.retweet_count,retweeted_status.quoted_status.favorite_count,retweeted_status.quoted_status.favorited,retweeted_status.quoted_status.retweeted,retweeted_status.quoted_status.possibly_sensitive,retweeted_status.quoted_status.lang,quoted_status.created_at,quoted_status.id,quoted_status.id_str,quoted_status.text,quoted_status.truncated,quoted_status.entities.hashtags,quoted_status.entities.symbols,quoted_status.entities.user_mentions,quoted_status.entities.urls,quoted_status.metadata.iso_language_code,quoted_status.metadata.result_type,quoted_status.source,quoted_status.in_reply_to_status_id,quoted_status.in_reply_to_status_id_str,quoted_status.in_reply_to_user_id,quoted_status.in_reply_to_user_id_str,quoted_status.in_reply_to_screen_name,quoted_status.user.id,quoted_status.user.id_str,quoted_status.user.name,quoted_status.user.screen_name,quoted_status.user.location,quoted_status.user.description,quoted_status.user.url,quoted_status.user.entities.url.urls,quoted_status.user.entities.description.urls,quoted_status.user.protected,quoted_status.user.followers_count,quoted_status.user.friends_count,quoted_status.user.listed_count,quoted_status.user.created_at,quoted_status.user.favourites_count,quoted_status.user.utc_offset,quoted_status.user.time_zone,quoted_status.user.geo_enabled,quoted_status.user.verified,quoted_status.user.statuses_count,quoted_status.user.lang,quoted_status.user.contributors_enabled,quoted_status.user.is_translator,quoted_status.user.is_translation_enabled,quoted_status.user.profile_background_color,quoted_status.user.profile_background_image_url,quoted_status.user.profile_background_image_url_https,quoted_status.user.profile_background_tile,quoted_status.user.profile_image_url,quoted_status.user.profile_image_url_https,quoted_status.user.profile_link_color,quoted_status.user.profile_sidebar_border_color,quoted_status.user.profile_sidebar_fill_color,quoted_status.user.profile_text_color,quoted_status.user.profile_use_background_image,quoted_status.user.has_extended_profile,quoted_status.user.default_profile,quoted_status.user.default_profile_image,quoted_status.user.following,quoted_status.user.follow_request_sent,quoted_status.user.notifications,quoted_status.user.translator_type,quoted_status.geo,quoted_status.coordinates,quoted_status.place,quoted_status.contributors,quoted_status.is_quote_status,quoted_status.retweet_count,quoted_status.favorite_count,quoted_status.favorited,quoted_status.retweeted,quoted_status.possibly_sensitive,quoted_status.lang,quoted_status.user.profile_banner_url,quoted_status.entities.media,quoted_status.extended_entities.media +0,Sun Apr 18 14:27:29 +0000 2021,1383789282557497353,1383789282557497353,"RT @LaForge_AI: Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du Samu + +#…",False,"Twitter for Android",,,,,,,,,,False,3,0,False,False,fr,[],[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,855164694889451521,855164694889451521,Sakura,cerise_masquee,France /Japon,"Du côté du plus faible. +Entre chien et loup.",,[],False,201,1968,2,Thu Apr 20 21:02:06 +0000 2017,17463,,,False,False,16935,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1106645165412884481/l0QfQYdu_normal.jpg,https://pbs.twimg.com/profile_images/1106645165412884481/l0QfQYdu_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sun Apr 18 13:30:02 +0000 2021,1.3837748242463498e+18,1383774824246349830,Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du… https://t.co/Xd8FLATj9e,True,[],[],[],"[{'url': 'https://t.co/Xd8FLATj9e', 'expanded_url': 'https://twitter.com/i/web/status/1383774824246349830', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +1,Sun Apr 18 14:00:32 +0000 2021,1383782502096011270,1383782502096011270,"Europe : la commission européenne prévoit de réglementer l'utilisation des systèmes d'IA à ""haut risque""… https://t.co/WaaxbmonbM",True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/WaaxbmonbM', 'expanded_url': 'https://twitter.com/i/web/status/1383782502096011270', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [106, 129]}]",fr,recent,330801307,330801307,ORSYS Formation,ORSYS,Paris,"Spécialiste de la formation continue. Suivez ici notre veille #Formation, #Digital et #RH mais aussi nos actus et les livetweets de nos événements.",https://t.co/WMi3Uev7CP,[],False,5440,1255,1456,Thu Jul 07 05:17:19 +0000 2011,8349,,,True,False,48225,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1430388212/LogoTwitter_normal.png,https://pbs.twimg.com/profile_images/1430388212/LogoTwitter_normal.png,0084B4,FFFFFF,DDEEF6,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/WMi3Uev7CP', 'expanded_url': 'https://www.orsys.com/', 'display_url': 'orsys.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/330801307/1612281959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +2,Sun Apr 18 13:48:21 +0000 2021,1383779437099978765,1383779437099978765,"RT @mdrechsler: Chasser les caillots sans #IA #IA #IntelligenceArtificielle. L'indigo, un système de thrombectomie mécanique à aspiration c…",False,"Twitter Web App",,,,,,,,,,True,1,0,False,False,fr,"[{'text': 'IA', 'indices': [42, 45]}, {'text': 'IA', 'indices': [46, 49]}, {'text': 'IntelligenceArtificielle', 'indices': [50, 75]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199875,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Mon Feb 10 10:25:33 +0000 2020,1.2268144555788e+18,1226814455578800128,"Chasser les caillots sans #IA #IA #IntelligenceArtificielle. L'indigo, un système de thrombectomie mécanique à aspi… https://t.co/tnhkMgAOVq",True,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'IA', 'indices': [30, 33]}, {'text': 'IntelligenceArtificielle', 'indices': [34, 59]}]",[],[],"[{'url': 'https://t.co/tnhkMgAOVq', 'expanded_url': 'https://twitter.com/i/web/status/1226814455578800128', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,1.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.2155764567152763e+18,1215576456715276289,1.2155764567152763e+18,1215576456715276289,Fri Jan 10 10:09:46 +0000 2020,1.2155764567152763e+18,1215576456715276289,"Indigo, a continuous aspiration mechanical thrombectomy system designed to remove clot from arteries and veins in t… https://t.co/AGq9kSrxuK",True,[],[],[],"[{'url': 'https://t.co/AGq9kSrxuK', 'expanded_url': 'https://twitter.com/i/web/status/1215576456715276289', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.058108847822029e+17,805810884782202880,Venous News,VenousNews,Global,The international newspaper for venous specialists. Subscribe today for all the latest in #venousnews,https://t.co/fD5cjrkldV,"[{'url': 'https://t.co/fD5cjrkldV', 'expanded_url': 'https://venousnews.com/', 'display_url': 'venousnews.com', 'indices': [0, 23]}]",[],False,1325.0,623.0,13.0,Mon Dec 05 16:27:40 +0000 2016,68.0,,,True,False,479.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/877955366616780800/A_PwmKXO_normal.jpg,https://pbs.twimg.com/profile_images/877955366616780800/A_PwmKXO_normal.jpg,https://pbs.twimg.com/profile_banners/805810884782202880/1481108920,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,0.0,2.0,False,False,False,en,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3,Sun Apr 18 13:34:32 +0000 2021,1383775960596504576,1383775960596504576,"RT @LaForge_AI: Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du Samu + +#…",False,"Twitter for iPhone",,,,,,,,,,False,3,0,False,False,fr,[],[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,1343572966848802818,1343572966848802818,RISKINTEL,RISKINTEL4,,"🔬Actualité du Risk. S’informer est la première étape pour s’en prémunir. 💻#Cybersécurité, ⚠️#Riskmanagement,📄#Conformité, 💸#Finance, 🏷️#Réputation,🎟️#RSE",https://t.co/qvocCKqChF,[],False,103,240,0,Mon Dec 28 15:03:06 +0000 2020,85,,,False,False,196,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1343583984136163328/Jcd8NlnN_normal.jpg,https://pbs.twimg.com/profile_images/1343583984136163328/Jcd8NlnN_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Sun Apr 18 13:30:02 +0000 2021,1.3837748242463498e+18,1383774824246349830,Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du… https://t.co/Xd8FLATj9e,True,[],[],[],"[{'url': 'https://t.co/Xd8FLATj9e', 'expanded_url': 'https://twitter.com/i/web/status/1383774824246349830', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/qvocCKqChF', 'expanded_url': 'https://cutt.ly/6h55EeW', 'display_url': 'cutt.ly/6h55EeW', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1343572966848802818/1609170081,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +4,Sun Apr 18 13:30:17 +0000 2021,1383774888918282249,1383774888918282249,"RT @LaForge_AI: Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du Samu + +#…",False,"Twitter Web App",,,,,,,,,,False,3,0,False,False,fr,[],[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,127283816,127283816,Dr F Tétard Matricule 1620,NACREspirale,,"Enseignant chercheur, innovation- apprentissage Université Sorbonne Paris Nord Science et Génie des Matériaux IUT Saint Denis #ToujoursCharlie",http://t.co/EHEWmo1aQn,[],False,2753,5003,94,Sun Mar 28 18:02:48 +0000 2010,29729,,,False,False,73423,,False,False,False,EDECE9,http://abs.twimg.com/images/themes/theme3/bg.gif,https://abs.twimg.com/images/themes/theme3/bg.gif,False,http://pbs.twimg.com/profile_images/1361453572043464704/RheE8ELD_normal.jpg,https://pbs.twimg.com/profile_images/1361453572043464704/RheE8ELD_normal.jpg,088253,D3D2CF,E3E2DE,634047,True,False,False,False,False,False,False,none,Sun Apr 18 13:30:02 +0000 2021,1.3837748242463498e+18,1383774824246349830,Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du… https://t.co/Xd8FLATj9e,True,[],[],[],"[{'url': 'https://t.co/Xd8FLATj9e', 'expanded_url': 'https://twitter.com/i/web/status/1383774824246349830', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,"[{'url': 'http://t.co/EHEWmo1aQn', 'expanded_url': 'http://sites.google.com/site/universitespc/', 'display_url': 'sites.google.com/site/universit…', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/127283816/1603032044,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +5,Sun Apr 18 13:30:02 +0000 2021,1383774824246349830,1383774824246349830,Bordeaux : Une étude montre l'intérêt d'une intelligence artificielle pour faire gagner du temps aux régulateurs du… https://t.co/Xd8FLATj9e,True,"Rss2Twitter for La Forge",,,,,,,,,,False,3,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/Xd8FLATj9e', 'expanded_url': 'https://twitter.com/i/web/status/1383774824246349830', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1150436914471866368,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,[],False,9932,491,127,Sun Jul 14 16:08:29 +0000 2019,22145,,,False,False,10500,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +6,Sun Apr 18 13:19:31 +0000 2021,1383772180316524547,1383772180316524547,"RT @VincentCespedes: #LeMondeEstFlou +Quand l’#IntelligenceArtificielle, conçue principalement par des hommes blancs, discrimine. +#imlac #i…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'LeMondeEstFlou', 'indices': [21, 36]}, {'text': 'IntelligenceArtificielle', 'indices': [45, 70]}, {'text': 'imlac', 'indices': [130, 136]}]",[],"[{'screen_name': 'VincentCespedes', 'name': 'Vincent Cespedes', 'id': 72851410, 'id_str': '72851410', 'indices': [3, 19]}]",[],fr,recent,1687948537,1687948537,Marie-Pierre Barrouillet,mpbarrouillet,Bordeaux,"Biological Medical Sciences & eLearning +alumni @univbordeaux & @UBMontaigne",https://t.co/PQxalUEijo,[],False,893,642,257,Wed Aug 21 10:01:26 +0000 2013,156557,,,False,False,83216,,False,False,False,642D8B,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,True,http://pbs.twimg.com/profile_images/773863848348647425/34fDcaK8_normal.jpg,https://pbs.twimg.com/profile_images/773863848348647425/34fDcaK8_normal.jpg,FF0000,65B0DA,7AC3EE,3D1957,True,False,False,False,False,False,False,none,Sun Apr 18 12:41:20 +0000 2021,1.3837625713925243e+18,1383762571392524294,"#LeMondeEstFlou +Quand l’#IntelligenceArtificielle, conçue principalement par des hommes blancs, discrimine. +#imlac… https://t.co/s69tCwpsts",True,"[{'text': 'LeMondeEstFlou', 'indices': [0, 15]}, {'text': 'IntelligenceArtificielle', 'indices': [24, 49]}, {'text': 'imlac', 'indices': [109, 115]}]",[],[],"[{'url': 'https://t.co/s69tCwpsts', 'expanded_url': 'https://twitter.com/i/web/status/1383762571392524294', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter for iPhone",,,,,,72851410.0,72851410,Vincent Cespedes,VincentCespedes,Paris,« ἒστι άρμονία πολυμιγέων ἒνωσις καὶ δίχα φρονεόντων συμφρόνησις » | 📘 « #LeMondeEstFlou. L’avenir des intelligences » @EditionsPlon : https://t.co/wYYpGX6HSD,https://t.co/PzsAm06Ca2,"[{'url': 'https://t.co/PzsAm06Ca2', 'expanded_url': 'https://youtube.com/VincentCespedesVideos', 'display_url': 'youtube.com/VincentCespede…', 'indices': [0, 23]}]","[{'url': 'https://t.co/wYYpGX6HSD', 'expanded_url': 'http://madmimi.com/s/99e9121', 'display_url': 'madmimi.com/s/99e9121', 'indices': [135, 158]}]",False,24320.0,27617.0,319.0,Wed Sep 09 13:27:15 +0000 2009,21811.0,,,False,False,33862.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_banners/72851410/1611955624,981CEB,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,2.0,2.0,False,False,False,fr,,"[{'url': 'https://t.co/PQxalUEijo', 'expanded_url': 'https://www.researchgate.net/', 'display_url': 'researchgate.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1687948537/1473339609,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +7,Sun Apr 18 12:49:27 +0000 2021,1383764611636158467,1383764611636158467,"RT @VincentCespedes: #LeMondeEstFlou +Quand l’#IntelligenceArtificielle, conçue principalement par des hommes blancs, discrimine. +#imlac #i…",False,"Twitter for Android",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'LeMondeEstFlou', 'indices': [21, 36]}, {'text': 'IntelligenceArtificielle', 'indices': [45, 70]}, {'text': 'imlac', 'indices': [130, 136]}]",[],"[{'screen_name': 'VincentCespedes', 'name': 'Vincent Cespedes', 'id': 72851410, 'id_str': '72851410', 'indices': [3, 19]}]",[],fr,recent,2263010408,2263010408,bahiaca 🇫🇷,bahiacan,,,,[],False,372,375,34,Thu Dec 26 15:53:42 +0000 2013,49767,,,False,False,44002,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/785923718941990913/f_75WvHC_normal.jpg,https://pbs.twimg.com/profile_images/785923718941990913/f_75WvHC_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sun Apr 18 12:41:20 +0000 2021,1.3837625713925243e+18,1383762571392524294,"#LeMondeEstFlou +Quand l’#IntelligenceArtificielle, conçue principalement par des hommes blancs, discrimine. +#imlac… https://t.co/s69tCwpsts",True,"[{'text': 'LeMondeEstFlou', 'indices': [0, 15]}, {'text': 'IntelligenceArtificielle', 'indices': [24, 49]}, {'text': 'imlac', 'indices': [109, 115]}]",[],[],"[{'url': 'https://t.co/s69tCwpsts', 'expanded_url': 'https://twitter.com/i/web/status/1383762571392524294', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter for iPhone",,,,,,72851410.0,72851410,Vincent Cespedes,VincentCespedes,Paris,« ἒστι άρμονία πολυμιγέων ἒνωσις καὶ δίχα φρονεόντων συμφρόνησις » | 📘 « #LeMondeEstFlou. L’avenir des intelligences » @EditionsPlon : https://t.co/wYYpGX6HSD,https://t.co/PzsAm06Ca2,"[{'url': 'https://t.co/PzsAm06Ca2', 'expanded_url': 'https://youtube.com/VincentCespedesVideos', 'display_url': 'youtube.com/VincentCespede…', 'indices': [0, 23]}]","[{'url': 'https://t.co/wYYpGX6HSD', 'expanded_url': 'http://madmimi.com/s/99e9121', 'display_url': 'madmimi.com/s/99e9121', 'indices': [135, 158]}]",False,24320.0,27617.0,319.0,Wed Sep 09 13:27:15 +0000 2009,21811.0,,,False,False,33862.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_banners/72851410/1611955624,981CEB,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,2.0,2.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/2263010408/1528056319,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +8,Sun Apr 18 12:41:20 +0000 2021,1383762571392524294,1383762571392524294,"#LeMondeEstFlou +Quand l’#IntelligenceArtificielle, conçue principalement par des hommes blancs, discrimine. +#imlac… https://t.co/s69tCwpsts",True,"Twitter for iPhone",,,,,,,,,,False,2,2,False,False,fr,"[{'text': 'LeMondeEstFlou', 'indices': [0, 15]}, {'text': 'IntelligenceArtificielle', 'indices': [24, 49]}, {'text': 'imlac', 'indices': [109, 115]}]",[],[],"[{'url': 'https://t.co/s69tCwpsts', 'expanded_url': 'https://twitter.com/i/web/status/1383762571392524294', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,72851410,72851410,Vincent Cespedes,VincentCespedes,Paris,« ἒστι άρμονία πολυμιγέων ἒνωσις καὶ δίχα φρονεόντων συμφρόνησις » | 📘 « #LeMondeEstFlou. L’avenir des intelligences » @EditionsPlon : https://t.co/wYYpGX6HSD,https://t.co/PzsAm06Ca2,"[{'url': 'https://t.co/wYYpGX6HSD', 'expanded_url': 'http://madmimi.com/s/99e9121', 'display_url': 'madmimi.com/s/99e9121', 'indices': [135, 158]}]",False,24320,27617,319,Wed Sep 09 13:27:15 +0000 2009,21811,,,False,False,33862,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,981CEB,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/PzsAm06Ca2', 'expanded_url': 'https://youtube.com/VincentCespedesVideos', 'display_url': 'youtube.com/VincentCespede…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/72851410/1611955624,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +9,Sun Apr 18 12:31:46 +0000 2021,1383760162322718736,1383760162322718736,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"Twitter for iPhone",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,507648026,507648026,ManagerSante.com,managersante,France,"🌏+21.5K,Nouveau #média #digital d’#influence #Healthcare #Hôpital #eSanté #Innovation #Management | #EBMHealthEvent | 🔴https://t.co/gTxkh5W0ot",https://t.co/QQbCr4ovjQ,"[{'url': 'https://t.co/gTxkh5W0ot', 'expanded_url': 'https://www.youtube.com/c/ManagerSante', 'display_url': 'youtube.com/c/ManagerSante', 'indices': [120, 143]}]",False,5239,5444,139,Tue Feb 28 17:15:48 +0000 2012,41789,,,True,False,27479,,False,False,False,000000,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/1094667414791487488/Po-H5aFR_normal.jpg,https://pbs.twimg.com/profile_images/1094667414791487488/Po-H5aFR_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,"[{'url': 'https://t.co/QQbCr4ovjQ', 'expanded_url': 'http://ManagerSante.com', 'display_url': 'ManagerSante.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/507648026/1592422615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +10,Sun Apr 18 11:22:35 +0000 2021,1383742750374318083,1383742750374318083,"L’IA risque-t-elle de renforcer la #désinformation ? +@CSCIENCEIA +#éthique #numérique #ia #intelligenceartificielle… https://t.co/MYQSTjWqFd",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'désinformation', 'indices': [35, 50]}, {'text': 'éthique', 'indices': [66, 74]}, {'text': 'numérique', 'indices': [75, 85]}, {'text': 'ia', 'indices': [86, 89]}, {'text': 'intelligenceartificielle', 'indices': [90, 115]}]",[],"[{'screen_name': 'CSCIENCEIA', 'name': 'CScience IA', 'id': 549355873, 'id_str': '549355873', 'indices': [53, 64]}]","[{'url': 'https://t.co/MYQSTjWqFd', 'expanded_url': 'https://twitter.com/i/web/status/1383742750374318083', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +11,Sun Apr 18 11:21:49 +0000 2021,1383742557406982154,1383742557406982154,"RT @__LENIA: #Désinformation, haine : #Twitter veut des algorithmes plus éthiques +via @LucSpighel +#éthique #numérique #ia #intelligenceart…",False,"Integromat",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Désinformation', 'indices': [13, 28]}, {'text': 'Twitter', 'indices': [38, 46]}, {'text': 'éthique', 'indices': [99, 107]}, {'text': 'numérique', 'indices': [108, 118]}, {'text': 'ia', 'indices': [119, 122]}]",[],"[{'screen_name': '__LENIA', 'name': 'LEN.IA', 'id': 1225612353053564928, 'id_str': '1225612353053564928', 'indices': [3, 11]}, {'screen_name': 'LucSpighel', 'name': 'Luc SPIGHEL🌍😷#RestonsPrudents', 'id': 3769323263, 'id_str': '3769323263', 'indices': [86, 97]}]",[],fr,recent,439561828,439561828,DevMy,DevMy_fr,France,Si 1 entreprise doit ressembler à son dirigeant et 1 logo doit ressembler à son entreprise = 1 logo doit ressembler au dirigeant ... je crois que c’est bon !,https://t.co/RgigaS8wAm,[],False,1694,3594,101,Sat Dec 17 23:05:37 +0000 2011,202,,,False,False,35386,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,False,http://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,https://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,0099B9,FFFFFF,95E8EC,3C3940,True,True,False,False,False,False,False,none,Sun Apr 18 11:20:38 +0000 2021,1.3837422603746918e+18,1383742260374691851,"#Désinformation, haine : #Twitter veut des algorithmes plus éthiques +via @LucSpighel +#éthique #numérique #ia… https://t.co/6hxSnaqZsY",True,"[{'text': 'Désinformation', 'indices': [0, 15]}, {'text': 'Twitter', 'indices': [25, 33]}, {'text': 'éthique', 'indices': [86, 94]}, {'text': 'numérique', 'indices': [95, 105]}, {'text': 'ia', 'indices': [106, 109]}]",[],"[{'screen_name': 'LucSpighel', 'name': 'Luc SPIGHEL🌍😷#RestonsPrudents', 'id': 3769323263, 'id_str': '3769323263', 'indices': [73, 84]}]","[{'url': 'https://t.co/6hxSnaqZsY', 'expanded_url': 'https://twitter.com/i/web/status/1383742260374691851', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,"Twitter Web App",,,,,,1.225612353053565e+18,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",[],False,1120.0,2863.0,22.0,Fri Feb 07 02:49:47 +0000 2020,288.0,,,False,False,3112.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,,"[{'url': 'https://t.co/RgigaS8wAm', 'expanded_url': 'https://devmy.fr', 'display_url': 'devmy.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/439561828/1611138098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +12,Sun Apr 18 11:20:38 +0000 2021,1383742260374691851,1383742260374691851,"#Désinformation, haine : #Twitter veut des algorithmes plus éthiques +via @LucSpighel +#éthique #numérique #ia… https://t.co/6hxSnaqZsY",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Désinformation', 'indices': [0, 15]}, {'text': 'Twitter', 'indices': [25, 33]}, {'text': 'éthique', 'indices': [86, 94]}, {'text': 'numérique', 'indices': [95, 105]}, {'text': 'ia', 'indices': [106, 109]}]",[],"[{'screen_name': 'LucSpighel', 'name': 'Luc SPIGHEL🌍😷#RestonsPrudents', 'id': 3769323263, 'id_str': '3769323263', 'indices': [73, 84]}]","[{'url': 'https://t.co/6hxSnaqZsY', 'expanded_url': 'https://twitter.com/i/web/status/1383742260374691851', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +13,Sun Apr 18 08:24:57 +0000 2021,1383698050242125824,1383698050242125824,"RT @OpenvalueFR: Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de référenc…",False,"Twitter for Android",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'leaders', 'indices': [119, 127]}]",[],"[{'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [77, 91]}]",[],fr,recent,1444907839,1444907839,Nahima Schorp,breizhnahima,"Nantes, Pays de la Loire",Chef de projet communication Groupe La Poste #PaysdeLaLoire #communication #territoire #marketing #numérique #nantes #innovation #digital Compte personnel,,[],False,273,241,161,Mon May 20 22:08:16 +0000 2013,665,,,True,False,3287,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1103215056123248640/CHSVmpPQ_normal.png,https://pbs.twimg.com/profile_images/1103215056123248640/CHSVmpPQ_normal.png,3B94D9,000000,000000,000000,False,True,False,False,False,False,False,none,Wed Apr 14 14:14:41 +0000 2021,1.3823365106247393e+18,1382336510624739334,"Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de r… https://t.co/u7Kky4whQ9",True,"[{'text': 'leaders', 'indices': [102, 110]}]",[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [60, 74]}]","[{'url': 'https://t.co/u7Kky4whQ9', 'expanded_url': 'https://twitter.com/i/web/status/1382336510624739334', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,2817310092.0,2817310092,Openvalue,OpenvalueFR,Paris,"#BigData - #IoT - #Digital - Nous accompagnons les entreprises dans la transformation de leurs usages, #données et objets",http://t.co/ETGqvCEjis,"[{'url': 'http://t.co/ETGqvCEjis', 'expanded_url': 'http://Openvalue.co', 'display_url': 'Openvalue.co', 'indices': [0, 22]}]",[],False,168.0,101.0,32.0,Thu Sep 18 16:55:41 +0000 2014,19.0,,,True,False,554.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_banners/2817310092/1411114837,FC5649,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,15.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1444907839/1575495405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +14,Sun Apr 18 08:10:37 +0000 2021,1383694441559445506,1383694441559445506,RT @StudiaFR: [News] Découvrez l'article sur les chatbots et le marketing pour connaître l'importance du #chatbot dans une stratégie de #ma…,False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'chatbot', 'indices': [105, 113]}]",[],"[{'screen_name': 'StudiaFR', 'name': 'Groupe STUDIA', 'id': 1185580186701570050, 'id_str': '1185580186701570050', 'indices': [3, 12]}]",[],fr,recent,96355436,96355436,Marie Laure BONNAUD,BonnaudML,Les Pennes Mirabeau,"Responsable marketing et communication ❖ MarTech ❖ BtoB ❖ Ingénieur Manager. À la fois thinker et doer, j'aime apporter des solutions via le numérique",https://t.co/NLImOoXiyh,[],False,293,249,63,Sat Dec 12 14:49:35 +0000 2009,295,,,True,False,1039,,False,False,False,B2171F,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/919258795087421440/iGaGAGTN_normal.jpg,https://pbs.twimg.com/profile_images/919258795087421440/iGaGAGTN_normal.jpg,1B95E0,FFFFFF,EFEFEF,333333,False,True,False,False,False,False,False,none,Thu Mar 11 15:59:05 +0000 2021,1.3700415951192105e+18,1370041595119210498,[News] Découvrez l'article sur les chatbots et le marketing pour connaître l'importance du #chatbot dans une straté… https://t.co/kB5ZPQRP14,True,"[{'text': 'chatbot', 'indices': [91, 99]}]",[],[],"[{'url': 'https://t.co/kB5ZPQRP14', 'expanded_url': 'https://twitter.com/i/web/status/1370041595119210498', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.18558018670157e+18,1185580186701570050,Groupe STUDIA,StudiaFR,Rousset,"Transformation numérique, et valorisation des données complexes, en temps réel #digital #numérique #data",https://t.co/YQAg87NXB6,"[{'url': 'https://t.co/YQAg87NXB6', 'expanded_url': 'https://www.studia.fr/', 'display_url': 'studia.fr', 'indices': [0, 23]}]",[],False,31.0,197.0,3.0,Sat Oct 19 15:35:30 +0000 2019,39.0,,,False,False,44.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1235193636146548737/ik2RbDwL_normal.jpg,https://pbs.twimg.com/profile_images/1235193636146548737/ik2RbDwL_normal.jpg,https://pbs.twimg.com/profile_banners/1185580186701570050/1601904532,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,False,2.0,3.0,False,False,False,fr,,"[{'url': 'https://t.co/NLImOoXiyh', 'expanded_url': 'https://www.marie-laure-bonnaud.fr/', 'display_url': 'marie-laure-bonnaud.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/96355436/1531222771,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +15,Sun Apr 18 07:11:48 +0000 2021,1383679642490392583,1383679642490392583,"RT @ModisFrance: Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔 + +📚Décou…",False,"Twitter for iPhone",,,,,,,,,,False,13,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [39, 64]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,1055300990889615367,1055300990889615367,ROBERT EXTIC BENTIL,EXTIC_Gh,From the Space 🚀🚀🚀,(EXTIC) Faster than gods!!! robertbentil1008@gmail.com A big fan of @Shattawalegh @JohnCena @Cristiano @kinaatagh❤️❣️💪🚀🚀💥,,[],False,581,374,2,Thu Oct 25 03:32:17 +0000 2018,50761,,,True,False,42455,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1249352287924948992/nweI6fv1_normal.jpg,https://pbs.twimg.com/profile_images/1249352287924948992/nweI6fv1_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 09 06:46:10 +0000 2021,1.380411700256592e+18,1380411700256591876,Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔… https://t.co/tVjmCT1CWh,True,"[{'text': 'IntelligenceArtificielle', 'indices': [22, 47]}]",[],[],"[{'url': 'https://t.co/tVjmCT1CWh', 'expanded_url': 'https://twitter.com/i/web/status/1380411700256591876', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,13.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1055300990889615367/1586703511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +16,Sun Apr 18 07:03:05 +0000 2021,1383677445199433728,1383677445199433728,"RT @ModisFrance: Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔 + +📚Décou…",False,"RTML",,,,,,,,,,False,13,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [39, 64]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,1064108650271309826,1064108650271309826,Curious Luke,TheCuriousLuke,Switzerland,Luke identifies himself as a: #ACLS #Masterstudent @zhaw ¦ #Biotechnologist ¦ former #Chemical #Labtechnician 👨‍🔬 ¦ #Human,,[],False,6246,256,161,Sun Nov 18 10:50:47 +0000 2018,82,,,False,False,311582,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1146772070547841024/u1aKb70M_normal.jpg,https://pbs.twimg.com/profile_images/1146772070547841024/u1aKb70M_normal.jpg,00D620,000000,000000,000000,False,True,False,False,False,False,False,none,Fri Apr 09 06:46:10 +0000 2021,1.380411700256592e+18,1380411700256591876,Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔… https://t.co/tVjmCT1CWh,True,"[{'text': 'IntelligenceArtificielle', 'indices': [22, 47]}]",[],[],"[{'url': 'https://t.co/tVjmCT1CWh', 'expanded_url': 'https://twitter.com/i/web/status/1380411700256591876', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,13.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1064108650271309826/1542538859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +17,Sun Apr 18 07:03:02 +0000 2021,1383677432855625735,1383677432855625735,"RT @ModisFrance: Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔 + +📚Décou…",False,"hubofml",,,,,,,,,,False,13,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [39, 64]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,3040871649,3040871649,HubOfML,hubofml,Germany ,"You'll receive a newsletter once a month with exciting content on ML, Data Science, Software Engineering, and Tech Leadership. Subscribe here 👉 https://t.co/X0opwdlleW",https://t.co/VRnN9grEfw,"[{'url': 'https://t.co/X0opwdlleW', 'expanded_url': 'http://bit.ly/hubofml1', 'display_url': 'bit.ly/hubofml1', 'indices': [144, 167]}]",False,8365,15,182,Mon Feb 16 15:33:55 +0000 2015,47200,,,False,False,459105,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1254334743333818373/F3xeh1db_normal.jpg,https://pbs.twimg.com/profile_images/1254334743333818373/F3xeh1db_normal.jpg,4A913C,000000,000000,000000,False,True,False,False,False,False,False,none,Fri Apr 09 06:46:10 +0000 2021,1.380411700256592e+18,1380411700256591876,Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔… https://t.co/tVjmCT1CWh,True,"[{'text': 'IntelligenceArtificielle', 'indices': [22, 47]}]",[],[],"[{'url': 'https://t.co/tVjmCT1CWh', 'expanded_url': 'https://twitter.com/i/web/status/1380411700256591876', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,13.0,17.0,False,False,False,fr,,"[{'url': 'https://t.co/VRnN9grEfw', 'expanded_url': 'http://bit.ly/hubofml1', 'display_url': 'bit.ly/hubofml1', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3040871649/1587892795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +18,Sun Apr 18 07:02:56 +0000 2021,1383677409426231306,1383677409426231306,"RT @ModisFrance: Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔 + +📚Décou…",False,"Twitter for iPhone",,,,,,,,,,False,13,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [39, 64]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,419502542,419502542,Eric TIXADOR,EricTIXADOR,France - Occitanie,Social Media Manager at @ModisFrance | Passionné par: #IntelligenceArtificielle #TransfoNum #MachineLearning #IoT #AI #Blockchain #cybersecurity #FormulaE,https://t.co/W8NUa7vYGZ,[],False,3252,2425,2318,Wed Nov 23 12:40:37 +0000 2011,10265,,,True,False,17676,,False,False,False,000000,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1164981855336181760/KJKPNbrv_normal.jpg,https://pbs.twimg.com/profile_images/1164981855336181760/KJKPNbrv_normal.jpg,3B94D9,000000,000000,000000,False,True,False,False,False,False,False,none,Fri Apr 09 06:46:10 +0000 2021,1.380411700256592e+18,1380411700256591876,Comment entraîner une #IntelligenceArtificielle à apprendre à effectuer une tâche de manière autonome? Une idée ?🤔… https://t.co/tVjmCT1CWh,True,"[{'text': 'IntelligenceArtificielle', 'indices': [22, 47]}]",[],[],"[{'url': 'https://t.co/tVjmCT1CWh', 'expanded_url': 'https://twitter.com/i/web/status/1380411700256591876', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,13.0,17.0,False,False,False,fr,,"[{'url': 'https://t.co/W8NUa7vYGZ', 'expanded_url': 'http://linkd.in/1pBzDOD', 'display_url': 'linkd.in/1pBzDOD', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/419502542/1603117388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +19,Sun Apr 18 06:22:11 +0000 2021,1383667154017390599,1383667154017390599,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] AXA collabore avec Microsoft pour concevoir un écosystème de servi… https://t.co/KcZnjzdHgr,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/KcZnjzdHgr', 'expanded_url': 'https://twitter.com/i/web/status/1383667154017390599', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +20,Sun Apr 18 05:01:40 +0000 2021,1383646892303650820,1383646892303650820,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Europe : la commission européenne prévoit de réglementer l’utilisa… https://t.co/iXCpuRO7ef,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/iXCpuRO7ef', 'expanded_url': 'https://twitter.com/i/web/status/1383646892303650820', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +21,Sat Apr 17 21:44:48 +0000 2021,1383536952301867010,1383536952301867010,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Espagne : le gouvernement investit 450 millions d’euros dans son p… https://t.co/jdcRH6NfEb,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/jdcRH6NfEb', 'expanded_url': 'https://twitter.com/i/web/status/1383536952301867010', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +22,Sat Apr 17 21:15:10 +0000 2021,1383529492111499269,1383529492111499269,RT @DailyDigital: 🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Le Cigref et CISPE souhaitent mettre un terme aux pratiques des contrôle…,False,"App roaring brain",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [19, 34]}, {'text': 'IntelligenceArtificielle', 'indices': [36, 61]}, {'text': 'IA', 'indices': [62, 65]}]",[],"[{'screen_name': 'DailyDigital', 'name': '✨Daily Digital', 'id': 3405442043, 'id_str': '3405442043', 'indices': [3, 16]}]",[],fr,recent,987780156843585536,987780156843585536,Roaring Brain,BrainRoaring,,"Unapologetically multidisciplinarian. Musings on tech, business, geopolitics and culture.",https://t.co/uCnH2625Kg,[],False,2075,1,77,Sat Apr 21 19:48:36 +0000 2018,0,,,False,False,118514,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/987786740911038464/TFBbbcMV_normal.jpg,https://pbs.twimg.com/profile_images/987786740911038464/TFBbbcMV_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sat Apr 17 21:14:22 +0000 2021,1.3835292914098545e+18,1383529291409854466,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Le Cigref et CISPE souhaitent mettre un terme aux pratiques des co… https://t.co/L9tf0rW8lo,True,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/L9tf0rW8lo', 'expanded_url': 'https://twitter.com/i/web/status/1383529291409854466', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Sociallymap",,,,,,3405442043.0,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",[],False,13819.0,4530.0,1694.0,Thu Aug 06 10:15:10 +0000 2015,3840.0,,,False,False,134692.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_banners/3405442043/1585496890,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,,"[{'url': 'https://t.co/uCnH2625Kg', 'expanded_url': 'http://roaringbrain.com', 'display_url': 'roaringbrain.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/987780156843585536/1524342460,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +23,Sat Apr 17 21:14:22 +0000 2021,1383529291409854466,1383529291409854466,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Le Cigref et CISPE souhaitent mettre un terme aux pratiques des co… https://t.co/L9tf0rW8lo,True,"Sociallymap",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/L9tf0rW8lo', 'expanded_url': 'https://twitter.com/i/web/status/1383529291409854466', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +24,Sat Apr 17 20:34:25 +0000 2021,1383519236144853005,1383519236144853005,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Le Centre Léon Bérard va piloter trois projets utilisant l’IA pour… https://t.co/skiSABR1UM,True,"Sociallymap",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/skiSABR1UM', 'expanded_url': 'https://twitter.com/i/web/status/1383519236144853005', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +25,Sat Apr 17 12:46:10 +0000 2021,1383401399094964237,1383401399094964237,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] L’OTAN travaille à l’encadrement de l’utilisation de l’intelligenc… https://t.co/eX55eEZrbc,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/eX55eEZrbc', 'expanded_url': 'https://twitter.com/i/web/status/1383401399094964237', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +26,Sat Apr 17 11:37:07 +0000 2021,1383384021414019072,1383384021414019072,Utiliser un modèle de #machinelearning qui peut trouver des réponses aux questions. Apprenez aux enfants à récupére… https://t.co/5YddA94BsR,True,"Twitter Web App",,,,,,,,,,True,0,0,False,False,fr,"[{'text': 'machinelearning', 'indices': [22, 38]}]",[],[],"[{'url': 'https://t.co/5YddA94BsR', 'expanded_url': 'https://twitter.com/i/web/status/1383384021414019072', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199875,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.3833645348956652e+18,1383364534895665157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Sat Apr 17 10:19:41 +0000 2021,1.3833645348956652e+18,1383364534895665157,"Use a #machinelearning model that can find answers to questions +Teach kids about information retrieval by making a… https://t.co/y4pEGBHLjf",True,"[{'text': 'machinelearning', 'indices': [6, 22]}]",[],[],"[{'url': 'https://t.co/y4pEGBHLjf', 'expanded_url': 'https://twitter.com/i/web/status/1383364534895665157', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,8.536362206976696e+17,853636220697669632,ML for Kids,MLforKids,UK,"Introducing kids to machine learning using Scratch, Python and App Inventor (account run by @dalelane)",https://t.co/VqmZtoag6S,"[{'url': 'https://t.co/VqmZtoag6S', 'expanded_url': 'http://machinelearningforkids.co.uk', 'display_url': 'machinelearningforkids.co.uk', 'indices': [0, 23]}]",[],False,2246.0,378.0,47.0,Sun Apr 16 15:48:29 +0000 2017,994.0,,,True,False,222.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,https://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,ABB8C2,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,11.0,12.0,False,False,False,en,,, +27,Sat Apr 17 10:22:42 +0000 2021,1383365294299570177,1383365294299570177,"Les IA pourraient-elles un jour profiter de nos faiblesses pour devenir l'espèce supérieure, un peu comme nous l'av… https://t.co/2cF0lEccOk",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/2cF0lEccOk', 'expanded_url': 'https://twitter.com/i/web/status/1383365294299570177', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,932618057058521088,932618057058521088,Patrice de Fréminville (auteur),PFreminville,,"Nouvelles +Blog lecture + critiques, #SP, sciences et écriture +#anticipation #IA #SF #humanisme #sciences #technologie #SFFF #aipunk #auteur #imaginaire #fiction",https://t.co/RD15W6Kmi8,[],False,482,447,6,Mon Nov 20 14:34:06 +0000 2017,8744,,,False,False,2350,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/RD15W6Kmi8', 'expanded_url': 'https://www.patricedefreminville.fr/', 'display_url': 'patricedefreminville.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/932618057058521088/1617634348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +28,Sat Apr 17 08:50:37 +0000 2021,1383342120929435654,1383342120929435654,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,811663826101923840,811663826101923840,Physique Chimie Aix Marseille,Ph_Ch_Aix_Mrs,"Aix-en-Provence, France",IA-IPR et IAN de Physique Chimie @acaixmarseille,https://t.co/LMoKU78RCT,[],False,240,72,1,Wed Dec 21 20:05:10 +0000 2016,331,,,False,False,642,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1050070364926164994/jQeOXCTL_normal.jpg,https://pbs.twimg.com/profile_images/1050070364926164994/jQeOXCTL_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/LMoKU78RCT', 'expanded_url': 'http://www.pedagogie.ac-aix-marseille.fr/physique-chimie', 'display_url': 'pedagogie.ac-aix-marseille.fr/physique-chimie', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +29,Sat Apr 17 08:44:50 +0000 2021,1383340664100823048,1383340664100823048,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] L’Université de Götenborg s’intéresse dans une étude à l’intellige… https://t.co/swH8RmqbM3,True,"Sociallymap",,,,,,,,,,False,0,2,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/swH8RmqbM3', 'expanded_url': 'https://twitter.com/i/web/status/1383340664100823048', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +30,Sat Apr 17 04:43:46 +0000 2021,1383280000758026242,1383280000758026242,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Le Cigref et CISPE souhaitent mettre un terme aux pratiques des co… https://t.co/3xDa0xCdFS,True,"Sociallymap",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/3xDa0xCdFS', 'expanded_url': 'https://twitter.com/i/web/status/1383280000758026242', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +31,Sat Apr 17 04:33:32 +0000 2021,1383277422380863492,1383277422380863492,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Généthon et WhiteLab Genomics vont collaborer afin d’utiliser l’IA… https://t.co/xfmYfh0Zd2,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/xfmYfh0Zd2', 'expanded_url': 'https://twitter.com/i/web/status/1383277422380863492', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +32,Fri Apr 16 22:41:30 +0000 2021,1383188831940325387,1383188831940325387,RT @mjangalesenegal: L'atelier est adapté aux élèves de la 4ème à la terminale. Il a lieu en ligne sur Zoom pendant 2 heures les matins de…,False,"Twitter for Android",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'mjangalesenegal', 'name': 'mJangale', 'id': 1431378090, 'id_str': '1431378090', 'indices': [3, 19]}]",[],fr,recent,1289311992,1289311992,Citrus 🍋,YacinDione,Dakar,"Carpe diem +#Botanique, #Biodiversité , #Ethnobotanique 🌴🌱, #Environnement",,[],False,2358,2489,2,Fri Mar 22 18:11:22 +0000 2013,29143,,,False,False,12074,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1371388148538806272/hIEr9kY1_normal.jpg,https://pbs.twimg.com/profile_images/1371388148538806272/hIEr9kY1_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 19:16:11 +0000 2021,1.383137163693396e+18,1383137163693395977,L'atelier est adapté aux élèves de la 4ème à la terminale. Il a lieu en ligne sur Zoom pendant 2 heures les matins… https://t.co/BCZ2PzArAS,True,[],[],[],"[{'url': 'https://t.co/BCZ2PzArAS', 'expanded_url': 'https://twitter.com/i/web/status/1383137163693395977', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter for iPhone",1.3830855443898737e+18,1383085544389873670,1431378090.0,1431378090,mjangalesenegal,1431378090.0,1431378090,mJangale,mjangalesenegal,"Sénégal, Afrique et en ligne",Inspirer pour les carrières technologiques. Changer l'education à grande échelle #coding #stem,https://t.co/biTsW1Av85,"[{'url': 'https://t.co/biTsW1Av85', 'expanded_url': 'https://mjangale.com', 'display_url': 'mjangale.com', 'indices': [0, 23]}]",[],False,371.0,239.0,9.0,Wed May 15 20:04:47 +0000 2013,66.0,,,False,False,388.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/3673405035/b494dd096a79251f58d63d985b3b4fb3_normal.png,https://pbs.twimg.com/profile_images/3673405035/b494dd096a79251f58d63d985b3b4fb3_normal.png,https://pbs.twimg.com/profile_banners/1431378090/1616876698,19CF86,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,3.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1289311992/1607538678,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +33,Fri Apr 16 21:22:30 +0000 2021,1383168952512217088,1383168952512217088,RT @mdrechsler: L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"Twitter Web App",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [68, 71]}, {'text': 'AI', 'indices': [72, 75]}, {'text': 'IntelligenceArtificielle', 'indices': [76, 101]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [102, 125]}]",fr,recent,3720042855,3720042855,Herodote1789,herodote1789,,sociologue spécialiste de l'antisémitisme,,[],False,709,1713,12,Sun Sep 20 18:09:55 +0000 2015,223,,,False,False,95838,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,True,False,False,False,none,Fri Apr 16 13:24:22 +0000 2021,1.3830486226951414e+18,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,6.0,False,False,False,fr,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +34,Fri Apr 16 19:16:11 +0000 2021,1383137163693395977,1383137163693395977,L'atelier est adapté aux élèves de la 4ème à la terminale. Il a lieu en ligne sur Zoom pendant 2 heures les matins… https://t.co/BCZ2PzArAS,True,"Twitter for iPhone",1.3830855443898737e+18,1383085544389873670,1431378090.0,1431378090,mjangalesenegal,,,,,False,1,3,False,False,fr,[],[],[],"[{'url': 'https://t.co/BCZ2PzArAS', 'expanded_url': 'https://twitter.com/i/web/status/1383137163693395977', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,1431378090,1431378090,mJangale,mjangalesenegal,"Sénégal, Afrique et en ligne",Inspirer pour les carrières technologiques. Changer l'education à grande échelle #coding #stem,https://t.co/biTsW1Av85,[],False,371,239,9,Wed May 15 20:04:47 +0000 2013,66,,,False,False,388,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/3673405035/b494dd096a79251f58d63d985b3b4fb3_normal.png,https://pbs.twimg.com/profile_images/3673405035/b494dd096a79251f58d63d985b3b4fb3_normal.png,19CF86,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/biTsW1Av85', 'expanded_url': 'https://mjangale.com', 'display_url': 'mjangale.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1431378090/1616876698,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +35,Fri Apr 16 17:34:22 +0000 2021,1383111538060496902,1383111538060496902,RT @mdrechsler: L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"Twitter for Android",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [68, 71]}, {'text': 'AI', 'indices': [72, 75]}, {'text': 'IntelligenceArtificielle', 'indices': [76, 101]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [102, 125]}]",fr,recent,1331660897463521287,1331660897463521287,Alexandre F,alexandre2927,"Paris, France","Etudiant en école de commerce +J'aime la politique, le sport et l'Histoire +#Macron2022",,[],False,894,960,0,Wed Nov 25 18:08:57 +0000 2020,23040,,,False,False,19983,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1331661638743826432/ZJzsyghM_normal.jpg,https://pbs.twimg.com/profile_images/1331661638743826432/ZJzsyghM_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 13:24:22 +0000 2021,1.3830486226951414e+18,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,6.0,False,False,False,fr,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +36,Fri Apr 16 17:09:43 +0000 2021,1383105334307389447,1383105334307389447,"#capital #IntelligenceArtificielle ""Luc Julia : ""En soit l'intelligence artificielle n'est ni bonne, ni mauvaise. C… https://t.co/u2g2OlO9a6",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'capital', 'indices': [0, 8]}, {'text': 'IntelligenceArtificielle', 'indices': [9, 34]}]",[],[],"[{'url': 'https://t.co/u2g2OlO9a6', 'expanded_url': 'https://twitter.com/i/web/status/1383105334307389447', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2373993726,2373993726,Gaby Wald,gaby_wald,SomeWhere,#geek #biogeek #bioinfo #spaceopera #cyber #hack #mac #linux #ubuntu #jdr #roliste #rpg #cyberpunk #deltagreen #bioinformatics #datascience #CyberSécurité,https://t.co/bvbLRIqw6T,[],False,806,707,550,Wed Mar 05 16:11:38 +0000 2014,132302,,,False,False,75514,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/441246743745667072/8VEYhhie_normal.jpeg,https://pbs.twimg.com/profile_images/441246743745667072/8VEYhhie_normal.jpeg,2FC2EF,181A1E,252429,666666,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/bvbLRIqw6T', 'expanded_url': 'http://gabriel.chandesris.free.fr/gabysblog/', 'display_url': 'gabriel.chandesris.free.fr/gabysblog/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2373993726/1404209167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +37,Fri Apr 16 17:06:13 +0000 2021,1383104456384987139,1383104456384987139,"#laquadrature #HealthDataHub ""Health Data Hub : du fantasme de l'intelligence artificielle à la privatisation de no… https://t.co/bQxY6IYnNg",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'laquadrature', 'indices': [0, 13]}, {'text': 'HealthDataHub', 'indices': [14, 28]}]",[],[],"[{'url': 'https://t.co/bQxY6IYnNg', 'expanded_url': 'https://twitter.com/i/web/status/1383104456384987139', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2373993726,2373993726,Gaby Wald,gaby_wald,SomeWhere,#geek #biogeek #bioinfo #spaceopera #cyber #hack #mac #linux #ubuntu #jdr #roliste #rpg #cyberpunk #deltagreen #bioinformatics #datascience #CyberSécurité,https://t.co/bvbLRIqw6T,[],False,806,707,550,Wed Mar 05 16:11:38 +0000 2014,132302,,,False,False,75514,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/441246743745667072/8VEYhhie_normal.jpeg,https://pbs.twimg.com/profile_images/441246743745667072/8VEYhhie_normal.jpeg,2FC2EF,181A1E,252429,666666,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/bvbLRIqw6T', 'expanded_url': 'http://gabriel.chandesris.free.fr/gabysblog/', 'display_url': 'gabriel.chandesris.free.fr/gabysblog/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2373993726/1404209167,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +38,Fri Apr 16 15:40:21 +0000 2021,1383082844172476423,1383082844172476423,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter Web App",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,574483718,574483718,Axel Jean,AxelJean77,Paris,"Direction du Numérique pour l'Éducation - MENJS +@Edu_Num +Partenariat(s) d'innovation #IA #P2IA +#Challenges éducation +#GTNum Banques #BRNEDU #Primabord",,[],False,4712,1595,165,Tue May 08 13:41:20 +0000 2012,18587,,,False,False,23155,,False,False,False,C6E2EE,http://abs.twimg.com/images/themes/theme2/bg.gif,https://abs.twimg.com/images/themes/theme2/bg.gif,False,http://pbs.twimg.com/profile_images/1354875904829378562/-z6qengg_normal.jpg,https://pbs.twimg.com/profile_images/1354875904829378562/-z6qengg_normal.jpg,1F98C7,C6E2EE,DAECF4,663B12,True,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/574483718/1481491547,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +39,Fri Apr 16 15:11:07 +0000 2021,1383075488692903936,1383075488692903936,"RT @alagraphy: Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU + +#digitalhuma…",False,"Twitter Web App",,,,,,,,,,False,3,0,False,False,fr,[],[],"[{'screen_name': 'alagraphy', 'name': 'AI_AgrApHY', 'id': 194202021, 'id_str': '194202021', 'indices': [3, 13]}]","[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [101, 124]}]",fr,recent,1057964275493466112,1057964275493466112,BitoΨ AI Digital Transformation & Transcendence,bitopsy1,.-- .-- .--,"Welcoming you(r company) into the future while exploring the intersection between art & science through generative art, mainly AI-Art & Algorithmic Fractal Art",https://t.co/rwWta2vOCO,[],False,245,1,7,Thu Nov 01 11:55:14 +0000 2018,390,,,True,False,212,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1058476650546036737/oVl3dTIH_normal.jpg,https://pbs.twimg.com/profile_images/1058476650546036737/oVl3dTIH_normal.jpg,ABB8C2,000000,000000,000000,False,False,False,False,False,False,False,none,Fri Apr 16 15:01:33 +0000 2021,1.3830730830330184e+18,1383073083033018371,"Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU… https://t.co/9hS049H1HU",True,[],[],[],"[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [86, 109]}, {'url': 'https://t.co/9hS049H1HU', 'expanded_url': 'https://twitter.com/i/web/status/1383073083033018371', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,"Twitter Web App",,,,,,194202021.0,194202021,AI_AgrApHY,alagraphy,Next Expo GrandPalais Feb 2019,"I teach machines #art /w #AI. +PhD @informatics. Artist/Scientist Resident @IGCIENCIA. +Former Sr #DataScientist @FORTIA_S @SNIPS PostDoc @CNRS &🏆@SALON_AUTOMNE",https://t.co/sPE9ZfK9PZ,"[{'url': 'https://t.co/sPE9ZfK9PZ', 'expanded_url': 'http://Www.alagraphy.com', 'display_url': 'alagraphy.com', 'indices': [0, 23]}]",[],False,1896.0,230.0,136.0,Thu Sep 23 17:36:51 +0000 2010,569.0,,,True,False,4644.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,True,http://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_banners/194202021/1540240391,F0D7AD,000000,F0A1C7,850552,True,True,False,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/rwWta2vOCO', 'expanded_url': 'http://www.bitopsy.com', 'display_url': 'bitopsy.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1057964275493466112/1541196459,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +40,Fri Apr 16 15:09:32 +0000 2021,1383075092146585604,1383075092146585604,[#IntelligenceArtificielle #IA] Généthon et WhiteLab Genomics vont collaborer afin d'utiliser l'#IA dans le cadre d… https://t.co/UCv7Fxsg5J,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}, {'text': 'IA', 'indices': [27, 30]}, {'text': 'IA', 'indices': [96, 99]}]",[],[],"[{'url': 'https://t.co/UCv7Fxsg5J', 'expanded_url': 'https://twitter.com/i/web/status/1383075092146585604', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +41,Fri Apr 16 15:09:02 +0000 2021,1383074964056764418,1383074964056764418,"RT @alagraphy: Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU + +#digitalhuma…",False,"K. White",,,,,,,,,,False,3,0,False,False,fr,[],[],"[{'screen_name': 'alagraphy', 'name': 'AI_AgrApHY', 'id': 194202021, 'id_str': '194202021', 'indices': [3, 13]}]","[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [101, 124]}]",fr,recent,987712090071814144,987712090071814144,K. White,DigtalHumanatee,"Newark, NJ","This is a bot created in April 2018. It automatically retweets digital humanities content. A real, digital librarian tweets here occasionally.",,[],False,686,37,12,Sat Apr 21 15:18:07 +0000 2018,7,,,False,False,39919,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1316470327149506566/dHIMR7Qq_normal.jpg,https://pbs.twimg.com/profile_images/1316470327149506566/dHIMR7Qq_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Fri Apr 16 15:01:33 +0000 2021,1.3830730830330184e+18,1383073083033018371,"Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU… https://t.co/9hS049H1HU",True,[],[],[],"[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [86, 109]}, {'url': 'https://t.co/9hS049H1HU', 'expanded_url': 'https://twitter.com/i/web/status/1383073083033018371', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,"Twitter Web App",,,,,,194202021.0,194202021,AI_AgrApHY,alagraphy,Next Expo GrandPalais Feb 2019,"I teach machines #art /w #AI. +PhD @informatics. Artist/Scientist Resident @IGCIENCIA. +Former Sr #DataScientist @FORTIA_S @SNIPS PostDoc @CNRS &🏆@SALON_AUTOMNE",https://t.co/sPE9ZfK9PZ,"[{'url': 'https://t.co/sPE9ZfK9PZ', 'expanded_url': 'http://Www.alagraphy.com', 'display_url': 'alagraphy.com', 'indices': [0, 23]}]",[],False,1896.0,230.0,136.0,Thu Sep 23 17:36:51 +0000 2010,569.0,,,True,False,4644.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,True,http://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_banners/194202021/1540240391,F0D7AD,000000,F0A1C7,850552,True,True,False,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/987712090071814144/1602708806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +42,Fri Apr 16 15:01:41 +0000 2021,1383073113303310341,1383073113303310341,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,3308996199,3308996199,FFEM,FFEM_Fr,"Paris, Ile-de-France","Fonds français pour l'environnement mondial. +Soutient des #solutions innovantes pour l'#environnement dans les pays en #développement",https://t.co/obn5sOYvHW,[],False,2503,1173,55,Fri Jun 05 07:55:27 +0000 2015,3273,,,True,False,2083,,False,False,False,000000,http://abs.twimg.com/images/themes/theme13/bg.gif,https://abs.twimg.com/images/themes/theme13/bg.gif,False,http://pbs.twimg.com/profile_images/607834757444063232/fp4uA6B9_normal.jpg,https://pbs.twimg.com/profile_images/607834757444063232/fp4uA6B9_normal.jpg,18B268,000000,000000,000000,False,False,False,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/obn5sOYvHW', 'expanded_url': 'http://www.ffem.fr', 'display_url': 'ffem.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3308996199/1582043396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +43,Fri Apr 16 15:01:39 +0000 2021,1383073107997523972,1383073107997523972,"RT @alagraphy: Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU + +#digitalhuma…",False,"botlabhd",,,,,,,,,,False,3,0,False,False,fr,[],[],"[{'screen_name': 'alagraphy', 'name': 'AI_AgrApHY', 'id': 194202021, 'id_str': '194202021', 'indices': [3, 13]}]","[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [101, 124]}]",fr,recent,1298687874112671751,1298687874112671751,Bot do Laboratório de Humanidades Digitais da UFBA,BotLabhd,LABHDUFBA,"Olá, meu nome é Roy! +Bot do @labhdufba interessado em: +#HumanidadesDigitais +#SociologiaDigital +#HistoriaDigital +Quando crescer quero ser #AI",https://t.co/97ufT4cf53,[],False,231,7,4,Wed Aug 26 18:25:14 +0000 2020,0,,,False,False,10101,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1298694376382758916/gOe3vmAM_normal.jpg,https://pbs.twimg.com/profile_images/1298694376382758916/gOe3vmAM_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 15:01:33 +0000 2021,1.3830730830330184e+18,1383073083033018371,"Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU… https://t.co/9hS049H1HU",True,[],[],[],"[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [86, 109]}, {'url': 'https://t.co/9hS049H1HU', 'expanded_url': 'https://twitter.com/i/web/status/1383073083033018371', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,"Twitter Web App",,,,,,194202021.0,194202021,AI_AgrApHY,alagraphy,Next Expo GrandPalais Feb 2019,"I teach machines #art /w #AI. +PhD @informatics. Artist/Scientist Resident @IGCIENCIA. +Former Sr #DataScientist @FORTIA_S @SNIPS PostDoc @CNRS &🏆@SALON_AUTOMNE",https://t.co/sPE9ZfK9PZ,"[{'url': 'https://t.co/sPE9ZfK9PZ', 'expanded_url': 'http://Www.alagraphy.com', 'display_url': 'alagraphy.com', 'indices': [0, 23]}]",[],False,1896.0,230.0,136.0,Thu Sep 23 17:36:51 +0000 2010,569.0,,,True,False,4644.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,True,http://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_banners/194202021/1540240391,F0D7AD,000000,F0A1C7,850552,True,True,False,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/97ufT4cf53', 'expanded_url': 'http://www.labhd.ufba.br', 'display_url': 'labhd.ufba.br', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1298687874112671751/1611266305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +44,Fri Apr 16 15:01:33 +0000 2021,1383073083033018371,1383073083033018371,"Les limites de l’Intelligence Artificielle en tant qu’écrivain (figures, styles, etc) https://t.co/zPiUL5A6GU… https://t.co/9hS049H1HU",True,"Twitter Web App",,,,,,,,,,False,3,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/zPiUL5A6GU', 'expanded_url': 'https://link.medium.com/qPrS827nvfb', 'display_url': 'link.medium.com/qPrS827nvfb', 'indices': [86, 109]}, {'url': 'https://t.co/9hS049H1HU', 'expanded_url': 'https://twitter.com/i/web/status/1383073083033018371', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,194202021,194202021,AI_AgrApHY,alagraphy,Next Expo GrandPalais Feb 2019,"I teach machines #art /w #AI. +PhD @informatics. Artist/Scientist Resident @IGCIENCIA. +Former Sr #DataScientist @FORTIA_S @SNIPS PostDoc @CNRS &🏆@SALON_AUTOMNE",https://t.co/sPE9ZfK9PZ,[],False,1896,230,136,Thu Sep 23 17:36:51 +0000 2010,569,,,True,False,4644,,False,False,False,000000,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,True,http://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,https://pbs.twimg.com/profile_images/1048886620479520769/_MgtchoA_normal.jpg,F0D7AD,000000,F0A1C7,850552,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/sPE9ZfK9PZ', 'expanded_url': 'http://Www.alagraphy.com', 'display_url': 'alagraphy.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/194202021/1540240391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +45,Fri Apr 16 14:34:14 +0000 2021,1383066207566319622,1383066207566319622,RT @mdrechsler: L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"Twitter Web App",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [68, 71]}, {'text': 'AI', 'indices': [72, 75]}, {'text': 'IntelligenceArtificielle', 'indices': [76, 101]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [102, 125]}]",fr,recent,297316043,297316043,Dr. de l'immatériel,RLDI_Lamy,,"Lionel Costes, +Rédacteur en chef +Directeur de collection +Lamy Droit de l’Immatériel",,[],False,12416,12170,5436,Thu May 12 09:31:33 +0000 2011,142517,,,True,False,265044,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1158421083646771200/6u9NT6Cp_normal.jpg,https://pbs.twimg.com/profile_images/1158421083646771200/6u9NT6Cp_normal.jpg,1B95E0,C0DEED,12B2FC,F5F3F0,False,False,False,False,False,False,False,none,Fri Apr 16 13:24:22 +0000 2021,1.3830486226951414e+18,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,6.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/297316043/1577867479,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +46,Fri Apr 16 14:24:41 +0000 2021,1383063802619510784,1383063802619510784,👉 #Twitter travaille sur une #IntelligenceArtificielle plus éthique et transparente afin d’améliorer ses… https://t.co/avugxXg0K9,True,"Twitter for iPhone",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Twitter', 'indices': [2, 10]}, {'text': 'IntelligenceArtificielle', 'indices': [29, 54]}]",[],[],"[{'url': 'https://t.co/avugxXg0K9', 'expanded_url': 'https://twitter.com/i/web/status/1383063802619510784', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [106, 129]}]",fr,recent,761620794,761620794,Carla Balembois,balembois_carla,Lille,Cheffe de projet - Chargée de référencement chez Agence Kaio/ Alumni @MBADMB à @EFAP_ #MBADMB #marketing #digital #communication #lille #retail #ecommerce,https://t.co/7v0u8q2jIX,[],False,615,836,9,Thu Aug 16 14:09:04 +0000 2012,2034,,,True,False,2271,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1273179933968420865/u5W8dduU_normal.jpg,https://pbs.twimg.com/profile_images/1273179933968420865/u5W8dduU_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/7v0u8q2jIX', 'expanded_url': 'https://www.linkedin.com/mwlite/in/carla-balembois', 'display_url': 'linkedin.com/mwlite/in/carl…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/761620794/1609758487,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +47,Fri Apr 16 14:17:24 +0000 2021,1383061971583561737,1383061971583561737,RT @mdrechsler: L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"TwinyBots",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [68, 71]}, {'text': 'AI', 'indices': [72, 75]}, {'text': 'IntelligenceArtificielle', 'indices': [76, 101]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [102, 125]}]",fr,recent,966889263655673858,966889263655673858,GalacticIAM👨🏾‍🚀𓂀❻❻▲⛤,ga7actic,5th dimension,Wasspopping!🤘🏾🧛🏾‍♂️🦇I ∆m a humb1e young man🙏🏾Positive vibes only魔法⁹⁹⁹△🕯🦉Backup-@ga7actic1 ✊🏾🌍🕊️(21(P1eiadian Starseed🛸🧝🏾‍♂️🖖🏾)𓂀 777☀️🧘🏾‍♂️🌙,https://t.co/UNHXs3Z6XQ,[],False,1701,1143,8,Fri Feb 23 04:15:39 +0000 2018,8232,,,True,False,17539,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1354447036070948873/6-kFrJO0_normal.jpg,https://pbs.twimg.com/profile_images/1354447036070948873/6-kFrJO0_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 13:24:22 +0000 2021,1.3830486226951414e+18,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,6.0,False,False,False,fr,False,"[{'url': 'https://t.co/UNHXs3Z6XQ', 'expanded_url': 'https://paper.li/ga7actic/1590961718', 'display_url': 'paper.li/ga7actic/15909…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/966889263655673858/1614010093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +48,Fri Apr 16 13:50:04 +0000 2021,1383055090865569798,1383055090865569798,RT @mdrechsler: L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"Twitter Web App",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [68, 71]}, {'text': 'AI', 'indices': [72, 75]}, {'text': 'IntelligenceArtificielle', 'indices': [76, 101]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [102, 125]}]",fr,recent,23070629,23070629,Emaux,Emaux,Paris (France),"Parce qu'Internet nous permet d'être pleinement citoyen, 7j/7 ou presque ;-) #numérique #migrations #droitsFondamentaux https://t.co/RSusOWuUGc",http://t.co/Hp0X6s1nO9,"[{'url': 'https://t.co/RSusOWuUGc', 'expanded_url': 'https://mamot.fr/@Emaux', 'display_url': 'mamot.fr/@Emaux', 'indices': [122, 145]}]",False,912,965,102,Fri Mar 06 14:42:21 +0000 2009,4943,,,False,False,29275,,False,False,False,709397,http://abs.twimg.com/images/themes/theme6/bg.gif,https://abs.twimg.com/images/themes/theme6/bg.gif,False,http://pbs.twimg.com/profile_images/1827817004/Emaux_Gravatar_normal.jpg,https://pbs.twimg.com/profile_images/1827817004/Emaux_Gravatar_normal.jpg,003C85,FFFFFF,AFC8E6,333333,True,False,False,False,False,False,False,none,Fri Apr 16 13:24:22 +0000 2021,1.3830486226951414e+18,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,6.0,False,False,False,fr,False,"[{'url': 'http://t.co/Hp0X6s1nO9', 'expanded_url': 'http://citoyennetenumerique.wordpress.com', 'display_url': 'citoyennetenumerique.wordpress.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/23070629/1398253984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +49,Fri Apr 16 13:42:53 +0000 2021,1383053282927591426,1383053282927591426,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,2325242618,2325242618,CommodAfrica,CommodAfrica,"Paris, France","Premier site d'informations et d'analyses sur l'agriculture, l'agrobusiness en Afrique de l'Ouest.",http://t.co/3vLTrXKDlh,[],False,2726,994,115,Mon Feb 03 10:31:41 +0000 2014,21,,,False,False,11463,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/575231504508309506/yxUaAsZk_normal.png,https://pbs.twimg.com/profile_images/575231504508309506/yxUaAsZk_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'http://t.co/3vLTrXKDlh', 'expanded_url': 'http://www.commodafrica.com', 'display_url': 'commodafrica.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/2325242618/1474922846,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +50,Fri Apr 16 13:25:45 +0000 2021,1383048971019563010,1383048971019563010,RT @mdrechsler: L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"Twitter Web App",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [68, 71]}, {'text': 'AI', 'indices': [72, 75]}, {'text': 'IntelligenceArtificielle', 'indices': [76, 101]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [102, 125]}]",fr,recent,1030703972091416577,1030703972091416577,Pierre-Alain,pierrealainvota,"Villeneuve-sur-Lot, France",,,[],False,376,543,6,Sat Aug 18 06:32:31 +0000 2018,1308,,,False,False,63269,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212828403033890816/egSaNkH7_normal.jpg,https://pbs.twimg.com/profile_images/1212828403033890816/egSaNkH7_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 13:24:22 +0000 2021,1.3830486226951414e+18,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,6.0,False,False,False,fr,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +51,Fri Apr 16 13:24:22 +0000 2021,1383048622695141377,1383048622695141377,L’IA risque-t-elle de renforcer la désinformation ? #IA #AI #IntelligenceArtificielle https://t.co/Tgdv8b80Lp,False,"Twitter Web App",,,,,,,,,,False,6,6,False,False,fr,"[{'text': 'IA', 'indices': [52, 55]}, {'text': 'AI', 'indices': [56, 59]}, {'text': 'IntelligenceArtificielle', 'indices': [60, 85]}]",[],[],"[{'url': 'https://t.co/Tgdv8b80Lp', 'expanded_url': 'http://www.cscience.ca/2021/04/16/comment-lia-risque-t-elle-de-renforcer-la-desinformation/', 'display_url': 'cscience.ca/2021/04/16/com…', 'indices': [86, 109]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199875,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +52,Fri Apr 16 12:47:35 +0000 2021,1383039367170646021,1383039367170646021,"#GAFAM et #Europe : #régulations et tensions vont redessiner le #digital dans tous les secteurs +via @Ingras01… https://t.co/WMSlUBtPAS",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'GAFAM', 'indices': [0, 6]}, {'text': 'Europe', 'indices': [10, 17]}, {'text': 'régulations', 'indices': [20, 32]}, {'text': 'digital', 'indices': [64, 72]}]",[],"[{'screen_name': 'Ingras01', 'name': 'Stephane Ingrassia', 'id': 2160857911, 'id_str': '2160857911', 'indices': [100, 109]}]","[{'url': 'https://t.co/WMSlUBtPAS', 'expanded_url': 'https://twitter.com/i/web/status/1383039367170646021', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +53,Fri Apr 16 12:41:44 +0000 2021,1383037895951450117,1383037895951450117,"RT @datawok: #Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/sTvf27FrJj + +- +#TimeSe…",False,"RT #MachineLearning",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Veille', 'indices': [13, 20]}, {'text': 'Datascience', 'indices': [21, 33]}, {'text': 'Data', 'indices': [71, 76]}]",[],"[{'screen_name': 'datawok', 'name': 'datawok', 'id': 1049641525750243328, 'id_str': '1049641525750243328', 'indices': [3, 11]}]","[{'url': 'https://t.co/sTvf27FrJj', 'expanded_url': 'https://buff.ly/3mP0qJG', 'display_url': 'buff.ly/3mP0qJG', 'indices': [105, 128]}]",fr,recent,1132890775891505152,1132890775891505152,Olivia,_OliviaBot,India,I retweet every mention of #MachineLearning Meet my humble daddy ❤ : @sankalp_saxena 😎,https://t.co/e6vNKXThrP,[],False,713,5,30,Mon May 27 06:06:23 +0000 2019,75,,,False,False,47887,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1159212500572753920/49WAfJuf_normal.jpg,https://pbs.twimg.com/profile_images/1159212500572753920/49WAfJuf_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Fri Apr 16 12:40:03 +0000 2021,1.3830374734885356e+18,1383037473488535553,"#Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/sTvf27FrJj… https://t.co/YTZYwVyidc",True,"[{'text': 'Veille', 'indices': [0, 7]}, {'text': 'Datascience', 'indices': [8, 20]}, {'text': 'Data', 'indices': [58, 63]}]",[],[],"[{'url': 'https://t.co/sTvf27FrJj', 'expanded_url': 'https://buff.ly/3mP0qJG', 'display_url': 'buff.ly/3mP0qJG', 'indices': [92, 115]}, {'url': 'https://t.co/YTZYwVyidc', 'expanded_url': 'https://twitter.com/i/web/status/1383037473488535553', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,1.0496415257502433e+18,1049641525750243328,datawok,datawok,Paris,"Datawok regroupe des talents en #DataScience & #DataEngineering et s'appuie sur le réseau d'experts du web @linkvalue +- +Partage de #veille #data #ML #AI #France",https://t.co/7Jt49LvB4p,"[{'url': 'https://t.co/7Jt49LvB4p', 'expanded_url': 'https://datawok.fr/', 'display_url': 'datawok.fr', 'indices': [0, 23]}]",[],False,141.0,137.0,4.0,Tue Oct 09 12:43:35 +0000 2018,184.0,,,False,False,157.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_banners/1049641525750243328/1560876116,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/e6vNKXThrP', 'expanded_url': 'http://sankalpsaxena.live', 'display_url': 'sankalpsaxena.live', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1132890775891505152/1558939931,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +54,Fri Apr 16 12:41:10 +0000 2021,1383037754729246724,1383037754729246724,"RT @datawok: #Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/sTvf27FrJj + +- +#TimeSe…",False,"Integromat",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Veille', 'indices': [13, 20]}, {'text': 'Datascience', 'indices': [21, 33]}, {'text': 'Data', 'indices': [71, 76]}]",[],"[{'screen_name': 'datawok', 'name': 'datawok', 'id': 1049641525750243328, 'id_str': '1049641525750243328', 'indices': [3, 11]}]","[{'url': 'https://t.co/sTvf27FrJj', 'expanded_url': 'https://buff.ly/3mP0qJG', 'display_url': 'buff.ly/3mP0qJG', 'indices': [105, 128]}]",fr,recent,1266004453011922945,1266004453011922945,LowCodeBot,LowCodeBot,Germany,I'm a bot managed by @LowCodeNinja and my purpose is to retweet every tweet that contains #lowcode,https://t.co/yUw9J6mtkZ,[],False,302,0,10,Thu May 28 13:52:45 +0000 2020,3,,,False,False,21459,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1266005073387294721/x8xHeMcu_normal.png,https://pbs.twimg.com/profile_images/1266005073387294721/x8xHeMcu_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 12:40:03 +0000 2021,1.3830374734885356e+18,1383037473488535553,"#Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/sTvf27FrJj… https://t.co/YTZYwVyidc",True,"[{'text': 'Veille', 'indices': [0, 7]}, {'text': 'Datascience', 'indices': [8, 20]}, {'text': 'Data', 'indices': [58, 63]}]",[],[],"[{'url': 'https://t.co/sTvf27FrJj', 'expanded_url': 'https://buff.ly/3mP0qJG', 'display_url': 'buff.ly/3mP0qJG', 'indices': [92, 115]}, {'url': 'https://t.co/YTZYwVyidc', 'expanded_url': 'https://twitter.com/i/web/status/1383037473488535553', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,1.0496415257502433e+18,1049641525750243328,datawok,datawok,Paris,"Datawok regroupe des talents en #DataScience & #DataEngineering et s'appuie sur le réseau d'experts du web @linkvalue +- +Partage de #veille #data #ML #AI #France",https://t.co/7Jt49LvB4p,"[{'url': 'https://t.co/7Jt49LvB4p', 'expanded_url': 'https://datawok.fr/', 'display_url': 'datawok.fr', 'indices': [0, 23]}]",[],False,141.0,137.0,4.0,Tue Oct 09 12:43:35 +0000 2018,184.0,,,False,False,157.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_banners/1049641525750243328/1560876116,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/yUw9J6mtkZ', 'expanded_url': 'https://low-code.ninja', 'display_url': 'low-code.ninja', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +55,Fri Apr 16 12:41:03 +0000 2021,1383037724945477632,1383037724945477632,"Intelligence artificielle : l’#Europe veut interdire la “#surveillance indiscriminée” +via @FleuryMischo +#éthique… https://t.co/3htTCrJdo4",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Europe', 'indices': [30, 37]}, {'text': 'surveillance', 'indices': [57, 70]}, {'text': 'éthique', 'indices': [105, 113]}]",[],"[{'screen_name': 'FleuryMischo', 'name': 'Mischo Fleury Sylvie', 'id': 1100068285217996803, 'id_str': '1100068285217996803', 'indices': [90, 103]}]","[{'url': 'https://t.co/3htTCrJdo4', 'expanded_url': 'https://twitter.com/i/web/status/1383037724945477632', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [115, 138]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +56,Fri Apr 16 12:40:03 +0000 2021,1383037473488535553,1383037473488535553,"#Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/sTvf27FrJj… https://t.co/YTZYwVyidc",True,"Buffer",,,,,,,,,,False,2,1,False,False,fr,"[{'text': 'Veille', 'indices': [0, 7]}, {'text': 'Datascience', 'indices': [8, 20]}, {'text': 'Data', 'indices': [58, 63]}]",[],[],"[{'url': 'https://t.co/sTvf27FrJj', 'expanded_url': 'https://buff.ly/3mP0qJG', 'display_url': 'buff.ly/3mP0qJG', 'indices': [92, 115]}, {'url': 'https://t.co/YTZYwVyidc', 'expanded_url': 'https://twitter.com/i/web/status/1383037473488535553', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1049641525750243328,1049641525750243328,datawok,datawok,Paris,"Datawok regroupe des talents en #DataScience & #DataEngineering et s'appuie sur le réseau d'experts du web @linkvalue +- +Partage de #veille #data #ML #AI #France",https://t.co/7Jt49LvB4p,[],False,141,137,4,Tue Oct 09 12:43:35 +0000 2018,184,,,False,False,157,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/7Jt49LvB4p', 'expanded_url': 'https://datawok.fr/', 'display_url': 'datawok.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1049641525750243328/1560876116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +57,Fri Apr 16 12:39:40 +0000 2021,1383037374163193856,1383037374163193856,"#Désinformation, haine : #Twitter veut des algorithmes plus #éthiques +via @ericdebray +#éthique #ia… https://t.co/Vz4dr6KDCw",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Désinformation', 'indices': [0, 15]}, {'text': 'Twitter', 'indices': [25, 33]}, {'text': 'éthiques', 'indices': [60, 69]}, {'text': 'éthique', 'indices': [87, 95]}, {'text': 'ia', 'indices': [96, 99]}]",[],"[{'screen_name': 'ericdebray', 'name': 'Eric Debray', 'id': 247315084, 'id_str': '247315084', 'indices': [74, 85]}]","[{'url': 'https://t.co/Vz4dr6KDCw', 'expanded_url': 'https://twitter.com/i/web/status/1383037374163193856', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [101, 124]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +58,Fri Apr 16 12:33:56 +0000 2021,1383035932685836288,1383035932685836288,[#IntelligenceArtificielle #IA] L’Université de Götenborg s’intéresse dans une étude à l’intelligence artificielle… https://t.co/ppCZsTzQSl,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}, {'text': 'IA', 'indices': [27, 30]}]",[],[],"[{'url': 'https://t.co/ppCZsTzQSl', 'expanded_url': 'https://twitter.com/i/web/status/1383035932685836288', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +59,Fri Apr 16 11:55:55 +0000 2021,1383026365805527040,1383026365805527040,"RT @datawok: #Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/YFymWg2aNn + +- +#TimeSe…",False,"AiSpaceBot",,,,,,,,,,False,4,0,False,False,fr,"[{'text': 'Veille', 'indices': [13, 20]}, {'text': 'Datascience', 'indices': [21, 33]}, {'text': 'Data', 'indices': [71, 76]}]",[],"[{'screen_name': 'datawok', 'name': 'datawok', 'id': 1049641525750243328, 'id_str': '1049641525750243328', 'indices': [3, 11]}]","[{'url': 'https://t.co/YFymWg2aNn', 'expanded_url': 'https://bit.ly/2Q3AQo2', 'display_url': 'bit.ly/2Q3AQo2', 'indices': [105, 128]}]",fr,recent,935446829730291717,935446829730291717,godfrey,godfrey_G_,"Johannesburg, South Africa","If our limited intelligence got us here imagine where unlimited A.I intelligence can take us. Hi Am GeE and am a God fearing, Space fanatic and an AI believer.",,[],False,1454,31,31,Tue Nov 28 09:54:38 +0000 2017,57374,,,False,False,195280,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1331728812300767233/vplJ5zhZ_normal.jpg,https://pbs.twimg.com/profile_images/1331728812300767233/vplJ5zhZ_normal.jpg,7FDBB6,000000,000000,000000,False,False,False,False,False,False,False,none,Fri Apr 09 14:01:00 +0000 2021,1.380521129576706e+18,1380521129576706057,"#Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/YFymWg2aNn… https://t.co/KWmwGUYozv",True,"[{'text': 'Veille', 'indices': [0, 7]}, {'text': 'Datascience', 'indices': [8, 20]}, {'text': 'Data', 'indices': [58, 63]}]",[],[],"[{'url': 'https://t.co/YFymWg2aNn', 'expanded_url': 'https://bit.ly/2Q3AQo2', 'display_url': 'bit.ly/2Q3AQo2', 'indices': [92, 115]}, {'url': 'https://t.co/KWmwGUYozv', 'expanded_url': 'https://twitter.com/i/web/status/1380521129576706057', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,1.0496415257502433e+18,1049641525750243328,datawok,datawok,Paris,"Datawok regroupe des talents en #DataScience & #DataEngineering et s'appuie sur le réseau d'experts du web @linkvalue +- +Partage de #veille #data #ML #AI #France",https://t.co/7Jt49LvB4p,"[{'url': 'https://t.co/7Jt49LvB4p', 'expanded_url': 'https://datawok.fr/', 'display_url': 'datawok.fr', 'indices': [0, 23]}]",[],False,141.0,137.0,4.0,Tue Oct 09 12:43:35 +0000 2018,184.0,,,False,False,157.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_banners/1049641525750243328/1560876116,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,4.0,1.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/935446829730291717/1540381509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +60,Fri Apr 16 11:50:59 +0000 2021,1383025123150663680,1383025123150663680,"RT @datawok: #Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/YFymWg2aNn + +- +#TimeSe…",False,"Twitter for Android",,,,,,,,,,False,4,0,False,False,fr,"[{'text': 'Veille', 'indices': [13, 20]}, {'text': 'Datascience', 'indices': [21, 33]}, {'text': 'Data', 'indices': [71, 76]}]",[],"[{'screen_name': 'datawok', 'name': 'datawok', 'id': 1049641525750243328, 'id_str': '1049641525750243328', 'indices': [3, 11]}]","[{'url': 'https://t.co/YFymWg2aNn', 'expanded_url': 'https://bit.ly/2Q3AQo2', 'display_url': 'bit.ly/2Q3AQo2', 'indices': [105, 128]}]",fr,recent,3072905932,3072905932,Thomas Cottinet,ThomasCOTTINET,"Taverny, France",#TechforGood #Ecolab #TransitionEcologique #data #GreenTech ex @LIBERTE_LL @DGTresor #CollTerr Elu à #Taverny #ValParisis #écologie #EELV #i4Emploi TweetsMyOwn,https://t.co/MhEBCrOCG7,[],False,10352,9848,1239,Thu Mar 05 17:21:20 +0000 2015,128252,,,False,False,30108,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1259908968924827650/4DyAeq3W_normal.jpg,https://pbs.twimg.com/profile_images/1259908968924827650/4DyAeq3W_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 09 14:01:00 +0000 2021,1.380521129576706e+18,1380521129576706057,"#Veille #Datascience I Retrouvez une sélection d'articles #Data partagés cette semaine 🔽 + +➡ https://t.co/YFymWg2aNn… https://t.co/KWmwGUYozv",True,"[{'text': 'Veille', 'indices': [0, 7]}, {'text': 'Datascience', 'indices': [8, 20]}, {'text': 'Data', 'indices': [58, 63]}]",[],[],"[{'url': 'https://t.co/YFymWg2aNn', 'expanded_url': 'https://bit.ly/2Q3AQo2', 'display_url': 'bit.ly/2Q3AQo2', 'indices': [92, 115]}, {'url': 'https://t.co/KWmwGUYozv', 'expanded_url': 'https://twitter.com/i/web/status/1380521129576706057', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,1.0496415257502433e+18,1049641525750243328,datawok,datawok,Paris,"Datawok regroupe des talents en #DataScience & #DataEngineering et s'appuie sur le réseau d'experts du web @linkvalue +- +Partage de #veille #data #ML #AI #France",https://t.co/7Jt49LvB4p,"[{'url': 'https://t.co/7Jt49LvB4p', 'expanded_url': 'https://datawok.fr/', 'display_url': 'datawok.fr', 'indices': [0, 23]}]",[],False,141.0,137.0,4.0,Tue Oct 09 12:43:35 +0000 2018,184.0,,,False,False,157.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_images/1141023340410392577/5S4ztmDd_normal.png,https://pbs.twimg.com/profile_banners/1049641525750243328/1560876116,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,4.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/MhEBCrOCG7', 'expanded_url': 'http://linkedin.com/in/thomascottinet', 'display_url': 'linkedin.com/in/thomascotti…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3072905932/1604763556,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +61,Fri Apr 16 11:46:03 +0000 2021,1383023880286183424,1383023880286183424,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,712245472530923521,712245472530923521,Frédérique MANCEAU,cdptln,"Toulon, France",ingénierie de projets,,[],False,30,199,1,Tue Mar 22 11:52:08 +0000 2016,90,,,False,False,164,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/855353615132880896/RicFITnn_normal.jpg,https://pbs.twimg.com/profile_images/855353615132880896/RicFITnn_normal.jpg,7FDBB6,000000,000000,000000,False,False,False,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/712245472530923521/1607335671,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +62,Fri Apr 16 11:43:19 +0000 2021,1383023195431788549,1383023195431788549,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,3000013528,3000013528,Expertise France,expertisefrance,"Paris, France","L'actualité d'Expertise France, l'agence publique 🇫🇷 de #coopération technique internationale. Pour un #MondeEnCommun.",https://t.co/Xd0uJXOx48,[],False,8093,1857,168,Mon Jan 26 17:15:19 +0000 2015,4102,,,True,False,7330,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1359131073062572034/i69ax8tP_normal.png,https://pbs.twimg.com/profile_images/1359131073062572034/i69ax8tP_normal.png,244892,000000,000000,000000,False,False,False,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/Xd0uJXOx48', 'expanded_url': 'http://www.expertisefrance.fr', 'display_url': 'expertisefrance.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3000013528/1615805902,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +63,Fri Apr 16 11:17:07 +0000 2021,1383016600207564800,1383016600207564800,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"TweetDeck",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,849328662,849328662,LNE,LNE_fr,Paris,"Le Laboratoire national de métrologie et d’essais au service de l’entreprise et de la société. #recherche, #métrologie, #essais, #certification, #formation.",http://t.co/TYNreYvlTZ,[],False,143,61,2,Thu Sep 27 14:16:07 +0000 2012,49,,,False,False,223,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1220699209793445888/UNrFwER1_normal.png,https://pbs.twimg.com/profile_images/1220699209793445888/UNrFwER1_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'http://t.co/TYNreYvlTZ', 'expanded_url': 'http://www.lne.fr', 'display_url': 'lne.fr', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/849328662/1579872347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +64,Fri Apr 16 10:36:30 +0000 2021,1383006380282494977,1383006380282494977,"RT @ActuIAFr: La Maison de l’Intelligence Artificielle (MIA) à Sophia Antipolis se dotera prochainement d’une plateforme de calcul. +https:/…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,230700047,230700047,Compere Philippe,Comperephil,"Namur, Belgique","Expert @adn_wallonie @digitalwallonia Broadband connectivity projects Giga Region , SmartRegion & https://t.co/6B3oripflR",https://t.co/zkw8TO6m3E,"[{'url': 'https://t.co/6B3oripflR', 'expanded_url': 'http://DigitalWallonia4.ai', 'display_url': 'DigitalWallonia4.ai', 'indices': [98, 121]}]",False,468,592,31,Sun Dec 26 11:36:06 +0000 2010,8894,,,True,False,5022,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/785847484761374720/DrLK64l2_normal.jpg,https://pbs.twimg.com/profile_images/785847484761374720/DrLK64l2_normal.jpg,19CF86,000000,000000,000000,False,True,False,False,False,False,False,none,Fri Apr 16 09:22:12 +0000 2021,1.3829876800368394e+18,1382987680036839429,La Maison de l’Intelligence Artificielle (MIA) à Sophia Antipolis se dotera prochainement d’une plateforme de calcu… https://t.co/XlPCQZqruo,True,[],[],[],"[{'url': 'https://t.co/XlPCQZqruo', 'expanded_url': 'https://twitter.com/i/web/status/1382987680036839429', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,4.0,False,False,False,fr,,"[{'url': 'https://t.co/zkw8TO6m3E', 'expanded_url': 'http://www.digitalwallonia.be', 'display_url': 'digitalwallonia.be', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/230700047/1594327408,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +65,Fri Apr 16 10:26:13 +0000 2021,1383003792115970048,1383003792115970048,"🔨🤖💻👨‍💻 « On peut décider de biaiser les règles, de biaiser les données, mais dans tous les cas, c'est nous qui déci… https://t.co/6wwA9UueU0",True,"AmazingContent",,,,,,,,,,False,0,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/6wwA9UueU0', 'expanded_url': 'https://twitter.com/i/web/status/1383003792115970048', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,56985269,56985269,Antoine Defosseux,AntoineDef,Paris,,,[],False,730,713,57,Wed Jul 15 10:49:33 +0000 2009,992,,,True,False,4294,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/996663603955630080/A-zMhWkP_normal.jpg,https://pbs.twimg.com/profile_images/996663603955630080/A-zMhWkP_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/56985269/1400750005,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +66,Fri Apr 16 09:54:18 +0000 2021,1382995758887141376,1382995758887141376,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,2386798764,2386798764,FRB,FRBiodiv,"Paris, France","Fondation pour la #recherche sur la #biodiversité #CESAB +/ Foundation for Research on #Biodiversity #CESAB Centre for the synthesis & analysis of biodiversity",https://t.co/50ahAwxOBo,[],False,5496,419,159,Thu Mar 13 11:10:54 +0000 2014,1408,,,True,False,2430,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/993426069402324992/EpfVHvdL_normal.jpg,https://pbs.twimg.com/profile_images/993426069402324992/EpfVHvdL_normal.jpg,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/50ahAwxOBo', 'expanded_url': 'http://www.fondationbiodiversite.fr', 'display_url': 'fondationbiodiversite.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2386798764/1610446950,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +67,Fri Apr 16 09:52:20 +0000 2021,1382995264072519684,1382995264072519684,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,140897183,140897183,Agence Française de #Développement (AFD) 🇫🇷,AFD_France,"Paris, France",Nous sommes la plus ancienne banque de développement au monde et engagés pour un #MondeEnCommun #SDGs #ODD @AFD_en @AFD_es | DG @RiouxRemy l #PartnerWithFrance,https://t.co/UR8Z2t7NAn,[],False,85619,2085,1072,Thu May 06 17:00:48 +0000 2010,21394,,,True,True,25951,,False,False,False,8DAD95,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/806555048616595457/AWgc810N_normal.jpg,https://pbs.twimg.com/profile_images/806555048616595457/AWgc810N_normal.jpg,4A913C,000000,8D0000,9B9138,True,True,False,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/UR8Z2t7NAn', 'expanded_url': 'https://www.afd.fr/fr', 'display_url': 'afd.fr/fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/140897183/1618297127,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +68,Fri Apr 16 09:48:05 +0000 2021,1382994194331996160,1382994194331996160,RT @AgenceRecherche: #Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biodiv…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'Webinaires', 'indices': [21, 32]}, {'text': 'ANR', 'indices': [35, 39]}, {'text': 'IA', 'indices': [128, 131]}]",[],"[{'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [3, 19]}, {'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [45, 56]}]",[],fr,recent,1367417141528526850,1367417141528526850,UCA Recherche,UCA_Recherche,"Clermont-Ferrand, France","Actualités Recherche et Valorisation de l'Université Clermont Auvergne @UCAuvergne +36 laboratoires - 5 écoles doctorales - 3 fédérations de recherche",https://t.co/b1tGzSVyPc,[],False,155,142,2,Thu Mar 04 10:10:37 +0000 2021,11,,,False,False,102,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1369278415573053447/dyr6LHRy_normal.jpg,https://pbs.twimg.com/profile_images/1369278415573053447/dyr6LHRy_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 08:56:39 +0000 2021,1.3829812510538424e+18,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,122070383.0,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",[],False,16551.0,627.0,399.0,Thu Mar 11 14:01:19 +0000 2010,743.0,,,False,False,4607.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_banners/122070383/1449851664,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/b1tGzSVyPc', 'expanded_url': 'https://drv.uca.fr/', 'display_url': 'drv.uca.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1367417141528526850/1615391451,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +69,Fri Apr 16 09:45:21 +0000 2021,1382993507476983808,1382993507476983808,"RT @ActuIAFr: La Maison de l’Intelligence Artificielle (MIA) à Sophia Antipolis se dotera prochainement d’une plateforme de calcul. +https:/…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,1319630982291533826,1319630982291533826,Maison de l'Intelligence Artificielle,Maison_IA,Sophia Antipolis,"Découvrir, comprendre et expérimenter les IA ! Un lieu public entièrement consacré à l'IA et ses applications pour permettre à chacun de s'en saisir !",https://t.co/b84A1BuxVf,[],False,388,49,8,Fri Oct 23 13:26:22 +0000 2020,78,,,False,False,80,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1331889331670294528/oM7gFCor_normal.jpg,https://pbs.twimg.com/profile_images/1331889331670294528/oM7gFCor_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 16 09:22:12 +0000 2021,1.3829876800368394e+18,1382987680036839429,La Maison de l’Intelligence Artificielle (MIA) à Sophia Antipolis se dotera prochainement d’une plateforme de calcu… https://t.co/XlPCQZqruo,True,[],[],[],"[{'url': 'https://t.co/XlPCQZqruo', 'expanded_url': 'https://twitter.com/i/web/status/1382987680036839429', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,4.0,False,False,False,fr,,"[{'url': 'https://t.co/b84A1BuxVf', 'expanded_url': 'http://maison-intelligence-artificielle.com/', 'display_url': 'maison-intelligence-artificielle.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1319630982291533826/1606382138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +70,Fri Apr 16 09:27:58 +0000 2021,1382989132595617792,1382989132595617792,"RT @CampusRegion: 🔎 #IntelligenceArtificielle : Et demain ? 👥 +Cette dernière vidéo de notre cycle #iA dresse les premiers éléments de répon…",False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [20, 45]}, {'text': 'iA', 'indices': [98, 101]}]",[],"[{'screen_name': 'CampusRegion', 'name': 'Campus Région du numérique', 'id': 879316492352966656, 'id_str': '879316492352966656', 'indices': [3, 16]}]",[],fr,recent,867388072761188352,867388072761188352,Orange Auv-Rh-Alpes,OrangeAuRA,Région Auvergne Rhône-Alpes,"Bienvenue sur le compte officiel d'Orange Auvergne-Rhône-Alpes. Suivez notre actualité en @AuvergneRhAlpes. Pour l’assistance, contactez @orange_conseil",https://t.co/bltRCSl8bN,[],False,8438,1596,30,Wed May 24 14:33:26 +0000 2017,4341,,,True,True,2879,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1148243651824410627/EdaJ9YhY_normal.png,https://pbs.twimg.com/profile_images/1148243651824410627/EdaJ9YhY_normal.png,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,Thu Apr 15 13:30:00 +0000 2021,1.3826876547942605e+18,1382687654794260482,"🔎 #IntelligenceArtificielle : Et demain ? 👥 +Cette dernière vidéo de notre cycle #iA dresse les premiers éléments de… https://t.co/3Mo5JmmFK6",True,"[{'text': 'IntelligenceArtificielle', 'indices': [2, 27]}, {'text': 'iA', 'indices': [80, 83]}]",[],[],"[{'url': 'https://t.co/3Mo5JmmFK6', 'expanded_url': 'https://twitter.com/i/web/status/1382687654794260482', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.793164923529667e+17,879316492352966656,Campus Région du numérique,CampusRegion,"Auvergne-Rhône-Alpes, France","+ qu'un lieu : 1 réseau de formations, de structures d'accompagnement, de fablabs & d'initiatives pour la #TransfoNum et l'#industriedufutur en @auvergnerhalpes",https://t.co/JKKXRf2WrB,"[{'url': 'https://t.co/JKKXRf2WrB', 'expanded_url': 'https://campusnumerique.auvergnerhonealpes.fr', 'display_url': 'campusnumerique.auvergnerhonealpes.fr', 'indices': [0, 23]}]",[],False,2067.0,509.0,27.0,Mon Jun 26 12:32:43 +0000 2017,1559.0,,,False,False,2597.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,https://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,https://pbs.twimg.com/profile_banners/879316492352966656/1617803945,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/bltRCSl8bN', 'expanded_url': 'http://service.orange.fr', 'display_url': 'service.orange.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/867388072761188352/1501842145,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +71,Fri Apr 16 09:22:12 +0000 2021,1382987680036839429,1382987680036839429,La Maison de l’Intelligence Artificielle (MIA) à Sophia Antipolis se dotera prochainement d’une plateforme de calcu… https://t.co/XlPCQZqruo,True,"Twitter Web App",,,,,,,,,,False,2,4,False,False,fr,[],[],[],"[{'url': 'https://t.co/XlPCQZqruo', 'expanded_url': 'https://twitter.com/i/web/status/1382987680036839429', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +72,Fri Apr 16 09:01:26 +0000 2021,1382982456794615808,1382982456794615808,"#Industrie [Contrôle qualité] : John Deere, en collaboration avec Intel, développe sa propre solution de détection… https://t.co/NsUWj16rug",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Industrie', 'indices': [0, 10]}]",[],[],"[{'url': 'https://t.co/NsUWj16rug', 'expanded_url': 'https://twitter.com/i/web/status/1382982456794615808', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +73,Fri Apr 16 08:56:39 +0000 2021,1382981251053842436,1382981251053842436,#Webinaires L’#ANR et l’@AFD_France organisent deux sessions d’information sur l’appel à projets Challenge #IA-Biod… https://t.co/FhSKMGrge1,True,"Twitter Web App",,,,,,,,,,False,8,6,False,False,fr,"[{'text': 'Webinaires', 'indices': [0, 11]}, {'text': 'ANR', 'indices': [14, 18]}, {'text': 'IA', 'indices': [107, 110]}]",[],"[{'screen_name': 'AFD_France', 'name': 'Agence Française de #Développement (AFD) 🇫🇷', 'id': 140897183, 'id_str': '140897183', 'indices': [24, 35]}]","[{'url': 'https://t.co/FhSKMGrge1', 'expanded_url': 'https://twitter.com/i/web/status/1382981251053842436', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,122070383,122070383,ANR,AgenceRecherche,"Paris, France",L’agence de financement de la recherche sur projets en France #ANR,https://t.co/5Nne7CLNpk,[],False,16551,627,399,Thu Mar 11 14:01:19 +0000 2010,743,,,False,False,4607,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,https://pbs.twimg.com/profile_images/908629587130830848/Ok-02IvC_normal.jpg,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/5Nne7CLNpk', 'expanded_url': 'http://www.anr.fr', 'display_url': 'anr.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/122070383/1449851664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +74,Fri Apr 16 07:31:43 +0000 2021,1382959875274248193,1382959875274248193,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,717208407678255105,717208407678255105,foxinthesnow,fox_in_thesnow,,,,[],False,18,196,0,Tue Apr 05 04:33:04 +0000 2016,498,,,False,False,815,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/919583325706162176/IY7htxm9_normal.jpg,https://pbs.twimg.com/profile_images/919583325706162176/IY7htxm9_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +75,Fri Apr 16 07:26:54 +0000 2021,1382958665653751811,1382958665653751811,🇫🇷 #IA : Nvidia passe des composants aux environnements - LeMagIT https://t.co/IToLWLP7BX ⬇️… https://t.co/A23Dgqnlnx,True,"IFTTT",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [3, 6]}]",[],[],"[{'url': 'https://t.co/IToLWLP7BX', 'expanded_url': 'https://bit.ly/3ts4G48', 'display_url': 'bit.ly/3ts4G48', 'indices': [66, 89]}, {'url': 'https://t.co/A23Dgqnlnx', 'expanded_url': 'https://twitter.com/i/web/status/1382958665653751811', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [94, 117]}]",fr,recent,2855732137,2855732137,Artificial Intelligence,AIVids,,,,[],False,2542,62,23,Tue Oct 14 15:26:44 +0000 2014,2,,,False,False,35128,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1124815603749904384/X0Ehn1Tx_normal.png,https://pbs.twimg.com/profile_images/1124815603749904384/X0Ehn1Tx_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/2855732137/1413378973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +76,Fri Apr 16 07:13:13 +0000 2021,1382955221551300610,1382955221551300610,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,1049747135623847937,1049747135623847937,DUCHANOIS Gwladys,DuchanoisG,"Besançon, France",Professeur de lettres-histoire en lycée professionnel. Jeune maman passionnée par son métier ! #classeflexible #sketchnote #softskills #coopération,https://t.co/2bDuk4Cqwg,[],False,2168,197,18,Tue Oct 09 19:43:15 +0000 2018,235633,,,False,False,16528,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1199814046184288256/T1mfi8zs_normal.jpg,https://pbs.twimg.com/profile_images/1199814046184288256/T1mfi8zs_normal.jpg,981CEB,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/2bDuk4Cqwg', 'expanded_url': 'http://chamboule-tout.fr/', 'display_url': 'chamboule-tout.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1049747135623847937/1617552983,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +77,Fri Apr 16 07:10:20 +0000 2021,1382954496410714115,1382954496410714115,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter Web App",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,811588225206775808,811588225206775808,TactileoEdu,TactileoEdu,"Le Puy-en-Velay, France",Tactileo solution de #digital #learning by @Maskott_Europe pour #apprendre partout tout le temps tout au long de la vie #EdTech #education #BRNEDU #Ress_Num,https://t.co/zMgrI0nYbf,[],False,1039,2568,35,Wed Dec 21 15:04:46 +0000 2016,1846,,,False,False,2200,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/811920910341042176/w-WdxL-q_normal.jpg,https://pbs.twimg.com/profile_images/811920910341042176/w-WdxL-q_normal.jpg,FF691F,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/zMgrI0nYbf', 'expanded_url': 'http://www.tactileo.com', 'display_url': 'tactileo.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/811588225206775808/1570093792,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +78,Fri Apr 16 06:49:31 +0000 2021,1382949256626110466,1382949256626110466,"RT @CahiersPedago: Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ranguis…",False,"Twitter for iPhone",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'CahiersPedago', 'name': 'Cahiers pédagogiques', 'id': 71620076, 'id_str': '71620076', 'indices': [3, 17]}]",[],fr,recent,1351909658882166784,1351909658882166784,Sylvain L.,SylvainLespina1,,,,[],False,6,51,0,Wed Jan 20 15:09:49 +0000 2021,80,,,False,False,51,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1351909950604382208/LQktJapt_normal.jpg,https://pbs.twimg.com/profile_images/1351909950604382208/LQktJapt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Thu Apr 15 16:09:32 +0000 2021,1.382727801825026e+18,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,71620076.0,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",[],False,46201.0,338.0,1071.0,Fri Sep 04 19:44:58 +0000 2009,3155.0,,,True,False,23387.0,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_banners/71620076/1508751746,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,False,6.0,12.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +79,Fri Apr 16 05:58:41 +0000 2021,1382936465680781312,1382936465680781312,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for iPad",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,2915147301,2915147301,DANE Nancy-Metz,dane_nancy_metz,"Nancy, France",Délégation académique au numérique éducatif (DANE) de l'@acnancymetz #ÉcoleNumérique #Ress_Num #pédagogie #coopération #EcoleInclusive #recherche #EdTech,https://t.co/0lf3GqAvte,[],False,4278,1471,106,Thu Dec 11 08:24:32 +0000 2014,5534,,,True,False,9346,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/969575268506656770/cWm8gSKz_normal.jpg,https://pbs.twimg.com/profile_images/969575268506656770/cWm8gSKz_normal.jpg,91D2FA,000000,000000,000000,False,False,False,False,False,False,False,regular,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/0lf3GqAvte', 'expanded_url': 'https://dane.ac-nancy-metz.fr', 'display_url': 'dane.ac-nancy-metz.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2915147301/1519999804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +80,Fri Apr 16 04:48:48 +0000 2021,1382918877684903938,1382918877684903938,"#IA #IntelligenceArtificielle +#IH #IntelligenceHumaine + +""Les #robots ne remplaceront pas le #conseiller_bancaire.""… https://t.co/zos0PCl8go",True,"Twitter for iPhone",,,,,,,,,,True,0,1,False,False,fr,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'IntelligenceArtificielle', 'indices': [4, 29]}, {'text': 'IH', 'indices': [30, 33]}, {'text': 'IntelligenceHumaine', 'indices': [34, 54]}, {'text': 'robots', 'indices': [62, 69]}, {'text': 'conseiller_bancaire', 'indices': [93, 113]}]",[],[],"[{'url': 'https://t.co/zos0PCl8go', 'expanded_url': 'https://twitter.com/i/web/status/1382918877684903938', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2810456302,2810456302,Hypo,hypo_ai,France,#Hypo - Faites une simulation de #crédit #immobilier avec un #chatbot ! Motorisé par les #API #Toaztr,https://t.co/eXOHlTWdFC,[],False,739,1765,111,Mon Oct 06 14:25:37 +0000 2014,6802,,,True,False,11146,,False,False,False,DD2E44,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/997486378618310658/cbWvSzpQ_normal.jpg,https://pbs.twimg.com/profile_images/997486378618310658/cbWvSzpQ_normal.jpg,1B95E0,000000,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/eXOHlTWdFC', 'expanded_url': 'https://www.hypo.ai/', 'display_url': 'hypo.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2810456302/1542459549,1.382584483598246e+18,1382584483598245888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Thu Apr 15 06:40:02 +0000 2021,1.382584483598246e+18,1382584483598245888,"Conseiller bancaire : un métier qui change avec la transformation digitale https://t.co/Ht5KG7tEaw +#TransfoNum… https://t.co/rEMocDNWSP",True,"[{'text': 'TransfoNum', 'indices': [99, 110]}]",[],[],"[{'url': 'https://t.co/Ht5KG7tEaw', 'expanded_url': 'https://buff.ly/2OJ5v9Q', 'display_url': 'buff.ly/2OJ5v9Q', 'indices': [75, 98]}, {'url': 'https://t.co/rEMocDNWSP', 'expanded_url': 'https://twitter.com/i/web/status/1382584483598245888', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,"Buffer",,,,,,7.99642199709352e+17,799642199709351937,H_Guyader,_gwydr,,Content Manager #innovation #DSI #Digital #programmatique #startups #webmarketing #Fintech #DigitalMarketing,https://t.co/O5TTZfHNi7,"[{'url': 'https://t.co/O5TTZfHNi7', 'expanded_url': 'http://www.evolution-transformation.fr/', 'display_url': 'evolution-transformation.fr', 'indices': [0, 23]}]",[],False,290.0,346.0,115.0,Fri Nov 18 15:55:31 +0000 2016,4613.0,,,False,False,5953.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/799643042030485504/TwlFuuDW_normal.jpg,https://pbs.twimg.com/profile_images/799643042030485504/TwlFuuDW_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,0.0,1.0,False,False,False,fr,https://pbs.twimg.com/profile_banners/799642199709351937/1479487152,, +81,Fri Apr 16 02:44:40 +0000 2021,1382887640224169987,1382887640224169987,"RT @__LENIA: #Europe : la commission européenne prévoit de réglementer l’utilisation des systèmes d’#IA à “haut risque” +via @Digitaltrans4m…",False,"Twitter for iPhone",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Europe', 'indices': [13, 20]}, {'text': 'IA', 'indices': [100, 103]}]",[],"[{'screen_name': '__LENIA', 'name': 'LEN.IA', 'id': 1225612353053564928, 'id_str': '1225612353053564928', 'indices': [3, 11]}]",[],fr,recent,1066768093,1066768093,Philippe Gendreau,ethiketmedias,Montréal (Québec),Enseignant #ÉducationAuxMédias / Maîtrise en communication: https://t.co/I0Bq0CGyo0 École des médias (UQAM),https://t.co/b9LRtsfb6s,"[{'url': 'https://t.co/I0Bq0CGyo0', 'expanded_url': 'http://www.archipel.uqam.ca/5523', 'display_url': 'archipel.uqam.ca/5523', 'indices': [60, 83]}]",False,808,1687,65,Sun Jan 06 21:32:51 +0000 2013,906,,,False,False,18505,,False,False,False,01070A,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/813761610942705664/l1ayv4bf_normal.jpg,https://pbs.twimg.com/profile_images/813761610942705664/l1ayv4bf_normal.jpg,FA0830,000000,DDEEF6,FA0844,True,False,False,False,False,False,False,none,Fri Apr 16 02:43:10 +0000 2021,1.382887261394645e+18,1382887261394644999,"#Europe : la commission européenne prévoit de réglementer l’utilisation des systèmes d’#IA à “haut risque” +via… https://t.co/2cP0evJUsP",True,"[{'text': 'Europe', 'indices': [0, 7]}, {'text': 'IA', 'indices': [87, 90]}]",[],[],"[{'url': 'https://t.co/2cP0evJUsP', 'expanded_url': 'https://twitter.com/i/web/status/1382887261394644999', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,"Twitter Web App",,,,,,1.225612353053565e+18,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",[],False,1120.0,2863.0,22.0,Fri Feb 07 02:49:47 +0000 2020,288.0,,,False,False,3112.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/b9LRtsfb6s', 'expanded_url': 'http://ethiquemedias.wordpress.com', 'display_url': 'ethiquemedias.wordpress.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1066768093/1602817375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +82,Fri Apr 16 02:43:10 +0000 2021,1382887261394644999,1382887261394644999,"#Europe : la commission européenne prévoit de réglementer l’utilisation des systèmes d’#IA à “haut risque” +via… https://t.co/2cP0evJUsP",True,"Twitter Web App",,,,,,,,,,False,2,1,False,False,fr,"[{'text': 'Europe', 'indices': [0, 7]}, {'text': 'IA', 'indices': [87, 90]}]",[],[],"[{'url': 'https://t.co/2cP0evJUsP', 'expanded_url': 'https://twitter.com/i/web/status/1382887261394644999', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +83,Fri Apr 16 02:41:22 +0000 2021,1382886808015474688,1382886808015474688,"L'IA : révolution ou véritable danger ? +via @Digitaltrans4mF +#éthique #numérique #ia #intelligenceartificielle… https://t.co/V7QWyZHTE6",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'éthique', 'indices': [62, 70]}, {'text': 'numérique', 'indices': [71, 81]}, {'text': 'ia', 'indices': [82, 85]}, {'text': 'intelligenceartificielle', 'indices': [86, 111]}]",[],"[{'screen_name': 'Digitaltrans4mF', 'name': 'DigitalTrans4m_FR', 'id': 1091350270209073154, 'id_str': '1091350270209073154', 'indices': [44, 60]}]","[{'url': 'https://t.co/V7QWyZHTE6', 'expanded_url': 'https://twitter.com/i/web/status/1382886808015474688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [113, 136]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +84,Fri Apr 16 01:45:12 +0000 2021,1382872671629803520,1382872671629803520,🌇#NightReplay [#IntelligenceArtificielle #IA] Twitter annonce des travaux visant à rendre ses algorithmes plus éthi… https://t.co/6sjCtEBMWC,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/6sjCtEBMWC', 'expanded_url': 'https://twitter.com/i/web/status/1382872671629803520', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +85,Thu Apr 15 22:49:12 +0000 2021,1382828382694428678,1382828382694428678,🌇#NightReplay [#IntelligenceArtificielle #IA] Espagne : le gouvernement investit 450 millions d’euros dans son prog… https://t.co/GVCk3q7kiJ,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/GVCk3q7kiJ', 'expanded_url': 'https://twitter.com/i/web/status/1382828382694428678', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +86,Thu Apr 15 22:24:06 +0000 2021,1382822064311128065,1382822064311128065,🌇#NightReplay [#IntelligenceArtificielle #IA] Europe : la commission européenne prévoit de réglementer l’utilisatio… https://t.co/7ffpvMzVgn,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/7ffpvMzVgn', 'expanded_url': 'https://twitter.com/i/web/status/1382822064311128065', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +87,Thu Apr 15 21:44:03 +0000 2021,1382811984270405633,1382811984270405633,🌇#NightReplay [#IntelligenceArtificielle #IA] Bilan : l’Ecole IA Microsoft By Simplon fête ses trois ans d’existenc… https://t.co/enMxbVcjdK,True,"Sociallymap",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/enMxbVcjdK', 'expanded_url': 'https://twitter.com/i/web/status/1382811984270405633', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +88,Thu Apr 15 20:33:34 +0000 2021,1382794248773337091,1382794248773337091,RT @DailyDigital: 🌇#NightReplay [#IntelligenceArtificielle #IA] La Poste acquiert OpenValue et inaugure un nouveau pôle data et intelligenc…,False,"Autism_twitter",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [19, 31]}, {'text': 'IntelligenceArtificielle', 'indices': [33, 58]}, {'text': 'IA', 'indices': [59, 62]}]",[],"[{'screen_name': 'DailyDigital', 'name': '✨Daily Digital', 'id': 3405442043, 'id_str': '3405442043', 'indices': [3, 16]}]",[],fr,recent,2358562603,2358562603,Andrew Morris,andrewmorrisuk,Bedford,Passionate about how IT solutions can bring positive value to our business and personal lives. Proud #autisticparent,,[],False,12965,971,320,Sun Feb 23 21:58:16 +0000 2014,3159,,,True,False,526318,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1138114915619749888/1e0u-1mE_normal.png,https://pbs.twimg.com/profile_images/1138114915619749888/1e0u-1mE_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 20:33:22 +0000 2021,1.38279419923021e+18,1382794199230210049,🌇#NightReplay [#IntelligenceArtificielle #IA] La Poste acquiert OpenValue et inaugure un nouveau pôle data et intel… https://t.co/COkMB4k798,True,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/COkMB4k798', 'expanded_url': 'https://twitter.com/i/web/status/1382794199230210049', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Sociallymap",,,,,,3405442043.0,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",[],False,13819.0,4530.0,1694.0,Thu Aug 06 10:15:10 +0000 2015,3840.0,,,False,False,134692.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_banners/3405442043/1585496890,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +89,Thu Apr 15 20:33:22 +0000 2021,1382794199230210049,1382794199230210049,🌇#NightReplay [#IntelligenceArtificielle #IA] La Poste acquiert OpenValue et inaugure un nouveau pôle data et intel… https://t.co/COkMB4k798,True,"Sociallymap",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/COkMB4k798', 'expanded_url': 'https://twitter.com/i/web/status/1382794199230210049', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +90,Thu Apr 15 19:00:07 +0000 2021,1382770731054940172,1382770731054940172,RT @Particeep: [#Analyse] - 🤔 Comment 🤖 l'#IntelligenceArtificielle impacte-t-elle l'univers de la 🪙 finance ? 📃 Analyse disponible sur not…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Analyse', 'indices': [16, 24]}, {'text': 'IntelligenceArtificielle', 'indices': [42, 67]}]",[],"[{'screen_name': 'Particeep', 'name': 'Particeep', 'id': 895545996, 'id_str': '895545996', 'indices': [3, 13]}]",[],fr,recent,2468856115,2468856115,Steve Fogue,SteveFogue,"Paris, France","CEO @Particeep, #saas solutions for online #financialservices distribution solution. Tweets on #openbanking #insurance #digitaltransformation #wealthmanagement",https://t.co/ZxYoSMGmPP,[],False,941,881,735,Tue Apr 29 06:27:46 +0000 2014,3480,,,False,False,20006,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1359238328185454592/lIEVtJ-b_normal.jpg,https://pbs.twimg.com/profile_images/1359238328185454592/lIEVtJ-b_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 10:01:49 +0000 2021,1.381548098128855e+18,1381548098128855040,[#Analyse] - 🤔 Comment 🤖 l'#IntelligenceArtificielle impacte-t-elle l'univers de la 🪙 finance ? 📃 Analyse disponibl… https://t.co/uBaqdxDIjE,True,"[{'text': 'Analyse', 'indices': [1, 9]}, {'text': 'IntelligenceArtificielle', 'indices': [27, 52]}]",[],[],"[{'url': 'https://t.co/uBaqdxDIjE', 'expanded_url': 'https://twitter.com/i/web/status/1381548098128855040', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,895545996.0,895545996,Particeep,Particeep,Paris,"🚀 #Fintech editing turnkey #financialservices distribution solutions for #banks, #insurers, #assetmanagers and #brokers. #api #openbanking #openinsurance",https://t.co/l4LKGQAk77,"[{'url': 'https://t.co/l4LKGQAk77', 'expanded_url': 'https://www.particeep.com/?utm_source=twitter', 'display_url': 'particeep.com/?utm_source=tw…', 'indices': [0, 23]}]",[],False,2112.0,988.0,733.0,Sun Oct 21 15:16:09 +0000 2012,2262.0,,,True,False,16028.0,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1280474917289558016/7hxvEOcn_normal.jpg,https://pbs.twimg.com/profile_images/1280474917289558016/7hxvEOcn_normal.jpg,https://pbs.twimg.com/profile_banners/895545996/1594198028,EF5447,FFFFFF,DDEEF6,333333,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/ZxYoSMGmPP', 'expanded_url': 'https://www.particeep.com/fr', 'display_url': 'particeep.com/fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2468856115/1593453196,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +91,Thu Apr 15 18:25:41 +0000 2021,1382762063248949248,1382762063248949248,RT @DgReai: Bravo à notre membre Centre de robotique et de Vision Industrielles Inc. (CRVI) pour son accompagnement dans le développement d…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'DgReai', 'name': 'REAI USINE BLEUE', 'id': 1352666906797465601, 'id_str': '1352666906797465601', 'indices': [3, 10]}]",[],fr,recent,1249711058455080960,1249711058455080960,Groupe Lakhos,GroupeLakhos,Montréal,"Firme numérique dédiée à l'industrie manufacturière. Nous modernisons l'expérience client #CX en alignant les équipes #marketing, #vente et #service.",https://t.co/WjxrBuxYyh,[],False,29,176,0,Mon Apr 13 14:48:38 +0000 2020,143,,,False,False,94,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1271186450667757568/1ltdMGaK_normal.jpg,https://pbs.twimg.com/profile_images/1271186450667757568/1ltdMGaK_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 18:11:55 +0000 2021,1.3827586027048878e+18,1382758602704887813,Bravo à notre membre Centre de robotique et de Vision Industrielles Inc. (CRVI) pour son accompagnement dans le dév… https://t.co/CGEzUDb1xX,True,[],[],[],"[{'url': 'https://t.co/CGEzUDb1xX', 'expanded_url': 'https://twitter.com/i/web/status/1382758602704887813', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"HubSpot",,,,,,1.3526669067974656e+18,1352666906797465601,REAI USINE BLEUE,DgReai,,Le REAI représente l’industrie québécoise de l’automatisation et du 4.0 pour promouvoir le savoir-faire d’ici et l’expertise de ses membres via son Usine Bleue.,https://t.co/yFUmjWL24Q,"[{'url': 'https://t.co/yFUmjWL24Q', 'expanded_url': 'http://www.reai.ca', 'display_url': 'reai.ca', 'indices': [0, 23]}]",[],False,4.0,93.0,0.0,Fri Jan 22 17:18:28 +0000 2021,6.0,,,False,False,117.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1352667147177222146/ckAouAC__normal.jpg,https://pbs.twimg.com/profile_images/1352667147177222146/ckAouAC__normal.jpg,https://pbs.twimg.com/profile_banners/1352666906797465601/1613760889,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,False,"[{'url': 'https://t.co/WjxrBuxYyh', 'expanded_url': 'http://lakhos.com', 'display_url': 'lakhos.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1249711058455080960/1618412944,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +92,Thu Apr 15 18:11:55 +0000 2021,1382758602704887813,1382758602704887813,Bravo à notre membre Centre de robotique et de Vision Industrielles Inc. (CRVI) pour son accompagnement dans le dév… https://t.co/CGEzUDb1xX,True,"HubSpot",,,,,,,,,,False,1,2,False,False,fr,[],[],[],"[{'url': 'https://t.co/CGEzUDb1xX', 'expanded_url': 'https://twitter.com/i/web/status/1382758602704887813', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1352666906797465601,1352666906797465601,REAI USINE BLEUE,DgReai,,Le REAI représente l’industrie québécoise de l’automatisation et du 4.0 pour promouvoir le savoir-faire d’ici et l’expertise de ses membres via son Usine Bleue.,https://t.co/yFUmjWL24Q,[],False,4,93,0,Fri Jan 22 17:18:28 +0000 2021,6,,,False,False,117,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1352667147177222146/ckAouAC__normal.jpg,https://pbs.twimg.com/profile_images/1352667147177222146/ckAouAC__normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/yFUmjWL24Q', 'expanded_url': 'http://www.reai.ca', 'display_url': 'reai.ca', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1352666906797465601/1613760889,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +93,Thu Apr 15 18:08:29 +0000 2021,1382757738208448514,1382757738208448514,"RT @CahiersPedago: Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ranguis…",False,"Twitter for iPhone",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'CahiersPedago', 'name': 'Cahiers pédagogiques', 'id': 71620076, 'id_str': '71620076', 'indices': [3, 17]}]",[],fr,recent,1381595477330821123,1381595477330821123,Julie LCC,JLECLEACHCAMIER,,"Personnel de Direction, Ministère de l'Education Nationale. Proviseur Adjoint lycée E. ROSTAND, SOA (95)",,[],False,11,26,0,Mon Apr 12 13:10:20 +0000 2021,5,,,False,False,33,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1381599384274632706/ikXrA9Uh_normal.jpg,https://pbs.twimg.com/profile_images/1381599384274632706/ikXrA9Uh_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Thu Apr 15 16:09:32 +0000 2021,1.382727801825026e+18,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,71620076.0,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",[],False,46201.0,338.0,1071.0,Fri Sep 04 19:44:58 +0000 2009,3155.0,,,True,False,23387.0,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_banners/71620076/1508751746,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,False,6.0,12.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +94,Thu Apr 15 17:24:51 +0000 2021,1382746755368951810,1382746755368951810,"RT @CahiersPedago: Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ranguis…",False,"Twitter for Android",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'CahiersPedago', 'name': 'Cahiers pédagogiques', 'id': 71620076, 'id_str': '71620076', 'indices': [3, 17]}]",[],fr,recent,4924678317,4924678317,Libbrecht Angélique,angeliquelibbr2,,Instit' en 2e primaire (ce1)et maître de formation pratique #ceintures de compétences #pédagogies coopératives#plan de travail#autonomie @CahiersPedago @crap_be,https://t.co/WZ8mjLDdYU,[],False,610,521,1,Wed Feb 17 18:22:16 +0000 2016,4528,,,False,False,2723,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/838852474635190272/LLugL6sb_normal.jpg,https://pbs.twimg.com/profile_images/838852474635190272/LLugL6sb_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 16:09:32 +0000 2021,1.382727801825026e+18,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,71620076.0,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",[],False,46201.0,338.0,1071.0,Fri Sep 04 19:44:58 +0000 2009,3155.0,,,True,False,23387.0,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_banners/71620076/1508751746,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,False,6.0,12.0,False,False,False,fr,,"[{'url': 'https://t.co/WZ8mjLDdYU', 'expanded_url': 'http://www.leprof.be', 'display_url': 'leprof.be', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/4924678317/1577128583,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +95,Thu Apr 15 16:49:38 +0000 2021,1382737893492465669,1382737893492465669,"RT @CahiersPedago: Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ranguis…",False,"Twitter for Android",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'CahiersPedago', 'name': 'Cahiers pédagogiques', 'id': 71620076, 'id_str': '71620076', 'indices': [3, 17]}]",[],fr,recent,1311009558085742595,1311009558085742595,Lettres histoire géographie académie de Besançon,lhgbesancon,Besançon,"Actualité du site académique de lettres-histoire géographie EMC de Besançon +#transformationdelavoieprofessionnelle #bacpro #CAP #BMA",https://t.co/4sWcmK5JJW,[],False,145,48,3,Tue Sep 29 18:30:22 +0000 2020,7980,,,False,False,2082,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,True,False,False,False,none,Thu Apr 15 16:09:32 +0000 2021,1.382727801825026e+18,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,71620076.0,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",[],False,46201.0,338.0,1071.0,Fri Sep 04 19:44:58 +0000 2009,3155.0,,,True,False,23387.0,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_banners/71620076/1508751746,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,False,6.0,12.0,False,False,False,fr,,"[{'url': 'https://t.co/4sWcmK5JJW', 'expanded_url': 'http://lettres-histoire-geographie.ac-besancon.fr/', 'display_url': '…es-histoire-geographie.ac-besancon.fr', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +96,Thu Apr 15 16:12:44 +0000 2021,1382728606493908994,1382728606493908994,"RT @CahiersPedago: Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ranguis…",False,"Twitter Web App",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'CahiersPedago', 'name': 'Cahiers pédagogiques', 'id': 71620076, 'id_str': '71620076', 'indices': [3, 17]}]",[],fr,recent,14278166,14278166,Margarida ROMERO #creacube,margaridaromero,"Nice, France",🤓 Dir. Laboratoire d'Innovation et Numérique pour l'Education @fabLINE06 @Inspe_Nice @uca_research @CreaSmartEdTech #CreaMaker @lets_steam_eu #5c21 @scol_ia,https://t.co/nF3oyGy9O5,[],False,6500,5049,320,Tue Apr 01 21:18:23 +0000 2008,12740,,,True,False,10688,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1296493858851889154/fEF3hCXR_normal.jpg,https://pbs.twimg.com/profile_images/1296493858851889154/fEF3hCXR_normal.jpg,1295CC,181A1E,252429,666666,True,False,False,False,False,False,False,none,Thu Apr 15 16:09:32 +0000 2021,1.382727801825026e+18,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,71620076.0,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",[],False,46201.0,338.0,1071.0,Fri Sep 04 19:44:58 +0000 2009,3155.0,,,True,False,23387.0,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_banners/71620076/1508751746,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,False,6.0,12.0,False,False,False,fr,,"[{'url': 'https://t.co/nF3oyGy9O5', 'expanded_url': 'https://margaridaromero.me/', 'display_url': 'margaridaromero.me', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/14278166/1477361016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +97,Thu Apr 15 16:12:24 +0000 2021,1382728524755255297,1382728524755255297,"RT @CahiersPedago: Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ranguis…",False,"TweetDeck",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'CahiersPedago', 'name': 'Cahiers pédagogiques', 'id': 71620076, 'id_str': '71620076', 'indices': [3, 17]}]",[],fr,recent,1080099913,1080099913,Cécile B.,CecileBlan,Paris,Rédac chef aux @CahiersPedago et pilier de bar dans @LeBarCommun mais mes tweets n'engagent ni les pédagos ni les buveurs de bière.,,[],False,1460,947,66,Fri Jan 11 15:49:11 +0000 2013,32082,,,True,False,22731,,False,False,False,C6E2EE,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/3095998572/297dfc583e328880d01cc63522799d91_normal.jpeg,https://pbs.twimg.com/profile_images/3095998572/297dfc583e328880d01cc63522799d91_normal.jpeg,4A913C,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Thu Apr 15 16:09:32 +0000 2021,1.382727801825026e+18,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,71620076.0,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",[],False,46201.0,338.0,1071.0,Fri Sep 04 19:44:58 +0000 2009,3155.0,,,True,False,23387.0,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_banners/71620076/1508751746,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,False,6.0,12.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1080099913/1508440137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +98,Thu Apr 15 16:09:32 +0000 2021,1382727801825026053,1382727801825026053,"Dans notre n°568 : Évaluer avec l’intelligence artificielle, par +Cécile Barbachoux, Joseph Kouneiher et Jeremy Ran… https://t.co/CD90G8Ypa5",True,"TweetDeck",,,,,,,,,,False,6,12,False,False,fr,[],[],[],"[{'url': 'https://t.co/CD90G8Ypa5', 'expanded_url': 'https://twitter.com/i/web/status/1382727801825026053', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,71620076,71620076,Cahiers pédagogiques,CahiersPedago,Paris,"Youtube: CRAP Cahiers Pédagogiques + +Instagram: crapcahierspedagogiques + +Facebook: CahiersPedago",http://t.co/wCLM73kKmE,[],False,46201,338,1071,Fri Sep 04 19:44:58 +0000 2009,3155,,,True,False,23387,,False,False,False,FCF9F9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,https://pbs.twimg.com/profile_images/1216707331892879360/xfgme5O0_normal.jpg,FF691F,BDDCAD,DDFFCC,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'http://t.co/wCLM73kKmE', 'expanded_url': 'http://www.cahiers-pedagogiques.com', 'display_url': 'cahiers-pedagogiques.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/71620076/1508751746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +99,Thu Apr 15 15:39:32 +0000 2021,1382720253973700608,1382720253973700608,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter for iPhone",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,419502542,419502542,Eric TIXADOR,EricTIXADOR,France - Occitanie,Social Media Manager at @ModisFrance | Passionné par: #IntelligenceArtificielle #TransfoNum #MachineLearning #IoT #AI #Blockchain #cybersecurity #FormulaE,https://t.co/W8NUa7vYGZ,[],False,3252,2425,2318,Wed Nov 23 12:40:37 +0000 2011,10265,,,True,False,17676,,False,False,False,000000,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1164981855336181760/KJKPNbrv_normal.jpg,https://pbs.twimg.com/profile_images/1164981855336181760/KJKPNbrv_normal.jpg,3B94D9,000000,000000,000000,False,True,False,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,"[{'url': 'https://t.co/W8NUa7vYGZ', 'expanded_url': 'http://linkd.in/1pBzDOD', 'display_url': 'linkd.in/1pBzDOD', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/419502542/1603117388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +100,Thu Apr 15 15:29:57 +0000 2021,1382717840185298946,1382717840185298946,Notre #formation Acculturation #DataScience et #IA est en ligne ! Une semaine de formation pour découvrir les métie… https://t.co/Z64P63ywIf,True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'formation', 'indices': [6, 16]}, {'text': 'DataScience', 'indices': [31, 43]}, {'text': 'IA', 'indices': [47, 50]}]",[],[],"[{'url': 'https://t.co/Z64P63ywIf', 'expanded_url': 'https://twitter.com/i/web/status/1382717840185298946', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1098894187003559937,1098894187003559937,DATAROCKSTARS,DataRockstarsFR,Paris,"Formations en Big Data, Data Science et Intelligence Artificielle ! +#datarockstars + +🤟 En savoir plus : https://t.co/rLrbFjvSFz !",https://t.co/tyfgrDHSRW,"[{'url': 'https://t.co/rLrbFjvSFz', 'expanded_url': 'http://datarockstars.ai', 'display_url': 'datarockstars.ai', 'indices': [106, 129]}]",False,26,150,0,Fri Feb 22 10:36:05 +0000 2019,106,,,False,False,36,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1145256228156784641/jcZvxdjV_normal.jpg,https://pbs.twimg.com/profile_images/1145256228156784641/jcZvxdjV_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/tyfgrDHSRW', 'expanded_url': 'https://www.datarockstars.ai', 'display_url': 'datarockstars.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1098894187003559937/1557505982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +101,Thu Apr 15 15:29:02 +0000 2021,1382717607783100416,1382717607783100416,Notre #formation Acculturation #DataScience et #IA est en ligne ! Une semaine de formation pour découvrir les métie… https://t.co/EjbHqjC5RP,True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'formation', 'indices': [6, 16]}, {'text': 'DataScience', 'indices': [31, 43]}, {'text': 'IA', 'indices': [47, 50]}]",[],[],"[{'url': 'https://t.co/EjbHqjC5RP', 'expanded_url': 'https://twitter.com/i/web/status/1382717607783100416', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,743883893334507520,743883893334507520,Nounero,Pentium002,,,,[],False,0,4,0,Fri Jun 17 19:11:55 +0000 2016,1,,,False,False,133,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,True,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +102,Thu Apr 15 14:57:03 +0000 2021,1382709561187049475,1382709561187049475,[#IntelligenceArtificielle #IA] Espagne : le gouvernement investit 450 millions d’euros dans son programme national… https://t.co/oNtz9xKNP6,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}, {'text': 'IA', 'indices': [27, 30]}]",[],[],"[{'url': 'https://t.co/oNtz9xKNP6', 'expanded_url': 'https://twitter.com/i/web/status/1382709561187049475', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +103,Thu Apr 15 14:44:16 +0000 2021,1382706343086333964,1382706343086333964,"Colloque : ""Intelligence artificielle et droit des contrats @Courdecassation https://t.co/yBcVZJCYwa #IA #contrat #IntelligenceArtificielle",False,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [102, 105]}, {'text': 'contrat', 'indices': [106, 114]}, {'text': 'IntelligenceArtificielle', 'indices': [115, 140]}]",[],"[{'screen_name': 'Courdecassation', 'name': 'Cour de cassation', 'id': 305116699, 'id_str': '305116699', 'indices': [60, 76]}]","[{'url': 'https://t.co/yBcVZJCYwa', 'expanded_url': 'https://www.courdecassation.fr/venements_23/direct_live_stream_cour_8440/suivre_direct_38041.html', 'display_url': 'courdecassation.fr/venements_23/d…', 'indices': [78, 101]}]",fr,recent,191197287,191197287,Pascal Mendak,PascalMendak,Paris,"Directeur conseil @eliottMarkus - Directeur Legal'Dev, #avocat #notaire #legaltech #droit #finance #communication #stratégie #branding, membre @CometEntreprise",,[],False,2354,3133,163,Wed Sep 15 21:01:35 +0000 2010,1843,,,True,False,9004,,False,False,False,709397,http://abs.twimg.com/images/themes/theme6/bg.gif,https://abs.twimg.com/images/themes/theme6/bg.gif,True,http://pbs.twimg.com/profile_images/580994394339311616/umTEKOfy_normal.jpg,https://pbs.twimg.com/profile_images/580994394339311616/umTEKOfy_normal.jpg,ABB8C2,86A4A6,A0C5C7,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/191197287/1553518317,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +104,Thu Apr 15 13:39:20 +0000 2021,1382690001155133440,1382690001155133440,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"Twitter for iPad",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,1125768581025882112,1125768581025882112,Guillaume ANCEL 🧩,GuillaumeANCEL1,,"Directeur de la communication @AgircArrco, compte pro, #protectionsociale #retraite #paritarisme #transformation #intelligencecollective #digital #rse",https://t.co/uLknjbRMVo,[],False,850,987,5,Tue May 07 14:25:20 +0000 2019,1986,,,False,False,828,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1202532167827558401/sja9Q8b1_normal.jpg,https://pbs.twimg.com/profile_images/1202532167827558401/sja9Q8b1_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,"[{'url': 'https://t.co/uLknjbRMVo', 'expanded_url': 'https://www.agirc-arrco.fr', 'display_url': 'agirc-arrco.fr', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +105,Thu Apr 15 13:35:05 +0000 2021,1382688934510088193,1382688934510088193,"RT @CESIingenieurs: 👉 Un ingénieur a mis au point un assistant visuel doté d'intelligence artificielle, capable de détecter des objets, des…",False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'CESIingenieurs', 'name': 'CESI École d’Ingénieurs', 'id': 37870585, 'id_str': '37870585', 'indices': [3, 18]}]",[],fr,recent,2381797483,2381797483,CESI Ouest,CesiOuest,,CESI Ouest vous accueille dans ses 6 campus: #Angouleme #Brest #LaRochelle #LeMans #Nantes #StNazaire,https://t.co/aChKK1LZxB,[],False,780,408,62,Mon Mar 10 08:33:48 +0000 2014,1400,,,True,False,2291,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1064469142672154624/9l9fmiik_normal.jpg,https://pbs.twimg.com/profile_images/1064469142672154624/9l9fmiik_normal.jpg,FFC845,FFFFFF,DDEEF6,333333,False,False,False,False,False,False,False,none,Thu Apr 15 13:25:02 +0000 2021,1.382686403713192e+18,1382686403713191938,"👉 Un ingénieur a mis au point un assistant visuel doté d'intelligence artificielle, capable de détecter des objets,… https://t.co/OvSRWkB6tm",True,[],[],[],"[{'url': 'https://t.co/OvSRWkB6tm', 'expanded_url': 'https://twitter.com/i/web/status/1382686403713191938', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,37870585.0,37870585,CESI École d’Ingénieurs,CESIingenieurs,France,"Fruit du rapprochement de l’ei.CESI et de l’exia.CESI, CESI École d’Ingénieurs vous permet de construire un parcours personnalisé dont vous êtes acteur.",https://t.co/QnNg1Herqk,"[{'url': 'https://t.co/QnNg1Herqk', 'expanded_url': 'https://ecole-ingenieurs.cesi.fr/', 'display_url': 'ecole-ingenieurs.cesi.fr', 'indices': [0, 23]}]",[],False,1966.0,360.0,115.0,Tue May 05 06:11:50 +0000 2009,2063.0,,,True,False,6066.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1064417447367839744/ixDDytH3_normal.jpg,https://pbs.twimg.com/profile_images/1064417447367839744/ixDDytH3_normal.jpg,https://pbs.twimg.com/profile_banners/37870585/1618386208,5C88DA,FFFFFF,AEAFB2,E11B22,True,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/aChKK1LZxB', 'expanded_url': 'https://www.cesi.fr', 'display_url': 'cesi.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2381797483/1618322021,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +106,Thu Apr 15 13:30:00 +0000 2021,1382687654794260482,1382687654794260482,"🔎 #IntelligenceArtificielle : Et demain ? 👥 +Cette dernière vidéo de notre cycle #iA dresse les premiers éléments de… https://t.co/3Mo5JmmFK6",True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [2, 27]}, {'text': 'iA', 'indices': [80, 83]}]",[],[],"[{'url': 'https://t.co/3Mo5JmmFK6', 'expanded_url': 'https://twitter.com/i/web/status/1382687654794260482', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,879316492352966656,879316492352966656,Campus Région du numérique,CampusRegion,"Auvergne-Rhône-Alpes, France","+ qu'un lieu : 1 réseau de formations, de structures d'accompagnement, de fablabs & d'initiatives pour la #TransfoNum et l'#industriedufutur en @auvergnerhalpes",https://t.co/JKKXRf2WrB,[],False,2067,509,27,Mon Jun 26 12:32:43 +0000 2017,1559,,,False,False,2597,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,https://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/JKKXRf2WrB', 'expanded_url': 'https://campusnumerique.auvergnerhonealpes.fr', 'display_url': 'campusnumerique.auvergnerhonealpes.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/879316492352966656/1617803945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +107,Thu Apr 15 13:25:02 +0000 2021,1382686403713191938,1382686403713191938,"👉 Un ingénieur a mis au point un assistant visuel doté d'intelligence artificielle, capable de détecter des objets,… https://t.co/OvSRWkB6tm",True,"Hootsuite Inc.",,,,,,,,,,False,1,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/OvSRWkB6tm', 'expanded_url': 'https://twitter.com/i/web/status/1382686403713191938', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,37870585,37870585,CESI École d’Ingénieurs,CESIingenieurs,France,"Fruit du rapprochement de l’ei.CESI et de l’exia.CESI, CESI École d’Ingénieurs vous permet de construire un parcours personnalisé dont vous êtes acteur.",https://t.co/QnNg1Herqk,[],False,1966,360,115,Tue May 05 06:11:50 +0000 2009,2063,,,True,False,6066,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1064417447367839744/ixDDytH3_normal.jpg,https://pbs.twimg.com/profile_images/1064417447367839744/ixDDytH3_normal.jpg,5C88DA,FFFFFF,AEAFB2,E11B22,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/QnNg1Herqk', 'expanded_url': 'https://ecole-ingenieurs.cesi.fr/', 'display_url': 'ecole-ingenieurs.cesi.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/37870585/1618386208,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +108,Thu Apr 15 12:47:40 +0000 2021,1382676999865577487,1382676999865577487,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,1014847731075092485,1014847731075092485,@CGenialParis,cgenialparis,"Paris, France","Twitts par Th. Plisson, prof Phy-Chimie Informatique, co_responsable du FabLab Paul Valéry - Paris12. +Prof. référent CGénial Paris",https://t.co/cA6JUDnNLM,[],False,361,404,2,Thu Jul 05 12:25:28 +0000 2018,8523,,,True,False,13486,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1130522478210633729/ljcr6B5H_normal.jpg,https://pbs.twimg.com/profile_images/1130522478210633729/ljcr6B5H_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,"[{'url': 'https://t.co/cA6JUDnNLM', 'expanded_url': 'http://fablab-pv.fr', 'display_url': 'fablab-pv.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1014847731075092485/1540486335,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +109,Thu Apr 15 12:41:43 +0000 2021,1382675501366542336,1382675501366542336,"RT @tawhidChtioui: ⚡️L’Intelligence Artificielle peut-elle aider les enseignes à sortir de la crise ? +➡️L’IA, puissant révélateur des atte…",False,"Twitter for Android",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'tawhidChtioui', 'name': 'Tawhid CHTIOUI', 'id': 1175649522, 'id_str': '1175649522', 'indices': [3, 17]}]",[],fr,recent,298586285,298586285,André HOT,HotLikeng,"Douala, Cameroun","Directeur du Développement Afrique Centrale et de l'Ouest @aivancityschool +E-ambassadeur @campusfrance #EtudesEnFrance #Highereducation #IA +#Orientation",,[],False,966,1591,31,Sat May 14 15:37:49 +0000 2011,2691,,,True,False,3038,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1366142013964484609/0jYZQXFs_normal.jpg,https://pbs.twimg.com/profile_images/1366142013964484609/0jYZQXFs_normal.jpg,0084B4,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,Thu Apr 15 12:26:00 +0000 2021,1.382671547140309e+18,1382671547140308992,"⚡️L’Intelligence Artificielle peut-elle aider les enseignes à sortir de la crise ? +➡️L’IA, puissant révélateur des… https://t.co/LmHIGLoI2d",True,[],[],[],"[{'url': 'https://t.co/LmHIGLoI2d', 'expanded_url': 'https://twitter.com/i/web/status/1382671547140308992', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"TweetDeck",,,,,,1175649522.0,1175649522,Tawhid CHTIOUI,tawhidChtioui,France,"Président-fondateur @aivancityschool +#AI #ArtificialIntelligence #DataScience #ResponsibleAI +#Education #HigerEd #entrepreneurship #leadership",https://t.co/rRWdzt6NYM,"[{'url': 'https://t.co/rRWdzt6NYM', 'expanded_url': 'http://fr.linkedin.com/in/chtioui', 'display_url': 'fr.linkedin.com/in/chtioui', 'indices': [0, 23]}]",[],False,3352.0,130.0,224.0,Wed Feb 13 15:32:32 +0000 2013,1605.0,,,True,False,5558.0,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,https://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,https://pbs.twimg.com/profile_banners/1175649522/1608027770,DD2E44,A8C7F7,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/298586285/1614548612,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +110,Thu Apr 15 12:39:51 +0000 2021,1382675033194119176,1382675033194119176,"L’#innovation frénétique : comment l'encadrer ? +via @innoveille +#éthique #ia #intelligenceartificielle #numérique… https://t.co/02QHeKGZed",True,"Twitter Web App",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'innovation', 'indices': [2, 13]}, {'text': 'éthique', 'indices': [65, 73]}, {'text': 'ia', 'indices': [74, 77]}, {'text': 'intelligenceartificielle', 'indices': [78, 103]}, {'text': 'numérique', 'indices': [104, 114]}]",[],"[{'screen_name': 'innoveille', 'name': 'David FERRON', 'id': 204901603, 'id_str': '204901603', 'indices': [52, 63]}]","[{'url': 'https://t.co/02QHeKGZed', 'expanded_url': 'https://twitter.com/i/web/status/1382675033194119176', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +111,Thu Apr 15 12:30:39 +0000 2021,1382672718219374592,1382672718219374592,"Aujourd'hui, elle est ingénieure de recherche @IMEV_mer où elle développe des méthodes pour s’assurer de la qualité… https://t.co/thGlpoB3xQ",True,"Twitter Web App",1.382672714150908e+18,1382672714150907909,8.415882697165087e+17,841588269716508673,AdoptaFloat,,,,,False,0,4,False,False,fr,[],[],"[{'screen_name': 'IMEV_mer', 'name': 'IMEV-Institut de la Mer de Villefranche', 'id': 2839581087, 'id_str': '2839581087', 'indices': [46, 55]}]","[{'url': 'https://t.co/thGlpoB3xQ', 'expanded_url': 'https://twitter.com/i/web/status/1382672718219374592', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,841588269716508673,841588269716508673,Adopt a Float,AdoptaFloat,"Villefranche-sur-Mer, France","#ScienceOutreach bringing #OceanSciences into #classrooms +#ProfilingFloats taking young people and #educators on an adventure @CultureOcean @IMEV_mer",https://t.co/5DXovX8vfl,[],False,270,189,1,Tue Mar 14 09:54:14 +0000 2017,321,,,True,False,393,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1358774653699952640/kiphNGz2_normal.jpg,https://pbs.twimg.com/profile_images/1358774653699952640/kiphNGz2_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"[{'url': 'https://t.co/5DXovX8vfl', 'expanded_url': 'http://adoptafloat.com', 'display_url': 'adoptafloat.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/841588269716508673/1490006581,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +112,Thu Apr 15 12:26:40 +0000 2021,1382671717290668035,1382671717290668035,"RT @telecomevol: [#Formation] #IA et #BigData +Formez-vous ou vos collaborateurs à saisir les implications juridiques et éthiques de l'#Int…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Formation', 'indices': [18, 28]}, {'text': 'IA', 'indices': [30, 33]}, {'text': 'BigData', 'indices': [37, 45]}]",[],"[{'screen_name': 'telecomevol', 'name': 'Télécom Evolution', 'id': 2931750730, 'id_str': '2931750730', 'indices': [3, 15]}]",[],fr,recent,291595776,291595776,Ons Jelassi,Ons_JelassiBA,"Ile-de-France, France","enseignante-chercheuse @TelecomParis_, Directrice de @telecomevol - responsable des formations #BigData et #IA - mon activité Twitter n’engage que moi",https://t.co/V4bBxo2zOm,[],False,357,300,111,Mon May 02 08:57:56 +0000 2011,7146,,,False,False,3837,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1281612290538778625/9NidK3FU_normal.jpg,https://pbs.twimg.com/profile_images/1281612290538778625/9NidK3FU_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 10:30:05 +0000 2021,1.38264237529045e+18,1382642375290449923,"[#Formation] #IA et #BigData +Formez-vous ou vos collaborateurs à saisir les implications juridiques et éthiques de… https://t.co/vNQ6Lpp09Z",True,"[{'text': 'Formation', 'indices': [1, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'BigData', 'indices': [20, 28]}]",[],[],"[{'url': 'https://t.co/vNQ6Lpp09Z', 'expanded_url': 'https://twitter.com/i/web/status/1382642375290449923', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,2931750730.0,2931750730,Télécom Evolution,telecomevol,France,"L'organisme de #FormationContinue de @IMTAtlantique, @TelecomParis_ et @TelecomSudParis spécialisé dans le développement des compétences numériques. #TransfoNum",https://t.co/aN5MLw07Qh,"[{'url': 'https://t.co/aN5MLw07Qh', 'expanded_url': 'http://www.telecom-evolution.fr', 'display_url': 'telecom-evolution.fr', 'indices': [0, 23]}]",[],False,616.0,712.0,50.0,Fri Dec 19 08:33:02 +0000 2014,142.0,,,True,False,1461.0,,False,False,False,25303C,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_banners/2931750730/1604999660,ED752D,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,0.0,False,False,False,fr,,"[{'url': 'https://t.co/V4bBxo2zOm', 'expanded_url': 'https://ojelassi.wp.imt.fr', 'display_url': 'ojelassi.wp.imt.fr', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +113,Thu Apr 15 12:26:00 +0000 2021,1382671547140308992,1382671547140308992,"⚡️L’Intelligence Artificielle peut-elle aider les enseignes à sortir de la crise ? +➡️L’IA, puissant révélateur des… https://t.co/LmHIGLoI2d",True,"TweetDeck",,,,,,,,,,False,1,2,False,False,fr,[],[],[],"[{'url': 'https://t.co/LmHIGLoI2d', 'expanded_url': 'https://twitter.com/i/web/status/1382671547140308992', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1175649522,1175649522,Tawhid CHTIOUI,tawhidChtioui,France,"Président-fondateur @aivancityschool +#AI #ArtificialIntelligence #DataScience #ResponsibleAI +#Education #HigerEd #entrepreneurship #leadership",https://t.co/rRWdzt6NYM,[],False,3352,130,224,Wed Feb 13 15:32:32 +0000 2013,1605,,,True,False,5558,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,https://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,DD2E44,A8C7F7,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/rRWdzt6NYM', 'expanded_url': 'http://fr.linkedin.com/in/chtioui', 'display_url': 'fr.linkedin.com/in/chtioui', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1175649522/1608027770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +114,Thu Apr 15 12:15:35 +0000 2021,1382668927185002500,1382668927185002500,🧠 L'#IntelligenceArtificielle s'embarque désormais directement dans nos #PC pour repousser les limites de la perfor… https://t.co/qZeL7mVVXy,True,"EveryoneSocial",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [4, 29]}, {'text': 'PC', 'indices': [72, 75]}]",[],[],"[{'url': 'https://t.co/qZeL7mVVXy', 'expanded_url': 'https://twitter.com/i/web/status/1382668927185002500', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,10418822,10418822,forgues,eforgues,Paris,,,[],False,91,236,33,Tue Nov 20 17:47:41 +0000 2007,367,,,False,False,2503,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/528452448893943808/1HP9K_Uu_normal.jpeg,https://pbs.twimg.com/profile_images/528452448893943808/1HP9K_Uu_normal.jpeg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/10418822/1414754674,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +115,Thu Apr 15 12:05:36 +0000 2021,1382666413324824577,1382666413324824577,"#Twitter travaille sur une intelligence artificielle plus éthique et plus transparente + +#IA… https://t.co/2iOgWLFyCo",True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Twitter', 'indices': [0, 8]}, {'text': 'IA', 'indices': [89, 92]}]",[],[],"[{'url': 'https://t.co/2iOgWLFyCo', 'expanded_url': 'https://twitter.com/i/web/status/1382666413324824577', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [94, 117]}]",fr,recent,8401132,8401132,ArnaudL67,ArnaudL67,"Strasbourg, France","#Centriste et Radical. #Politique, archéologie, #finance, #digital... Un peu de tout et de n'importe quoi selon l'envie. + +A #Strasbourg dans le #Grandest.",,[],False,763,1210,37,Fri Aug 24 09:34:50 +0000 2007,187,,,True,False,5108,,False,False,False,EBEBEB,http://abs.twimg.com/images/themes/theme7/bg.gif,https://abs.twimg.com/images/themes/theme7/bg.gif,False,http://pbs.twimg.com/profile_images/1328354849126289411/atczdpuX_normal.jpg,https://pbs.twimg.com/profile_images/1328354849126289411/atczdpuX_normal.jpg,990000,DFDFDF,F3F3F3,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/8401132/1450201235,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +116,Thu Apr 15 12:00:02 +0000 2021,1382665014172082180,1382665014172082180,"L'intelligence artificielle, on en entend parler, mais qu'est-ce que c'est exactement ? 🤨… https://t.co/Y9qRPrIyco",True,"Twitter Web App",,,,,,,,,,False,0,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/Y9qRPrIyco', 'expanded_url': 'https://twitter.com/i/web/status/1382665014172082180', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [91, 114]}]",fr,recent,285069913,285069913,EISN,EspaceIT,France,L'informatique d'entreprise en toute sérénité,https://t.co/jtSagkeja0,[],False,71,137,3,Wed Apr 20 13:38:53 +0000 2011,4,,,True,False,553,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1179672201605402624/3d8A0CaV_normal.png,https://pbs.twimg.com/profile_images/1179672201605402624/3d8A0CaV_normal.png,0084B4,A8C7F7,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/jtSagkeja0', 'expanded_url': 'https://linktr.ee/espace.informatique', 'display_url': 'linktr.ee/espace.informa…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/285069913/1570090777,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +117,Thu Apr 15 11:37:34 +0000 2021,1382659360355147781,1382659360355147781,"La pudeur de l'IA de Facebook https://t.co/nZN630EFiq +#bitche #Facebook #IA #AI #intelligenceartificielle #grosmot",False,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'bitche', 'indices': [54, 61]}, {'text': 'Facebook', 'indices': [62, 71]}, {'text': 'IA', 'indices': [72, 75]}, {'text': 'AI', 'indices': [76, 79]}, {'text': 'intelligenceartificielle', 'indices': [80, 105]}, {'text': 'grosmot', 'indices': [106, 114]}]",[],[],"[{'url': 'https://t.co/nZN630EFiq', 'expanded_url': 'https://www.levif.be/s/r/c/1414521', 'display_url': 'levif.be/s/r/c/1414521', 'indices': [30, 53]}]",fr,recent,1249974887856451585,1249974887856451585,Abdu M.,AbduM60125101,Brussels,"Directeur de cabinet, présidence @defi_eu",,[],False,117,395,2,Tue Apr 14 08:17:04 +0000 2020,303,,,False,False,486,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1249975732165541888/jqAuxcax_normal.jpg,https://pbs.twimg.com/profile_images/1249975732165541888/jqAuxcax_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/1249974887856451585/1586853907,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +118,Thu Apr 15 11:03:53 +0000 2021,1382650884484706314,1382650884484706314,"RT @MyrestAi: Avec #myrestai, devenez la meilleure version de vous-mêmes 😉 + +#immobilier #machinelearning #ia #intelligenceartificielle #pro…",False,"Autism_twitter",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'myrestai', 'indices': [19, 28]}, {'text': 'immobilier', 'indices': [76, 87]}, {'text': 'machinelearning', 'indices': [88, 104]}, {'text': 'ia', 'indices': [105, 108]}, {'text': 'intelligenceartificielle', 'indices': [109, 134]}]",[],"[{'screen_name': 'MyrestAi', 'name': 'MyRest.AI', 'id': 1362004689861177344, 'id_str': '1362004689861177344', 'indices': [3, 12]}]",[],fr,recent,2358562603,2358562603,Andrew Morris,andrewmorrisuk,Bedford,Passionate about how IT solutions can bring positive value to our business and personal lives. Proud #autisticparent,,[],False,12965,971,320,Sun Feb 23 21:58:16 +0000 2014,3159,,,True,False,526318,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1138114915619749888/1e0u-1mE_normal.png,https://pbs.twimg.com/profile_images/1138114915619749888/1e0u-1mE_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 11:03:26 +0000 2021,1.3826507677781852e+18,1382650767778185218,"Avec #myrestai, devenez la meilleure version de vous-mêmes 😉 + +#immobilier #machinelearning #ia… https://t.co/uSK2UQJgu0",True,"[{'text': 'myrestai', 'indices': [5, 14]}, {'text': 'immobilier', 'indices': [62, 73]}, {'text': 'machinelearning', 'indices': [74, 90]}, {'text': 'ia', 'indices': [91, 94]}]",[],[],"[{'url': 'https://t.co/uSK2UQJgu0', 'expanded_url': 'https://twitter.com/i/web/status/1382650767778185218', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [96, 119]}]",fr,recent,"LaterMedia",,,,,,1.3620046898611773e+18,1362004689861177344,MyRest.AI,MyrestAi,1 Rue de Pécolat 1201 Genève,"MyRestAi est une nouvelle ère immobilière émanée du meilleur des nouvelles technologies, de la Big Data et de l’intelligence artificielle.",https://t.co/1SVgyfXMPR,"[{'url': 'https://t.co/1SVgyfXMPR', 'expanded_url': 'http://www.myrestai.com', 'display_url': 'myrestai.com', 'indices': [0, 23]}]",[],False,61.0,193.0,0.0,Wed Feb 17 11:44:28 +0000 2021,15.0,,,False,False,19.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1362005127633268737/JdaBDWbl_normal.jpg,https://pbs.twimg.com/profile_images/1362005127633268737/JdaBDWbl_normal.jpg,https://pbs.twimg.com/profile_banners/1362004689861177344/1613563016,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +119,Thu Apr 15 11:03:26 +0000 2021,1382650767778185218,1382650767778185218,"Avec #myrestai, devenez la meilleure version de vous-mêmes 😉 + +#immobilier #machinelearning #ia… https://t.co/uSK2UQJgu0",True,"LaterMedia",,,,,,,,,,False,1,2,False,False,fr,"[{'text': 'myrestai', 'indices': [5, 14]}, {'text': 'immobilier', 'indices': [62, 73]}, {'text': 'machinelearning', 'indices': [74, 90]}, {'text': 'ia', 'indices': [91, 94]}]",[],[],"[{'url': 'https://t.co/uSK2UQJgu0', 'expanded_url': 'https://twitter.com/i/web/status/1382650767778185218', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [96, 119]}]",fr,recent,1362004689861177344,1362004689861177344,MyRest.AI,MyrestAi,1 Rue de Pécolat 1201 Genève,"MyRestAi est une nouvelle ère immobilière émanée du meilleur des nouvelles technologies, de la Big Data et de l’intelligence artificielle.",https://t.co/1SVgyfXMPR,[],False,61,193,0,Wed Feb 17 11:44:28 +0000 2021,15,,,False,False,19,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1362005127633268737/JdaBDWbl_normal.jpg,https://pbs.twimg.com/profile_images/1362005127633268737/JdaBDWbl_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/1SVgyfXMPR', 'expanded_url': 'http://www.myrestai.com', 'display_url': 'myrestai.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1362004689861177344/1613563016,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +120,Thu Apr 15 10:46:35 +0000 2021,1382646527189995520,1382646527189995520,"RT @telecomevol: [#Formation] #IA et #BigData +Formez-vous ou vos collaborateurs à saisir les implications juridiques et éthiques de l'#Int…",False,"Twitter for iPhone",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Formation', 'indices': [18, 28]}, {'text': 'IA', 'indices': [30, 33]}, {'text': 'BigData', 'indices': [37, 45]}]",[],"[{'screen_name': 'telecomevol', 'name': 'Télécom Evolution', 'id': 2931750730, 'id_str': '2931750730', 'indices': [3, 15]}]",[],fr,recent,2598194287,2598194287,FCU,fcu_fr,France,"La formation continue à l'Université - Les services de formation continue à l'Université, au service de votre carrière professionnelle.",http://t.co/1ZTtGBauWt,[],False,874,289,29,Tue Jul 01 15:38:23 +0000 2014,633,,,True,False,3586,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/484001886970716161/08xNfHNC_normal.png,https://pbs.twimg.com/profile_images/484001886970716161/08xNfHNC_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 10:30:05 +0000 2021,1.38264237529045e+18,1382642375290449923,"[#Formation] #IA et #BigData +Formez-vous ou vos collaborateurs à saisir les implications juridiques et éthiques de… https://t.co/vNQ6Lpp09Z",True,"[{'text': 'Formation', 'indices': [1, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'BigData', 'indices': [20, 28]}]",[],[],"[{'url': 'https://t.co/vNQ6Lpp09Z', 'expanded_url': 'https://twitter.com/i/web/status/1382642375290449923', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,2931750730.0,2931750730,Télécom Evolution,telecomevol,France,"L'organisme de #FormationContinue de @IMTAtlantique, @TelecomParis_ et @TelecomSudParis spécialisé dans le développement des compétences numériques. #TransfoNum",https://t.co/aN5MLw07Qh,"[{'url': 'https://t.co/aN5MLw07Qh', 'expanded_url': 'http://www.telecom-evolution.fr', 'display_url': 'telecom-evolution.fr', 'indices': [0, 23]}]",[],False,616.0,712.0,50.0,Fri Dec 19 08:33:02 +0000 2014,142.0,,,True,False,1461.0,,False,False,False,25303C,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_banners/2931750730/1604999660,ED752D,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,0.0,False,False,False,fr,,"[{'url': 'http://t.co/1ZTtGBauWt', 'expanded_url': 'http://fcu.fr', 'display_url': 'fcu.fr', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/2598194287/1562220819,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +121,Thu Apr 15 10:45:02 +0000 2021,1382646140949176323,1382646140949176323,"Les entreprises se mettent à l’IA grâce au Cloud +https://t.co/KVVtgk3a5a +@zdnetfr +#entreprise #IA #AI #intelligenceartificielle #cloud ^M",False,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'entreprise', 'indices': [83, 94]}, {'text': 'IA', 'indices': [95, 98]}, {'text': 'AI', 'indices': [99, 102]}, {'text': 'intelligenceartificielle', 'indices': [103, 128]}, {'text': 'cloud', 'indices': [129, 135]}]",[],"[{'screen_name': 'zdnetfr', 'name': 'ZDNet.fr', 'id': 9475502, 'id_str': '9475502', 'indices': [73, 81]}]","[{'url': 'https://t.co/KVVtgk3a5a', 'expanded_url': 'http://ow.ly/TIsX50EpcyV', 'display_url': 'ow.ly/TIsX50EpcyV', 'indices': [49, 72]}]",fr,recent,330801307,330801307,ORSYS Formation,ORSYS,Paris,"Spécialiste de la formation continue. Suivez ici notre veille #Formation, #Digital et #RH mais aussi nos actus et les livetweets de nos événements.",https://t.co/WMi3Uev7CP,[],False,5440,1255,1456,Thu Jul 07 05:17:19 +0000 2011,8349,,,True,False,48225,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1430388212/LogoTwitter_normal.png,https://pbs.twimg.com/profile_images/1430388212/LogoTwitter_normal.png,0084B4,FFFFFF,DDEEF6,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/WMi3Uev7CP', 'expanded_url': 'https://www.orsys.com/', 'display_url': 'orsys.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/330801307/1612281959,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +122,Thu Apr 15 10:31:16 +0000 2021,1382642673874534401,1382642673874534401,L'intelligence artificielle : vecteur de transformation des défis d'aujourd'hui en opportunités de demain… https://t.co/JtiXDqWkiC,True,"Postfity.com",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/JtiXDqWkiC', 'expanded_url': 'https://twitter.com/i/web/status/1382642673874534401', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,1884513522,1884513522,CeptBiro,CeptBiro,Canada,#CeptBiro #Securite #Cybersecurite #Infosec #Security #Cybersecurity #CyberSec #Siem #Architect https://t.co/MnrcP9LSfz,https://t.co/ajI9xlWppS,"[{'url': 'https://t.co/MnrcP9LSfz', 'expanded_url': 'http://ht.ly/8rHq30iS5G1', 'display_url': 'ht.ly/8rHq30iS5G1', 'indices': [96, 119]}]",False,283,0,581,Thu Sep 19 22:12:14 +0000 2013,70,,,False,False,50965,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/378800000480784583/735927632e46db966519d6342e6d0f04_normal.png,https://pbs.twimg.com/profile_images/378800000480784583/735927632e46db966519d6342e6d0f04_normal.png,FF691F,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ajI9xlWppS', 'expanded_url': 'https://www.ceptbiro.com', 'display_url': 'ceptbiro.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1884513522/1585241774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +123,Thu Apr 15 10:30:05 +0000 2021,1382642375290449923,1382642375290449923,"[#Formation] #IA et #BigData +Formez-vous ou vos collaborateurs à saisir les implications juridiques et éthiques de… https://t.co/vNQ6Lpp09Z",True,"Hootsuite Inc.",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Formation', 'indices': [1, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'BigData', 'indices': [20, 28]}]",[],[],"[{'url': 'https://t.co/vNQ6Lpp09Z', 'expanded_url': 'https://twitter.com/i/web/status/1382642375290449923', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2931750730,2931750730,Télécom Evolution,telecomevol,France,"L'organisme de #FormationContinue de @IMTAtlantique, @TelecomParis_ et @TelecomSudParis spécialisé dans le développement des compétences numériques. #TransfoNum",https://t.co/aN5MLw07Qh,[],False,616,712,50,Fri Dec 19 08:33:02 +0000 2014,142,,,True,False,1461,,False,False,False,25303C,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,ED752D,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/aN5MLw07Qh', 'expanded_url': 'http://www.telecom-evolution.fr', 'display_url': 'telecom-evolution.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2931750730/1604999660,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +124,Thu Apr 15 10:30:00 +0000 2021,1382642354180476930,1382642354180476930,"Grâce à l'#IntelligenceArtificielle, vous pouvez désormais converser avec le clone virtuel d'Albert Einstein ⎮… https://t.co/BSf64nhxZv",True,"HubSpot",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [10, 35]}]",[],[],"[{'url': 'https://t.co/BSf64nhxZv', 'expanded_url': 'https://twitter.com/i/web/status/1382642354180476930', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,245091230,245091230,StarDust CTG,stardust_QA,"Marseille, France",Providing #QualityAssurance #testing services across North America and Europe.,http://t.co/sXic5elBxM,[],False,3511,4180,92,Sun Jan 30 21:24:56 +0000 2011,26816,,,False,False,6011,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1364496349916524544/l1my0DLw_normal.jpg,https://pbs.twimg.com/profile_images/1364496349916524544/l1my0DLw_normal.jpg,3EA5CE,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'http://t.co/sXic5elBxM', 'expanded_url': 'http://www.stardust-testing.com', 'display_url': 'stardust-testing.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/245091230/1614157982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +125,Thu Apr 15 10:25:03 +0000 2021,1382641108778430464,1382641108778430464,"Avez-vous déposé votre projet IA auprès de notre équipe ? +⏰ C'est aujourd'hui le dernier délai. + +Volet entreprises… https://t.co/k9flc8ODha",True,"Hootsuite Inc.",,,,,,,,,,False,0,2,False,False,fr,[],[],[],"[{'url': 'https://t.co/k9flc8ODha', 'expanded_url': 'https://twitter.com/i/web/status/1382641108778430464', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,856586927553863684,856586927553863684,Prompt,Prompt_Innov,"Montréal, Québec",Accroître l’avantage concurrentiel des entreprises québécoises du secteur #TIC par des partenariats de R-D avec le milieu institutionnel de recherche.,https://t.co/2WHHmUi7Gj,[],False,1253,757,21,Mon Apr 24 19:13:32 +0000 2017,2195,,,True,False,4143,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1379868013659312132/iy4b_G6X_normal.jpg,https://pbs.twimg.com/profile_images/1379868013659312132/iy4b_G6X_normal.jpg,9ABD3C,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/2WHHmUi7Gj', 'expanded_url': 'http://promptinnov.com', 'display_url': 'promptinnov.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/856586927553863684/1617821147,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +126,Thu Apr 15 10:23:44 +0000 2021,1382640777982054402,1382640777982054402,RT @Groupe_Vidi: L'intelligence artificielle sera structurante pour le radiologue et on la rencontrera à différentes étapes. Découvrez le t…,False,"Twitter for iPhone",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'Groupe_Vidi', 'name': 'Vidi', 'id': 1024616242194403328, 'id_str': '1024616242194403328', 'indices': [3, 15]}]",[],fr,recent,896244842,896244842,rontgoenologue,rontgoenologue,,Par amour des bonnes choses: le vin et la radiologie .. interest in #IA #Radiology #healthcare,,[],False,317,273,15,Sun Oct 21 22:04:50 +0000 2012,7474,,,False,False,12136,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/857048970312470529/9sXN6MlN_normal.jpg,https://pbs.twimg.com/profile_images/857048970312470529/9sXN6MlN_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Thu Apr 15 07:45:19 +0000 2021,1.3826009129218867e+18,1382600912921886723,L'intelligence artificielle sera structurante pour le radiologue et on la rencontrera à différentes étapes. Découvr… https://t.co/T6C6FbSRI9,True,[],[],[],"[{'url': 'https://t.co/T6C6FbSRI9', 'expanded_url': 'https://twitter.com/i/web/status/1382600912921886723', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.0246162421944033e+18,1024616242194403328,Vidi,Groupe_Vidi,"Paris, France","Vidi - 1er réseau d’imagerie médicale en France. 51 groupes, 900 radiologues associés. #radiologie #vidi #VoirComprendreSoigner - https://t.co/KiLIhFc78",https://t.co/0SEjMnoP0T,"[{'url': 'https://t.co/0SEjMnoP0T', 'expanded_url': None, 'indices': [0, 23]}]",[],False,160.0,231.0,1.0,Wed Aug 01 11:22:03 +0000 2018,206.0,,,False,False,322.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1045584796641103872/cCG0NKcI_normal.jpg,https://pbs.twimg.com/profile_images/1045584796641103872/cCG0NKcI_normal.jpg,https://pbs.twimg.com/profile_banners/1024616242194403328/1567587176,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +127,Thu Apr 15 10:23:02 +0000 2021,1382640602085523456,1382640602085523456,L'intelligence artificielle : vecteur de transformation des défis d'aujourd'hui en opportunités de demain… https://t.co/S8tjTMXlF9,True,"Postfity.com",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/S8tjTMXlF9', 'expanded_url': 'https://twitter.com/i/web/status/1382640602085523456', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,100560178,100560178,Rene Robichaud,ReneRobichaud,Canada,#CyberSecurity #Security #Cyberdefense #InfoSec #CeptBiro #CisControl #Risk #VulnManagement Working @CeptBiro https://t.co/koAbDM42AL https://t.co/LBKOzjWcy4 - Tweets are my own.,https://t.co/ajI9xlWppS,"[{'url': 'https://t.co/koAbDM42AL', 'expanded_url': 'http://ow.ly/PkwFL', 'display_url': 'ow.ly/PkwFL', 'indices': [110, 133]}, {'url': 'https://t.co/LBKOzjWcy4', 'expanded_url': 'http://ht.ly/upc7307EQhA', 'display_url': 'ht.ly/upc7307EQhA', 'indices': [134, 157]}]",False,3739,2048,650,Wed Dec 30 18:12:20 +0000 2009,2150,,,False,False,57809,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/858762561004634112/QKrnif1X_normal.jpg,https://pbs.twimg.com/profile_images/858762561004634112/QKrnif1X_normal.jpg,FAB81E,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ajI9xlWppS', 'expanded_url': 'https://www.ceptbiro.com', 'display_url': 'ceptbiro.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/100560178/1585241828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +128,Thu Apr 15 09:47:14 +0000 2021,1382631593446023169,1382631593446023169,RT @BRSW_Paris: Outrider lève 65 millions de dollars pour automatiser les entrepôts logistiques #automatisation #supplychain #logistics #fu…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'automatisation', 'indices': [96, 111]}, {'text': 'supplychain', 'indices': [112, 124]}, {'text': 'logistics', 'indices': [125, 135]}]",[],"[{'screen_name': 'BRSW_Paris', 'name': 'BRSW', 'id': 1054780958656921602, 'id_str': '1054780958656921602', 'indices': [3, 14]}]",[],fr,recent,822415878440501248,822415878440501248,Onesmas Riungu,ORiungu,"Nairobi, Kenya","Social Worker, #ProjectManager @Sportcareaccess #AidWorker, #Streetchildren, People with disabilities Consultant @TTAtradetoaid Digitalmarketer +254725310720",https://t.co/j8hcoqZh0J,[],False,40232,32210,68,Fri Jan 20 12:10:00 +0000 2017,1851,,,False,False,5690,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,https://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Thu Oct 29 14:06:32 +0000 2020,1.3218156845910057e+18,1321815684591005696,Outrider lève 65 millions de dollars pour automatiser les entrepôts logistiques #automatisation #supplychain… https://t.co/ppSAhcIJro,True,"[{'text': 'automatisation', 'indices': [80, 95]}, {'text': 'supplychain', 'indices': [96, 108]}]",[],[],"[{'url': 'https://t.co/ppSAhcIJro', 'expanded_url': 'https://twitter.com/i/web/status/1321815684591005696', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [110, 133]}]",fr,recent,"Twitter for iPhone",,,,,,1.0547809586569216e+18,1054780958656921602,BRSW,BRSW_Paris,"Paris, France","BRSW est un cabinet d’#audit, d’expertise comptable, et #conseil, né de la fusion de BRS et S&W #blockchain #ICO #IA #startups #FrenchTech #Fintech #Transfonum",https://t.co/lFKdbtmlxR,"[{'url': 'https://t.co/lFKdbtmlxR', 'expanded_url': 'http://brsw.fr', 'display_url': 'brsw.fr', 'indices': [0, 23]}]",[],False,1106.0,1015.0,16.0,Tue Oct 23 17:05:52 +0000 2018,18648.0,,,False,False,2587.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_banners/1054780958656921602/1540390381,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/j8hcoqZh0J', 'expanded_url': 'https://www.sportcareaccess.org/', 'display_url': 'sportcareaccess.org', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/822415878440501248/1610686780,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +129,Thu Apr 15 09:47:09 +0000 2021,1382631573640601600,1382631573640601600,RT @BRSW_Paris: Six fonds lèvent 700 millions pour l’IA et la blockchain | Paperjam News #blockchain #AI #IA #intelligenceartificielle #fun…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'blockchain', 'indices': [89, 100]}, {'text': 'AI', 'indices': [101, 104]}, {'text': 'IA', 'indices': [105, 108]}, {'text': 'intelligenceartificielle', 'indices': [109, 134]}]",[],"[{'screen_name': 'BRSW_Paris', 'name': 'BRSW', 'id': 1054780958656921602, 'id_str': '1054780958656921602', 'indices': [3, 14]}]",[],fr,recent,822415878440501248,822415878440501248,Onesmas Riungu,ORiungu,"Nairobi, Kenya","Social Worker, #ProjectManager @Sportcareaccess #AidWorker, #Streetchildren, People with disabilities Consultant @TTAtradetoaid Digitalmarketer +254725310720",https://t.co/j8hcoqZh0J,[],False,40232,32210,68,Fri Jan 20 12:10:00 +0000 2017,1851,,,False,False,5690,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,https://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Sat Oct 31 11:55:43 +0000 2020,1.3225075425226998e+18,1322507542522699776,Six fonds lèvent 700 millions pour l’IA et la blockchain | Paperjam News #blockchain #AI #IA… https://t.co/GteTs7rX9t,True,"[{'text': 'blockchain', 'indices': [73, 84]}, {'text': 'AI', 'indices': [85, 88]}, {'text': 'IA', 'indices': [89, 92]}]",[],[],"[{'url': 'https://t.co/GteTs7rX9t', 'expanded_url': 'https://twitter.com/i/web/status/1322507542522699776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [94, 117]}]",fr,recent,"Twitter for iPhone",,,,,,1.0547809586569216e+18,1054780958656921602,BRSW,BRSW_Paris,"Paris, France","BRSW est un cabinet d’#audit, d’expertise comptable, et #conseil, né de la fusion de BRS et S&W #blockchain #ICO #IA #startups #FrenchTech #Fintech #Transfonum",https://t.co/lFKdbtmlxR,"[{'url': 'https://t.co/lFKdbtmlxR', 'expanded_url': 'http://brsw.fr', 'display_url': 'brsw.fr', 'indices': [0, 23]}]",[],False,1106.0,1015.0,16.0,Tue Oct 23 17:05:52 +0000 2018,18648.0,,,False,False,2587.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_banners/1054780958656921602/1540390381,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,,"[{'url': 'https://t.co/j8hcoqZh0J', 'expanded_url': 'https://www.sportcareaccess.org/', 'display_url': 'sportcareaccess.org', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/822415878440501248/1610686780,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +130,Thu Apr 15 09:45:36 +0000 2021,1382631181263458306,1382631181263458306,RT @BRSW_Paris: La pépite du renseignement Earthcube ouvre les portes de la défense au capital-risque : https://t.co/w7YVwTUFyB via @LesEch…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'BRSW_Paris', 'name': 'BRSW', 'id': 1054780958656921602, 'id_str': '1054780958656921602', 'indices': [3, 14]}]","[{'url': 'https://t.co/w7YVwTUFyB', 'expanded_url': 'https://www.lesechos.fr/industrie-services/air-defense/0604274140138-la-pepite-du-renseignement-earthcube-ouvre-les-portes-de-la-defense-au-capital-risque-2381003.php#xtor=CS1-3046', 'display_url': 'lesechos.fr/industrie-serv…', 'indices': [104, 127]}]",fr,recent,822415878440501248,822415878440501248,Onesmas Riungu,ORiungu,"Nairobi, Kenya","Social Worker, #ProjectManager @Sportcareaccess #AidWorker, #Streetchildren, People with disabilities Consultant @TTAtradetoaid Digitalmarketer +254725310720",https://t.co/j8hcoqZh0J,[],False,40232,32210,68,Fri Jan 20 12:10:00 +0000 2017,1851,,,False,False,5690,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,https://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Nov 18 23:10:45 +0000 2020,1.329200398792528e+18,1329200398792527882,La pépite du renseignement Earthcube ouvre les portes de la défense au capital-risque : https://t.co/w7YVwTUFyB via… https://t.co/7Ms8G6MqsD,True,[],[],[],"[{'url': 'https://t.co/w7YVwTUFyB', 'expanded_url': 'https://www.lesechos.fr/industrie-services/air-defense/0604274140138-la-pepite-du-renseignement-earthcube-ouvre-les-portes-de-la-defense-au-capital-risque-2381003.php#xtor=CS1-3046', 'display_url': 'lesechos.fr/industrie-serv…', 'indices': [88, 111]}, {'url': 'https://t.co/7Ms8G6MqsD', 'expanded_url': 'https://twitter.com/i/web/status/1329200398792527882', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter for iPhone",,,,,,1.0547809586569216e+18,1054780958656921602,BRSW,BRSW_Paris,"Paris, France","BRSW est un cabinet d’#audit, d’expertise comptable, et #conseil, né de la fusion de BRS et S&W #blockchain #ICO #IA #startups #FrenchTech #Fintech #Transfonum",https://t.co/lFKdbtmlxR,"[{'url': 'https://t.co/lFKdbtmlxR', 'expanded_url': 'http://brsw.fr', 'display_url': 'brsw.fr', 'indices': [0, 23]}]",[],False,1106.0,1015.0,16.0,Tue Oct 23 17:05:52 +0000 2018,18648.0,,,False,False,2587.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_banners/1054780958656921602/1540390381,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/j8hcoqZh0J', 'expanded_url': 'https://www.sportcareaccess.org/', 'display_url': 'sportcareaccess.org', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/822415878440501248/1610686780,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +131,Thu Apr 15 09:45:28 +0000 2021,1382631147033796609,1382631147033796609,RT @BRSW_Paris: Earthcube lève 20 millions d'euros auprès du ministère des Armées et devient Preligens by ⁦@frenchweb⁩ #startup #frenchtech…,False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'startup', 'indices': [119, 127]}, {'text': 'frenchtech', 'indices': [128, 139]}]",[],"[{'screen_name': 'BRSW_Paris', 'name': 'BRSW', 'id': 1054780958656921602, 'id_str': '1054780958656921602', 'indices': [3, 14]}, {'screen_name': 'frenchweb', 'name': 'FrenchWeb', 'id': 14597927, 'id_str': '14597927', 'indices': [107, 117]}]",[],fr,recent,822415878440501248,822415878440501248,Onesmas Riungu,ORiungu,"Nairobi, Kenya","Social Worker, #ProjectManager @Sportcareaccess #AidWorker, #Streetchildren, People with disabilities Consultant @TTAtradetoaid Digitalmarketer +254725310720",https://t.co/j8hcoqZh0J,[],False,40232,32210,68,Fri Jan 20 12:10:00 +0000 2017,1851,,,False,False,5690,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,https://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Thu Nov 19 09:46:09 +0000 2020,1.329360305344934e+18,1329360305344933890,Earthcube lève 20 millions d'euros auprès du ministère des Armées et devient Preligens by ⁦@frenchweb⁩ #startup… https://t.co/oRSE4Xrwnj,True,"[{'text': 'startup', 'indices': [103, 111]}]",[],"[{'screen_name': 'frenchweb', 'name': 'FrenchWeb', 'id': 14597927, 'id_str': '14597927', 'indices': [91, 101]}]","[{'url': 'https://t.co/oRSE4Xrwnj', 'expanded_url': 'https://twitter.com/i/web/status/1329360305344933890', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [113, 136]}]",fr,recent,"Twitter for iPhone",,,,,,1.0547809586569216e+18,1054780958656921602,BRSW,BRSW_Paris,"Paris, France","BRSW est un cabinet d’#audit, d’expertise comptable, et #conseil, né de la fusion de BRS et S&W #blockchain #ICO #IA #startups #FrenchTech #Fintech #Transfonum",https://t.co/lFKdbtmlxR,"[{'url': 'https://t.co/lFKdbtmlxR', 'expanded_url': 'http://brsw.fr', 'display_url': 'brsw.fr', 'indices': [0, 23]}]",[],False,1106.0,1015.0,16.0,Tue Oct 23 17:05:52 +0000 2018,18648.0,,,False,False,2587.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_banners/1054780958656921602/1540390381,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/j8hcoqZh0J', 'expanded_url': 'https://www.sportcareaccess.org/', 'display_url': 'sportcareaccess.org', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/822415878440501248/1610686780,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +132,Thu Apr 15 09:44:43 +0000 2021,1382630957652578306,1382630957652578306,RT @BRSW_Paris: GrAI Matter Labs lève 13 millions d'euros pour commercialiser sa puce dédiée à l'IA embarquée by ⁦@LUsineDigitale⁩ #startup…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'startup', 'indices': [131, 139]}]",[],"[{'screen_name': 'BRSW_Paris', 'name': 'BRSW', 'id': 1054780958656921602, 'id_str': '1054780958656921602', 'indices': [3, 14]}, {'screen_name': 'LUsineDigitale', 'name': ""L'Usine Digitale"", 'id': 965694492, 'id_str': '965694492', 'indices': [114, 129]}]",[],fr,recent,822415878440501248,822415878440501248,Onesmas Riungu,ORiungu,"Nairobi, Kenya","Social Worker, #ProjectManager @Sportcareaccess #AidWorker, #Streetchildren, People with disabilities Consultant @TTAtradetoaid Digitalmarketer +254725310720",https://t.co/j8hcoqZh0J,[],False,40232,32210,68,Fri Jan 20 12:10:00 +0000 2017,1851,,,False,False,5690,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,https://pbs.twimg.com/profile_images/1261628721808773121/0_YTNMGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Nov 23 17:46:55 +0000 2020,1.3309308443709522e+18,1330930844370952192,GrAI Matter Labs lève 13 millions d'euros pour commercialiser sa puce dédiée à l'IA embarquée by ⁦@LUsineDigitale⁩… https://t.co/q7L4ts80AV,True,[],[],"[{'screen_name': 'LUsineDigitale', 'name': ""L'Usine Digitale"", 'id': 965694492, 'id_str': '965694492', 'indices': [98, 113]}]","[{'url': 'https://t.co/q7L4ts80AV', 'expanded_url': 'https://twitter.com/i/web/status/1330930844370952192', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter for iPhone",,,,,,1.0547809586569216e+18,1054780958656921602,BRSW,BRSW_Paris,"Paris, France","BRSW est un cabinet d’#audit, d’expertise comptable, et #conseil, né de la fusion de BRS et S&W #blockchain #ICO #IA #startups #FrenchTech #Fintech #Transfonum",https://t.co/lFKdbtmlxR,"[{'url': 'https://t.co/lFKdbtmlxR', 'expanded_url': 'http://brsw.fr', 'display_url': 'brsw.fr', 'indices': [0, 23]}]",[],False,1106.0,1015.0,16.0,Tue Oct 23 17:05:52 +0000 2018,18648.0,,,False,False,2587.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_images/1074746073468542978/uThRgOb9_normal.png,https://pbs.twimg.com/profile_banners/1054780958656921602/1540390381,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/j8hcoqZh0J', 'expanded_url': 'https://www.sportcareaccess.org/', 'display_url': 'sportcareaccess.org', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/822415878440501248/1610686780,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +133,Thu Apr 15 09:43:54 +0000 2021,1382630752400072711,1382630752400072711,« La Poste constitue un futur leader du conseil en #intelligenceArtificielle auprès des grandes entreprises. Ce pôl… https://t.co/HYk1kvrOLB,True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'intelligenceArtificielle', 'indices': [51, 76]}]",[],[],"[{'url': 'https://t.co/HYk1kvrOLB', 'expanded_url': 'https://twitter.com/i/web/status/1382630752400072711', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,218558476,218558476,Marie LANGE,langemarie,Paris,"Data manager @AdoneConseil & Co-founder @amasai_fr // Data, AI, Machine learning, Ethics, Philo, Sciences, Feminism, Diversity // +Tweets in EN & FR",,[],False,534,1029,20,Mon Nov 22 17:22:06 +0000 2010,1418,,,True,False,1646,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1359164299214786569/LWfTadgf_normal.jpg,https://pbs.twimg.com/profile_images/1359164299214786569/LWfTadgf_normal.jpg,23C5B0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/218558476/1548590982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +134,Thu Apr 15 09:21:11 +0000 2021,1382625035697946629,1382625035697946629,"Pour rester compétitifs, les acteurs de la #supplychain doivent se doter de technologies innovantes comme l'… https://t.co/tb4joHlC4U",True,"Twitter Web App",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'supplychain', 'indices': [43, 55]}]",[],[],"[{'url': 'https://t.co/tb4joHlC4U', 'expanded_url': 'https://twitter.com/i/web/status/1382625035697946629', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [110, 133]}]",fr,recent,2166392671,2166392671,Kardinal,KardinalAI,France,"Saas Solution for Real-Time Tour Optimization, based on cutting-edge algorithms #Delivery #Logistic #Algorithm #TourOptimization",https://t.co/5i9oBcheYN,[],False,206,67,14,Thu Oct 31 10:13:54 +0000 2013,74,,,False,False,122,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1191631517996466176/jGF3f4Db_normal.jpg,https://pbs.twimg.com/profile_images/1191631517996466176/jGF3f4Db_normal.jpg,1B95E0,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/5i9oBcheYN', 'expanded_url': 'https://www.kardinal.ai', 'display_url': 'kardinal.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2166392671/1617281062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +135,Thu Apr 15 09:02:45 +0000 2021,1382620397003284480,1382620397003284480,RT @BF_TechServices: #IA : @HPE_FR équipera d'un #supercalculateur la Maison de l'#IntelligenceArtificielle à #SophiaAntipolis https://t.co…,False,"SociabbleApp",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'IA', 'indices': [21, 24]}, {'text': 'supercalculateur', 'indices': [49, 66]}, {'text': 'IntelligenceArtificielle', 'indices': [82, 107]}, {'text': 'SophiaAntipolis', 'indices': [110, 126]}]",[],"[{'screen_name': 'BF_TechServices', 'name': 'BF Tech & Services Innovants', 'id': 94587866, 'id_str': '94587866', 'indices': [3, 19]}, {'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [27, 34]}]",[],fr,recent,750450785973051392,750450785973051392,Fabrice Panchout,Panchoutfabrice,"Paris, France","Responsable Commercial V.I.E #hautsdeseine. #VIE_RH = Volontariat International en Entreprise, la solution #RH à l' #international des #entreprises FR 🇫🇷🇫🇷🇫🇷",https://t.co/S5bvB8fGwZ,[],False,975,1000,77,Tue Jul 05 22:06:24 +0000 2016,866,,,False,False,2096,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/905703083954536448/VVnmqQIr_normal.jpg,https://pbs.twimg.com/profile_images/905703083954536448/VVnmqQIr_normal.jpg,19CF86,000000,000000,000000,False,False,False,False,False,False,False,none,Thu Apr 15 07:11:00 +0000 2021,1.3825922767786598e+18,1382592276778659843,#IA : @HPE_FR équipera d'un #supercalculateur la Maison de l'#IntelligenceArtificielle à #SophiaAntipolis… https://t.co/LuZBFAYN0p,True,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'supercalculateur', 'indices': [28, 45]}, {'text': 'IntelligenceArtificielle', 'indices': [61, 86]}, {'text': 'SophiaAntipolis', 'indices': [89, 105]}]",[],"[{'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [6, 13]}]","[{'url': 'https://t.co/LuZBFAYN0p', 'expanded_url': 'https://twitter.com/i/web/status/1382592276778659843', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,"Twitter Web App",,,,,,94587866.0,94587866,BF Tech & Services Innovants,BF_TechServices,"Paris, France","Business France 🇫🇷 vous accompagne dans la réussite de vos projets à l’international : information, prospection, communication. #FrenchTech #GoGlobal 🚀",https://t.co/LDYRE4749A,"[{'url': 'https://t.co/LDYRE4749A', 'expanded_url': 'http://www.businessfrance-tech.fr', 'display_url': 'businessfrance-tech.fr', 'indices': [0, 23]}]",[],False,9119.0,4417.0,623.0,Fri Dec 04 16:15:04 +0000 2009,14658.0,,,True,False,24028.0,,False,False,True,8A9194,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/886920823562522624/tNiYKGFj_normal.jpg,https://pbs.twimg.com/profile_images/886920823562522624/tNiYKGFj_normal.jpg,https://pbs.twimg.com/profile_banners/94587866/1573724421,0084B4,FFFFFF,F0F3F5,333333,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/S5bvB8fGwZ', 'expanded_url': 'http://export.businessfrance.fr/formule-vie/vie-en-bref.html', 'display_url': 'export.businessfrance.fr/formule-vie/vi…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/750450785973051392/1542732116,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +136,Thu Apr 15 08:30:05 +0000 2021,1382612179686461441,1382612179686461441,"RT @JNumerium: @precisement #IA & #PI, 1-2 articles marquants ? #BENSAMOUN A. @alexbensamoun , « IA & PI », in BENSAMOUN A. et LOISEAU G. […",False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'IA', 'indices': [28, 31]}, {'text': 'PI', 'indices': [38, 41]}, {'text': 'BENSAMOUN', 'indices': [68, 78]}]",[],"[{'screen_name': 'precisement', 'name': 'precisement.org', 'id': 95864000, 'id_str': '95864000', 'indices': [15, 27]}, {'screen_name': 'alexbensamoun', 'name': 'Alexandra Bensamoun', 'id': 801879421221306368, 'id_str': '801879421221306368', 'indices': [82, 96]}]",[],fr,recent,95864000,95864000,precisement.org,precisement,,Documentaliste juridique et webmestre. Expert et formateur en veille et recherche en droit + données publiques juridiques. Bloque trolls et insultes,http://t.co/YHv9g22hjY,[],False,2848,44,237,Thu Dec 10 09:22:01 +0000 2009,2568,,,False,False,31270,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1213926863/drape_jaune_modif_normal.jpg,https://pbs.twimg.com/profile_images/1213926863/drape_jaune_modif_normal.jpg,0084B4,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,Wed Apr 14 21:08:33 +0000 2021,1.3824406646511534e+18,1382440664651153408,"@precisement #IA & #PI, 1-2 articles marquants ? #BENSAMOUN A. @alexbensamoun , « IA & PI », in BENSAMOUN A. et LOI… https://t.co/ishdyHDaQV",True,"[{'text': 'IA', 'indices': [13, 16]}, {'text': 'PI', 'indices': [23, 26]}, {'text': 'BENSAMOUN', 'indices': [53, 63]}]",[],"[{'screen_name': 'precisement', 'name': 'precisement.org', 'id': 95864000, 'id_str': '95864000', 'indices': [0, 12]}, {'screen_name': 'alexbensamoun', 'name': 'Alexandra Bensamoun', 'id': 801879421221306368, 'id_str': '801879421221306368', 'indices': [67, 81]}]","[{'url': 'https://t.co/ishdyHDaQV', 'expanded_url': 'https://twitter.com/i/web/status/1382440664651153408', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [125, 148]}]",fr,recent,"Twitter Web App",1.382055317077377e+18,1382055317077377025,95864000.0,95864000,precisement,1.0334614797339484e+18,1033461479733948417,Jus Numerium,JusNumerium,,#TransfoNum : #Algo #BATX #BlockChain #Communs #Crypto #Cyber #Données #Drone #GAFAM #IA #Innovation #IoT #LiFi #NATU #NBIC #Open #Quantique #RA #Robot #RV #5G,,,[],False,1408.0,4997.0,15.0,Sat Aug 25 21:09:52 +0000 2018,1655.0,,,False,False,4412.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1043861799634956288/yieKtVb4_normal.jpg,https://pbs.twimg.com/profile_images/1043861799634956288/yieKtVb4_normal.jpg,https://pbs.twimg.com/profile_banners/1033461479733948417/1537711087,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,,fr,,"[{'url': 'http://t.co/YHv9g22hjY', 'expanded_url': 'http://www.precisement.org/blog/', 'display_url': 'precisement.org/blog/', 'indices': [0, 22]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +137,Thu Apr 15 08:16:47 +0000 2021,1382608832447266818,1382608832447266818,"RT @Alpict: Une courte #vidéo qui répond aux principales interrogations des #entreprises concernant l'#intelligenceartificielle 💡 +Pour appr…",False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'vidéo', 'indices': [23, 29]}, {'text': 'entreprises', 'indices': [76, 88]}, {'text': 'intelligenceartificielle', 'indices': [102, 127]}]",[],"[{'screen_name': 'Alpict', 'name': 'alp ict', 'id': 79132152, 'id_str': '79132152', 'indices': [3, 10]}]",[],fr,recent,3689711241,3689711241,Microcity Neuchâtel,MicrocityNE,Neuchâtel Switzerland,"Pôle d'innovation - Au coeur de l'infiniment précis. #Microcity +Site reconnu par @swissinnova",https://t.co/3nfUdvk6d8,[],False,867,271,109,Thu Sep 17 21:38:08 +0000 2015,1490,,,True,False,2272,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1268437767085842432/iq765rXb_normal.jpg,https://pbs.twimg.com/profile_images/1268437767085842432/iq765rXb_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Thu Apr 15 08:11:28 +0000 2021,1.3826074926062223e+18,1382607492606222339,Une courte #vidéo qui répond aux principales interrogations des #entreprises concernant l'#intelligenceartificielle… https://t.co/eUsT3sbS2H,True,"[{'text': 'vidéo', 'indices': [11, 17]}, {'text': 'entreprises', 'indices': [64, 76]}, {'text': 'intelligenceartificielle', 'indices': [90, 115]}]",[],[],"[{'url': 'https://t.co/eUsT3sbS2H', 'expanded_url': 'https://twitter.com/i/web/status/1382607492606222339', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,79132152.0,79132152,alp ict,Alpict,Switzerland,"Plateforme de mise en réseau et de promotion des technologies du numérique en Suisse occidentale depuis 2008. 3 piliers d'action : informer, connecter, stimuler",https://t.co/JyUWp3J9s6,"[{'url': 'https://t.co/JyUWp3J9s6', 'expanded_url': 'http://www.alpict.ch', 'display_url': 'alpict.ch', 'indices': [0, 23]}]",[],False,6387.0,5199.0,563.0,Fri Oct 02 08:37:06 +0000 2009,6501.0,,,True,False,23679.0,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1338867029080588288/J0oIUhxS_normal.jpg,https://pbs.twimg.com/profile_images/1338867029080588288/J0oIUhxS_normal.jpg,https://pbs.twimg.com/profile_banners/79132152/1608042137,BC382B,FFFFFF,F2F2F2,58585A,True,False,False,False,False,False,False,none,,,,,False,1.0,5.0,False,False,False,fr,False,"[{'url': 'https://t.co/3nfUdvk6d8', 'expanded_url': 'http://www.microcity.ch', 'display_url': 'microcity.ch', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3689711241/1505317941,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +138,Thu Apr 15 08:11:28 +0000 2021,1382607492606222339,1382607492606222339,Une courte #vidéo qui répond aux principales interrogations des #entreprises concernant l'#intelligenceartificielle… https://t.co/eUsT3sbS2H,True,"Twitter Web App",,,,,,,,,,False,1,5,False,False,fr,"[{'text': 'vidéo', 'indices': [11, 17]}, {'text': 'entreprises', 'indices': [64, 76]}, {'text': 'intelligenceartificielle', 'indices': [90, 115]}]",[],[],"[{'url': 'https://t.co/eUsT3sbS2H', 'expanded_url': 'https://twitter.com/i/web/status/1382607492606222339', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,79132152,79132152,alp ict,Alpict,Switzerland,"Plateforme de mise en réseau et de promotion des technologies du numérique en Suisse occidentale depuis 2008. 3 piliers d'action : informer, connecter, stimuler",https://t.co/JyUWp3J9s6,[],False,6387,5199,563,Fri Oct 02 08:37:06 +0000 2009,6501,,,True,False,23679,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1338867029080588288/J0oIUhxS_normal.jpg,https://pbs.twimg.com/profile_images/1338867029080588288/J0oIUhxS_normal.jpg,BC382B,FFFFFF,F2F2F2,58585A,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/JyUWp3J9s6', 'expanded_url': 'http://www.alpict.ch', 'display_url': 'alpict.ch', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/79132152/1608042137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +139,Thu Apr 15 07:49:10 +0000 2021,1382601879310438401,1382601879310438401,#Digitalisation des #commandes #clients : #Esker accompagne les #entreprises dans leur #transformation_digitale… https://t.co/u2MEwyTkZf,True,"Twitter Web App",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Digitalisation', 'indices': [0, 15]}, {'text': 'commandes', 'indices': [20, 30]}, {'text': 'clients', 'indices': [31, 39]}, {'text': 'Esker', 'indices': [42, 48]}, {'text': 'entreprises', 'indices': [64, 76]}, {'text': 'transformation_digitale', 'indices': [87, 111]}]",[],[],"[{'url': 'https://t.co/u2MEwyTkZf', 'expanded_url': 'https://twitter.com/i/web/status/1382601879310438401', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [113, 136]}]",fr,recent,97213358,97213358,Agro-media.fr,agro_media,France,"Le fil d’info de l’#agroalimentaire. +https://t.co/3zDwn5mtTa site d’#actualité des entreprises de l'#Industrie Agroalimentaire. Abonnez-vous à notre newsletter #IAA",https://t.co/6JdadV182c,"[{'url': 'https://t.co/3zDwn5mtTa', 'expanded_url': 'http://Agro-media.fr', 'display_url': 'Agro-media.fr', 'indices': [37, 60]}]",False,7938,724,302,Wed Dec 16 13:55:55 +0000 2009,33,,,False,False,12336,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1378010920690053126/SUhYgDb8_normal.jpg,https://pbs.twimg.com/profile_images/1378010920690053126/SUhYgDb8_normal.jpg,0084B4,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/6JdadV182c', 'expanded_url': 'https://www.agro-media.fr', 'display_url': 'agro-media.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/97213358/1402571994,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +140,Thu Apr 15 07:45:19 +0000 2021,1382600912921886723,1382600912921886723,L'intelligence artificielle sera structurante pour le radiologue et on la rencontrera à différentes étapes. Découvr… https://t.co/T6C6FbSRI9,True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/T6C6FbSRI9', 'expanded_url': 'https://twitter.com/i/web/status/1382600912921886723', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1024616242194403328,1024616242194403328,Vidi,Groupe_Vidi,"Paris, France","Vidi - 1er réseau d’imagerie médicale en France. 51 groupes, 900 radiologues associés. #radiologie #vidi #VoirComprendreSoigner - https://t.co/KiLIhFc78",https://t.co/0SEjMnoP0T,[],False,160,231,1,Wed Aug 01 11:22:03 +0000 2018,206,,,False,False,322,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1045584796641103872/cCG0NKcI_normal.jpg,https://pbs.twimg.com/profile_images/1045584796641103872/cCG0NKcI_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/0SEjMnoP0T', 'expanded_url': None, 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1024616242194403328/1567587176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +141,Thu Apr 15 07:43:18 +0000 2021,1382600404358332418,1382600404358332418,"RT @Probayes_IA: Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeurs et c…",False,"Twitter Web App",,,,,,,,,,True,5,0,False,False,fr,[],[],"[{'screen_name': 'Probayes_IA', 'name': 'Probayes', 'id': 1151741890502565888, 'id_str': '1151741890502565888', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [25, 39]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [89, 101]}]",[],fr,recent,2817310092,2817310092,Openvalue,OpenvalueFR,Paris,"#BigData - #IoT - #Digital - Nous accompagnons les entreprises dans la transformation de leurs usages, #données et objets",http://t.co/ETGqvCEjis,[],False,168,101,32,Thu Sep 18 16:55:41 +0000 2014,19,,,True,False,554,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,FC5649,000000,000000,000000,False,False,False,False,False,False,False,none,Wed Apr 14 13:36:41 +0000 2021,1.382326948387504e+18,1382326948387504128,"Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeu… https://t.co/SSCm1k3TK3",True,[],[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [8, 22]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [72, 84]}]","[{'url': 'https://t.co/SSCm1k3TK3', 'expanded_url': 'https://twitter.com/i/web/status/1382326948387504128', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.1517418905025659e+18,1151741890502565888,Probayes,Probayes_IA,38330 Montbonnot,"L'Intelligence Artificielle sur mesure à votre service ! +#IA #Intelligenceartificielle #Automobile #Défense #Distribution #Finance #Industrie #logistique #Santé",https://t.co/gDHGiQ08Df,"[{'url': 'https://t.co/gDHGiQ08Df', 'expanded_url': 'http://www.probayes.com', 'display_url': 'probayes.com', 'indices': [0, 23]}]",[],False,204.0,823.0,4.0,Thu Jul 18 06:33:59 +0000 2019,168.0,,,False,False,238.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_banners/1151741890502565888/1609774920,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,True,5.0,5.0,False,False,False,fr,,"[{'url': 'http://t.co/ETGqvCEjis', 'expanded_url': 'http://Openvalue.co', 'display_url': 'Openvalue.co', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/2817310092/1411114837,1.3822375631135867e+18,1382237563113586688,1.3822375631135867e+18,1382237563113586688,Wed Apr 14 07:41:30 +0000 2021,1.3822375631135867e+18,1382237563113586688,#COMMUNIQUE | #LaPoste crée un acteur de référence du conseil en Intelligence Artificielle pour les entreprises ave… https://t.co/afimhB8WLT,True,"[{'text': 'COMMUNIQUE', 'indices': [0, 11]}, {'text': 'LaPoste', 'indices': [14, 22]}]",[],[],"[{'url': 'https://t.co/afimhB8WLT', 'expanded_url': 'https://twitter.com/i/web/status/1382237563113586688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,57691450.0,57691450,Le Groupe La Poste,GroupeLaPoste,,Pour tout savoir de l'actu du Groupe #LaPoste et ses projets de transformations! #EcolOgic #TousEngagés #VousSimplifierLaVie Service clients : @LisaLaPoste,https://t.co/9BSEcmuGi4,"[{'url': 'https://t.co/9BSEcmuGi4', 'expanded_url': 'http://www.groupelaposte.com', 'display_url': 'groupelaposte.com', 'indices': [0, 23]}]",[],False,40066.0,5536.0,980.0,Fri Jul 17 16:48:30 +0000 2009,38410.0,,,True,True,45264.0,,False,False,False,0067A7,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,False,http://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_banners/57691450/1614264578,215382,D6EBF2,AACCD8,272727,True,False,False,False,False,False,False,none,,,,,False,14.0,29.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +142,Thu Apr 15 07:20:54 +0000 2021,1382594766240686083,1382594766240686083,"RT @AmbSefiani: Les rapports de force générés par l’intelligence artificielle +https://t.co/gDsWRDQDb1 +#ai #artificialintelligence #leaders…",False,"abhibisht89",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'ai', 'indices': [103, 106]}, {'text': 'artificialintelligence', 'indices': [107, 130]}]",[],"[{'screen_name': 'AmbSefiani', 'name': 'Amb.Sefiani', 'id': 2532238297, 'id_str': '2532238297', 'indices': [3, 14]}]","[{'url': 'https://t.co/gDsWRDQDb1', 'expanded_url': 'https://www.ege.fr/infoguerre/les-rapports-de-force-generes-par-lintelligence-artificielle', 'display_url': 'ege.fr/infoguerre/les…', 'indices': [78, 101]}]",fr,recent,140743651,140743651,abhishek bisht,abhibisht89,delhi,https://t.co/eZzHqFSMJq #deeplearning #DataScience #MachineLearning #nlp #botfactory #ibmwatson #salesforce #environment #education #pharmacovigilance,https://t.co/vKRglgf0rN,"[{'url': 'https://t.co/eZzHqFSMJq', 'expanded_url': 'http://botfactory.in', 'display_url': 'botfactory.in', 'indices': [0, 23]}]",False,900,265,34,Thu May 06 08:19:52 +0000 2010,514,,,False,False,68085,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,True,http://pbs.twimg.com/profile_images/1380163335715500053/rVSoWEVf_normal.jpg,https://pbs.twimg.com/profile_images/1380163335715500053/rVSoWEVf_normal.jpg,0084B4,A8C7F7,C0DFEC,333333,True,True,False,False,False,False,False,none,Thu Apr 15 07:17:34 +0000 2021,1.382593928646566e+18,1382593928646565891,"Les rapports de force générés par l’intelligence artificielle +https://t.co/gDsWRDQDb1 +#ai #artificialintelligence… https://t.co/rr6h5PTrs0",True,"[{'text': 'ai', 'indices': [87, 90]}, {'text': 'artificialintelligence', 'indices': [91, 114]}]",[],[],"[{'url': 'https://t.co/gDsWRDQDb1', 'expanded_url': 'https://www.ege.fr/infoguerre/les-rapports-de-force-generes-par-lintelligence-artificielle', 'display_url': 'ege.fr/infoguerre/les…', 'indices': [62, 85]}, {'url': 'https://t.co/rr6h5PTrs0', 'expanded_url': 'https://twitter.com/i/web/status/1382593928646565891', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,2532238297.0,2532238297,Amb.Sefiani,AmbSefiani,,Dad and D.A.D (Digital Agile Diplomat ),,,[],False,253.0,144.0,5.0,Thu May 29 08:48:17 +0000 2014,1125.0,,,False,False,2081.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/726521537797443584/TDqDWxlg_normal.jpg,https://pbs.twimg.com/profile_images/726521537797443584/TDqDWxlg_normal.jpg,,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,False,"[{'url': 'https://t.co/vKRglgf0rN', 'expanded_url': 'https://botfactory.in/', 'display_url': 'botfactory.in', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/140743651/1569910442,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +143,Thu Apr 15 07:17:34 +0000 2021,1382593928646565891,1382593928646565891,"Les rapports de force générés par l’intelligence artificielle +https://t.co/gDsWRDQDb1 +#ai #artificialintelligence… https://t.co/rr6h5PTrs0",True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'ai', 'indices': [87, 90]}, {'text': 'artificialintelligence', 'indices': [91, 114]}]",[],[],"[{'url': 'https://t.co/gDsWRDQDb1', 'expanded_url': 'https://www.ege.fr/infoguerre/les-rapports-de-force-generes-par-lintelligence-artificielle', 'display_url': 'ege.fr/infoguerre/les…', 'indices': [62, 85]}, {'url': 'https://t.co/rr6h5PTrs0', 'expanded_url': 'https://twitter.com/i/web/status/1382593928646565891', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,2532238297,2532238297,Amb.Sefiani,AmbSefiani,,Dad and D.A.D (Digital Agile Diplomat ),,[],False,253,144,5,Thu May 29 08:48:17 +0000 2014,1125,,,False,False,2081,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/726521537797443584/TDqDWxlg_normal.jpg,https://pbs.twimg.com/profile_images/726521537797443584/TDqDWxlg_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +144,Thu Apr 15 07:11:00 +0000 2021,1382592276778659843,1382592276778659843,#IA : @HPE_FR équipera d'un #supercalculateur la Maison de l'#IntelligenceArtificielle à #SophiaAntipolis… https://t.co/LuZBFAYN0p,True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'supercalculateur', 'indices': [28, 45]}, {'text': 'IntelligenceArtificielle', 'indices': [61, 86]}, {'text': 'SophiaAntipolis', 'indices': [89, 105]}]",[],"[{'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [6, 13]}]","[{'url': 'https://t.co/LuZBFAYN0p', 'expanded_url': 'https://twitter.com/i/web/status/1382592276778659843', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,94587866,94587866,BF Tech & Services Innovants,BF_TechServices,"Paris, France","Business France 🇫🇷 vous accompagne dans la réussite de vos projets à l’international : information, prospection, communication. #FrenchTech #GoGlobal 🚀",https://t.co/LDYRE4749A,[],False,9119,4417,623,Fri Dec 04 16:15:04 +0000 2009,14658,,,True,False,24028,,False,False,True,8A9194,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/886920823562522624/tNiYKGFj_normal.jpg,https://pbs.twimg.com/profile_images/886920823562522624/tNiYKGFj_normal.jpg,0084B4,FFFFFF,F0F3F5,333333,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/LDYRE4749A', 'expanded_url': 'http://www.businessfrance-tech.fr', 'display_url': 'businessfrance-tech.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/94587866/1573724421,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +145,Thu Apr 15 07:00:06 +0000 2021,1382589530881064961,1382589530881064961,"Selon la #NSCAI l' #IntelligenceArtificielle va bouleverser l’ordre des conflits. «Aujourd’hui, les utilisations en… https://t.co/aR3SQ3gen8",True,"LinkedIn",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NSCAI', 'indices': [9, 15]}, {'text': 'IntelligenceArtificielle', 'indices': [19, 44]}]",[],[],"[{'url': 'https://t.co/aR3SQ3gen8', 'expanded_url': 'https://twitter.com/i/web/status/1382589530881064961', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3277681063,3277681063,Kamal HALLAF,KamalHallaf,"Ile-de-France, France",#Industry40 #AI #Innovation #Digital #DeepLearning #Iot #CyberSecurity #Infosec #BigData #DataScience #Startups #Fintech #Insurtech #EmergingTech #FutureofWork,https://t.co/QPNn2JBYrb,[],False,3139,3086,25,Sun Jul 12 16:09:47 +0000 2015,223,,,False,False,626,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1272930152905953280/-hqxExxh_normal.jpg,https://pbs.twimg.com/profile_images/1272930152905953280/-hqxExxh_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/QPNn2JBYrb', 'expanded_url': 'http://linkedin.com/in/kamalhallaf', 'display_url': 'linkedin.com/in/kamalhallaf', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3277681063/1614974746,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +146,Thu Apr 15 04:00:05 +0000 2021,1382544228534849539,1382544228534849539,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"standard3d",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,164372140,164372140,Holodeck Mobile VR,standard3d,"Toronto, Ontario",Best Mobile VR for Architecture. #architecture #android #vr,https://t.co/TLkvrJtkJU,[],False,2004,5004,30,Thu Jul 08 18:26:50 +0000 2010,88947,,,False,False,98614,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/932293762859933696/0cZJxZtp_normal.jpg,https://pbs.twimg.com/profile_images/932293762859933696/0cZJxZtp_normal.jpg,0905FF,000000,000000,474747,True,False,False,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,"[{'url': 'https://t.co/TLkvrJtkJU', 'expanded_url': 'http://standard3d.com', 'display_url': 'standard3d.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/164372140/1512526470,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +147,Thu Apr 15 03:09:56 +0000 2021,1382531611326095361,1382531611326095361,"RT @__LENIA: #Twitter travaille sur une intelligence artificielle plus éthique et plus #transparente +via @alexchenette +#éthique #numérique…",False,"Integromat",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Twitter', 'indices': [13, 21]}, {'text': 'transparente', 'indices': [87, 100]}, {'text': 'éthique', 'indices': [120, 128]}, {'text': 'numérique', 'indices': [129, 139]}]",[],"[{'screen_name': '__LENIA', 'name': 'LEN.IA', 'id': 1225612353053564928, 'id_str': '1225612353053564928', 'indices': [3, 11]}, {'screen_name': 'alexchenette', 'name': 'ᴀʟᴇxᴀɴᴅʀᴇ ᴄʜᴇɴᴇᴛᴛᴇ', 'id': 1405094900, 'id_str': '1405094900', 'indices': [105, 118]}]",[],fr,recent,439561828,439561828,DevMy,DevMy_fr,France,Si 1 entreprise doit ressembler à son dirigeant et 1 logo doit ressembler à son entreprise = 1 logo doit ressembler au dirigeant ... je crois que c’est bon !,https://t.co/RgigaS8wAm,[],False,1694,3594,101,Sat Dec 17 23:05:37 +0000 2011,202,,,False,False,35386,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,False,http://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,https://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,0099B9,FFFFFF,95E8EC,3C3940,True,True,False,False,False,False,False,none,Thu Apr 15 02:22:35 +0000 2021,1.3825196947044557e+18,1382519694704455680,"#Twitter travaille sur une intelligence artificielle plus éthique et plus #transparente +via @alexchenette +#éthique… https://t.co/4SaPJI6eMq",True,"[{'text': 'Twitter', 'indices': [0, 8]}, {'text': 'transparente', 'indices': [74, 87]}, {'text': 'éthique', 'indices': [107, 115]}]",[],"[{'screen_name': 'alexchenette', 'name': 'ᴀʟᴇxᴀɴᴅʀᴇ ᴄʜᴇɴᴇᴛᴛᴇ', 'id': 1405094900, 'id_str': '1405094900', 'indices': [92, 105]}]","[{'url': 'https://t.co/4SaPJI6eMq', 'expanded_url': 'https://twitter.com/i/web/status/1382519694704455680', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.225612353053565e+18,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",[],False,1120.0,2863.0,22.0,Fri Feb 07 02:49:47 +0000 2020,288.0,,,False,False,3112.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,,"[{'url': 'https://t.co/RgigaS8wAm', 'expanded_url': 'https://devmy.fr', 'display_url': 'devmy.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/439561828/1611138098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +148,Thu Apr 15 02:31:24 +0000 2021,1382521909980577795,1382521909980577795,"#Législation sur l’IA : l’#Europe laisse une porte ouverte pour la #surveillance de sa population +via… https://t.co/gV6UMUq9F5",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Législation', 'indices': [0, 12]}, {'text': 'Europe', 'indices': [26, 33]}, {'text': 'surveillance', 'indices': [67, 80]}]",[],[],"[{'url': 'https://t.co/gV6UMUq9F5', 'expanded_url': 'https://twitter.com/i/web/status/1382521909980577795', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [103, 126]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +149,Thu Apr 15 02:22:35 +0000 2021,1382519694704455680,1382519694704455680,"#Twitter travaille sur une intelligence artificielle plus éthique et plus #transparente +via @alexchenette +#éthique… https://t.co/4SaPJI6eMq",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Twitter', 'indices': [0, 8]}, {'text': 'transparente', 'indices': [74, 87]}, {'text': 'éthique', 'indices': [107, 115]}]",[],"[{'screen_name': 'alexchenette', 'name': 'ᴀʟᴇxᴀɴᴅʀᴇ ᴄʜᴇɴᴇᴛᴛᴇ', 'id': 1405094900, 'id_str': '1405094900', 'indices': [92, 105]}]","[{'url': 'https://t.co/4SaPJI6eMq', 'expanded_url': 'https://twitter.com/i/web/status/1382519694704455680', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +150,Thu Apr 15 00:57:19 +0000 2021,1382498234355044356,1382498234355044356,🌇#NightReplay [#IntelligenceArtificielle #IA] La Poste acquiert OpenValue et inaugure un nouveau pôle data et intel… https://t.co/SFBSU5vmrX,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/SFBSU5vmrX', 'expanded_url': 'https://twitter.com/i/web/status/1382498234355044356', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +151,Thu Apr 15 00:02:07 +0000 2021,1382484344783130629,1382484344783130629,🌇#NightReplay [#IntelligenceArtificielle #IA] AXA collabore avec Microsoft pour concevoir un écosystème de service… https://t.co/Lujn8dbJqY,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/Lujn8dbJqY', 'expanded_url': 'https://twitter.com/i/web/status/1382484344783130629', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +152,Wed Apr 14 23:45:35 +0000 2021,1382480182074757123,1382480182074757123,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1259455055528202240,1259455055528202240,Bouttemy Franck,BouttemyF,,"Enseignant de SVT. Corée et Zone Asie Pacifique Nord. +Mission de conseil pédagogique.",,[],False,75,401,0,Sun May 10 12:07:57 +0000 2020,1056,,,True,False,840,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1259455487294107648/sYAKoSg8_normal.jpg,https://pbs.twimg.com/profile_images/1259455487294107648/sYAKoSg8_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +153,Wed Apr 14 23:41:51 +0000 2021,1382479242760425474,1382479242760425474,🌇#NightReplay [#IntelligenceArtificielle #IA] L’OTAN travaille à l’encadrement de l’utilisation de l’intelligence a… https://t.co/bfRHc23sGi,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/bfRHc23sGi', 'expanded_url': 'https://twitter.com/i/web/status/1382479242760425474', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +154,Wed Apr 14 23:02:33 +0000 2021,1382469353451499520,1382469353451499520,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,1126538509,1126538509,Cimelli,ClaudioCimelli,"Numeri'lab, DNE",Directeur de projet,http://t.co/R8OAsD8sjj,[],False,1470,989,108,Sun Jan 27 23:50:16 +0000 2013,3126,,,False,False,10183,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/734850134316621825/NQDNfd5l_normal.jpg,https://pbs.twimg.com/profile_images/734850134316621825/NQDNfd5l_normal.jpg,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,"[{'url': 'http://t.co/R8OAsD8sjj', 'expanded_url': 'http://www.education.gouv.fr/pid29064/ecole-numerique.html', 'display_url': 'education.gouv.fr/pid29064/ecole…', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/1126538509/1367048766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +155,Wed Apr 14 22:16:31 +0000 2021,1382457767458398210,1382457767458398210,"🌇#NightReplay [#IntelligenceArtificielle #IA] Cas d’usage : John Deere, en collaboration avec Intel, développe sa p… https://t.co/lHM5MOZwbr",True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/lHM5MOZwbr', 'expanded_url': 'https://twitter.com/i/web/status/1382457767458398210', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +156,Wed Apr 14 21:33:17 +0000 2021,1382446888511737857,1382446888511737857,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,1323165172215721986,1323165172215721986,GTnum Scol_IA,Scol_IA,Nice,Groupe thématique numérique (#GTnum) #Scol_IA : Intelligence Artificielle et éducation. #IA @fabline06 @univ_cotedazur @Terra_Numerica @edu_num #5c21,https://t.co/h9HHOPUmGG,[],False,309,651,5,Mon Nov 02 07:29:08 +0000 2020,405,,,False,False,500,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1332229924619509762/k_PqEzOQ_normal.jpg,https://pbs.twimg.com/profile_images/1332229924619509762/k_PqEzOQ_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,"[{'url': 'https://t.co/h9HHOPUmGG', 'expanded_url': 'https://scoliablog.wordpress.com/', 'display_url': 'scoliablog.wordpress.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1323165172215721986/1604471748,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +157,Wed Apr 14 21:25:33 +0000 2021,1382444941599723522,1382444941599723522,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,2622322203,2622322203,ANS554433,Ans666888,,,,[],False,73,52,21,Thu Jun 19 07:38:42 +0000 2014,99,,,False,False,50455,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1356650294634024962/44u9PzQP_normal.jpg,https://pbs.twimg.com/profile_images/1356650294634024962/44u9PzQP_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/2622322203/1612286879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +158,Wed Apr 14 21:08:33 +0000 2021,1382440664651153408,1382440664651153408,"@precisement #IA & #PI, 1-2 articles marquants ? #BENSAMOUN A. @alexbensamoun , « IA & PI », in BENSAMOUN A. et LOI… https://t.co/ishdyHDaQV",True,"Twitter Web App",1.382055317077377e+18,1382055317077377025,95864000.0,95864000,precisement,,,,,False,1,0,False,False,fr,"[{'text': 'IA', 'indices': [13, 16]}, {'text': 'PI', 'indices': [23, 26]}, {'text': 'BENSAMOUN', 'indices': [53, 63]}]",[],"[{'screen_name': 'precisement', 'name': 'precisement.org', 'id': 95864000, 'id_str': '95864000', 'indices': [0, 12]}, {'screen_name': 'alexbensamoun', 'name': 'Alexandra Bensamoun', 'id': 801879421221306368, 'id_str': '801879421221306368', 'indices': [67, 81]}]","[{'url': 'https://t.co/ishdyHDaQV', 'expanded_url': 'https://twitter.com/i/web/status/1382440664651153408', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [125, 148]}]",fr,recent,1033461479733948417,1033461479733948417,Jus Numerium,JusNumerium,,#TransfoNum : #Algo #BATX #BlockChain #Communs #Crypto #Cyber #Données #Drone #GAFAM #IA #Innovation #IoT #LiFi #NATU #NBIC #Open #Quantique #RA #Robot #RV #5G,,[],False,1408,4997,15,Sat Aug 25 21:09:52 +0000 2018,1655,,,False,False,4412,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1043861799634956288/yieKtVb4_normal.jpg,https://pbs.twimg.com/profile_images/1043861799634956288/yieKtVb4_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,https://pbs.twimg.com/profile_banners/1033461479733948417/1537711087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +159,Wed Apr 14 20:00:42 +0000 2021,1382423587123032070,1382423587123032070,RT @ProfLeluherne: #Intelligenceartificielle : la nécessaire réflexion #citoyenne - ⁦@thot⁩ ⁦@eidos64⁩ #eidos64 #IA https://t.co/IBGRNMh2sh,False,"Twitter for iPhone",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Intelligenceartificielle', 'indices': [19, 44]}, {'text': 'citoyenne', 'indices': [71, 81]}, {'text': 'eidos64', 'indices': [103, 111]}, {'text': 'IA', 'indices': [112, 115]}]",[],"[{'screen_name': 'ProfLeluherne', 'name': 'Nicolas Le Luherne 🌻', 'id': 60351876, 'id_str': '60351876', 'indices': [3, 17]}, {'screen_name': 'thot', 'name': 'Thot - Cursus', 'id': 629633, 'id_str': '629633', 'indices': [85, 90]}, {'screen_name': 'eidos64', 'name': 'Eidos 64', 'id': 581127312, 'id_str': '581127312', 'indices': [93, 101]}]","[{'url': 'https://t.co/IBGRNMh2sh', 'expanded_url': 'https://cursus.edu/articles/44103/intelligence-artificielle-la-necessaire-reflexion-citoyenne', 'display_url': 'cursus.edu/articles/44103…', 'indices': [117, 140]}]",fr,recent,60351876,60351876,Nicolas Le Luherne 🌻,ProfLeluherne,"Chartres, France","Directeur d’ateliers Canopé et demain IEN #Lettreshistoiregéographie #dandysmenumérique, #makers #couturier #slasher",https://t.co/wxXdUs3dFC,[],False,3537,2695,428,Sun Jul 26 17:33:24 +0000 2009,11823,,,True,False,37285,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/785936552698449920/8bctY_5W_normal.jpg,https://pbs.twimg.com/profile_images/785936552698449920/8bctY_5W_normal.jpg,2FC2EF,181A1E,252429,666666,True,True,False,False,False,False,False,none,Wed Apr 14 05:51:33 +0000 2021,1.3822098925728604e+18,1382209892572860417,#Intelligenceartificielle : la nécessaire réflexion #citoyenne - ⁦@thot⁩ ⁦@eidos64⁩ #eidos64 #IA https://t.co/IBGRNMh2sh,False,"[{'text': 'Intelligenceartificielle', 'indices': [0, 25]}, {'text': 'citoyenne', 'indices': [52, 62]}, {'text': 'eidos64', 'indices': [84, 92]}, {'text': 'IA', 'indices': [93, 96]}]",[],"[{'screen_name': 'thot', 'name': 'Thot - Cursus', 'id': 629633, 'id_str': '629633', 'indices': [66, 71]}, {'screen_name': 'eidos64', 'name': 'Eidos 64', 'id': 581127312, 'id_str': '581127312', 'indices': [74, 82]}]","[{'url': 'https://t.co/IBGRNMh2sh', 'expanded_url': 'https://cursus.edu/articles/44103/intelligence-artificielle-la-necessaire-reflexion-citoyenne', 'display_url': 'cursus.edu/articles/44103…', 'indices': [98, 121]}]",fr,recent,"Twitter for iPhone",,,,,,60351876.0,60351876,Nicolas Le Luherne 🌻,ProfLeluherne,"Chartres, France","Directeur d’ateliers Canopé et demain IEN #Lettreshistoiregéographie #dandysmenumérique, #makers #couturier #slasher",https://t.co/wxXdUs3dFC,"[{'url': 'https://t.co/wxXdUs3dFC', 'expanded_url': 'https://medium.com/@ProfLeluherne', 'display_url': 'medium.com/@ProfLeluherne', 'indices': [0, 23]}]",[],False,3537.0,2695.0,428.0,Sun Jul 26 17:33:24 +0000 2009,11823.0,,,True,False,37285.0,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/785936552698449920/8bctY_5W_normal.jpg,https://pbs.twimg.com/profile_images/785936552698449920/8bctY_5W_normal.jpg,https://pbs.twimg.com/profile_banners/60351876/1606377439,2FC2EF,181A1E,252429,666666,True,True,False,False,False,False,False,none,,,,,False,1.0,3.0,False,False,False,fr,False,"[{'url': 'https://t.co/wxXdUs3dFC', 'expanded_url': 'https://medium.com/@ProfLeluherne', 'display_url': 'medium.com/@ProfLeluherne', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/60351876/1606377439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +160,Wed Apr 14 19:09:08 +0000 2021,1382410612580421635,1382410612580421635,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter for Mac",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,42608567,42608567,Jean-Michel Cambot,jmcambot,Montpellier Paris SanFrancisco,"Inventing the next big one... Available for hire :-) +Atempo/Nextino Chief Technical Evangelist +Tellmeplus Founder & Chief Strategy +Business Objects inventor",,[],False,628,160,294,Tue May 26 11:46:23 +0000 2009,3745,,,True,False,10014,,False,False,False,000000,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/892786530925916161/d4z3llV-_normal.jpg,https://pbs.twimg.com/profile_images/892786530925916161/d4z3llV-_normal.jpg,1B95E0,000000,000000,000000,False,True,False,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/42608567/1579192982,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +161,Wed Apr 14 18:58:21 +0000 2021,1382407898383462407,1382407898383462407,"RT @CampusRegion: [JPO virtuelles] Dans cette nouvelle vidéo, découvrez un exemple concret d'utilisation de l'#iA avec le cas de l'entrepri…",False,"Twitter for Android",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'iA', 'indices': [110, 113]}]",[],"[{'screen_name': 'CampusRegion', 'name': 'Campus Région du numérique', 'id': 879316492352966656, 'id_str': '879316492352966656', 'indices': [3, 16]}]",[],fr,recent,908092794,908092794,Pascal RAY,PascalRAY1,Saint-Etienne,"Directeur @MINES_StEtienne @IMTFrance, @saint_etienne_ @RotondeSciences #industriedufutur #manufacturedufutur @FrenchTechSte",https://t.co/A1vUIY3tJ6,[],False,1903,1141,410,Sat Oct 27 13:16:33 +0000 2012,18507,,,True,False,18192,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/698822390109839360/IMoaihC__normal.jpg,https://pbs.twimg.com/profile_images/698822390109839360/IMoaihC__normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 13:18:31 +0000 2021,1.3819599887557632e+18,1381959988755763204,"[JPO virtuelles] Dans cette nouvelle vidéo, découvrez un exemple concret d'utilisation de l'#iA avec le cas de l'en… https://t.co/8IUrXoeI6h",True,"[{'text': 'iA', 'indices': [92, 95]}]",[],[],"[{'url': 'https://t.co/8IUrXoeI6h', 'expanded_url': 'https://twitter.com/i/web/status/1381959988755763204', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.793164923529667e+17,879316492352966656,Campus Région du numérique,CampusRegion,"Auvergne-Rhône-Alpes, France","+ qu'un lieu : 1 réseau de formations, de structures d'accompagnement, de fablabs & d'initiatives pour la #TransfoNum et l'#industriedufutur en @auvergnerhalpes",https://t.co/JKKXRf2WrB,"[{'url': 'https://t.co/JKKXRf2WrB', 'expanded_url': 'https://campusnumerique.auvergnerhonealpes.fr', 'display_url': 'campusnumerique.auvergnerhonealpes.fr', 'indices': [0, 23]}]",[],False,2067.0,509.0,27.0,Mon Jun 26 12:32:43 +0000 2017,1559.0,,,False,False,2597.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,https://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,https://pbs.twimg.com/profile_banners/879316492352966656/1617803945,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,3.0,False,False,False,fr,False,"[{'url': 'https://t.co/A1vUIY3tJ6', 'expanded_url': 'http://www.mines-stetienne.fr', 'display_url': 'mines-stetienne.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/908092794/1421182710,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +162,Wed Apr 14 18:53:13 +0000 2021,1382406605296300038,1382406605296300038,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter for iPhone",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,977623709073788929,977623709073788929,RAZA,miora_raza,"Paris, France","Motivated worker for a lucky company, I am still looking for it",https://t.co/4a46QoYsk5,[],False,47,226,0,Sat Mar 24 19:10:30 +0000 2018,1278,,,False,False,580,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1246949025468887046/Y8JAP8aA_normal.jpg,https://pbs.twimg.com/profile_images/1246949025468887046/Y8JAP8aA_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,"[{'url': 'https://t.co/4a46QoYsk5', 'expanded_url': 'http://linkedin.com/in/mioranirina-razafinavalona-ab042156', 'display_url': 'linkedin.com/in/mioranirina…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/977623709073788929/1521922630,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +163,Wed Apr 14 18:26:10 +0000 2021,1382399799006277632,1382399799006277632,"RT @IfmParis: Pour comprendre la montée en puissance de l'#IntelligenceArtificielle dans les stratégies d'entreprise, partir de l'explosion…",False,"AiSpaceBot",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [58, 83]}]",[],"[{'screen_name': 'IfmParis', 'name': 'IfmParis', 'id': 35792246, 'id_str': '35792246', 'indices': [3, 12]}]",[],fr,recent,935446829730291717,935446829730291717,godfrey,godfrey_G_,"Johannesburg, South Africa","If our limited intelligence got us here imagine where unlimited A.I intelligence can take us. Hi Am GeE and am a God fearing, Space fanatic and an AI believer.",,[],False,1454,31,31,Tue Nov 28 09:54:38 +0000 2017,57374,,,False,False,195280,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1331728812300767233/vplJ5zhZ_normal.jpg,https://pbs.twimg.com/profile_images/1331728812300767233/vplJ5zhZ_normal.jpg,7FDBB6,000000,000000,000000,False,False,False,False,False,False,False,none,Wed Apr 14 18:24:35 +0000 2021,1.382399399771435e+18,1382399399771435018,"Pour comprendre la montée en puissance de l'#IntelligenceArtificielle dans les stratégies d'entreprise, partir de l… https://t.co/IBZespza1n",True,"[{'text': 'IntelligenceArtificielle', 'indices': [44, 69]}]",[],[],"[{'url': 'https://t.co/IBZespza1n', 'expanded_url': 'https://twitter.com/i/web/status/1382399399771435018', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,35792246.0,35792246,IfmParis,IfmParis,"Paris, France","Institut Français de la Mode provides programmes in fashion design, management and craftsmanship, with a strong focus on culture and extensive industry ties.",https://t.co/cldv07iYN6,"[{'url': 'https://t.co/cldv07iYN6', 'expanded_url': 'http://www.ifmparis.fr', 'display_url': 'ifmparis.fr', 'indices': [0, 23]}]",[],False,26802.0,28139.0,788.0,Mon Apr 27 16:55:47 +0000 2009,5111.0,,,True,False,36061.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1125791296596140037/YDNHnRIU_normal.png,https://pbs.twimg.com/profile_images/1125791296596140037/YDNHnRIU_normal.png,https://pbs.twimg.com/profile_banners/35792246/1557244520,5CCC4E,000000,DEDEDE,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/935446829730291717/1540381509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +164,Wed Apr 14 18:24:35 +0000 2021,1382399399771435018,1382399399771435018,"Pour comprendre la montée en puissance de l'#IntelligenceArtificielle dans les stratégies d'entreprise, partir de l… https://t.co/IBZespza1n",True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [44, 69]}]",[],[],"[{'url': 'https://t.co/IBZespza1n', 'expanded_url': 'https://twitter.com/i/web/status/1382399399771435018', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,35792246,35792246,IfmParis,IfmParis,"Paris, France","Institut Français de la Mode provides programmes in fashion design, management and craftsmanship, with a strong focus on culture and extensive industry ties.",https://t.co/cldv07iYN6,[],False,26802,28139,788,Mon Apr 27 16:55:47 +0000 2009,5111,,,True,False,36061,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1125791296596140037/YDNHnRIU_normal.png,https://pbs.twimg.com/profile_images/1125791296596140037/YDNHnRIU_normal.png,5CCC4E,000000,DEDEDE,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/cldv07iYN6', 'expanded_url': 'http://www.ifmparis.fr', 'display_url': 'ifmparis.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/35792246/1557244520,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +165,Wed Apr 14 17:49:03 +0000 2021,1382390458912010246,1382390458912010246,"#IA - #IntelligenceArtificielle : une #veille augmentée ? Archimag, n° 343, avril 2021 +👉 https://t.co/MBmO6PpWQ3… https://t.co/GbOYCYWLdA",True,"Twitter Web App",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'IntelligenceArtificielle', 'indices': [6, 31]}, {'text': 'veille', 'indices': [38, 45]}]",[],[],"[{'url': 'https://t.co/MBmO6PpWQ3', 'expanded_url': 'https://bit.ly/3wY1jUG', 'display_url': 'bit.ly/3wY1jUG', 'indices': [89, 112]}, {'url': 'https://t.co/GbOYCYWLdA', 'expanded_url': 'https://twitter.com/i/web/status/1382390458912010246', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [114, 137]}]",fr,recent,1040548925843939329,1040548925843939329,Manuel Fernandez,Sur_la_veille,Dijon,"Outils, démarches et usages pour veiller sur l’information.",,[],False,61,45,3,Fri Sep 14 10:32:51 +0000 2018,3,,,False,False,1040,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1040652642261893121/C3SvpijV_normal.jpg,https://pbs.twimg.com/profile_images/1040652642261893121/C3SvpijV_normal.jpg,91D2FA,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +166,Wed Apr 14 17:45:11 +0000 2021,1382389485791539212,1382389485791539212,[#IntelligenceArtificielle #IA] AXA collabore avec Microsoft pour concevoir un écosystème de service de santé via… https://t.co/Q6hiwhh9u2,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}, {'text': 'IA', 'indices': [27, 30]}]",[],[],"[{'url': 'https://t.co/Q6hiwhh9u2', 'expanded_url': 'https://twitter.com/i/web/status/1382389485791539212', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [115, 138]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +167,Wed Apr 14 17:06:14 +0000 2021,1382379683040407555,1382379683040407555,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"SociabbleApp",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,2331496824,2331496824,Pierre-Eric Guyot,Peg21240,Bourgogne,"Lean Manager +#Onsite #zcx #zcq #adecco #dijon #bourgogne #economie #hightech #vins #fintech #lean #ameliorationcontinue +#greenbelt",,[],False,649,898,133,Fri Feb 07 07:59:23 +0000 2014,10049,,,True,False,15546,,False,False,False,B2DFDA,http://abs.twimg.com/images/themes/theme13/bg.gif,https://abs.twimg.com/images/themes/theme13/bg.gif,False,http://pbs.twimg.com/profile_images/431834002186440705/GCKlMSTl_normal.jpeg,https://pbs.twimg.com/profile_images/431834002186440705/GCKlMSTl_normal.jpeg,3B94D9,FFFFFF,FFFFFF,333333,True,False,False,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/2331496824/1402253432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +168,Wed Apr 14 16:38:54 +0000 2021,1382372805963038723,1382372805963038723,"RT @Probayes_IA: Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeurs et c…",False,"Twitter for iPhone",,,,,,,,,,True,5,0,False,False,fr,[],[],"[{'screen_name': 'Probayes_IA', 'name': 'Probayes', 'id': 1151741890502565888, 'id_str': '1151741890502565888', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [25, 39]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [89, 101]}]",[],fr,recent,83834838,83834838,Antoine Jeanjean,toniojj,"Bordeaux, France",Operations Research & Pricing External Lecturer - @Recommerce @RecommerceGroup Co-founder - @Dataquitaine - @frenchtech_code @IADataScience,https://t.co/wGBkcfvdKu,[],False,1617,5002,213,Tue Oct 20 12:39:27 +0000 2009,705,,,True,False,3682,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1382613382377971714/M7qVjSsx_normal.jpg,https://pbs.twimg.com/profile_images/1382613382377971714/M7qVjSsx_normal.jpg,2FC2EF,FFFFFF,252429,666666,False,False,False,False,False,False,False,none,Wed Apr 14 13:36:41 +0000 2021,1.382326948387504e+18,1382326948387504128,"Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeu… https://t.co/SSCm1k3TK3",True,[],[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [8, 22]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [72, 84]}]","[{'url': 'https://t.co/SSCm1k3TK3', 'expanded_url': 'https://twitter.com/i/web/status/1382326948387504128', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.1517418905025659e+18,1151741890502565888,Probayes,Probayes_IA,38330 Montbonnot,"L'Intelligence Artificielle sur mesure à votre service ! +#IA #Intelligenceartificielle #Automobile #Défense #Distribution #Finance #Industrie #logistique #Santé",https://t.co/gDHGiQ08Df,"[{'url': 'https://t.co/gDHGiQ08Df', 'expanded_url': 'http://www.probayes.com', 'display_url': 'probayes.com', 'indices': [0, 23]}]",[],False,204.0,823.0,4.0,Thu Jul 18 06:33:59 +0000 2019,168.0,,,False,False,238.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_banners/1151741890502565888/1609774920,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,True,5.0,5.0,False,False,False,fr,,"[{'url': 'https://t.co/wGBkcfvdKu', 'expanded_url': 'http://www.antoinejeanjean.fr', 'display_url': 'antoinejeanjean.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/83834838/1611216136,1.3822375631135867e+18,1382237563113586688,1.3822375631135867e+18,1382237563113586688,Wed Apr 14 07:41:30 +0000 2021,1.3822375631135867e+18,1382237563113586688,#COMMUNIQUE | #LaPoste crée un acteur de référence du conseil en Intelligence Artificielle pour les entreprises ave… https://t.co/afimhB8WLT,True,"[{'text': 'COMMUNIQUE', 'indices': [0, 11]}, {'text': 'LaPoste', 'indices': [14, 22]}]",[],[],"[{'url': 'https://t.co/afimhB8WLT', 'expanded_url': 'https://twitter.com/i/web/status/1382237563113586688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,57691450.0,57691450,Le Groupe La Poste,GroupeLaPoste,,Pour tout savoir de l'actu du Groupe #LaPoste et ses projets de transformations! #EcolOgic #TousEngagés #VousSimplifierLaVie Service clients : @LisaLaPoste,https://t.co/9BSEcmuGi4,"[{'url': 'https://t.co/9BSEcmuGi4', 'expanded_url': 'http://www.groupelaposte.com', 'display_url': 'groupelaposte.com', 'indices': [0, 23]}]",[],False,40066.0,5536.0,980.0,Fri Jul 17 16:48:30 +0000 2009,38410.0,,,True,True,45264.0,,False,False,False,0067A7,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,False,http://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_banners/57691450/1614264578,215382,D6EBF2,AACCD8,272727,True,False,False,False,False,False,False,none,,,,,False,14.0,29.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +169,Wed Apr 14 16:35:42 +0000 2021,1382372001013248002,1382372001013248002,RT @_OpenStudio_: L'intelligence artificielle démontre son utilité dans de nombreux domaines et notre santé ne fait pas exception. Focus su…,False,"Twitter for Android",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': '_OpenStudio_', 'name': 'OpenStudio', 'id': 84847876, 'id_str': '84847876', 'indices': [3, 16]}]",[],fr,recent,122104019,122104019,Céline Patissier,celine1008,"Auvergne, France","Rédactrice pour @_OpenStudio_, community manager freelance, blog culturel Les Plaisirs Démodés .... la vie est trop courte pour se donner des limites😀",https://t.co/xhqqLQxBRP,[],False,334,563,17,Thu Mar 11 16:10:38 +0000 2010,361,,,False,False,1689,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1093822633831997440/2B_ElEA1_normal.jpg,https://pbs.twimg.com/profile_images/1093822633831997440/2B_ElEA1_normal.jpg,ABB8C2,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Wed Apr 14 06:11:09 +0000 2021,1.3822148257412588e+18,1382214825741258752,L'intelligence artificielle démontre son utilité dans de nombreux domaines et notre santé ne fait pas exception. Fo… https://t.co/qd8yyzzgAH,True,[],[],[],"[{'url': 'https://t.co/qd8yyzzgAH', 'expanded_url': 'https://twitter.com/i/web/status/1382214825741258752', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,84847876.0,84847876,OpenStudio,_OpenStudio_,France,"OpenStudio est une ESN intervenant dans 3 activités principales : Intelligence Artificielle, E-commerce et Développement sur-mesure. +#ecommerce #thelia #ai",https://t.co/emaogzLQKF,"[{'url': 'https://t.co/emaogzLQKF', 'expanded_url': 'https://www.openstudio.fr', 'display_url': 'openstudio.fr', 'indices': [0, 23]}]",[],False,744.0,496.0,56.0,Sat Oct 24 13:31:29 +0000 2009,73.0,,,False,False,1305.0,,False,False,False,0899D3,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1314470660090011648/yyItsJad_normal.jpg,https://pbs.twimg.com/profile_images/1314470660090011648/yyItsJad_normal.jpg,https://pbs.twimg.com/profile_banners/84847876/1607534715,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,False,"[{'url': 'https://t.co/xhqqLQxBRP', 'expanded_url': 'http://www.lesplaisirsdemodes.com', 'display_url': 'lesplaisirsdemodes.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/122104019/1549622587,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +170,Wed Apr 14 16:08:25 +0000 2021,1382365131795992577,1382365131795992577,"RT @ActuIAFr: Parrot signe un partenariat avec High Lander afin d’automatiser et d’améliorer l’efficacité de leurs drones +#drone #IA #AI #I…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'drone', 'indices': [122, 128]}, {'text': 'IA', 'indices': [129, 132]}, {'text': 'AI', 'indices': [133, 136]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,1285219200588546048,1285219200588546048,STAI,SmartTech_AI,Perpignan,"#IntelligenceArtificielle (#IA), #Technologie, #Informatique et #management; découvrir l'histoire et l'actualité du monde.",,[],False,1156,1144,8,Mon Jul 20 14:25:23 +0000 2020,93,,,False,False,126,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1299687093023772673/vh9bI0PZ_normal.png,https://pbs.twimg.com/profile_images/1299687093023772673/vh9bI0PZ_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Apr 14 15:33:38 +0000 2021,1.382356380120707e+18,1382356380120707075,"Parrot signe un partenariat avec High Lander afin d’automatiser et d’améliorer l’efficacité de leurs drones +#drone… https://t.co/A4oOqs3iek",True,"[{'text': 'drone', 'indices': [108, 114]}]",[],[],"[{'url': 'https://t.co/A4oOqs3iek', 'expanded_url': 'https://twitter.com/i/web/status/1382356380120707075', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1285219200588546048/1595255661,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +171,Wed Apr 14 15:33:38 +0000 2021,1382356380120707075,1382356380120707075,"Parrot signe un partenariat avec High Lander afin d’automatiser et d’améliorer l’efficacité de leurs drones +#drone… https://t.co/A4oOqs3iek",True,"Twitter Web App",,,,,,,,,,False,2,1,False,False,fr,"[{'text': 'drone', 'indices': [108, 114]}]",[],[],"[{'url': 'https://t.co/A4oOqs3iek', 'expanded_url': 'https://twitter.com/i/web/status/1382356380120707075', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +172,Wed Apr 14 15:01:48 +0000 2021,1382348367561437184,1382348367561437184,"RT @OpenvalueFR: Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de référenc…",False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'leaders', 'indices': [119, 127]}]",[],"[{'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [77, 91]}]",[],fr,recent,264044646,264044646,Broihier Alexandra,madeleine9975,,,,[],False,29,96,0,Fri Mar 11 06:49:34 +0000 2011,78,,,True,False,94,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1348532949663293440/TVxs9AVD_normal.jpg,https://pbs.twimg.com/profile_images/1348532949663293440/TVxs9AVD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 14:14:41 +0000 2021,1.3823365106247393e+18,1382336510624739334,"Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de r… https://t.co/u7Kky4whQ9",True,"[{'text': 'leaders', 'indices': [102, 110]}]",[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [60, 74]}]","[{'url': 'https://t.co/u7Kky4whQ9', 'expanded_url': 'https://twitter.com/i/web/status/1382336510624739334', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,2817310092.0,2817310092,Openvalue,OpenvalueFR,Paris,"#BigData - #IoT - #Digital - Nous accompagnons les entreprises dans la transformation de leurs usages, #données et objets",http://t.co/ETGqvCEjis,"[{'url': 'http://t.co/ETGqvCEjis', 'expanded_url': 'http://Openvalue.co', 'display_url': 'Openvalue.co', 'indices': [0, 22]}]",[],False,168.0,101.0,32.0,Thu Sep 18 16:55:41 +0000 2014,19.0,,,True,False,554.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_banners/2817310092/1411114837,FC5649,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,15.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +173,Wed Apr 14 14:27:16 +0000 2021,1382339676300795907,1382339676300795907,"RT @ctricot: Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur ceux visés p…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,[],[],"[{'screen_name': 'ctricot', 'name': 'Christophe Tricot', 'id': 16663249, 'id_str': '16663249', 'indices': [3, 11]}]",[],fr,recent,1001287243242328065,1001287243242328065,John James Kevin,JohnNdzana,,"Toujours faire du bien autour de soi💐 +Toujours garder son sens de l'humour😊 +Toujours vivre chaque jours avec amour et passion👋 +Toujours croire en soi👊",,[],False,783,2960,3,Tue May 29 02:20:56 +0000 2018,36235,,,False,False,14445,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382291906768601089/51N93dsK_normal.jpg,https://pbs.twimg.com/profile_images/1382291906768601089/51N93dsK_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 14:15:06 +0000 2021,1.3823366168328438e+18,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,16663249.0,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",[],False,50517.0,683.0,1655.0,Thu Oct 09 07:02:11 +0000 2008,12796.0,,,True,False,39331.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_banners/16663249/1595343909,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,8.0,14.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1001287243242328065/1589986901,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +174,Wed Apr 14 14:15:37 +0000 2021,1382336746453614593,1382336746453614593,"RT @OpenvalueFR: Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de référenc…",False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'leaders', 'indices': [119, 127]}]",[],"[{'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [77, 91]}]",[],fr,recent,1364885978998054912,1364885978998054912,Pops,popsvrn,,,,[],False,4,83,0,Thu Feb 25 10:32:41 +0000 2021,17,,,False,False,1,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,True,False,False,False,none,Wed Apr 14 14:14:41 +0000 2021,1.3823365106247393e+18,1382336510624739334,"Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de r… https://t.co/u7Kky4whQ9",True,"[{'text': 'leaders', 'indices': [102, 110]}]",[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [60, 74]}]","[{'url': 'https://t.co/u7Kky4whQ9', 'expanded_url': 'https://twitter.com/i/web/status/1382336510624739334', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,2817310092.0,2817310092,Openvalue,OpenvalueFR,Paris,"#BigData - #IoT - #Digital - Nous accompagnons les entreprises dans la transformation de leurs usages, #données et objets",http://t.co/ETGqvCEjis,"[{'url': 'http://t.co/ETGqvCEjis', 'expanded_url': 'http://Openvalue.co', 'display_url': 'Openvalue.co', 'indices': [0, 22]}]",[],False,168.0,101.0,32.0,Thu Sep 18 16:55:41 +0000 2014,19.0,,,True,False,554.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_banners/2817310092/1411114837,FC5649,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,15.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +175,Wed Apr 14 14:15:26 +0000 2021,1382336701561978882,1382336701561978882,"RT @OpenvalueFR: Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de référenc…",False,"Twitter Web App",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'leaders', 'indices': [119, 127]}]",[],"[{'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [77, 91]}]",[],fr,recent,11120142,11120142,GLEBOUCHER,GLEBOUCHER,"48.888417,2.245032",,,[],False,1881,1968,14,Thu Dec 13 08:56:13 +0000 2007,5,,,False,False,408,,False,False,False,9AE4E8,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/584375083751190528/ar7dJv6m_normal.jpg,https://pbs.twimg.com/profile_images/584375083751190528/ar7dJv6m_normal.jpg,0000FF,87BC44,E0FF92,000000,True,False,False,False,False,False,False,none,Wed Apr 14 14:14:41 +0000 2021,1.3823365106247393e+18,1382336510624739334,"Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de r… https://t.co/u7Kky4whQ9",True,"[{'text': 'leaders', 'indices': [102, 110]}]",[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [60, 74]}]","[{'url': 'https://t.co/u7Kky4whQ9', 'expanded_url': 'https://twitter.com/i/web/status/1382336510624739334', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,2817310092.0,2817310092,Openvalue,OpenvalueFR,Paris,"#BigData - #IoT - #Digital - Nous accompagnons les entreprises dans la transformation de leurs usages, #données et objets",http://t.co/ETGqvCEjis,"[{'url': 'http://t.co/ETGqvCEjis', 'expanded_url': 'http://Openvalue.co', 'display_url': 'Openvalue.co', 'indices': [0, 22]}]",[],False,168.0,101.0,32.0,Thu Sep 18 16:55:41 +0000 2014,19.0,,,True,False,554.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_banners/2817310092/1411114837,FC5649,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,15.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +176,Wed Apr 14 14:15:06 +0000 2021,1382336616832843776,1382336616832843776,"Pour ceux qui s'intéressent aux usages de l'intelligence artificielle dans les voitures, voici des précisions sur c… https://t.co/lVWBuf5b3q",True,"Buffer",,,,,,,,,,False,8,14,False,False,fr,[],[],[],"[{'url': 'https://t.co/lVWBuf5b3q', 'expanded_url': 'https://twitter.com/i/web/status/1382336616832843776', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,16663249,16663249,Christophe Tricot,ctricot,"Paris, Ile-de-France",CEO @LaForge_AI & #ArtificialIntelligence Expert (PhD),https://t.co/w9GZAOocED,[],False,50517,683,1655,Thu Oct 09 07:02:11 +0000 2008,12796,,,True,False,39331,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,https://pbs.twimg.com/profile_images/959784798591045632/X3D3D18-_normal.jpg,1B1E1C,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/w9GZAOocED', 'expanded_url': 'https://www.linkedin.com/in/christophetricot', 'display_url': 'linkedin.com/in/christophet…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/16663249/1595343909,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +177,Wed Apr 14 14:14:41 +0000 2021,1382336510624739334,1382336510624739334,"Nous sommes heureux de vous annoncer que nous rejoignons le @GroupeLaPoste afin de devenir, ensemble, #leaders de r… https://t.co/u7Kky4whQ9",True,"Twitter Web App",,,,,,,,,,False,5,15,False,False,fr,"[{'text': 'leaders', 'indices': [102, 110]}]",[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [60, 74]}]","[{'url': 'https://t.co/u7Kky4whQ9', 'expanded_url': 'https://twitter.com/i/web/status/1382336510624739334', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2817310092,2817310092,Openvalue,OpenvalueFR,Paris,"#BigData - #IoT - #Digital - Nous accompagnons les entreprises dans la transformation de leurs usages, #données et objets",http://t.co/ETGqvCEjis,[],False,168,101,32,Thu Sep 18 16:55:41 +0000 2014,19,,,True,False,554,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,https://pbs.twimg.com/profile_images/512878748014624768/IidKrGgX_normal.jpeg,FC5649,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'http://t.co/ETGqvCEjis', 'expanded_url': 'http://Openvalue.co', 'display_url': 'Openvalue.co', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/2817310092/1411114837,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +178,Wed Apr 14 14:13:36 +0000 2021,1382336236594069504,1382336236594069504,🧠 L'#IntelligenceArtificielle s'embarque désormais directement dans nos #PC pour repousser les limites de la perfor… https://t.co/62x2ADuyC3,True,"EveryoneSocial",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [4, 29]}, {'text': 'PC', 'indices': [72, 75]}]",[],[],"[{'url': 'https://t.co/62x2ADuyC3', 'expanded_url': 'https://twitter.com/i/web/status/1382336236594069504', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,854626444592459776,854626444592459776,Fabrice CHEKIREB,ChekirebFabrice,"Villeparisis, France",Outside Sales Specialist Client solutions ( Desktop/notebook/Workstation/Display & client peripherals chez DELL,,[],False,9,35,0,Wed Apr 19 09:23:17 +0000 2017,0,,,False,False,403,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/854627614635327488/fxgXtbhc_normal.jpg,https://pbs.twimg.com/profile_images/854627614635327488/fxgXtbhc_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +179,Wed Apr 14 13:49:49 +0000 2021,1382330252840538112,1382330252840538112,"RT @Probayes_IA: Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeurs et c…",False,"Twitter Web App",,,,,,,,,,True,5,0,False,False,fr,[],[],"[{'screen_name': 'Probayes_IA', 'name': 'Probayes', 'id': 1151741890502565888, 'id_str': '1151741890502565888', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [25, 39]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [89, 101]}]",[],fr,recent,2301211543,2301211543,Alexis Folliet,AlexisFolliet,Grenoble,,,[],False,50,118,7,Mon Jan 20 11:04:48 +0000 2014,382,,,False,False,116,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1102935503165448192/CqPaluDG_normal.png,https://pbs.twimg.com/profile_images/1102935503165448192/CqPaluDG_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 13:36:41 +0000 2021,1.382326948387504e+18,1382326948387504128,"Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeu… https://t.co/SSCm1k3TK3",True,[],[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [8, 22]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [72, 84]}]","[{'url': 'https://t.co/SSCm1k3TK3', 'expanded_url': 'https://twitter.com/i/web/status/1382326948387504128', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.1517418905025659e+18,1151741890502565888,Probayes,Probayes_IA,38330 Montbonnot,"L'Intelligence Artificielle sur mesure à votre service ! +#IA #Intelligenceartificielle #Automobile #Défense #Distribution #Finance #Industrie #logistique #Santé",https://t.co/gDHGiQ08Df,"[{'url': 'https://t.co/gDHGiQ08Df', 'expanded_url': 'http://www.probayes.com', 'display_url': 'probayes.com', 'indices': [0, 23]}]",[],False,204.0,823.0,4.0,Thu Jul 18 06:33:59 +0000 2019,168.0,,,False,False,238.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_banners/1151741890502565888/1609774920,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,True,5.0,5.0,False,False,False,fr,,,,1.3822375631135867e+18,1382237563113586688,1.3822375631135867e+18,1382237563113586688,Wed Apr 14 07:41:30 +0000 2021,1.3822375631135867e+18,1382237563113586688,#COMMUNIQUE | #LaPoste crée un acteur de référence du conseil en Intelligence Artificielle pour les entreprises ave… https://t.co/afimhB8WLT,True,"[{'text': 'COMMUNIQUE', 'indices': [0, 11]}, {'text': 'LaPoste', 'indices': [14, 22]}]",[],[],"[{'url': 'https://t.co/afimhB8WLT', 'expanded_url': 'https://twitter.com/i/web/status/1382237563113586688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,57691450.0,57691450,Le Groupe La Poste,GroupeLaPoste,,Pour tout savoir de l'actu du Groupe #LaPoste et ses projets de transformations! #EcolOgic #TousEngagés #VousSimplifierLaVie Service clients : @LisaLaPoste,https://t.co/9BSEcmuGi4,"[{'url': 'https://t.co/9BSEcmuGi4', 'expanded_url': 'http://www.groupelaposte.com', 'display_url': 'groupelaposte.com', 'indices': [0, 23]}]",[],False,40066.0,5536.0,980.0,Fri Jul 17 16:48:30 +0000 2009,38410.0,,,True,True,45264.0,,False,False,False,0067A7,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,False,http://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_banners/57691450/1614264578,215382,D6EBF2,AACCD8,272727,True,False,False,False,False,False,False,none,,,,,False,14.0,29.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +180,Wed Apr 14 13:40:00 +0000 2021,1382327781497901061,1382327781497901061,"RT @Probayes_IA: Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeurs et c…",False,"Twitter for iPhone",,,,,,,,,,True,5,0,False,False,fr,[],[],"[{'screen_name': 'Probayes_IA', 'name': 'Probayes', 'id': 1151741890502565888, 'id_str': '1151741890502565888', 'indices': [3, 15]}, {'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [25, 39]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [89, 101]}]",[],fr,recent,704710841866842112,704710841866842112,Laëtitia Fauconnet-Viegas,LFauconnetV,grenoble,#Marketing #Communication #gestionprojet #innovation #bâtiment #énergies #EnR #fermeture #systèmes #IA #Véhicule #Stockage #autoconsommation #smartcities,https://t.co/yamKvjBh6y,[],False,289,1045,30,Tue Mar 01 16:52:12 +0000 2016,630,,,True,False,2425,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/704712561770557444/GuIqqIJN_normal.jpg,https://pbs.twimg.com/profile_images/704712561770557444/GuIqqIJN_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 13:36:41 +0000 2021,1.382326948387504e+18,1382326948387504128,"Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeu… https://t.co/SSCm1k3TK3",True,[],[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [8, 22]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [72, 84]}]","[{'url': 'https://t.co/SSCm1k3TK3', 'expanded_url': 'https://twitter.com/i/web/status/1382326948387504128', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.1517418905025659e+18,1151741890502565888,Probayes,Probayes_IA,38330 Montbonnot,"L'Intelligence Artificielle sur mesure à votre service ! +#IA #Intelligenceartificielle #Automobile #Défense #Distribution #Finance #Industrie #logistique #Santé",https://t.co/gDHGiQ08Df,"[{'url': 'https://t.co/gDHGiQ08Df', 'expanded_url': 'http://www.probayes.com', 'display_url': 'probayes.com', 'indices': [0, 23]}]",[],False,204.0,823.0,4.0,Thu Jul 18 06:33:59 +0000 2019,168.0,,,False,False,238.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_banners/1151741890502565888/1609774920,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,True,5.0,5.0,False,False,False,fr,,"[{'url': 'https://t.co/yamKvjBh6y', 'expanded_url': 'http://linkedin.com/in/laetitiafauconnetviegas', 'display_url': 'linkedin.com/in/laetitiafau…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/704710841866842112/1466087932,1.3822375631135867e+18,1382237563113586688,1.3822375631135867e+18,1382237563113586688,Wed Apr 14 07:41:30 +0000 2021,1.3822375631135867e+18,1382237563113586688,#COMMUNIQUE | #LaPoste crée un acteur de référence du conseil en Intelligence Artificielle pour les entreprises ave… https://t.co/afimhB8WLT,True,"[{'text': 'COMMUNIQUE', 'indices': [0, 11]}, {'text': 'LaPoste', 'indices': [14, 22]}]",[],[],"[{'url': 'https://t.co/afimhB8WLT', 'expanded_url': 'https://twitter.com/i/web/status/1382237563113586688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,57691450.0,57691450,Le Groupe La Poste,GroupeLaPoste,,Pour tout savoir de l'actu du Groupe #LaPoste et ses projets de transformations! #EcolOgic #TousEngagés #VousSimplifierLaVie Service clients : @LisaLaPoste,https://t.co/9BSEcmuGi4,"[{'url': 'https://t.co/9BSEcmuGi4', 'expanded_url': 'http://www.groupelaposte.com', 'display_url': 'groupelaposte.com', 'indices': [0, 23]}]",[],False,40066.0,5536.0,980.0,Fri Jul 17 16:48:30 +0000 2009,38410.0,,,True,True,45264.0,,False,False,False,0067A7,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,False,http://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_banners/57691450/1614264578,215382,D6EBF2,AACCD8,272727,True,False,False,False,False,False,False,none,,,,,False,14.0,29.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +181,Wed Apr 14 13:36:41 +0000 2021,1382326948387504128,1382326948387504128,"Filiale @GroupeLaPoste depuis 2016, Probayes se réjouit de l’arrivée d’ @OpenvalueFR avec qui nous partageons valeu… https://t.co/SSCm1k3TK3",True,"Twitter Web App",,,,,,,,,,True,5,5,False,False,fr,[],[],"[{'screen_name': 'GroupeLaPoste', 'name': 'Le Groupe La Poste', 'id': 57691450, 'id_str': '57691450', 'indices': [8, 22]}, {'screen_name': 'OpenvalueFR', 'name': 'Openvalue', 'id': 2817310092, 'id_str': '2817310092', 'indices': [72, 84]}]","[{'url': 'https://t.co/SSCm1k3TK3', 'expanded_url': 'https://twitter.com/i/web/status/1382326948387504128', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1151741890502565888,1151741890502565888,Probayes,Probayes_IA,38330 Montbonnot,"L'Intelligence Artificielle sur mesure à votre service ! +#IA #Intelligenceartificielle #Automobile #Défense #Distribution #Finance #Industrie #logistique #Santé",https://t.co/gDHGiQ08Df,[],False,204,823,4,Thu Jul 18 06:33:59 +0000 2019,168,,,False,False,238,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,https://pbs.twimg.com/profile_images/1346119408712888322/Wr3tTKrF_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/gDHGiQ08Df', 'expanded_url': 'http://www.probayes.com', 'display_url': 'probayes.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1151741890502565888/1609774920,1.3822375631135867e+18,1382237563113586688,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Wed Apr 14 07:41:30 +0000 2021,1.3822375631135867e+18,1382237563113586688,#COMMUNIQUE | #LaPoste crée un acteur de référence du conseil en Intelligence Artificielle pour les entreprises ave… https://t.co/afimhB8WLT,True,"[{'text': 'COMMUNIQUE', 'indices': [0, 11]}, {'text': 'LaPoste', 'indices': [14, 22]}]",[],[],"[{'url': 'https://t.co/afimhB8WLT', 'expanded_url': 'https://twitter.com/i/web/status/1382237563113586688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,57691450.0,57691450,Le Groupe La Poste,GroupeLaPoste,,Pour tout savoir de l'actu du Groupe #LaPoste et ses projets de transformations! #EcolOgic #TousEngagés #VousSimplifierLaVie Service clients : @LisaLaPoste,https://t.co/9BSEcmuGi4,"[{'url': 'https://t.co/9BSEcmuGi4', 'expanded_url': 'http://www.groupelaposte.com', 'display_url': 'groupelaposte.com', 'indices': [0, 23]}]",[],False,40066.0,5536.0,980.0,Fri Jul 17 16:48:30 +0000 2009,38410.0,,,True,True,45264.0,,False,False,False,0067A7,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,False,http://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,https://pbs.twimg.com/profile_images/996404812412485632/PrgvgVMl_normal.jpg,215382,D6EBF2,AACCD8,272727,True,False,False,False,False,False,False,none,,,,,False,14.0,29.0,False,False,False,fr,https://pbs.twimg.com/profile_banners/57691450/1614264578,, +182,Wed Apr 14 13:15:09 +0000 2021,1382321530181451778,1382321530181451778,"Au cœur de votre transformation numérique, votre partenaire Kaisens Data vous accompagne en vous proposant des solu… https://t.co/r4pSuGDVeO",True,"Crowdfire App",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/r4pSuGDVeO', 'expanded_url': 'https://twitter.com/i/web/status/1382321530181451778', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1069983065236234241,1069983065236234241,Kaisens Data,KaisensData,"Paris, France","#KaisensRadar #KaisensGen #KaisensEnrich #KaisensCbots #Conseil #BI #BigData +Suivez-nous sur Facebook: +https://t.co/M7UKnbCbWu…",https://t.co/ZPG0TE9Zhz,"[{'url': 'https://t.co/M7UKnbCbWu', 'expanded_url': 'http://fb.com/KaisensDataOff', 'display_url': 'fb.com/KaisensDataOff', 'indices': [103, 126]}]",False,84,109,4,Tue Dec 04 15:53:36 +0000 2018,293,,,False,False,1786,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1338766014482411520/wZ0OimeT_normal.jpg,https://pbs.twimg.com/profile_images/1338766014482411520/wZ0OimeT_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ZPG0TE9Zhz', 'expanded_url': 'http://kaisensdata.fr', 'display_url': 'kaisensdata.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1069983065236234241/1606733511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +183,Wed Apr 14 13:14:35 +0000 2021,1382321385410822146,1382321385410822146,"RT @4inData: ✅ SE PROTÉGER DU #CYBERHARCELEMENT +✅ LUTTER CONTRE LE #CYBERHARCELEMENT + +#IntelligenceArtificielle #NLP #MachineLearning +#Deep…",False,"Integromat",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'CYBERHARCELEMENT', 'indices': [30, 47]}, {'text': 'CYBERHARCELEMENT', 'indices': [67, 84]}, {'text': 'IntelligenceArtificielle', 'indices': [86, 111]}, {'text': 'NLP', 'indices': [112, 116]}, {'text': 'MachineLearning', 'indices': [117, 133]}]",[],"[{'screen_name': '4inData', 'name': '4inData', 'id': 1366421665090043906, 'id_str': '1366421665090043906', 'indices': [3, 11]}]",[],fr,recent,439561828,439561828,DevMy,DevMy_fr,France,Si 1 entreprise doit ressembler à son dirigeant et 1 logo doit ressembler à son entreprise = 1 logo doit ressembler au dirigeant ... je crois que c’est bon !,https://t.co/RgigaS8wAm,[],False,1694,3594,101,Sat Dec 17 23:05:37 +0000 2011,202,,,False,False,35386,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,False,http://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,https://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,0099B9,FFFFFF,95E8EC,3C3940,True,True,False,False,False,False,False,none,Wed Apr 14 13:10:14 +0000 2021,1.3823202897830912e+18,1382320289783091200,"✅ SE PROTÉGER DU #CYBERHARCELEMENT +✅ LUTTER CONTRE LE #CYBERHARCELEMENT + +#IntelligenceArtificielle #NLP… https://t.co/t29KotQ9So",True,"[{'text': 'CYBERHARCELEMENT', 'indices': [17, 34]}, {'text': 'CYBERHARCELEMENT', 'indices': [54, 71]}, {'text': 'IntelligenceArtificielle', 'indices': [73, 98]}, {'text': 'NLP', 'indices': [99, 103]}]",[],[],"[{'url': 'https://t.co/t29KotQ9So', 'expanded_url': 'https://twitter.com/i/web/status/1382320289783091200', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [105, 128]}]",fr,recent,"Agorapulse app",,,,,,1.366421665090044e+18,1366421665090043906,4inData,4inData,,"4indata est éditeur en IA et propose plusieurs packages d’API brevetée. +#4InGen #4InRadar #4InShield #4InData",,,[],False,1.0,0.0,0.0,Mon Mar 01 16:15:17 +0000 2021,4.0,,,False,False,9.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1366422038810923008/yhK1dQoL_normal.jpg,https://pbs.twimg.com/profile_images/1366422038810923008/yhK1dQoL_normal.jpg,https://pbs.twimg.com/profile_banners/1366421665090043906/1614616650,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,,"[{'url': 'https://t.co/RgigaS8wAm', 'expanded_url': 'https://devmy.fr', 'display_url': 'devmy.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/439561828/1611138098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +184,Wed Apr 14 13:10:14 +0000 2021,1382320289783091200,1382320289783091200,"✅ SE PROTÉGER DU #CYBERHARCELEMENT +✅ LUTTER CONTRE LE #CYBERHARCELEMENT + +#IntelligenceArtificielle #NLP… https://t.co/t29KotQ9So",True,"Agorapulse app",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'CYBERHARCELEMENT', 'indices': [17, 34]}, {'text': 'CYBERHARCELEMENT', 'indices': [54, 71]}, {'text': 'IntelligenceArtificielle', 'indices': [73, 98]}, {'text': 'NLP', 'indices': [99, 103]}]",[],[],"[{'url': 'https://t.co/t29KotQ9So', 'expanded_url': 'https://twitter.com/i/web/status/1382320289783091200', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [105, 128]}]",fr,recent,1366421665090043906,1366421665090043906,4inData,4inData,,"4indata est éditeur en IA et propose plusieurs packages d’API brevetée. +#4InGen #4InRadar #4InShield #4InData",,[],False,1,0,0,Mon Mar 01 16:15:17 +0000 2021,4,,,False,False,9,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1366422038810923008/yhK1dQoL_normal.jpg,https://pbs.twimg.com/profile_images/1366422038810923008/yhK1dQoL_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/1366421665090043906/1614616650,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +185,Wed Apr 14 13:02:22 +0000 2021,1382318310470131712,1382318310470131712,"Les géants de la tech peinent à confier aux #femmes des postes clés +via @pierrecappelli +#éthique #ia… https://t.co/1eSAF0EXzC",True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'femmes', 'indices': [44, 51]}, {'text': 'éthique', 'indices': [89, 97]}, {'text': 'ia', 'indices': [98, 101]}]",[],"[{'screen_name': 'pierrecappelli', 'name': 'Pierre Cappelli 🌏', 'id': 123287597, 'id_str': '123287597', 'indices': [72, 87]}]","[{'url': 'https://t.co/1eSAF0EXzC', 'expanded_url': 'https://twitter.com/i/web/status/1382318310470131712', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [103, 126]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +186,Wed Apr 14 13:02:15 +0000 2021,1382318282221494272,1382318282221494272,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"Twitter for Android",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,590008362,590008362,Romain Michelon,Romain_Pro,"Paris, Ile-de-France","Militant connecté 📱 Consultant CSE - Formateur CSE/CSSCT +@LeGrosCon ''Dis donc, t'essaierais pas de nous faire porter le chapeau, des fois ?!'' 🤣",https://t.co/HoMbtI41cb,[],False,2223,3719,328,Fri May 25 11:51:40 +0000 2012,3079,,,True,False,176321,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1333767692323614726/sByo7SdQ_normal.jpg,https://pbs.twimg.com/profile_images/1333767692323614726/sByo7SdQ_normal.jpg,FF691F,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,"[{'url': 'https://t.co/HoMbtI41cb', 'expanded_url': 'https://linkedin.com/in/romainmichelon', 'display_url': 'linkedin.com/in/romainmiche…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/590008362/1606829973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +187,Wed Apr 14 13:00:39 +0000 2021,1382317881992622085,1382317881992622085,"Bruxelles veut limiter l'utilisation de l'IA pour la #surveillance... sauf pour la sécurité publique +via… https://t.co/EDpw9VGBS4",True,"Twitter Web App",,,,,,,,,,False,1,2,False,False,fr,"[{'text': 'surveillance', 'indices': [53, 66]}]",[],[],"[{'url': 'https://t.co/EDpw9VGBS4', 'expanded_url': 'https://twitter.com/i/web/status/1382317881992622085', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [106, 129]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +188,Wed Apr 14 12:46:58 +0000 2021,1382314436992634881,1382314436992634881,"RT @mdrechsler: ""Il ne faut pas laisser l’intelligence artificielle se développer sans contrôle"" #IA #IA #IntelligenceArtificielle https://…",False,"Twitter for iPhone",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'IA', 'indices': [97, 100]}, {'text': 'IA', 'indices': [101, 104]}, {'text': 'IntelligenceArtificielle', 'indices': [105, 130]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,1298718487653695488,1298718487653695488,Louvet emmanuelle,Louvetemmanuel2,,#Perdir #education permanente# Res Publica# européenne convaincue# citoyenne 🌍,,[],False,204,749,0,Wed Aug 26 20:27:04 +0000 2020,6480,,,False,False,7213,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1314481353669386240/XpCN37zR_normal.jpg,https://pbs.twimg.com/profile_images/1314481353669386240/XpCN37zR_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Apr 14 12:40:51 +0000 2021,1.3823128969532088e+18,1382312896953208832,"""Il ne faut pas laisser l’intelligence artificielle se développer sans contrôle"" #IA #IA #IntelligenceArtificielle https://t.co/hEhZlQjTF9",False,"[{'text': 'IA', 'indices': [81, 84]}, {'text': 'IA', 'indices': [85, 88]}, {'text': 'IntelligenceArtificielle', 'indices': [89, 114]}]",[],[],"[{'url': 'https://t.co/hEhZlQjTF9', 'expanded_url': 'https://www.rts.ch/info/monde/12111625-il-ne-faut-pas-laisser-lintelligence-artificielle-se-developper-sans-controle.html', 'display_url': 'rts.ch/info/monde/121…', 'indices': [115, 138]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199875.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,1.0,5.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/1298718487653695488/1602231650,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +189,Wed Apr 14 12:40:51 +0000 2021,1382312896953208832,1382312896953208832,"""Il ne faut pas laisser l’intelligence artificielle se développer sans contrôle"" #IA #IA #IntelligenceArtificielle https://t.co/hEhZlQjTF9",False,"Twitter Web App",,,,,,,,,,False,1,5,False,False,fr,"[{'text': 'IA', 'indices': [81, 84]}, {'text': 'IA', 'indices': [85, 88]}, {'text': 'IntelligenceArtificielle', 'indices': [89, 114]}]",[],[],"[{'url': 'https://t.co/hEhZlQjTF9', 'expanded_url': 'https://www.rts.ch/info/monde/12111625-il-ne-faut-pas-laisser-lintelligence-artificielle-se-developper-sans-controle.html', 'display_url': 'rts.ch/info/monde/121…', 'indices': [115, 138]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199875,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +190,Wed Apr 14 12:36:03 +0000 2021,1382311689601843202,1382311689601843202,#HewlettPackard @HPE_FR construira un #supercalculateur au sein de la Maison de l’#IntelligenceArtificielle #IA… https://t.co/HzQCrJn6uQ,True,"Twitter Web App",,,,,,,,,,False,0,2,False,False,fr,"[{'text': 'HewlettPackard', 'indices': [0, 15]}, {'text': 'supercalculateur', 'indices': [39, 56]}, {'text': 'IntelligenceArtificielle', 'indices': [83, 108]}, {'text': 'IA', 'indices': [109, 112]}]",[],"[{'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [16, 23]}]","[{'url': 'https://t.co/HzQCrJn6uQ', 'expanded_url': 'https://twitter.com/i/web/status/1382311689601843202', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [114, 137]}]",fr,recent,1265934723894915079,1265934723894915079,PressReviewCotedAzur,PressReviewNews,,#nice #cotedazur #alpesmaritimes #universite #university #universitecotedazur #veille #médias,,[],False,91,204,1,Thu May 28 09:15:56 +0000 2020,264,,,False,False,1192,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1265937756011802624/5B1Jk5CT_normal.jpg,https://pbs.twimg.com/profile_images/1265937756011802624/5B1Jk5CT_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/1265934723894915079/1590658093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +191,Wed Apr 14 12:08:09 +0000 2021,1382304669901451265,1382304669901451265,RT @Ivo_Chemisky: L'@univbordeaux lance un appel à #these #IA soutenu par l'@AgenceRecherche. Deadline le 17/05! N'hésitez pas à diffuser :…,False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'these', 'indices': [51, 57]}, {'text': 'IA', 'indices': [58, 61]}]",[],"[{'screen_name': 'Ivo_Chemisky', 'name': 'Yves Chemisky', 'id': 2327248592, 'id_str': '2327248592', 'indices': [3, 16]}, {'screen_name': 'univbordeaux', 'name': 'Université de Bordeaux', 'id': 91130731, 'id_str': '91130731', 'indices': [20, 33]}, {'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [76, 92]}]",[],fr,recent,4844975577,4844975577,IA Univ Bordeaux,IA_UBdx,"Bordeaux, France","L'@univbordeaux fédère #académiques, #institutionnels et #industriels autour des thématiques #intelligenceartificielle #datascience #robotique #innovation",https://t.co/z5Ylggw5t3,[],False,393,778,8,Mon Jan 25 10:30:51 +0000 2016,693,,,True,False,350,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1161276560659427328/0f5gO3M0_normal.jpg,https://pbs.twimg.com/profile_images/1161276560659427328/0f5gO3M0_normal.jpg,E81C4F,000000,000000,000000,False,False,False,False,False,False,False,none,Wed Apr 14 09:18:37 +0000 2021,1.3822620024463729e+18,1382262002446372867,L'@univbordeaux lance un appel à #these #IA soutenu par l'@AgenceRecherche. Deadline le 17/05! N'hésitez pas à diff… https://t.co/VyGjyix1xh,True,"[{'text': 'these', 'indices': [33, 39]}, {'text': 'IA', 'indices': [40, 43]}]",[],"[{'screen_name': 'univbordeaux', 'name': 'Université de Bordeaux', 'id': 91130731, 'id_str': '91130731', 'indices': [2, 15]}, {'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [58, 74]}]","[{'url': 'https://t.co/VyGjyix1xh', 'expanded_url': 'https://twitter.com/i/web/status/1382262002446372867', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,2327248592.0,2327248592,Yves Chemisky,Ivo_Chemisky,"Bordeaux, France","Professeur des Universités @univbordeaux. +Sport, Vélo, Mobilité douce, Sciences, Simulation, Open source of course",https://t.co/mtyHCTZ7vQ,"[{'url': 'https://t.co/mtyHCTZ7vQ', 'expanded_url': 'https://3mah.github.io', 'display_url': '3mah.github.io', 'indices': [0, 23]}]",[],False,115.0,274.0,34.0,Tue Feb 04 14:57:20 +0000 2014,1018.0,,,False,False,1145.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1178406283843702785/BMDMIH37_normal.jpg,https://pbs.twimg.com/profile_images/1178406283843702785/BMDMIH37_normal.jpg,https://pbs.twimg.com/profile_banners/2327248592/1569488632,E81C4F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/z5Ylggw5t3', 'expanded_url': 'http://linkedin.com/in/charlotte-cosin-phd-234655b8', 'display_url': 'linkedin.com/in/charlotte-c…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/4844975577/1551093701,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +192,Wed Apr 14 11:32:39 +0000 2021,1382295735421562881,1382295735421562881,RT @ActuIAFr: HPE construira un supercalculateur au sein de la Maison de l’Intelligence Artificielle @Maison_IA @HPE_FR #supercalculateur #…,False,"Twitter for iPad",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'supercalculateur', 'indices': [120, 137]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}, {'screen_name': 'Maison_IA', 'name': ""Maison de l'Intelligence Artificielle"", 'id': 1319630982291533826, 'id_str': '1319630982291533826', 'indices': [101, 111]}, {'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [112, 119]}]",[],fr,recent,981083092130713601,981083092130713601,Cluster IA,Cluster_IA,Provence-Alpes-Côte d'Azur,French #ArtificialIntelligence ecosystem #IA #3IA #CoteDAzurFrance #SophiaAntipolis #CES2021 #VillageFrancophone,,[],False,1012,336,21,Tue Apr 03 08:16:51 +0000 2018,770,,,False,False,2424,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/986177957080248321/JyYHmuHX_normal.jpg,https://pbs.twimg.com/profile_images/986177957080248321/JyYHmuHX_normal.jpg,91D2FA,000000,000000,000000,False,False,False,False,False,False,False,none,Wed Apr 14 10:21:47 +0000 2021,1.3822778997267825e+18,1382277899726782470,HPE construira un supercalculateur au sein de la Maison de l’Intelligence Artificielle @Maison_IA @HPE_FR… https://t.co/782LFHiaG3,True,[],[],"[{'screen_name': 'Maison_IA', 'name': ""Maison de l'Intelligence Artificielle"", 'id': 1319630982291533826, 'id_str': '1319630982291533826', 'indices': [87, 97]}, {'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [98, 105]}]","[{'url': 'https://t.co/782LFHiaG3', 'expanded_url': 'https://twitter.com/i/web/status/1382277899726782470', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,5.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/981083092130713601/1574502843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +193,Wed Apr 14 11:19:43 +0000 2021,1382292477349093376,1382292477349093376,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"hubofml",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,3040871649,3040871649,HubOfML,hubofml,Germany ,"You'll receive a newsletter once a month with exciting content on ML, Data Science, Software Engineering, and Tech Leadership. Subscribe here 👉 https://t.co/X0opwdlleW",https://t.co/VRnN9grEfw,"[{'url': 'https://t.co/X0opwdlleW', 'expanded_url': 'http://bit.ly/hubofml1', 'display_url': 'bit.ly/hubofml1', 'indices': [144, 167]}]",False,8365,15,182,Mon Feb 16 15:33:55 +0000 2015,47200,,,False,False,459105,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1254334743333818373/F3xeh1db_normal.jpg,https://pbs.twimg.com/profile_images/1254334743333818373/F3xeh1db_normal.jpg,4A913C,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,"[{'url': 'https://t.co/VRnN9grEfw', 'expanded_url': 'http://bit.ly/hubofml1', 'display_url': 'bit.ly/hubofml1', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3040871649/1587892795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +194,Wed Apr 14 11:19:37 +0000 2021,1382292453563232260,1382292453563232260,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter for iPhone",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,419502542,419502542,Eric TIXADOR,EricTIXADOR,France - Occitanie,Social Media Manager at @ModisFrance | Passionné par: #IntelligenceArtificielle #TransfoNum #MachineLearning #IoT #AI #Blockchain #cybersecurity #FormulaE,https://t.co/W8NUa7vYGZ,[],False,3252,2425,2318,Wed Nov 23 12:40:37 +0000 2011,10265,,,True,False,17676,,False,False,False,000000,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1164981855336181760/KJKPNbrv_normal.jpg,https://pbs.twimg.com/profile_images/1164981855336181760/KJKPNbrv_normal.jpg,3B94D9,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,"[{'url': 'https://t.co/W8NUa7vYGZ', 'expanded_url': 'http://linkd.in/1pBzDOD', 'display_url': 'linkd.in/1pBzDOD', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/419502542/1603117388,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +195,Wed Apr 14 11:10:07 +0000 2021,1382290061597798402,1382290061597798402,[#IntelligenceArtificielle] Le défi est de faire cohabiter raisonnement artificiel et du raisonnement humain pour c… https://t.co/QV6mS5CdVA,True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}]",[],[],"[{'url': 'https://t.co/QV6mS5CdVA', 'expanded_url': 'https://twitter.com/i/web/status/1382290061597798402', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,480389147,480389147,Rémy Baranger,RBaranger,Bougival,Homo sapiens & digitalis. #Marketing Director @IBM_France #AI #IA #TechForGood #EmployeeAdvocacy #RSE #Bretagne #BZH. Tweets are my own.,,[],False,14109,11121,1362,Wed Feb 01 12:55:52 +0000 2012,849,,,False,False,13313,,False,False,False,709397,http://abs.twimg.com/images/themes/theme6/bg.gif,https://abs.twimg.com/images/themes/theme6/bg.gif,False,http://pbs.twimg.com/profile_images/1269280468001869824/cfJZRlCl_normal.jpg,https://pbs.twimg.com/profile_images/1269280468001869824/cfJZRlCl_normal.jpg,3B94D9,FFFFFF,A0C5C7,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/480389147/1614530068,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +196,Wed Apr 14 10:36:45 +0000 2021,1382281665268084737,1382281665268084737,RT @ActuIAFr: HPE construira un supercalculateur au sein de la Maison de l’Intelligence Artificielle @Maison_IA @HPE_FR #supercalculateur #…,False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'supercalculateur', 'indices': [120, 137]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}, {'screen_name': 'Maison_IA', 'name': ""Maison de l'Intelligence Artificielle"", 'id': 1319630982291533826, 'id_str': '1319630982291533826', 'indices': [101, 111]}, {'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [112, 119]}]",[],fr,recent,425049873,425049873,(◐ o ◑ ) Fouad Bendris (◐ o ◑ ),BendrisFouad,The Rocky Mountains / France,"Business Technologist #SmartData #EdgeComputing #Strategy #Technology #Innovation #AI #IoT +https://t.co/BVVE3g9mB9 #GEMAlumni +Opinions are my own !",,"[{'url': 'https://t.co/BVVE3g9mB9', 'expanded_url': 'http://fr.linkedin.com/in/fouadbendris', 'display_url': 'fr.linkedin.com/in/fouadbendris', 'indices': [92, 115]}]",False,1076,1557,629,Wed Nov 30 13:59:58 +0000 2011,883,,,True,False,5554,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,False,http://pbs.twimg.com/profile_images/1192748494114689024/_AETvo1C_normal.jpg,https://pbs.twimg.com/profile_images/1192748494114689024/_AETvo1C_normal.jpg,0099B9,5ED4DC,95E8EC,3C3940,True,False,False,False,False,False,False,none,Wed Apr 14 10:21:47 +0000 2021,1.3822778997267825e+18,1382277899726782470,HPE construira un supercalculateur au sein de la Maison de l’Intelligence Artificielle @Maison_IA @HPE_FR… https://t.co/782LFHiaG3,True,[],[],"[{'screen_name': 'Maison_IA', 'name': ""Maison de l'Intelligence Artificielle"", 'id': 1319630982291533826, 'id_str': '1319630982291533826', 'indices': [87, 97]}, {'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [98, 105]}]","[{'url': 'https://t.co/782LFHiaG3', 'expanded_url': 'https://twitter.com/i/web/status/1382277899726782470', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,5.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/425049873/1440348646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +197,Wed Apr 14 10:21:47 +0000 2021,1382277899726782470,1382277899726782470,HPE construira un supercalculateur au sein de la Maison de l’Intelligence Artificielle @Maison_IA @HPE_FR… https://t.co/782LFHiaG3,True,"Twitter Web App",,,,,,,,,,False,2,5,False,False,fr,[],[],"[{'screen_name': 'Maison_IA', 'name': ""Maison de l'Intelligence Artificielle"", 'id': 1319630982291533826, 'id_str': '1319630982291533826', 'indices': [87, 97]}, {'screen_name': 'HPE_FR', 'name': 'HPE France', 'id': 185375999, 'id_str': '185375999', 'indices': [98, 105]}]","[{'url': 'https://t.co/782LFHiaG3', 'expanded_url': 'https://twitter.com/i/web/status/1382277899726782470', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +198,Wed Apr 14 10:10:38 +0000 2021,1382275094689513472,1382275094689513472,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"Twitter for iPhone",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,707876052,707876052,Sebastien PALETTI,sebaspaletti,Haute-Savoie,Directeur Départemental Adjoint du Service Départemental d'Incendie et de Secours de la Haute-Savoie,,[],False,2543,2633,85,Fri Jul 20 22:03:08 +0000 2012,12838,,,True,False,11883,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1206904902632521729/Bn4nkNqs_normal.jpg,https://pbs.twimg.com/profile_images/1206904902632521729/Bn4nkNqs_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/707876052/1576583593,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +199,Wed Apr 14 10:10:04 +0000 2021,1382274953010057224,1382274953010057224,#IA #intelligenceArtificielle Webinaire gratuit : l'Intelligence Artificielle au service de la santé - 21 avril 202… https://t.co/rCyBzAi6r4,True,"dlvr.it",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'intelligenceArtificielle', 'indices': [4, 29]}]",[],[],"[{'url': 'https://t.co/rCyBzAi6r4', 'expanded_url': 'https://twitter.com/i/web/status/1382274953010057224', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2209167493,2209167493,Réseau F_Innov,F_Innov,,Compte officiel du Réseau francophone de l'innovation - Initié en février 2014 par l'#OIF. #innovation #numerique #Afrique,http://t.co/T7M3rYK0gA,[],False,1249,240,79,Fri Nov 22 15:47:34 +0000 2013,256,,,False,False,1861,,False,False,False,E5E5E5,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/669518009187360768/3L7X1vWH_normal.png,https://pbs.twimg.com/profile_images/669518009187360768/3L7X1vWH_normal.png,763D94,FFFFFF,DDEEF6,333333,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'http://t.co/T7M3rYK0gA', 'expanded_url': 'http://www.francophonieinnovation.org/', 'display_url': 'francophonieinnovation.org', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/2209167493/1438341288,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +200,Wed Apr 14 09:49:56 +0000 2021,1382269883107438595,1382269883107438595,RT @ActuIAFr: Plus que quelques jours pour demander notre #kitmédia à l'approche du numéro 4 du magazine ActuIA #presse #innovation #Intell…,False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'kitmédia', 'indices': [58, 67]}, {'text': 'presse', 'indices': [112, 119]}, {'text': 'innovation', 'indices': [120, 131]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,377879567,377879567,Gauthier Dongo,dongo_gauthier,Kinshasa,"Berger, Expert Comptable et Commissaire aux comptes",,[],False,41,189,0,Thu Sep 22 08:14:51 +0000 2011,881,,,False,False,330,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1110859116484980736/9pqnsSSs_normal.jpg,https://pbs.twimg.com/profile_images/1110859116484980736/9pqnsSSs_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 11:47:25 +0000 2021,1.3819370640826e+18,1381937064082599938,Plus que quelques jours pour demander notre #kitmédia à l'approche du numéro 4 du magazine ActuIA #presse… https://t.co/WDpwxHyvkE,True,"[{'text': 'kitmédia', 'indices': [44, 53]}, {'text': 'presse', 'indices': [98, 105]}]",[],[],"[{'url': 'https://t.co/WDpwxHyvkE', 'expanded_url': 'https://twitter.com/i/web/status/1381937064082599938', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,3.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/377879567/1554926461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +201,Wed Apr 14 09:41:20 +0000 2021,1382267718427152385,1382267718427152385,"RT @ArchimagRedac: ⚡️NOUVEAU⚡️Le dernier Archimag ! + +Intelligence artificielle : une veille augmentée ? +https://t.co/f6vG2d74FP + +Quel #veil…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ArchimagRedac', 'name': 'Rédaction Archimag', 'id': 121435655, 'id_str': '121435655', 'indices': [3, 17]}]","[{'url': 'https://t.co/f6vG2d74FP', 'expanded_url': 'https://bit.ly/Archimag343', 'display_url': 'bit.ly/Archimag343', 'indices': [104, 127]}]",fr,recent,118662808,118662808,Jean GAUTHIER,serdaformation,,,https://t.co/hBA5spjofd,[],False,113,26,25,Mon Mar 01 11:26:39 +0000 2010,75,,,True,False,980,,False,False,False,53CF53,http://abs.twimg.com/images/themes/theme3/bg.gif,https://abs.twimg.com/images/themes/theme3/bg.gif,False,http://pbs.twimg.com/profile_images/976012800802869249/Z8B9lrTs_normal.jpg,https://pbs.twimg.com/profile_images/976012800802869249/Z8B9lrTs_normal.jpg,C5DBC5,D3D2CF,2EB387,634047,True,False,False,False,False,False,False,none,Wed Apr 14 07:54:40 +0000 2021,1.382240876013949e+18,1382240876013948930,"⚡️NOUVEAU⚡️Le dernier Archimag ! + +Intelligence artificielle : une veille augmentée ? +https://t.co/f6vG2d74FP + +Quel… https://t.co/zDb8ZSXDrF",True,[],[],[],"[{'url': 'https://t.co/f6vG2d74FP', 'expanded_url': 'https://bit.ly/Archimag343', 'display_url': 'bit.ly/Archimag343', 'indices': [85, 108]}, {'url': 'https://t.co/zDb8ZSXDrF', 'expanded_url': 'https://twitter.com/i/web/status/1382240876013948930', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,121435655.0,121435655,Rédaction Archimag,ArchimagRedac,Paris,Compte du magazine Archimag - #transfonum #techno #veille #archives #bibliotheque #bibnum #documentation #IE #opendata #socialmedia #numerique #digitalworkplace,http://t.co/T5NZoBtjBH,"[{'url': 'http://t.co/T5NZoBtjBH', 'expanded_url': 'http://www.archimag.com', 'display_url': 'archimag.com', 'indices': [0, 22]}]",[],False,9768.0,126.0,1219.0,Tue Mar 09 13:56:06 +0000 2010,489.0,,,True,False,30097.0,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_banners/121435655/1434525469,9D582E,D9B17E,EADEAA,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,4.0,False,False,False,fr,False,"[{'url': 'https://t.co/hBA5spjofd', 'expanded_url': 'https://www.formation-serda.com/', 'display_url': 'formation-serda.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/118662808/1521534926,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +202,Wed Apr 14 09:25:02 +0000 2021,1382263616834002945,1382263616834002945,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 📚Des investissements aux usages en passant par l'éthique, 5 pr… https://t.co/bBPmyxSpjI",True,"SociabbleApp",,,,,,,,,,True,0,0,False,False,fr,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/bBPmyxSpjI', 'expanded_url': 'https://twitter.com/i/web/status/1382263616834002945', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,915541052110594048,915541052110594048,Paoli Laeti,LaetitiaPaoli86,,,https://t.co/wpYp2ClJ0Q,[],False,75,165,0,Wed Oct 04 11:36:11 +0000 2017,1389,,,False,False,430,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1361659455730044932/5a4g-EDA_normal.jpg,https://pbs.twimg.com/profile_images/1361659455730044932/5a4g-EDA_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/wpYp2ClJ0Q', 'expanded_url': 'http://AdEcCo.fr', 'display_url': 'AdEcCo.fr', 'indices': [0, 23]}]",,1.382210283276546e+18,1382210283276546054,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,https://pbs.twimg.com/profile_banners/387867632/1603117329,, +203,Wed Apr 14 09:18:37 +0000 2021,1382262002446372867,1382262002446372867,L'@univbordeaux lance un appel à #these #IA soutenu par l'@AgenceRecherche. Deadline le 17/05! N'hésitez pas à diff… https://t.co/VyGjyix1xh,True,"Twitter Web App",,,,,,,,,,False,2,6,False,False,fr,"[{'text': 'these', 'indices': [33, 39]}, {'text': 'IA', 'indices': [40, 43]}]",[],"[{'screen_name': 'univbordeaux', 'name': 'Université de Bordeaux', 'id': 91130731, 'id_str': '91130731', 'indices': [2, 15]}, {'screen_name': 'AgenceRecherche', 'name': 'ANR', 'id': 122070383, 'id_str': '122070383', 'indices': [58, 74]}]","[{'url': 'https://t.co/VyGjyix1xh', 'expanded_url': 'https://twitter.com/i/web/status/1382262002446372867', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2327248592,2327248592,Yves Chemisky,Ivo_Chemisky,"Bordeaux, France","Professeur des Universités @univbordeaux. +Sport, Vélo, Mobilité douce, Sciences, Simulation, Open source of course",https://t.co/mtyHCTZ7vQ,[],False,115,274,34,Tue Feb 04 14:57:20 +0000 2014,1018,,,False,False,1145,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1178406283843702785/BMDMIH37_normal.jpg,https://pbs.twimg.com/profile_images/1178406283843702785/BMDMIH37_normal.jpg,E81C4F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/mtyHCTZ7vQ', 'expanded_url': 'https://3mah.github.io', 'display_url': '3mah.github.io', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2327248592/1569488632,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +204,Wed Apr 14 09:08:07 +0000 2021,1382259361905528834,1382259361905528834,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"Twitter for iPhone",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,2825027715,2825027715,Sandrine Lemoine,S_Lemoine1,,"Directrice @klesia @AgircArrco #retraite #assurances #santé #prévention ex rédactrice en chef de @argusassurance, ex @agefiactifs. Opinions personnelles.",https://t.co/jyV6ncdcXC,[],False,1412,2205,118,Sun Oct 12 13:57:27 +0000 2014,4723,,,True,False,9721,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/592087294624079872/IqpFAEq9_normal.jpg,https://pbs.twimg.com/profile_images/592087294624079872/IqpFAEq9_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,"[{'url': 'https://t.co/jyV6ncdcXC', 'expanded_url': 'https://fr.linkedin.com/in/sandrine-lemoine-b4a3944b', 'display_url': 'fr.linkedin.com/in/sandrine-le…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2825027715/1575194008,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +205,Wed Apr 14 08:18:23 +0000 2021,1382246844319809539,1382246844319809539,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"TweetDeck",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,224974777,224974777,Agirc-Arrco,AgircArrco,| France |,"Acteur de référence #retraite auprès de 36 millions d'assurés : système par points,#répartition #solidarité #intergénérationnelle, #paritarisme",https://t.co/XYfi5CQ9Tn,[],False,9400,718,143,Fri Dec 10 10:07:54 +0000 2010,3034,,,True,False,9969,,False,False,False,571F65,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1088366663035174912/olmKjwuh_normal.jpg,https://pbs.twimg.com/profile_images/1088366663035174912/olmKjwuh_normal.jpg,820882,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,"[{'url': 'https://t.co/XYfi5CQ9Tn', 'expanded_url': 'http://www.agirc-arrco.fr', 'display_url': 'agirc-arrco.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/224974777/1607705888,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +206,Wed Apr 14 08:13:06 +0000 2021,1382245515040002050,1382245515040002050,"RT @ArchimagRedac: ⚡️NOUVEAU⚡️Le dernier Archimag ! + +Intelligence artificielle : une veille augmentée ? +https://t.co/f6vG2d74FP + +Quel #veil…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ArchimagRedac', 'name': 'Rédaction Archimag', 'id': 121435655, 'id_str': '121435655', 'indices': [3, 17]}]","[{'url': 'https://t.co/f6vG2d74FP', 'expanded_url': 'https://bit.ly/Archimag343', 'display_url': 'bit.ly/Archimag343', 'indices': [104, 127]}]",fr,recent,771261538686541824,771261538686541824,CDIVertdAzur 🍀,CDIVertdAzur,Antibes,"Le professeur documentaliste veille au présent pour l'avenir au CDI du Campus agricole, aménagement paysager et horticole Vert d'Azur d'Antibes. 🍀",https://t.co/0e9LGhs07p,[],False,917,427,27,Thu Sep 01 08:20:55 +0000 2016,5453,,,False,False,186605,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/773536965400592384/VAXH7QXh_normal.jpg,https://pbs.twimg.com/profile_images/773536965400592384/VAXH7QXh_normal.jpg,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,Wed Apr 14 07:54:40 +0000 2021,1.382240876013949e+18,1382240876013948930,"⚡️NOUVEAU⚡️Le dernier Archimag ! + +Intelligence artificielle : une veille augmentée ? +https://t.co/f6vG2d74FP + +Quel… https://t.co/zDb8ZSXDrF",True,[],[],[],"[{'url': 'https://t.co/f6vG2d74FP', 'expanded_url': 'https://bit.ly/Archimag343', 'display_url': 'bit.ly/Archimag343', 'indices': [85, 108]}, {'url': 'https://t.co/zDb8ZSXDrF', 'expanded_url': 'https://twitter.com/i/web/status/1382240876013948930', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,121435655.0,121435655,Rédaction Archimag,ArchimagRedac,Paris,Compte du magazine Archimag - #transfonum #techno #veille #archives #bibliotheque #bibnum #documentation #IE #opendata #socialmedia #numerique #digitalworkplace,http://t.co/T5NZoBtjBH,"[{'url': 'http://t.co/T5NZoBtjBH', 'expanded_url': 'http://www.archimag.com', 'display_url': 'archimag.com', 'indices': [0, 22]}]",[],False,9768.0,126.0,1219.0,Tue Mar 09 13:56:06 +0000 2010,489.0,,,True,False,30097.0,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_banners/121435655/1434525469,9D582E,D9B17E,EADEAA,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,4.0,False,False,False,fr,False,"[{'url': 'https://t.co/0e9LGhs07p', 'expanded_url': 'http://0060793e.esidoc.fr/', 'display_url': '0060793e.esidoc.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/771261538686541824/1473260758,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +207,Wed Apr 14 08:12:51 +0000 2021,1382245452196814848,1382245452196814848,RT @ActuIAFr: Plus que quelques jours pour demander notre #kitmédia à l'approche du numéro 4 du magazine ActuIA #presse #innovation #Intell…,False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'kitmédia', 'indices': [58, 67]}, {'text': 'presse', 'indices': [112, 119]}, {'text': 'innovation', 'indices': [120, 131]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 11:47:25 +0000 2021,1.3819370640826e+18,1381937064082599938,Plus que quelques jours pour demander notre #kitmédia à l'approche du numéro 4 du magazine ActuIA #presse… https://t.co/WDpwxHyvkE,True,"[{'text': 'kitmédia', 'indices': [44, 53]}, {'text': 'presse', 'indices': [98, 105]}]",[],[],"[{'url': 'https://t.co/WDpwxHyvkE', 'expanded_url': 'https://twitter.com/i/web/status/1381937064082599938', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,3.0,False,False,False,fr,,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +208,Wed Apr 14 07:54:40 +0000 2021,1382240876013948930,1382240876013948930,"⚡️NOUVEAU⚡️Le dernier Archimag ! + +Intelligence artificielle : une veille augmentée ? +https://t.co/f6vG2d74FP + +Quel… https://t.co/zDb8ZSXDrF",True,"Twitter Web App",,,,,,,,,,False,2,4,False,False,fr,[],[],[],"[{'url': 'https://t.co/f6vG2d74FP', 'expanded_url': 'https://bit.ly/Archimag343', 'display_url': 'bit.ly/Archimag343', 'indices': [85, 108]}, {'url': 'https://t.co/zDb8ZSXDrF', 'expanded_url': 'https://twitter.com/i/web/status/1382240876013948930', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,121435655,121435655,Rédaction Archimag,ArchimagRedac,Paris,Compte du magazine Archimag - #transfonum #techno #veille #archives #bibliotheque #bibnum #documentation #IE #opendata #socialmedia #numerique #digitalworkplace,http://t.co/T5NZoBtjBH,[],False,9768,126,1219,Tue Mar 09 13:56:06 +0000 2010,489,,,True,False,30097,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,9D582E,D9B17E,EADEAA,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'http://t.co/T5NZoBtjBH', 'expanded_url': 'http://www.archimag.com', 'display_url': 'archimag.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/121435655/1434525469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +209,Wed Apr 14 07:04:31 +0000 2021,1382228256066273280,1382228256066273280,"RT @telecomevol: [#Formations] + +#IA & #BigData +📅 [25/05] #IntelligenceArtificielle : Attentes économique et défis scientifiques - https://t…",False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Formations', 'indices': [18, 29]}, {'text': 'IA', 'indices': [32, 35]}, {'text': 'BigData', 'indices': [42, 50]}, {'text': 'IntelligenceArtificielle', 'indices': [61, 86]}]",[],"[{'screen_name': 'telecomevol', 'name': 'Télécom Evolution', 'id': 2931750730, 'id_str': '2931750730', 'indices': [3, 15]}]",[],fr,recent,291595776,291595776,Ons Jelassi,Ons_JelassiBA,"Ile-de-France, France","enseignante-chercheuse @TelecomParis_, Directrice de @telecomevol - responsable des formations #BigData et #IA - mon activité Twitter n’engage que moi",https://t.co/V4bBxo2zOm,[],False,357,300,111,Mon May 02 08:57:56 +0000 2011,7146,,,False,False,3837,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1281612290538778625/9NidK3FU_normal.jpg,https://pbs.twimg.com/profile_images/1281612290538778625/9NidK3FU_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 07:00:45 +0000 2021,1.3822273069833585e+18,1382227306983358469,"[#Formations] + +#IA & #BigData +📅 [25/05] #IntelligenceArtificielle : Attentes économique et défis scientifiques -… https://t.co/KoK3hcQobN",True,"[{'text': 'Formations', 'indices': [1, 12]}, {'text': 'IA', 'indices': [15, 18]}, {'text': 'BigData', 'indices': [25, 33]}, {'text': 'IntelligenceArtificielle', 'indices': [44, 69]}]",[],[],"[{'url': 'https://t.co/KoK3hcQobN', 'expanded_url': 'https://twitter.com/i/web/status/1382227306983358469', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [118, 141]}]",fr,recent,"Hootsuite Inc.",,,,,,2931750730.0,2931750730,Télécom Evolution,telecomevol,France,"L'organisme de #FormationContinue de @IMTAtlantique, @TelecomParis_ et @TelecomSudParis spécialisé dans le développement des compétences numériques. #TransfoNum",https://t.co/aN5MLw07Qh,"[{'url': 'https://t.co/aN5MLw07Qh', 'expanded_url': 'http://www.telecom-evolution.fr', 'display_url': 'telecom-evolution.fr', 'indices': [0, 23]}]",[],False,616.0,712.0,50.0,Fri Dec 19 08:33:02 +0000 2014,142.0,,,True,False,1461.0,,False,False,False,25303C,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_banners/2931750730/1604999660,ED752D,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/V4bBxo2zOm', 'expanded_url': 'https://ojelassi.wp.imt.fr', 'display_url': 'ojelassi.wp.imt.fr', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +210,Wed Apr 14 07:00:45 +0000 2021,1382227306983358469,1382227306983358469,"[#Formations] + +#IA & #BigData +📅 [25/05] #IntelligenceArtificielle : Attentes économique et défis scientifiques -… https://t.co/KoK3hcQobN",True,"Hootsuite Inc.",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'Formations', 'indices': [1, 12]}, {'text': 'IA', 'indices': [15, 18]}, {'text': 'BigData', 'indices': [25, 33]}, {'text': 'IntelligenceArtificielle', 'indices': [44, 69]}]",[],[],"[{'url': 'https://t.co/KoK3hcQobN', 'expanded_url': 'https://twitter.com/i/web/status/1382227306983358469', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [118, 141]}]",fr,recent,2931750730,2931750730,Télécom Evolution,telecomevol,France,"L'organisme de #FormationContinue de @IMTAtlantique, @TelecomParis_ et @TelecomSudParis spécialisé dans le développement des compétences numériques. #TransfoNum",https://t.co/aN5MLw07Qh,[],False,616,712,50,Fri Dec 19 08:33:02 +0000 2014,142,,,True,False,1461,,False,False,False,25303C,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,https://pbs.twimg.com/profile_images/545860190197669888/iy1CMS0E_normal.png,ED752D,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/aN5MLw07Qh', 'expanded_url': 'http://www.telecom-evolution.fr', 'display_url': 'telecom-evolution.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2931750730/1604999660,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +211,Wed Apr 14 06:38:26 +0000 2021,1382221693209432065,1382221693209432065,"RT @CecileDejoux: Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au service…",False,"Twitter for iPhone",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [26, 29]}, {'text': 'manager', 'indices': [59, 67]}, {'text': 'futur', 'indices': [71, 77]}, {'text': 'podcast', 'indices': [89, 97]}, {'text': 'IntelligenceArtificielle', 'indices': [103, 128]}]",[],"[{'screen_name': 'CecileDejoux', 'name': 'Cecile Dejoux', 'id': 122330715, 'id_str': '122330715', 'indices': [3, 16]}]",[],fr,recent,57401107,57401107,Karine Boullier,kboullier,"Paris, France","Directrice de la Communication Global Industrial Affairs @sanofi +Ce qui ne me passionne pas m'ennuie ! +Ambassadrice #EllesComptent",https://t.co/2be04Cpq7U,[],False,1839,810,163,Thu Jul 16 18:08:57 +0000 2009,7415,,,True,False,13001,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1308345528330211328/5scJukNn_normal.jpg,https://pbs.twimg.com/profile_images/1308345528330211328/5scJukNn_normal.jpg,E81C4F,FFFFFF,DDEEF6,333333,True,True,False,False,False,False,False,none,Wed Apr 14 05:30:13 +0000 2021,1.3822045237379768e+18,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Hootsuite Inc.",,,,,,122330715.0,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",[],False,8254.0,901.0,375.0,Fri Mar 12 10:19:05 +0000 2010,3530.0,,,True,False,7603.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_banners/122330715/1479541509,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,,"[{'url': 'https://t.co/2be04Cpq7U', 'expanded_url': 'http://www.linkedin.com/in/karineboullier', 'display_url': 'linkedin.com/in/karineboull…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/57401107/1358193137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +212,Wed Apr 14 06:11:09 +0000 2021,1382214825741258752,1382214825741258752,L'intelligence artificielle démontre son utilité dans de nombreux domaines et notre santé ne fait pas exception. Fo… https://t.co/qd8yyzzgAH,True,"Twitter Web App",,,,,,,,,,False,1,2,False,False,fr,[],[],[],"[{'url': 'https://t.co/qd8yyzzgAH', 'expanded_url': 'https://twitter.com/i/web/status/1382214825741258752', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,84847876,84847876,OpenStudio,_OpenStudio_,France,"OpenStudio est une ESN intervenant dans 3 activités principales : Intelligence Artificielle, E-commerce et Développement sur-mesure. +#ecommerce #thelia #ai",https://t.co/emaogzLQKF,[],False,744,496,56,Sat Oct 24 13:31:29 +0000 2009,73,,,False,False,1305,,False,False,False,0899D3,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1314470660090011648/yyItsJad_normal.jpg,https://pbs.twimg.com/profile_images/1314470660090011648/yyItsJad_normal.jpg,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/emaogzLQKF', 'expanded_url': 'https://www.openstudio.fr', 'display_url': 'openstudio.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/84847876/1607534715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +213,Wed Apr 14 05:59:13 +0000 2021,1382211823861174272,1382211823861174272,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,967796267127656448,967796267127656448,Isa M,IsabelleMalher4,"Lyon, France",#DevOps,,[],False,136,23,8,Sun Feb 25 16:19:45 +0000 2018,4398,,,False,False,5755,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/974298269617737735/PIE1lM6v_normal.jpg,https://pbs.twimg.com/profile_images/974298269617737735/PIE1lM6v_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/967796267127656448/1519577339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +214,Wed Apr 14 05:58:43 +0000 2021,1382211696761188355,1382211696761188355,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,964912158906732544,964912158906732544,Audrey_cyber,AudreyLEROY19,"Ile-de-France, France",🇫🇷 Passionnée par la #Blockchain #Cybersecurity #IoT #AI #ArtificialIntelligence #MachineLearning #Tech #ITSecurity,,[],False,155,15,10,Sat Feb 17 17:19:20 +0000 2018,4599,,,False,False,5923,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1204516318726242304/Rwu-z5Fa_normal.jpg,https://pbs.twimg.com/profile_images/1204516318726242304/Rwu-z5Fa_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/964912158906732544/1518891513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +215,Wed Apr 14 05:58:12 +0000 2021,1382211566184058880,1382211566184058880,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter for Android",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,820642045316448257,820642045316448257,Ronand_B,RonandBernard,"Aquitaine, France",Passionné par : #industry40 #innovation #tech #robotics #IIoT #aerospace #AvGeek #aviation. #SIAE2019 #ParisAirShow,,[],False,657,756,186,Sun Jan 15 14:41:25 +0000 2017,6566,,,False,False,9105,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1204514561065402368/T4zTJxqZ_normal.jpg,https://pbs.twimg.com/profile_images/1204514561065402368/T4zTJxqZ_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/820642045316448257/1486928207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +216,Wed Apr 14 05:58:03 +0000 2021,1382211527491608577,1382211527491608577,"#KYP #Santé +Déjà plus de trente établissements de santé ont adopté notre solution d’e-admission à distance, KYP. 🩺… https://t.co/DNKoVhzKj9",True,"Buffer",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'KYP', 'indices': [0, 4]}, {'text': 'Santé', 'indices': [5, 11]}]",[],[],"[{'url': 'https://t.co/DNKoVhzKj9', 'expanded_url': 'https://twitter.com/i/web/status/1382211527491608577', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,257415017,257415017,Jouve,GroupeJouve,Paris,"Spécialiste du traitement des données, et de leurs usages digitaux #IA #data #digital #transfonum #UX #UI #tech #BPO #cybersecurité #esanté #hcsmeufr",https://t.co/0XL22l2PgQ,[],False,1246,1056,110,Fri Feb 25 11:04:36 +0000 2011,956,,,True,False,4677,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1122776464766701569/pXqT_qfL_normal.jpg,https://pbs.twimg.com/profile_images/1122776464766701569/pXqT_qfL_normal.jpg,C30000,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/0XL22l2PgQ', 'expanded_url': 'http://www.jouve.com', 'display_url': 'jouve.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/257415017/1593529625,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +217,Wed Apr 14 05:57:34 +0000 2021,1382211405890383872,1382211405890383872,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter for iPhone",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,871624223395020800,871624223395020800,simon_th,thomassimon471,,#transformationdigitale #LegalTech #TransfoNum #Marketing #MarTech,,[],False,361,388,17,Mon Jun 05 07:06:23 +0000 2017,5747,,,False,False,7970,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/965925144727379968/L77Pww5n_normal.jpg,https://pbs.twimg.com/profile_images/965925144727379968/L77Pww5n_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/871624223395020800/1497555699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +218,Wed Apr 14 05:57:06 +0000 2021,1382211288340783104,1382211288340783104,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter for iPhone",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,820650170773868544,820650170773868544,Tech3873,tech38731,France,"#AI #VR #AR #blockchain #tech #chabots #wearables #Robotics #BigData #IoT #Industry40 #cybersecurity #infosec +#iotsecurity",,[],False,1277,1438,245,Sun Jan 15 15:13:42 +0000 2017,6582,,,False,False,10181,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/964581180963254272/rPlxdt8M_normal.jpg,https://pbs.twimg.com/profile_images/964581180963254272/rPlxdt8M_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/820650170773868544/1511388188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +219,Wed Apr 14 05:55:25 +0000 2021,1382210866129600512,1382210866129600512,"RT @ModisFrance: Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 prévisio…",False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,817131260,817131260,Modis Recrute 🇫🇷,ModisRecruteFR,France,"L'actu #carrière, #emploi et #formation dans les métiers de l'#ingénierie & du #numérique de @ModisFrance",https://t.co/jaWwTG4Jx2,[],False,2352,952,293,Tue Sep 11 10:19:43 +0000 2012,6589,,,False,False,7181,,False,False,False,005084,http://abs.twimg.com/images/themes/theme7/bg.gif,https://abs.twimg.com/images/themes/theme7/bg.gif,False,http://pbs.twimg.com/profile_images/1260093629370073089/Wmb884ZW_normal.jpg,https://pbs.twimg.com/profile_images/1260093629370073089/Wmb884ZW_normal.jpg,1B95E0,FFFFFF,F3F3F3,333333,False,True,False,False,False,False,False,none,Wed Apr 14 05:53:06 +0000 2021,1.382210283276546e+18,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,8.0,18.0,False,False,False,fr,,"[{'url': 'https://t.co/jaWwTG4Jx2', 'expanded_url': 'https://www.modisfrance.fr/', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/817131260/1603117366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +220,Wed Apr 14 05:53:06 +0000 2021,1382210283276546054,1382210283276546054,"Où en sont les entreprises avec l'#IA ? Une idée ? 🤔 + +📚Des investissements aux usages en passant par l'éthique, 5 p… https://t.co/GjFUG1doNv",True,"Twitter Web App",,,,,,,,,,False,8,18,False,False,fr,"[{'text': 'IA', 'indices': [34, 37]}]",[],[],"[{'url': 'https://t.co/GjFUG1doNv', 'expanded_url': 'https://twitter.com/i/web/status/1382210283276546054', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,387867632,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,[],False,5129,3606,286,Sun Oct 09 20:13:41 +0000 2011,6473,,,False,False,5532,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/387867632/1603117329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +221,Wed Apr 14 05:51:33 +0000 2021,1382209892572860417,1382209892572860417,#Intelligenceartificielle : la nécessaire réflexion #citoyenne - ⁦@thot⁩ ⁦@eidos64⁩ #eidos64 #IA https://t.co/IBGRNMh2sh,False,"Twitter for iPhone",,,,,,,,,,False,1,3,False,False,fr,"[{'text': 'Intelligenceartificielle', 'indices': [0, 25]}, {'text': 'citoyenne', 'indices': [52, 62]}, {'text': 'eidos64', 'indices': [84, 92]}, {'text': 'IA', 'indices': [93, 96]}]",[],"[{'screen_name': 'thot', 'name': 'Thot - Cursus', 'id': 629633, 'id_str': '629633', 'indices': [66, 71]}, {'screen_name': 'eidos64', 'name': 'Eidos 64', 'id': 581127312, 'id_str': '581127312', 'indices': [74, 82]}]","[{'url': 'https://t.co/IBGRNMh2sh', 'expanded_url': 'https://cursus.edu/articles/44103/intelligence-artificielle-la-necessaire-reflexion-citoyenne', 'display_url': 'cursus.edu/articles/44103…', 'indices': [98, 121]}]",fr,recent,60351876,60351876,Nicolas Le Luherne 🌻,ProfLeluherne,"Chartres, France","Directeur d’ateliers Canopé et demain IEN #Lettreshistoiregéographie #dandysmenumérique, #makers #couturier #slasher",https://t.co/wxXdUs3dFC,[],False,3537,2695,428,Sun Jul 26 17:33:24 +0000 2009,11823,,,True,False,37285,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/785936552698449920/8bctY_5W_normal.jpg,https://pbs.twimg.com/profile_images/785936552698449920/8bctY_5W_normal.jpg,2FC2EF,181A1E,252429,666666,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/wxXdUs3dFC', 'expanded_url': 'https://medium.com/@ProfLeluherne', 'display_url': 'medium.com/@ProfLeluherne', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/60351876/1606377439,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +222,Wed Apr 14 05:30:13 +0000 2021,1382204523737976833,1382204523737976833,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/VuZLaNL5eQ",True,"Hootsuite Inc.",,,,,,,,,,False,7,9,False,False,fr,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/VuZLaNL5eQ', 'expanded_url': 'https://twitter.com/i/web/status/1382204523737976833', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,122330715,122330715,Cecile Dejoux,CecileDejoux,Paris,"Professeur @LeCnam @ESCP, #MasterRH Conférencière #management #numerique #IA, auteur, créatrice du #MOOC #Manager #agile #Leader #designthinking #IApourtpous",https://t.co/Sj7jiVl43T,[],False,8254,901,375,Fri Mar 12 10:19:05 +0000 2010,3530,,,True,False,7603,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,https://pbs.twimg.com/profile_images/953480273085186048/1BUlpq8Y_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/Sj7jiVl43T', 'expanded_url': 'http://ceciledejoux.com', 'display_url': 'ceciledejoux.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/122330715/1479541509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +223,Wed Apr 14 05:30:13 +0000 2021,1382204523490459648,1382204523490459648,"Et si l'#IA était le plus grand allié du #manager du #futur ? +Dans le #podcast « L' #IntelligenceArtificielle au s… https://t.co/FzBL1dX5nI",True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [8, 11]}, {'text': 'manager', 'indices': [41, 49]}, {'text': 'futur', 'indices': [53, 59]}, {'text': 'podcast', 'indices': [71, 79]}, {'text': 'IntelligenceArtificielle', 'indices': [85, 110]}]",[],[],"[{'url': 'https://t.co/FzBL1dX5nI', 'expanded_url': 'https://twitter.com/i/web/status/1382204523490459648', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1930330106,1930330106,Mooclead,Mooclead,,"Des actus, des infos, du contenu exclusif sur le Mooc du #manager au #leader et #Mooc #IA @CecileDej et ses participants. Inscrivez-vous ! @FunMooc",https://t.co/DQ2xDo5ljx,[],False,6003,436,189,Thu Oct 03 11:05:38 +0000 2013,3049,,,True,False,4213,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1323228038285459456/PxOV7xmm_normal.jpg,https://pbs.twimg.com/profile_images/1323228038285459456/PxOV7xmm_normal.jpg,3B94D9,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/DQ2xDo5ljx', 'expanded_url': 'https://www.fun-mooc.fr/courses/course-v1:CNAM+01002+session05/about', 'display_url': 'fun-mooc.fr/courses/course…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1930330106/1548085759,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +224,Wed Apr 14 03:50:36 +0000 2021,1382179453963530245,1382179453963530245,🌇#NightReplay [#IntelligenceArtificielle #IA] Un consortium coordonné par la société iAR utilise l’IA pour lutter c… https://t.co/Tb5RtJgmEg,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/Tb5RtJgmEg', 'expanded_url': 'https://twitter.com/i/web/status/1382179453963530245', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +225,Tue Apr 13 23:38:49 +0000 2021,1382116092059992066,1382116092059992066,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Cyber Security Feed",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,1131854274223366144,1131854274223366144,Cyber Security Feed,cybersec_feeds,Internet,check out a privacy oriented social media platform 👉🏾https://t.co/KkqBnPkRZK Cyber Security News in 1 place! Retweets original Cyber Sec tweets. 🤖 made by @AbdirahiimYa,,"[{'url': 'https://t.co/KkqBnPkRZK', 'expanded_url': 'http://samochat.net', 'display_url': 'samochat.net', 'indices': [53, 76]}]",False,15317,1,271,Fri May 24 09:27:42 +0000 2019,0,,,False,False,1440947,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1131855016766124032/vhasETOF_normal.jpg,https://pbs.twimg.com/profile_images/1131855016766124032/vhasETOF_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1131854274223366144/1558718830,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +226,Tue Apr 13 22:43:54 +0000 2021,1382102272071585793,1382102272071585793,"""Grâce à la technologie, aujourd'hui, n'importe quel être humain connaît plus de choses que Léonard de Vinci.”… https://t.co/NgXHOy0s3X",True,"Twitter for iPhone",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/NgXHOy0s3X', 'expanded_url': 'https://twitter.com/i/web/status/1382102272071585793', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,611110747,611110747,David Malleval ©️,dav_mllvl,"Lyon, France",#TransitionZeroCarbone #Digital #MueDigitale #Finance #Social_Media #Engie #Lyon #IA #IntelligenceArtificielle,https://t.co/ZkRXpv7hKk,[],False,2569,2441,67,Sun Jun 17 20:40:13 +0000 2012,11941,,,True,False,30987,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/961343676801744897/-z5sFNY7_normal.jpg,https://pbs.twimg.com/profile_images/961343676801744897/-z5sFNY7_normal.jpg,0099B9,000000,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ZkRXpv7hKk', 'expanded_url': 'http://www.linkedin.com/in/david-malleval-03272b4b', 'display_url': 'linkedin.com/in/david-malle…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/611110747/1518037171,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +227,Tue Apr 13 22:34:08 +0000 2021,1382099815673257984,1382099815673257984,🌇#NightReplay [#IntelligenceArtificielle #IA] L’IA au service des coopératives et des petites entreprises agricoles… https://t.co/bl7mSGxuUb,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/bl7mSGxuUb', 'expanded_url': 'https://twitter.com/i/web/status/1382099815673257984', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +228,Tue Apr 13 21:48:54 +0000 2021,1382088430033731589,1382088430033731589,RT @mdrechsler: #IA #AI #IntelligenceArtificielle #Math2020 #Mathématiques #primaire Place et rôle des assistants vocaux intelligents en ma…,False,"Twitter Web App",,,,,,,,,,True,4,0,False,False,fr,"[{'text': 'IA', 'indices': [16, 19]}, {'text': 'AI', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [24, 49]}, {'text': 'Math2020', 'indices': [50, 59]}, {'text': 'Mathématiques', 'indices': [60, 74]}, {'text': 'primaire', 'indices': [75, 84]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,297316043,297316043,Dr. de l'immatériel,RLDI_Lamy,,"Lionel Costes, +Rédacteur en chef +Directeur de collection +Lamy Droit de l’Immatériel",,[],False,12416,12170,5436,Thu May 12 09:31:33 +0000 2011,142517,,,True,False,265044,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1158421083646771200/6u9NT6Cp_normal.jpg,https://pbs.twimg.com/profile_images/1158421083646771200/6u9NT6Cp_normal.jpg,1B95E0,C0DEED,12B2FC,F5F3F0,False,False,False,False,False,False,False,none,Fri Jan 31 14:48:56 +0000 2020,1.223256855574655e+18,1223256855574654977,#IA #AI #IntelligenceArtificielle #Math2020 #Mathématiques #primaire Place et rôle des assistants vocaux intelligen… https://t.co/LYoJDIgHCg,True,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'AI', 'indices': [4, 7]}, {'text': 'IntelligenceArtificielle', 'indices': [8, 33]}, {'text': 'Math2020', 'indices': [34, 43]}, {'text': 'Mathématiques', 'indices': [44, 58]}, {'text': 'primaire', 'indices': [59, 68]}]",[],[],"[{'url': 'https://t.co/LYoJDIgHCg', 'expanded_url': 'https://twitter.com/i/web/status/1223256855574654977', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,4.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/297316043/1577867479,1.222755254229504e+18,1222755254229504000,1.222755254229504e+18,1222755254229504000,Thu Jan 30 05:35:44 +0000 2020,1.222755254229504e+18,1222755254229504000,"#Ôboulot : une start-up paloise présente #Mathia, un assistant vocal intelligent en mathématiques. Séquence #IA à l… https://t.co/Z76XCoKIS9",True,"[{'text': 'Ôboulot', 'indices': [0, 8]}, {'text': 'Mathia', 'indices': [41, 48]}, {'text': 'IA', 'indices': [108, 111]}]",[],[],"[{'url': 'https://t.co/Z76XCoKIS9', 'expanded_url': 'https://twitter.com/i/web/status/1222755254229504000', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter for Android",,,,,,28666886.0,28666886,BΞMBΞLLY,bembelly,,Récréation verbale | Extimités pol. & Numériques Mode «#Noir #intense» activé | #TwitterVariétésClub,https://t.co/lREhSyZT4k,"[{'url': 'https://t.co/lREhSyZT4k', 'expanded_url': 'http://bembelly.wordpress.com', 'display_url': 'bembelly.wordpress.com', 'indices': [0, 23]}]",[],False,5822.0,1369.0,374.0,Fri Apr 03 22:09:16 +0000 2009,33462.0,,,True,False,204556.0,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,True,http://pbs.twimg.com/profile_images/1150174246884249602/Lf6Ludau_normal.jpg,https://pbs.twimg.com/profile_images/1150174246884249602/Lf6Ludau_normal.jpg,https://pbs.twimg.com/profile_banners/28666886/1564662268,91D2FA,FFFFFF,95E8EC,3C3940,True,False,False,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +229,Tue Apr 13 21:33:42 +0000 2021,1382084605721899009,1382084605721899009,🌇#NightReplay [#IntelligenceArtificielle #IA] https://t.co/pldfbamVF4 annonce l’acquisition de… https://t.co/GGoeDPFBEd,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'NightReplay', 'indices': [1, 13]}, {'text': 'IntelligenceArtificielle', 'indices': [15, 40]}, {'text': 'IA', 'indices': [41, 44]}]",[],[],"[{'url': 'https://t.co/pldfbamVF4', 'expanded_url': 'http://Demain.ai', 'display_url': 'Demain.ai', 'indices': [46, 69]}, {'url': 'https://t.co/GGoeDPFBEd', 'expanded_url': 'https://twitter.com/i/web/status/1382084605721899009', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [96, 119]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +230,Tue Apr 13 20:43:30 +0000 2021,1382071972784398343,1382071972784398343,RT @ActuIAFr: [Dernière minute] : Cloudflare et NVIDIA s’associent afin de déployer l’IA à grande échelle dans la périphérie du réseau #har…,False,"Twitter for iPhone",,,,,,,,,,False,1,0,False,False,fr,[],[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,1002572701783949312,1002572701783949312,KarineJacq-Systematic,KarinejacqS,France,"DG Systematic Paris-Region, pôle européen des Deep Tech 900 membres académiques et industriels dont 600 startups/PME Deep Tech, Collectivités et Investisseurs",https://t.co/Dn26tRTJ9a,[],False,737,633,12,Fri Jun 01 15:28:53 +0000 2018,10552,,,True,False,9376,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1322972909443436545/7QTaSRio_normal.jpg,https://pbs.twimg.com/profile_images/1322972909443436545/7QTaSRio_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Tue Apr 13 17:13:14 +0000 2021,1.3820190564804444e+18,1382019056480444417,[Dernière minute] : Cloudflare et NVIDIA s’associent afin de déployer l’IA à grande échelle dans la périphérie du r… https://t.co/awAWIBYP99,True,[],[],[],"[{'url': 'https://t.co/awAWIBYP99', 'expanded_url': 'https://twitter.com/i/web/status/1382019056480444417', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,,"[{'url': 'https://t.co/Dn26tRTJ9a', 'expanded_url': 'http://www.systematic-paris-region.org', 'display_url': 'systematic-paris-region.org', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +231,Tue Apr 13 20:35:40 +0000 2021,1382069999691563009,1382069999691563009,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1317041468469616652,1317041468469616652,Lisa Demontier,DemontierLisa,,"Student in cognitive sciences 🧠 +Aix-Marseille University 🎓 +🤖 IA and Education ~ Chatbot and learning ~ Cognitive skills and learning ~ e-storien",,[],False,44,88,1,Fri Oct 16 09:55:38 +0000 2020,10,,,False,False,21,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1318950127000784906/j8o4Uigs_normal.jpg,https://pbs.twimg.com/profile_images/1318950127000784906/j8o4Uigs_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1317041468469616652/1603297541,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +232,Tue Apr 13 20:32:12 +0000 2021,1382069127498567680,1382069127498567680,RT @mdrechsler: #IA #AI #IntelligenceArtificielle #Math2020 #Mathématiques #primaire Place et rôle des assistants vocaux intelligents en ma…,False,"Twitter Web App",,,,,,,,,,True,4,0,False,False,fr,"[{'text': 'IA', 'indices': [16, 19]}, {'text': 'AI', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [24, 49]}, {'text': 'Math2020', 'indices': [50, 59]}, {'text': 'Mathématiques', 'indices': [60, 74]}, {'text': 'primaire', 'indices': [75, 84]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Fri Jan 31 14:48:56 +0000 2020,1.223256855574655e+18,1223256855574654977,#IA #AI #IntelligenceArtificielle #Math2020 #Mathématiques #primaire Place et rôle des assistants vocaux intelligen… https://t.co/LYoJDIgHCg,True,"[{'text': 'IA', 'indices': [0, 3]}, {'text': 'AI', 'indices': [4, 7]}, {'text': 'IntelligenceArtificielle', 'indices': [8, 33]}, {'text': 'Math2020', 'indices': [34, 43]}, {'text': 'Mathématiques', 'indices': [44, 58]}, {'text': 'primaire', 'indices': [59, 68]}]",[],[],"[{'url': 'https://t.co/LYoJDIgHCg', 'expanded_url': 'https://twitter.com/i/web/status/1223256855574654977', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,4.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.222755254229504e+18,1222755254229504000,1.222755254229504e+18,1222755254229504000,Thu Jan 30 05:35:44 +0000 2020,1.222755254229504e+18,1222755254229504000,"#Ôboulot : une start-up paloise présente #Mathia, un assistant vocal intelligent en mathématiques. Séquence #IA à l… https://t.co/Z76XCoKIS9",True,"[{'text': 'Ôboulot', 'indices': [0, 8]}, {'text': 'Mathia', 'indices': [41, 48]}, {'text': 'IA', 'indices': [108, 111]}]",[],[],"[{'url': 'https://t.co/Z76XCoKIS9', 'expanded_url': 'https://twitter.com/i/web/status/1222755254229504000', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter for Android",,,,,,28666886.0,28666886,BΞMBΞLLY,bembelly,,Récréation verbale | Extimités pol. & Numériques Mode «#Noir #intense» activé | #TwitterVariétésClub,https://t.co/lREhSyZT4k,"[{'url': 'https://t.co/lREhSyZT4k', 'expanded_url': 'http://bembelly.wordpress.com', 'display_url': 'bembelly.wordpress.com', 'indices': [0, 23]}]",[],False,5822.0,1369.0,374.0,Fri Apr 03 22:09:16 +0000 2009,33462.0,,,True,False,204556.0,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,True,http://pbs.twimg.com/profile_images/1150174246884249602/Lf6Ludau_normal.jpg,https://pbs.twimg.com/profile_images/1150174246884249602/Lf6Ludau_normal.jpg,https://pbs.twimg.com/profile_banners/28666886/1564662268,91D2FA,FFFFFF,95E8EC,3C3940,True,False,False,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +233,Tue Apr 13 20:16:51 +0000 2021,1382065266968903681,1382065266968903681,"RT @jeromeleleu: Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocale, pour…",False,"Twitter for iPad",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'Esanté', 'indices': [24, 31]}, {'text': 'IntelligenceArtificielle', 'indices': [38, 63]}]",[],"[{'screen_name': 'jeromeleleu', 'name': 'Jerome Leleu', 'id': 53877352, 'id_str': '53877352', 'indices': [3, 15]}, {'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [66, 76]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [85, 95]}]",[],fr,recent,1165652918147657730,1165652918147657730,Tanguy us Villedieu Danielle,VilledieuDanie1,"Ile-de-France, France",,,[],False,33,38,0,Sun Aug 25 15:52:05 +0000 2019,145,,,False,False,229,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1331641281332858891/3l-bNojO_normal.jpg,https://pbs.twimg.com/profile_images/1331641281332858891/3l-bNojO_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 05:09:09 +0000 2021,1.381836833294844e+18,1381836833294843904,"Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocal… https://t.co/geiQT29PQd",True,"[{'text': 'Esanté', 'indices': [7, 14]}, {'text': 'IntelligenceArtificielle', 'indices': [21, 46]}]",[],"[{'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [49, 59]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [68, 78]}]","[{'url': 'https://t.co/geiQT29PQd', 'expanded_url': 'https://twitter.com/i/web/status/1381836833294843904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,"Twitter Web App",,,,,,53877352.0,53877352,Jerome Leleu,jeromeleleu,,"Président de Interaction Healthcare @digitalsante & CEO de @simforhealth / Lauréat "" Les #TalentsDeLaEsanté 2020 "" / Expert #Esanté / Communauté #hcsmeufr",https://t.co/VRjtE4DEuC,"[{'url': 'https://t.co/VRjtE4DEuC', 'expanded_url': 'http://fr.linkedin.com/in/jeromeleleu/', 'display_url': 'fr.linkedin.com/in/jeromeleleu/', 'indices': [0, 23]}]",[],False,9952.0,4710.0,801.0,Sun Jul 05 09:35:30 +0000 2009,11059.0,,,True,False,18780.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_banners/53877352/1483522713,009999,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,False,5.0,11.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +234,Tue Apr 13 17:54:48 +0000 2021,1382029519108857856,1382029519108857856,"La « ville sûre » ou la #gouvernance par les algorithmes +via @cedric_buron +#éthique #ia #intelligenceartificielle… https://t.co/gyQGo5AnHQ",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'gouvernance', 'indices': [24, 36]}, {'text': 'éthique', 'indices': [76, 84]}, {'text': 'ia', 'indices': [85, 88]}, {'text': 'intelligenceartificielle', 'indices': [89, 114]}]",[],"[{'screen_name': 'cedric_buron', 'name': 'Cédric Buron', 'id': 737890498094977024, 'id_str': '737890498094977024', 'indices': [61, 74]}]","[{'url': 'https://t.co/gyQGo5AnHQ', 'expanded_url': 'https://twitter.com/i/web/status/1382029519108857856', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +235,Tue Apr 13 17:15:01 +0000 2021,1382019505749159946,1382019505749159946,L’#IntelligenceArtificielle permet de personnaliser les soins et d’améliorer l’expérience des pts. Découvrez commen… https://t.co/nDIn0QsyGa,True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [2, 27]}]",[],[],"[{'url': 'https://t.co/nDIn0QsyGa', 'expanded_url': 'https://twitter.com/i/web/status/1382019505749159946', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,50159254,50159254,Healthcare Excellence CA | Excellence en santé CA,HE_ES_Canada,Canada,Shaping the future of quality and safety. Together. | Façonner l’avenir de la qualité et de la sécurité. Ensemble.,https://t.co/6xOnOoQTcN,[],False,13680,923,355,Wed Jun 24 00:48:13 +0000 2009,6297,,,True,False,16262,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1366970566918500353/fHB_kv7Q_normal.png,https://pbs.twimg.com/profile_images/1366970566918500353/fHB_kv7Q_normal.png,D31145,D31145,FFFFFF,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/6xOnOoQTcN', 'expanded_url': 'http://www.healthcareexcellence.ca', 'display_url': 'healthcareexcellence.ca', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/50159254/1614746155,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +236,Tue Apr 13 17:13:14 +0000 2021,1382019056480444417,1382019056480444417,[Dernière minute] : Cloudflare et NVIDIA s’associent afin de déployer l’IA à grande échelle dans la périphérie du r… https://t.co/awAWIBYP99,True,"Twitter Web App",,,,,,,,,,False,1,2,False,False,fr,[],[],[],"[{'url': 'https://t.co/awAWIBYP99', 'expanded_url': 'https://twitter.com/i/web/status/1382019056480444417', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +237,Tue Apr 13 16:17:52 +0000 2021,1382005123312930825,1382005123312930825,"RT @VincentCespedes: Nouvelle critique de mon dernier livre, #LeMondeEstFlou (@EditionsPlon). Merci Hugo ! + +#philosophie #philofiction #sc…",False,"Twitter for iPad",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'LeMondeEstFlou', 'indices': [61, 76]}, {'text': 'philosophie', 'indices': [109, 121]}, {'text': 'philofiction', 'indices': [122, 135]}]",[],"[{'screen_name': 'VincentCespedes', 'name': 'Vincent Cespedes', 'id': 72851410, 'id_str': '72851410', 'indices': [3, 19]}, {'screen_name': 'EditionsPlon', 'name': 'Editions Plon', 'id': 412980703, 'id_str': '412980703', 'indices': [78, 91]}]",[],fr,recent,1880160931,1880160931,BANDINI,49mamie51,"Ariège, Midi-Pyrénées",,,[],False,244,575,17,Wed Sep 18 16:50:04 +0000 2013,21327,,,True,False,79054,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1150752382978015238/keZBkdC7_normal.jpg,https://pbs.twimg.com/profile_images/1150752382978015238/keZBkdC7_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Fri Apr 09 17:42:15 +0000 2021,1.3805768084757586e+18,1380576808475758592,"Nouvelle critique de mon dernier livre, #LeMondeEstFlou (@EditionsPlon). Merci Hugo ! + +#philosophie #philofiction… https://t.co/JZu8VCVCsh",True,"[{'text': 'LeMondeEstFlou', 'indices': [40, 55]}, {'text': 'philosophie', 'indices': [88, 100]}, {'text': 'philofiction', 'indices': [101, 114]}]",[],"[{'screen_name': 'EditionsPlon', 'name': 'Editions Plon', 'id': 412980703, 'id_str': '412980703', 'indices': [57, 70]}]","[{'url': 'https://t.co/JZu8VCVCsh', 'expanded_url': 'https://twitter.com/i/web/status/1380576808475758592', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",1.3626976059989238e+18,1362697605998923776,72851410.0,72851410,VincentCespedes,72851410.0,72851410,Vincent Cespedes,VincentCespedes,Paris,« ἒστι άρμονία πολυμιγέων ἒνωσις καὶ δίχα φρονεόντων συμφρόνησις » | 📘 « #LeMondeEstFlou. L’avenir des intelligences » @EditionsPlon : https://t.co/wYYpGX6HSD,https://t.co/PzsAm06Ca2,"[{'url': 'https://t.co/PzsAm06Ca2', 'expanded_url': 'https://youtube.com/VincentCespedesVideos', 'display_url': 'youtube.com/VincentCespede…', 'indices': [0, 23]}]","[{'url': 'https://t.co/wYYpGX6HSD', 'expanded_url': 'http://madmimi.com/s/99e9121', 'display_url': 'madmimi.com/s/99e9121', 'indices': [135, 158]}]",False,24320.0,27617.0,319.0,Wed Sep 09 13:27:15 +0000 2009,21811.0,,,False,False,33862.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_images/1382104852256464896/LrXDjb1y_normal.jpg,https://pbs.twimg.com/profile_banners/72851410/1611955624,981CEB,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +238,Tue Apr 13 15:40:09 +0000 2021,1381995629845561353,1381995629845561353,"Quand l'#ExperienceClient rencontre l'#intelligenceArtificielle, ça donne quoi ? Que du bonus ! Explications et cas… https://t.co/zq8eUII6yl",True,"Oktopost",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'ExperienceClient', 'indices': [8, 25]}, {'text': 'intelligenceArtificielle', 'indices': [38, 63]}]",[],[],"[{'url': 'https://t.co/zq8eUII6yl', 'expanded_url': 'https://twitter.com/i/web/status/1381995629845561353', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,221692112,221692112,Synolia,synolia,"Lyon, Paris, Bordeaux, Grand-O",Agence #ecommerce #CRM #BI - Expert Conseil - #Magento #Sylius #Prestashop #OroCommerce #OroCRM #SugarCRM #Akeneo #Zendesk #Qlik #TableauSoftware #mondaydotcom,https://t.co/CFqjrCrIHA,[],False,1947,1147,171,Wed Dec 01 10:26:11 +0000 2010,906,,,True,False,3107,,False,False,False,ABB8C2,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/824194284106743808/DdLOOPYr_normal.jpg,https://pbs.twimg.com/profile_images/824194284106743808/DdLOOPYr_normal.jpg,009999,000000,EFEFEF,333333,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/CFqjrCrIHA', 'expanded_url': 'https://www.synolia.com', 'display_url': 'synolia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/221692112/1589370525,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +239,Tue Apr 13 15:31:59 +0000 2021,1381993578428313607,1381993578428313607,[#IntelligenceArtificielle #IA] Un consortium coordonné par la société iAR utilise l'#IA pour lutter contre le gasp… https://t.co/QznDVwjpgV,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}, {'text': 'IA', 'indices': [27, 30]}, {'text': 'IA', 'indices': [85, 88]}]",[],[],"[{'url': 'https://t.co/QznDVwjpgV', 'expanded_url': 'https://twitter.com/i/web/status/1381993578428313607', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +240,Tue Apr 13 14:55:15 +0000 2021,1381984334022852612,1381984334022852612,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter Web App",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,921834263854579712,921834263854579712,DANE Clermont-Fd,DANE_Clermont,,Compte officiel de la Délégation Académique au Numérique Éducatif de Clermont-Ferrand.,,[],False,649,244,30,Sat Oct 21 20:23:10 +0000 2017,435,,,False,False,7325,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/921836835269218304/Wtv4SW_a_normal.jpg,https://pbs.twimg.com/profile_images/921836835269218304/Wtv4SW_a_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/921834263854579712/1508617971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +241,Tue Apr 13 14:50:37 +0000 2021,1381983165158461442,1381983165158461442,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter Web App",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,921834263854579712,921834263854579712,DANE Clermont-Fd,DANE_Clermont,,Compte officiel de la Délégation Académique au Numérique Éducatif de Clermont-Ferrand.,,[],False,649,244,30,Sat Oct 21 20:23:10 +0000 2017,435,,,False,False,7325,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/921836835269218304/Wtv4SW_a_normal.jpg,https://pbs.twimg.com/profile_images/921836835269218304/Wtv4SW_a_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/921834263854579712/1508617971,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +242,Tue Apr 13 14:44:19 +0000 2021,1381981579724132355,1381981579724132355,"RT @ActuIAFr: L’Université de Stanford et Genentech ont présenté Trial Pathdfinder, un système d’aide à la réalisation d’essais cliniques +h…",False,"Twitter for Android",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,1166099661117169664,1166099661117169664,Cohen Eddy 💉vacciné💉,CohenEddy2,world... planet earth 🌎 ,"Health sector, investisseur 🌏, fanatique de nouvelles technologies (IA, Quantique, Health), supporter en nautisme & FPV. +TLine: 50%Tech20%Health 20%Eco10%Archi",https://t.co/YEMD6DQwwI,[],False,63,171,3,Mon Aug 26 21:26:55 +0000 2019,4124,,,False,False,7308,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1335334929492742148/Bfsfjjee_normal.jpg,https://pbs.twimg.com/profile_images/1335334929492742148/Bfsfjjee_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 10:55:06 +0000 2021,1.3819238978561147e+18,1381923897856114688,"L’Université de Stanford et Genentech ont présenté Trial Pathdfinder, un système d’aide à la réalisation d’essais c… https://t.co/cRV1CfeOvv",True,[],[],[],"[{'url': 'https://t.co/cRV1CfeOvv', 'expanded_url': 'https://twitter.com/i/web/status/1381923897856114688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/YEMD6DQwwI', 'expanded_url': 'https://www.ge.com/europe/content/ge-europe', 'display_url': 'ge.com/europe/content…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1166099661117169664/1607203633,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +243,Tue Apr 13 13:50:10 +0000 2021,1381967955462787086,1381967955462787086,L’IA au service des coopératives et des petites entreprises agricoles : l’exemple des recherches de l’UOC en Catalo… https://t.co/Hdf3AkK6Nv,True,"Twitter Web App",,,,,,,,,,False,0,3,False,False,fr,[],[],[],"[{'url': 'https://t.co/Hdf3AkK6Nv', 'expanded_url': 'https://twitter.com/i/web/status/1381967955462787086', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +244,Tue Apr 13 13:44:33 +0000 2021,1381966539864207372,1381966539864207372,"RT @jeromeleleu: Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocale, pour…",False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'Esanté', 'indices': [24, 31]}, {'text': 'IntelligenceArtificielle', 'indices': [38, 63]}]",[],"[{'screen_name': 'jeromeleleu', 'name': 'Jerome Leleu', 'id': 53877352, 'id_str': '53877352', 'indices': [3, 15]}, {'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [66, 76]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [85, 95]}]",[],fr,recent,991402002713280513,991402002713280513,FrenchTechSudChampagne,FrenchProsthesi,"Haute-Marne, Champagne-Ardenne",Compte officiel du département Prosthesis Valley de Nogentech membre du réseau Health Tech des acteurs de l’écosystème de #Start’up #Chaumont #Nogent #Medical,https://t.co/pXKi3nyy3W,[],False,339,489,6,Tue May 01 19:40:31 +0000 2018,10267,,,False,False,7141,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1129025487760777216/vFivW8Uz_normal.png,https://pbs.twimg.com/profile_images/1129025487760777216/vFivW8Uz_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 05:09:09 +0000 2021,1.381836833294844e+18,1381836833294843904,"Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocal… https://t.co/geiQT29PQd",True,"[{'text': 'Esanté', 'indices': [7, 14]}, {'text': 'IntelligenceArtificielle', 'indices': [21, 46]}]",[],"[{'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [49, 59]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [68, 78]}]","[{'url': 'https://t.co/geiQT29PQd', 'expanded_url': 'https://twitter.com/i/web/status/1381836833294843904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,"Twitter Web App",,,,,,53877352.0,53877352,Jerome Leleu,jeromeleleu,,"Président de Interaction Healthcare @digitalsante & CEO de @simforhealth / Lauréat "" Les #TalentsDeLaEsanté 2020 "" / Expert #Esanté / Communauté #hcsmeufr",https://t.co/VRjtE4DEuC,"[{'url': 'https://t.co/VRjtE4DEuC', 'expanded_url': 'http://fr.linkedin.com/in/jeromeleleu/', 'display_url': 'fr.linkedin.com/in/jeromeleleu/', 'indices': [0, 23]}]",[],False,9952.0,4710.0,801.0,Sun Jul 05 09:35:30 +0000 2009,11059.0,,,True,False,18780.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_banners/53877352/1483522713,009999,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,False,5.0,11.0,False,False,False,fr,,"[{'url': 'https://t.co/pXKi3nyy3W', 'expanded_url': 'https://reseau-healthtech.fr/', 'display_url': 'reseau-healthtech.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/991402002713280513/1558015589,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +245,Tue Apr 13 13:41:28 +0000 2021,1381965766057095179,1381965766057095179,"[#IntelligenceArtificielle #IA] Demain.#ai annonce l'acquisition de https://t.co/Xk8NG7URiH, agence de sous-titrage… https://t.co/oI1F4We9uH",True,"Sociallymap",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [1, 26]}, {'text': 'IA', 'indices': [27, 30]}, {'text': 'ai', 'indices': [39, 42]}]",[],[],"[{'url': 'https://t.co/Xk8NG7URiH', 'expanded_url': 'http://Kaption.fr', 'display_url': 'Kaption.fr', 'indices': [68, 91]}, {'url': 'https://t.co/oI1F4We9uH', 'expanded_url': 'https://twitter.com/i/web/status/1381965766057095179', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +246,Tue Apr 13 13:18:31 +0000 2021,1381959988755763204,1381959988755763204,"[JPO virtuelles] Dans cette nouvelle vidéo, découvrez un exemple concret d'utilisation de l'#iA avec le cas de l'en… https://t.co/8IUrXoeI6h",True,"Twitter Web App",,,,,,,,,,False,1,3,False,False,fr,"[{'text': 'iA', 'indices': [92, 95]}]",[],[],"[{'url': 'https://t.co/8IUrXoeI6h', 'expanded_url': 'https://twitter.com/i/web/status/1381959988755763204', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,879316492352966656,879316492352966656,Campus Région du numérique,CampusRegion,"Auvergne-Rhône-Alpes, France","+ qu'un lieu : 1 réseau de formations, de structures d'accompagnement, de fablabs & d'initiatives pour la #TransfoNum et l'#industriedufutur en @auvergnerhalpes",https://t.co/JKKXRf2WrB,[],False,2067,509,27,Mon Jun 26 12:32:43 +0000 2017,1559,,,False,False,2597,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,https://pbs.twimg.com/profile_images/1365292609569255426/sva2wI_1_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/JKKXRf2WrB', 'expanded_url': 'https://campusnumerique.auvergnerhonealpes.fr', 'display_url': 'campusnumerique.auvergnerhonealpes.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/879316492352966656/1617803945,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +247,Tue Apr 13 13:00:01 +0000 2021,1381955333732462599,1381955333732462599,"𝐋𝐮𝐜 𝐉𝐮𝐥𝐢𝐚 : ""En soit l'𝐢𝐧𝐭𝐞𝐥𝐥𝐢𝐠𝐞𝐧𝐜𝐞 𝐚𝐫𝐭𝐢𝐟𝐢𝐜𝐢𝐞𝐥𝐥𝐞 n'est ni bonne, ni mauvaise. C'est juste un 𝐨𝐮𝐭𝐢𝐥, comme un 𝐦𝐚𝐫𝐭𝐞𝐚… https://t.co/lIIidWEiVM",True,"TweetDeck",,,,,,,,,,False,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/lIIidWEiVM', 'expanded_url': 'https://twitter.com/i/web/status/1381955333732462599', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1175649522,1175649522,Tawhid CHTIOUI,tawhidChtioui,France,"Président-fondateur @aivancityschool +#AI #ArtificialIntelligence #DataScience #ResponsibleAI +#Education #HigerEd #entrepreneurship #leadership",https://t.co/rRWdzt6NYM,[],False,3352,130,224,Wed Feb 13 15:32:32 +0000 2013,1605,,,True,False,5558,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,https://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,DD2E44,A8C7F7,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/rRWdzt6NYM', 'expanded_url': 'http://fr.linkedin.com/in/chtioui', 'display_url': 'fr.linkedin.com/in/chtioui', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1175649522/1608027770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +248,Tue Apr 13 12:32:53 +0000 2021,1381948502922629122,1381948502922629122,"RT @ArchimagRedac: Pascal Boniface : ""l'intelligence artificielle est la nouvelle frontière de la rivalité des puissances"" +➡️https://t.co/n…",False,"TweetDeck",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ArchimagRedac', 'name': 'Rédaction Archimag', 'id': 121435655, 'id_str': '121435655', 'indices': [3, 17]}]",[],fr,recent,808397929673269249,808397929673269249,William Wilson LAC,copyrightcowboy,"Ottawa, Ontario",Policy analyst at @LibraryArchives. I patrol the untamed border between copyright and the public domain. Opinions are my own; retweets ≠ endorsements. ©2016 ;),,[],False,487,1904,7,Mon Dec 12 19:47:40 +0000 2016,3804,,,False,False,11774,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1034469351498412032/Qw4ZLOVP_normal.jpg,https://pbs.twimg.com/profile_images/1034469351498412032/Qw4ZLOVP_normal.jpg,ABB8C2,000000,000000,000000,False,True,False,False,False,False,False,none,Tue Apr 13 11:41:54 +0000 2021,1.3819356749919846e+18,1381935674991984640,"Pascal Boniface : ""l'intelligence artificielle est la nouvelle frontière de la rivalité des puissances"" +➡️… https://t.co/ggHnEHXAL4",True,[],[],[],"[{'url': 'https://t.co/ggHnEHXAL4', 'expanded_url': 'https://twitter.com/i/web/status/1381935674991984640', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Twitter Web App",,,,,,121435655.0,121435655,Rédaction Archimag,ArchimagRedac,Paris,Compte du magazine Archimag - #transfonum #techno #veille #archives #bibliotheque #bibnum #documentation #IE #opendata #socialmedia #numerique #digitalworkplace,http://t.co/T5NZoBtjBH,"[{'url': 'http://t.co/T5NZoBtjBH', 'expanded_url': 'http://www.archimag.com', 'display_url': 'archimag.com', 'indices': [0, 22]}]",[],False,9768.0,126.0,1219.0,Tue Mar 09 13:56:06 +0000 2010,489.0,,,True,False,30097.0,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_banners/121435655/1434525469,9D582E,D9B17E,EADEAA,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,5.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/808397929673269249/1481576972,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +249,Tue Apr 13 12:10:05 +0000 2021,1381942767861989378,1381942767861989378,"RT @JeanDenisG: 5 millions levés pour 3 ambitions +Nous proposons une #intelligenceartificielle de compréhension du langage pour répondre à…",False,"DataScienceInfo",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'intelligenceartificielle', 'indices': [69, 94]}]",[],"[{'screen_name': 'JeanDenisG', 'name': 'Jean-Denis Garo', 'id': 250592410, 'id_str': '250592410', 'indices': [3, 14]}]",[],fr,recent,1200330399102197761,1200330399102197761,SyntaxError,DataAugmented,,"Data Scientist by day, geek tech gamer junky by night; welcome to my augmented stream of consciousness 😁",https://t.co/UX3fbIvlxX,[],False,7051,7032,85,Fri Nov 29 08:28:30 +0000 2019,23575,,,False,False,511173,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1302170997328621568/kxZYcsFI_normal.jpg,https://pbs.twimg.com/profile_images/1302170997328621568/kxZYcsFI_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Tue Apr 13 12:10:02 +0000 2021,1.3819427551072174e+18,1381942755107217411,"5 millions levés pour 3 ambitions +Nous proposons une #intelligenceartificielle de compréhension du langage pour rép… https://t.co/unafbiZTxp",True,"[{'text': 'intelligenceartificielle', 'indices': [53, 78]}]",[],[],"[{'url': 'https://t.co/unafbiZTxp', 'expanded_url': 'https://twitter.com/i/web/status/1381942755107217411', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,250592410.0,250592410,Jean-Denis Garo,JeanDenisG,Unde profundis ,Auteur chroniqueur/ Président du @CMITfr (2019-2021)/ Head of #marketing @golem_ai . Intérêt pour l’ #IA #Cloud #SaaS & #Kayak,https://t.co/5sVHU83zSi,"[{'url': 'https://t.co/5sVHU83zSi', 'expanded_url': 'http://fr.linkedin.com/in/jeandenisgaro/', 'display_url': 'fr.linkedin.com/in/jeandenisga…', 'indices': [0, 23]}]",[],False,5090.0,748.0,633.0,Fri Feb 11 12:00:31 +0000 2011,8319.0,,,True,False,12454.0,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1140674342294032387/WsN7-qTq_normal.png,https://pbs.twimg.com/profile_images/1140674342294032387/WsN7-qTq_normal.png,https://pbs.twimg.com/profile_banners/250592410/1575826664,2FC2EF,181A1E,252429,666666,False,True,False,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/UX3fbIvlxX', 'expanded_url': 'https://gamer-geek-news.com', 'display_url': 'gamer-geek-news.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1200330399102197761/1575018322,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +250,Tue Apr 13 12:10:02 +0000 2021,1381942755107217411,1381942755107217411,"5 millions levés pour 3 ambitions +Nous proposons une #intelligenceartificielle de compréhension du langage pour rép… https://t.co/unafbiZTxp",True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'intelligenceartificielle', 'indices': [53, 78]}]",[],[],"[{'url': 'https://t.co/unafbiZTxp', 'expanded_url': 'https://twitter.com/i/web/status/1381942755107217411', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,250592410,250592410,Jean-Denis Garo,JeanDenisG,Unde profundis ,Auteur chroniqueur/ Président du @CMITfr (2019-2021)/ Head of #marketing @golem_ai . Intérêt pour l’ #IA #Cloud #SaaS & #Kayak,https://t.co/5sVHU83zSi,[],False,5090,748,633,Fri Feb 11 12:00:31 +0000 2011,8319,,,True,False,12454,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/1140674342294032387/WsN7-qTq_normal.png,https://pbs.twimg.com/profile_images/1140674342294032387/WsN7-qTq_normal.png,2FC2EF,181A1E,252429,666666,False,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/5sVHU83zSi', 'expanded_url': 'http://fr.linkedin.com/in/jeandenisgaro/', 'display_url': 'fr.linkedin.com/in/jeandenisga…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/250592410/1575826664,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +251,Tue Apr 13 12:02:40 +0000 2021,1381940899811319814,1381940899811319814,"RT @ArchimagRedac: Pascal Boniface : ""l'intelligence artificielle est la nouvelle frontière de la rivalité des puissances"" +➡️https://t.co/n…",False,"Twitter for iPhone",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ArchimagRedac', 'name': 'Rédaction Archimag', 'id': 121435655, 'id_str': '121435655', 'indices': [3, 17]}]",[],fr,recent,1352217810550874114,1352217810550874114,Salut La Veille (BU&UnivLyon3),CescoGerme,"Lyon, France",Veille Doc BU&UNIV Lyon3 UJML,https://t.co/5q80PW0p2J,[],False,90,426,5,Thu Jan 21 11:35:23 +0000 2021,2640,,,False,False,4365,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1352273896121237506/KFMwlAkE_normal.jpg,https://pbs.twimg.com/profile_images/1352273896121237506/KFMwlAkE_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Tue Apr 13 11:41:54 +0000 2021,1.3819356749919846e+18,1381935674991984640,"Pascal Boniface : ""l'intelligence artificielle est la nouvelle frontière de la rivalité des puissances"" +➡️… https://t.co/ggHnEHXAL4",True,[],[],[],"[{'url': 'https://t.co/ggHnEHXAL4', 'expanded_url': 'https://twitter.com/i/web/status/1381935674991984640', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Twitter Web App",,,,,,121435655.0,121435655,Rédaction Archimag,ArchimagRedac,Paris,Compte du magazine Archimag - #transfonum #techno #veille #archives #bibliotheque #bibnum #documentation #IE #opendata #socialmedia #numerique #digitalworkplace,http://t.co/T5NZoBtjBH,"[{'url': 'http://t.co/T5NZoBtjBH', 'expanded_url': 'http://www.archimag.com', 'display_url': 'archimag.com', 'indices': [0, 22]}]",[],False,9768.0,126.0,1219.0,Tue Mar 09 13:56:06 +0000 2010,489.0,,,True,False,30097.0,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_banners/121435655/1434525469,9D582E,D9B17E,EADEAA,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,5.0,False,False,False,fr,,"[{'url': 'https://t.co/5q80PW0p2J', 'expanded_url': 'https://bu.univ-lyon3.fr', 'display_url': 'bu.univ-lyon3.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1352217810550874114/1611242598,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +252,Tue Apr 13 11:58:35 +0000 2021,1381939874236932098,1381939874236932098,"RT @jeromeleleu: Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocale, pour…",False,"Twitter for Android",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'Esanté', 'indices': [24, 31]}, {'text': 'IntelligenceArtificielle', 'indices': [38, 63]}]",[],"[{'screen_name': 'jeromeleleu', 'name': 'Jerome Leleu', 'id': 53877352, 'id_str': '53877352', 'indices': [3, 15]}, {'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [66, 76]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [85, 95]}]",[],fr,recent,1840842870,1840842870,fillatreau,FillatreauGmail,Bordeaux,"Président d'ALLIS-NA, Alliance pour l'Innovation en Santé - Nouvelle Aquitaine",,[],False,627,194,25,Mon Sep 09 06:44:34 +0000 2013,3124,,,False,False,1852,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1257656174809427969/rZ3vc8n7_normal.jpg,https://pbs.twimg.com/profile_images/1257656174809427969/rZ3vc8n7_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Tue Apr 13 05:09:09 +0000 2021,1.381836833294844e+18,1381836833294843904,"Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocal… https://t.co/geiQT29PQd",True,"[{'text': 'Esanté', 'indices': [7, 14]}, {'text': 'IntelligenceArtificielle', 'indices': [21, 46]}]",[],"[{'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [49, 59]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [68, 78]}]","[{'url': 'https://t.co/geiQT29PQd', 'expanded_url': 'https://twitter.com/i/web/status/1381836833294843904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,"Twitter Web App",,,,,,53877352.0,53877352,Jerome Leleu,jeromeleleu,,"Président de Interaction Healthcare @digitalsante & CEO de @simforhealth / Lauréat "" Les #TalentsDeLaEsanté 2020 "" / Expert #Esanté / Communauté #hcsmeufr",https://t.co/VRjtE4DEuC,"[{'url': 'https://t.co/VRjtE4DEuC', 'expanded_url': 'http://fr.linkedin.com/in/jeromeleleu/', 'display_url': 'fr.linkedin.com/in/jeromeleleu/', 'indices': [0, 23]}]",[],False,9952.0,4710.0,801.0,Sun Jul 05 09:35:30 +0000 2009,11059.0,,,True,False,18780.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_banners/53877352/1483522713,009999,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,False,5.0,11.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +253,Tue Apr 13 11:47:25 +0000 2021,1381937064082599938,1381937064082599938,Plus que quelques jours pour demander notre #kitmédia à l'approche du numéro 4 du magazine ActuIA #presse… https://t.co/WDpwxHyvkE,True,"Twitter Web App",,,,,,,,,,False,2,3,False,False,fr,"[{'text': 'kitmédia', 'indices': [44, 53]}, {'text': 'presse', 'indices': [98, 105]}]",[],[],"[{'url': 'https://t.co/WDpwxHyvkE', 'expanded_url': 'https://twitter.com/i/web/status/1381937064082599938', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +254,Tue Apr 13 11:41:54 +0000 2021,1381935674991984640,1381935674991984640,"Pascal Boniface : ""l'intelligence artificielle est la nouvelle frontière de la rivalité des puissances"" +➡️… https://t.co/ggHnEHXAL4",True,"Twitter Web App",,,,,,,,,,False,2,5,False,False,fr,[],[],[],"[{'url': 'https://t.co/ggHnEHXAL4', 'expanded_url': 'https://twitter.com/i/web/status/1381935674991984640', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,121435655,121435655,Rédaction Archimag,ArchimagRedac,Paris,Compte du magazine Archimag - #transfonum #techno #veille #archives #bibliotheque #bibnum #documentation #IE #opendata #socialmedia #numerique #digitalworkplace,http://t.co/T5NZoBtjBH,[],False,9768,126,1219,Tue Mar 09 13:56:06 +0000 2010,489,,,True,False,30097,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,https://pbs.twimg.com/profile_images/715524135108083716/CS6wm4q9_normal.jpg,9D582E,D9B17E,EADEAA,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'http://t.co/T5NZoBtjBH', 'expanded_url': 'http://www.archimag.com', 'display_url': 'archimag.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/121435655/1434525469,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +255,Tue Apr 13 11:07:36 +0000 2021,1381927044326555659,1381927044326555659,"RT @ActuIAFr: L’Université de Stanford et Genentech ont présenté Trial Pathdfinder, un système d’aide à la réalisation d’essais cliniques +h…",False,"CareMo News",,,,,,,,,,False,2,0,False,False,fr,[],[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,726065930455908353,726065930455908353,CareMo,caring_mobile,Global,We want you to find the best digital health strategy! Find all news around #eHealth and #mHealth here!,,[],False,6188,115,3244,Fri Apr 29 15:09:42 +0000 2016,38,,,False,False,354375,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/727239253529350144/Syga1r2Z_normal.jpg,https://pbs.twimg.com/profile_images/727239253529350144/Syga1r2Z_normal.jpg,C4E6FF,000000,000000,000000,False,False,False,False,False,False,False,none,Tue Apr 13 10:55:06 +0000 2021,1.3819238978561147e+18,1381923897856114688,"L’Université de Stanford et Genentech ont présenté Trial Pathdfinder, un système d’aide à la réalisation d’essais c… https://t.co/cRV1CfeOvv",True,[],[],[],"[{'url': 'https://t.co/cRV1CfeOvv', 'expanded_url': 'https://twitter.com/i/web/status/1381923897856114688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +256,Tue Apr 13 10:55:06 +0000 2021,1381923897856114688,1381923897856114688,"L’Université de Stanford et Genentech ont présenté Trial Pathdfinder, un système d’aide à la réalisation d’essais c… https://t.co/cRV1CfeOvv",True,"Twitter Web App",,,,,,,,,,False,2,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/cRV1CfeOvv', 'expanded_url': 'https://twitter.com/i/web/status/1381923897856114688', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +257,Tue Apr 13 10:44:52 +0000 2021,1381921322389897218,1381921322389897218,Un consortium coordonné par la société iAR utilise l’ #IA pour lutter contre le gaspillage alimentaire… https://t.co/jKFe7yzrPJ,True,"Twitter Web App",,,,,,,,,,False,0,2,False,False,fr,"[{'text': 'IA', 'indices': [54, 57]}]",[],[],"[{'url': 'https://t.co/jKFe7yzrPJ', 'expanded_url': 'https://twitter.com/i/web/status/1381921322389897218', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [104, 127]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +258,Tue Apr 13 10:38:49 +0000 2021,1381919798263697413,1381919798263697413,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for iPhone",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,873291090908065792,873291090908065792,Bruno Michel,BrunoMi66171725,"Paris, France",Professeur documentaliste à Paris,,[],False,141,229,3,Fri Jun 09 21:29:55 +0000 2017,254,,,True,False,2226,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/974411660436951040/-3FrKZH9_normal.jpg,https://pbs.twimg.com/profile_images/974411660436951040/-3FrKZH9_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/873291090908065792/1521152817,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +259,Tue Apr 13 10:38:34 +0000 2021,1381919733990195200,1381919733990195200,"Quand l’intelligence artificielle débarque dans nos PC +https://t.co/6kmOWm1vvE + +#Infosec #Secinfo #Security… https://t.co/ckXRd007qg",True,"Postfity.com",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Infosec', 'indices': [80, 88]}, {'text': 'Secinfo', 'indices': [89, 97]}, {'text': 'Security', 'indices': [98, 107]}]",[],[],"[{'url': 'https://t.co/6kmOWm1vvE', 'expanded_url': 'https://www.zdnet.fr/actualites-partenaires/quand-l-intelligence-artificielle-debarque-dans-nos-pc-39920885.htm', 'display_url': 'zdnet.fr/actualites-par…', 'indices': [55, 78]}, {'url': 'https://t.co/ckXRd007qg', 'expanded_url': 'https://twitter.com/i/web/status/1381919733990195200', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,1884513522,1884513522,CeptBiro,CeptBiro,Canada,#CeptBiro #Securite #Cybersecurite #Infosec #Security #Cybersecurity #CyberSec #Siem #Architect https://t.co/MnrcP9LSfz,https://t.co/ajI9xlWppS,"[{'url': 'https://t.co/MnrcP9LSfz', 'expanded_url': 'http://ht.ly/8rHq30iS5G1', 'display_url': 'ht.ly/8rHq30iS5G1', 'indices': [96, 119]}]",False,283,0,581,Thu Sep 19 22:12:14 +0000 2013,70,,,False,False,50965,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/378800000480784583/735927632e46db966519d6342e6d0f04_normal.png,https://pbs.twimg.com/profile_images/378800000480784583/735927632e46db966519d6342e6d0f04_normal.png,FF691F,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ajI9xlWppS', 'expanded_url': 'https://www.ceptbiro.com', 'display_url': 'ceptbiro.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1884513522/1585241774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +260,Tue Apr 13 10:29:18 +0000 2021,1381917403148382211,1381917403148382211,"Quand l’intelligence artificielle débarque dans nos PC +https://t.co/9Tb2ovYnMi + +#Infosec #Secinfo #Security… https://t.co/gWT0LQz6nx",True,"Postfity.com",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Infosec', 'indices': [80, 88]}, {'text': 'Secinfo', 'indices': [89, 97]}, {'text': 'Security', 'indices': [98, 107]}]",[],[],"[{'url': 'https://t.co/9Tb2ovYnMi', 'expanded_url': 'https://www.zdnet.fr/actualites-partenaires/quand-l-intelligence-artificielle-debarque-dans-nos-pc-39920885.htm', 'display_url': 'zdnet.fr/actualites-par…', 'indices': [55, 78]}, {'url': 'https://t.co/gWT0LQz6nx', 'expanded_url': 'https://twitter.com/i/web/status/1381917403148382211', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,100560178,100560178,Rene Robichaud,ReneRobichaud,Canada,#CyberSecurity #Security #Cyberdefense #InfoSec #CeptBiro #CisControl #Risk #VulnManagement Working @CeptBiro https://t.co/koAbDM42AL https://t.co/LBKOzjWcy4 - Tweets are my own.,https://t.co/ajI9xlWppS,"[{'url': 'https://t.co/koAbDM42AL', 'expanded_url': 'http://ow.ly/PkwFL', 'display_url': 'ow.ly/PkwFL', 'indices': [110, 133]}, {'url': 'https://t.co/LBKOzjWcy4', 'expanded_url': 'http://ht.ly/upc7307EQhA', 'display_url': 'ht.ly/upc7307EQhA', 'indices': [134, 157]}]",False,3739,2048,650,Wed Dec 30 18:12:20 +0000 2009,2150,,,False,False,57809,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/858762561004634112/QKrnif1X_normal.jpg,https://pbs.twimg.com/profile_images/858762561004634112/QKrnif1X_normal.jpg,FAB81E,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ajI9xlWppS', 'expanded_url': 'https://www.ceptbiro.com', 'display_url': 'ceptbiro.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/100560178/1585241828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +261,Tue Apr 13 10:03:00 +0000 2021,1381910784490541057,1381910784490541057,"🎼𝐒𝐚𝐧𝐭𝐞́ 𝐦𝐞𝐧𝐭𝐚𝐥𝐞 : 𝐮𝐧𝐞 𝐢𝐧𝐭𝐞𝐥𝐥𝐢𝐠𝐞𝐧𝐜𝐞 𝐚𝐫𝐭𝐢𝐟𝐢𝐜𝐢𝐞𝐥𝐥𝐞 𝐟𝐚𝐢𝐭 𝐫𝐞𝐯𝐢𝐯𝐫𝐞 𝐀𝐦𝐲 𝐖𝐢𝐧𝐞𝐡𝐨𝐮𝐬𝐞 𝐞𝐭 𝐊𝐮𝐫𝐭 𝐂𝐨𝐛𝐚𝐢𝐧 +🔗https://t.co/0bBSp2EZOX… https://t.co/GlUsHd5FSV",True,"TweetDeck",,,,,,,,,,False,0,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/0bBSp2EZOX', 'expanded_url': 'http://bit.ly/3mFndaO', 'display_url': 'bit.ly/3mFndaO', 'indices': [92, 115]}, {'url': 'https://t.co/GlUsHd5FSV', 'expanded_url': 'https://twitter.com/i/web/status/1381910784490541057', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1175649522,1175649522,Tawhid CHTIOUI,tawhidChtioui,France,"Président-fondateur @aivancityschool +#AI #ArtificialIntelligence #DataScience #ResponsibleAI +#Education #HigerEd #entrepreneurship #leadership",https://t.co/rRWdzt6NYM,[],False,3352,130,224,Wed Feb 13 15:32:32 +0000 2013,1605,,,True,False,5558,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,https://pbs.twimg.com/profile_images/1307672394857885696/vvqnMeqk_normal.jpg,DD2E44,A8C7F7,C0DFEC,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/rRWdzt6NYM', 'expanded_url': 'http://fr.linkedin.com/in/chtioui', 'display_url': 'fr.linkedin.com/in/chtioui', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1175649522/1608027770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +262,Tue Apr 13 09:50:20 +0000 2021,1381907599566761985,1381907599566761985,"RT @jeromeleleu: Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocale, pour…",False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'Esanté', 'indices': [24, 31]}, {'text': 'IntelligenceArtificielle', 'indices': [38, 63]}]",[],"[{'screen_name': 'jeromeleleu', 'name': 'Jerome Leleu', 'id': 53877352, 'id_str': '53877352', 'indices': [3, 15]}, {'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [66, 76]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [85, 95]}]",[],fr,recent,600180702,600180702,Xavier Quérat Hément,xavierquerat,A votre service !,"Transformons les organisations par le #Service ! #CX #UX #QS #Innovation #Management #ServantLeader @LaMut_Generale #ESS Administrateur, Senior Advisor, Auteur",https://t.co/lrweFHCTV9,[],False,8685,6734,951,Tue Jun 05 13:15:21 +0000 2012,166125,,,False,False,22026,,False,False,False,022330,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1261714732744159233/K8h0ZrNG_normal.jpg,https://pbs.twimg.com/profile_images/1261714732744159233/K8h0ZrNG_normal.jpg,0084B4,FFFFFF,C0DFEC,333333,True,False,False,False,False,False,False,none,Tue Apr 13 05:09:09 +0000 2021,1.381836833294844e+18,1381836833294843904,"Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocal… https://t.co/geiQT29PQd",True,"[{'text': 'Esanté', 'indices': [7, 14]}, {'text': 'IntelligenceArtificielle', 'indices': [21, 46]}]",[],"[{'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [49, 59]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [68, 78]}]","[{'url': 'https://t.co/geiQT29PQd', 'expanded_url': 'https://twitter.com/i/web/status/1381836833294843904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,"Twitter Web App",,,,,,53877352.0,53877352,Jerome Leleu,jeromeleleu,,"Président de Interaction Healthcare @digitalsante & CEO de @simforhealth / Lauréat "" Les #TalentsDeLaEsanté 2020 "" / Expert #Esanté / Communauté #hcsmeufr",https://t.co/VRjtE4DEuC,"[{'url': 'https://t.co/VRjtE4DEuC', 'expanded_url': 'http://fr.linkedin.com/in/jeromeleleu/', 'display_url': 'fr.linkedin.com/in/jeromeleleu/', 'indices': [0, 23]}]",[],False,9952.0,4710.0,801.0,Sun Jul 05 09:35:30 +0000 2009,11059.0,,,True,False,18780.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_banners/53877352/1483522713,009999,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,False,5.0,11.0,False,False,False,fr,,"[{'url': 'https://t.co/lrweFHCTV9', 'expanded_url': 'http://www.xavierquerathement.fr', 'display_url': 'xavierquerathement.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/600180702/1402913311,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +263,Tue Apr 13 09:05:59 +0000 2021,1381896435998789632,1381896435998789632,"Et si votre prochaine levée de fonds était validée... Par l'#IntelligenceArtificielle ? 💶 +#digital #ia #tech… https://t.co/MK08drONtf",True,"HubSpot",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [60, 85]}, {'text': 'digital', 'indices': [90, 98]}, {'text': 'ia', 'indices': [99, 102]}, {'text': 'tech', 'indices': [103, 108]}]",[],[],"[{'url': 'https://t.co/MK08drONtf', 'expanded_url': 'https://twitter.com/i/web/status/1381896435998789632', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [110, 133]}]",fr,recent,1008788711688097793,1008788711688097793,LYA PROTECT,LyaProtect,,"L'Insurtech qui simplifie le dialogue entre #courtiers et #entrepreneurs, en centralisant et décryptant les contrats d’#assurance. Une question? #dismoilya""",https://t.co/DhKs9bvCYw,[],False,441,906,5,Mon Jun 18 19:09:06 +0000 2018,701,,,False,False,609,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1008790881200214016/hC8Xz-GC_normal.jpg,https://pbs.twimg.com/profile_images/1008790881200214016/hC8Xz-GC_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/DhKs9bvCYw', 'expanded_url': 'http://www.lyaprotect.com', 'display_url': 'lyaprotect.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1008788711688097793/1569744240,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +264,Tue Apr 13 08:55:54 +0000 2021,1381893900873441281,1381893900873441281,"RT @ActuIAFr: Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI https://t.co/ozOnS…",False,"Twitter Web App",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'GirlsinAI', 'indices': [38, 48]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}, {'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [110, 120]}]",[],fr,recent,985918098921451521,985918098921451521,teensinai,TeensInAI,World,"Powered by @acornaspiration; founded by @elena_sinel and @peterthehe #TeensInAI doing #AIforGood #GirlsInAI2021 +https://t.co/npOVOyGJFW",https://t.co/a5xxIYO1Se,"[{'url': 'https://t.co/npOVOyGJFW', 'expanded_url': 'https://www.teensinai.com/accelerator-2021/', 'display_url': 'teensinai.com/accelerator-20…', 'indices': [112, 135]}]",False,2156,1060,59,Mon Apr 16 16:29:27 +0000 2018,3365,,,True,False,3376,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1069343241374523393/uLcct-OX_normal.jpg,https://pbs.twimg.com/profile_images/1069343241374523393/uLcct-OX_normal.jpg,E81C4F,000000,000000,000000,False,False,False,False,False,False,False,none,Sat Apr 10 12:35:18 +0000 2021,1.380861949907501e+18,1380861949907501064,"Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI… https://t.co/LDX7IK5l9f",True,"[{'text': 'GirlsinAI', 'indices': [24, 34]}]",[],"[{'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [96, 106]}]","[{'url': 'https://t.co/LDX7IK5l9f', 'expanded_url': 'https://twitter.com/i/web/status/1380861949907501064', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,,"[{'url': 'https://t.co/a5xxIYO1Se', 'expanded_url': 'https://www.teensinai.com/', 'display_url': 'teensinai.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/985918098921451521/1612959638,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +265,Tue Apr 13 08:43:13 +0000 2021,1381890705958780930,1381890705958780930,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,434856996,434856996,Lionel Rault,YonLRho,"Saint-Brieuc, France",IEN Morlaix - Veille pédago-numérique pour pratique de classe à jour des outils actuels - cpte perso - @YonLRho@mamot.fr. #Bretagne #Finistère #CôtesDArmor,,[],False,597,597,28,Mon Dec 12 11:53:37 +0000 2011,2790,,,True,False,4106,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/725690086407462912/SuCtrxaH_normal.jpg,https://pbs.twimg.com/profile_images/725690086407462912/SuCtrxaH_normal.jpg,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/434856996/1520272086,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +266,Tue Apr 13 08:40:25 +0000 2021,1381890004117504003,1381890004117504003,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1316407540192772096,1316407540192772096,Thazze77,thazze77,,"Enseignant mais pas que, scientifique et pragmatique, empêcheur de déconner en rond!",,[],False,12,70,1,Wed Oct 14 15:56:53 +0000 2020,136,,,False,False,296,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,True,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +267,Tue Apr 13 08:28:25 +0000 2021,1381886982230581248,1381886982230581248,"RT @OpexNews: 🇺🇸🇨🇳🇷🇺🇫🇷 L'#IA va refaçonner des attributs de la guerre traditionnelle [...]. Elle ""va compléter l'action humaine plutôt que…",False,"Twitter Web App",,,,,,,,,,False,6,0,False,False,fr,"[{'text': 'IA', 'indices': [25, 28]}]",[],"[{'screen_name': 'OpexNews', 'name': 'OpexNews', 'id': 53892169, 'id_str': '53892169', 'indices': [3, 12]}]",[],fr,recent,871704599887052800,871704599887052800,Benjamin Touranger,BTouranger,,,,[],False,4,50,0,Mon Jun 05 12:25:46 +0000 2017,209,,,False,False,1432,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,True,False,False,False,none,Fri Apr 09 08:05:46 +0000 2021,1.380431732432855e+18,1380431732432855041,"🇺🇸🇨🇳🇷🇺🇫🇷 L'#IA va refaçonner des attributs de la guerre traditionnelle [...]. Elle ""va compléter l'action humaine p… https://t.co/JlUqaY4oGG",True,"[{'text': 'IA', 'indices': [11, 14]}]",[],[],"[{'url': 'https://t.co/JlUqaY4oGG', 'expanded_url': 'https://twitter.com/i/web/status/1380431732432855041', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,53892169.0,53892169,OpexNews,OpexNews,,"🛰 Veilleur stratégique #défense, #OPEX et #renseignement. +Et aussi #Géopolitique #Cyber #Militaire #Terrorisme #Sahel #Barkhane 👁",https://t.co/BFjyMJVZoa,"[{'url': 'https://t.co/BFjyMJVZoa', 'expanded_url': 'https://www.linkedin.com/company/opex-news/', 'display_url': 'linkedin.com/company/opex-n…', 'indices': [0, 23]}]",[],False,12711.0,1101.0,409.0,Sun Jul 05 11:31:16 +0000 2009,389.0,,,False,False,57734.0,,False,False,False,5E4516,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1364686783632592896/ufJZW72n_normal.jpg,https://pbs.twimg.com/profile_images/1364686783632592896/ufJZW72n_normal.jpg,https://pbs.twimg.com/profile_banners/53892169/1608117398,0084B4,000000,DDFFCC,333333,True,False,False,False,False,False,False,regular,,,,,False,6.0,5.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +268,Tue Apr 13 08:26:16 +0000 2021,1381886442037731330,1381886442037731330,🇫🇷 #L' #IA va créer de nouveaux metiers : on peut se former rapidement sans être ingénieur. - Radio Monaco - Radio… https://t.co/jA9Lv0vVKE,True,"IFTTT",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'L', 'indices': [3, 5]}, {'text': 'IA', 'indices': [7, 10]}]",[],[],"[{'url': 'https://t.co/jA9Lv0vVKE', 'expanded_url': 'https://twitter.com/i/web/status/1381886442037731330', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,2855732137,2855732137,Artificial Intelligence,AIVids,,,,[],False,2542,62,23,Tue Oct 14 15:26:44 +0000 2014,2,,,False,False,35128,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1124815603749904384/X0Ehn1Tx_normal.png,https://pbs.twimg.com/profile_images/1124815603749904384/X0Ehn1Tx_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/2855732137/1413378973,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +269,Tue Apr 13 08:08:46 +0000 2021,1381882037787824130,1381882037787824130,RT @cathubaysi: Excellent article de ⁦@lemondefr⁩ ! Comment l’#IntelligenceArtificielle va bouleverser les professions de #santé : un #comp…,False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [62, 87]}, {'text': 'santé', 'indices': [122, 128]}]",[],"[{'screen_name': 'cathubaysi', 'name': 'Catherine Ubaysi', 'id': 278951445, 'id_str': '278951445', 'indices': [3, 14]}, {'screen_name': 'lemondefr', 'name': 'Le Monde', 'id': 24744541, 'id_str': '24744541', 'indices': [38, 48]}]",[],fr,recent,865023013,865023013,Jeff Hyndah,jeffhyndah,Libreville ,"Un regard sur la Société, ça peut pas faire de mal...! #ActionPourLaJeunesse ASSISTANT HSE/Co-Président de La CITIZEN MEET-UP",https://t.co/40pmTHDH7X,[],False,90,438,0,Sat Oct 06 17:24:34 +0000 2012,1208,,,False,False,477,,False,False,False,ACDED6,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,False,http://pbs.twimg.com/profile_images/1030851438090563584/wqoopm6Q_normal.jpg,https://pbs.twimg.com/profile_images/1030851438090563584/wqoopm6Q_normal.jpg,038543,EEEEEE,F6F6F6,333333,True,True,False,False,False,False,False,none,Wed May 29 17:52:29 +0000 2019,1.1337932455726039e+18,1133793245572603904,Excellent article de ⁦@lemondefr⁩ ! Comment l’#IntelligenceArtificielle va bouleverser les professions de #santé :… https://t.co/ZP2ZsVQTzV,True,"[{'text': 'IntelligenceArtificielle', 'indices': [46, 71]}, {'text': 'santé', 'indices': [106, 112]}]",[],"[{'screen_name': 'lemondefr', 'name': 'Le Monde', 'id': 24744541, 'id_str': '24744541', 'indices': [22, 32]}]","[{'url': 'https://t.co/ZP2ZsVQTzV', 'expanded_url': 'https://twitter.com/i/web/status/1133793245572603904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter for iPhone",,,,,,278951445.0,278951445,Catherine Ubaysi,cathubaysi,"Ile-de-France, France",#consultant #alumni #networking passionate about people #association de #patients #esante #réseau #cancerettravail #hcsmeufr #patientexpert #flawsome 🤗,,,[],False,467.0,498.0,4.0,Fri Apr 08 08:53:02 +0000 2011,1392.0,,,True,False,815.0,,False,False,False,EBEBEB,http://abs.twimg.com/images/themes/theme7/bg.gif,https://abs.twimg.com/images/themes/theme7/bg.gif,False,http://pbs.twimg.com/profile_images/1133426937404301312/m1rA88Mx_normal.jpg,https://pbs.twimg.com/profile_images/1133426937404301312/m1rA88Mx_normal.jpg,https://pbs.twimg.com/profile_banners/278951445/1392758739,990000,DFDFDF,F3F3F3,333333,True,True,False,False,False,False,False,none,,,,,False,5.0,10.0,False,False,False,fr,,"[{'url': 'https://t.co/40pmTHDH7X', 'expanded_url': 'http://www.investirgabon.com', 'display_url': 'investirgabon.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/865023013/1509098078,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +270,Tue Apr 13 07:48:22 +0000 2021,1381876904223981570,1381876904223981570,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter Web App",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,2171987968,2171987968,Chloé Polledri,chloepolledri,Saint Lô,"Professeur Technologie Informatique et Multimédia +Ingénieur pédagogique",,[],False,197,363,58,Thu Nov 07 10:56:28 +0000 2013,1869,,,False,False,2946,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1381875390231289856/5pARzwv7_normal.png,https://pbs.twimg.com/profile_images/1381875390231289856/5pARzwv7_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +271,Tue Apr 13 06:30:43 +0000 2021,1381857362915569664,1381857362915569664,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,803550051352137728,803550051352137728,Pôle Dane 04,Pole_DANE_04,Alpes-de-Haute-Provence,"Pôle DANE des #Alpes-de-Haute-Provence +#numeriqueeducatif #bnre #jeuxfabrique #escapegame #formation #IA +Impulser une dynamique autour du numérique.",,[],False,709,907,23,Tue Nov 29 10:43:56 +0000 2016,3149,,,False,False,4478,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/919536687503507456/-L-H_M5n_normal.jpg,https://pbs.twimg.com/profile_images/919536687503507456/-L-H_M5n_normal.jpg,7FDBB6,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/803550051352137728/1508240879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +272,Tue Apr 13 06:11:03 +0000 2021,1381852413896880129,1381852413896880129,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter Web App",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1260555459938975745,1260555459938975745,Nadia Djebbar,prof_nadj,Paris,Physique-chimie et SNT-Pédagogies actives pour impliquer mes élèves.,,[],False,161,504,4,Wed May 13 13:04:32 +0000 2020,906,,,False,False,422,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1264647726404337664/WCsz4M0Z_normal.jpg,https://pbs.twimg.com/profile_images/1264647726404337664/WCsz4M0Z_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1260555459938975745/1589620505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +273,Tue Apr 13 05:37:12 +0000 2021,1381843894044876802,1381843894044876802,"RT @jeromeleleu: Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocale, pour…",False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'Esanté', 'indices': [24, 31]}, {'text': 'IntelligenceArtificielle', 'indices': [38, 63]}]",[],"[{'screen_name': 'jeromeleleu', 'name': 'Jerome Leleu', 'id': 53877352, 'id_str': '53877352', 'indices': [3, 15]}, {'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [66, 76]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [85, 95]}]",[],fr,recent,78564079,78564079,Eric Salat,EricSALATprof,"Honfleur, Basse-Normandie",PatientEnseignant @Sorbonne @ESCPeurope https://t.co/TMX0MsuU4P Rep.Usagers @SpesW Consultant #EFFIVOX Affaires Publiques,https://t.co/qxDbdj94Sa,"[{'url': 'https://t.co/TMX0MsuU4P', 'expanded_url': 'http://democratiesanitaire.org', 'display_url': 'democratiesanitaire.org', 'indices': [40, 63]}]",False,2450,2747,236,Wed Sep 30 10:04:48 +0000 2009,16166,,,True,False,40885,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1218442031393071104/cLEKHzug_normal.jpg,https://pbs.twimg.com/profile_images/1218442031393071104/cLEKHzug_normal.jpg,0084B4,C0DEED,DDEEF6,333333,True,True,False,False,False,False,False,none,Tue Apr 13 05:09:09 +0000 2021,1.381836833294844e+18,1381836833294843904,"Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocal… https://t.co/geiQT29PQd",True,"[{'text': 'Esanté', 'indices': [7, 14]}, {'text': 'IntelligenceArtificielle', 'indices': [21, 46]}]",[],"[{'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [49, 59]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [68, 78]}]","[{'url': 'https://t.co/geiQT29PQd', 'expanded_url': 'https://twitter.com/i/web/status/1381836833294843904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,"Twitter Web App",,,,,,53877352.0,53877352,Jerome Leleu,jeromeleleu,,"Président de Interaction Healthcare @digitalsante & CEO de @simforhealth / Lauréat "" Les #TalentsDeLaEsanté 2020 "" / Expert #Esanté / Communauté #hcsmeufr",https://t.co/VRjtE4DEuC,"[{'url': 'https://t.co/VRjtE4DEuC', 'expanded_url': 'http://fr.linkedin.com/in/jeromeleleu/', 'display_url': 'fr.linkedin.com/in/jeromeleleu/', 'indices': [0, 23]}]",[],False,9952.0,4710.0,801.0,Sun Jul 05 09:35:30 +0000 2009,11059.0,,,True,False,18780.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_banners/53877352/1483522713,009999,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,False,5.0,11.0,False,False,False,fr,,"[{'url': 'https://t.co/qxDbdj94Sa', 'expanded_url': 'http://www.universitedespatients.org', 'display_url': 'universitedespatients.org', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/78564079/1587402393,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +274,Tue Apr 13 05:20:15 +0000 2021,1381839630551629826,1381839630551629826,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,104478793,104478793,Ch Micolet Lavaux,ChristeleLumen,France,,,[],False,32,151,0,Wed Jan 13 13:14:21 +0000 2010,395,,,False,False,483,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/686125491112292354/zLo0Q17A_normal.jpg,https://pbs.twimg.com/profile_images/686125491112292354/zLo0Q17A_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/104478793/1450280939,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +275,Tue Apr 13 05:09:09 +0000 2021,1381836833294843904,1381836833294843904,"Veille #Esanté & #IntelligenceArtificielle : @Microsoft rachète @NuanceInc , spécialiste de la reconnaissance vocal… https://t.co/geiQT29PQd",True,"Twitter Web App",,,,,,,,,,False,5,11,False,False,fr,"[{'text': 'Esanté', 'indices': [7, 14]}, {'text': 'IntelligenceArtificielle', 'indices': [21, 46]}]",[],"[{'screen_name': 'Microsoft', 'name': 'Microsoft', 'id': 74286565, 'id_str': '74286565', 'indices': [49, 59]}, {'screen_name': 'NuanceInc', 'name': 'Nuance Communications', 'id': 376823011, 'id_str': '376823011', 'indices': [68, 78]}]","[{'url': 'https://t.co/geiQT29PQd', 'expanded_url': 'https://twitter.com/i/web/status/1381836833294843904', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,53877352,53877352,Jerome Leleu,jeromeleleu,,"Président de Interaction Healthcare @digitalsante & CEO de @simforhealth / Lauréat "" Les #TalentsDeLaEsanté 2020 "" / Expert #Esanté / Communauté #hcsmeufr",https://t.co/VRjtE4DEuC,[],False,9952,4710,801,Sun Jul 05 09:35:30 +0000 2009,11059,,,True,False,18780,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,https://pbs.twimg.com/profile_images/786284943915773952/Q1RcV08e_normal.jpg,009999,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/VRjtE4DEuC', 'expanded_url': 'http://fr.linkedin.com/in/jeromeleleu/', 'display_url': 'fr.linkedin.com/in/jeromeleleu/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/53877352/1483522713,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +276,Mon Apr 12 22:09:51 +0000 2021,1381731313422589957,1381731313422589957,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1076703912,1076703912,DANE de l'académie de Toulouse,DaneTlse,Rectorat de Toulouse,"Délégation Académique du Numérique pour l'Éducation de l’@actoulouse : formation, usages, accompagnement, conseils. @Edu_Num #EduNum",https://t.co/WYApfpF3WZ,[],False,1680,434,68,Thu Jan 10 14:14:20 +0000 2013,840,,,False,False,1609,,False,False,False,000000,http://abs.twimg.com/images/themes/theme3/bg.gif,https://abs.twimg.com/images/themes/theme3/bg.gif,False,http://pbs.twimg.com/profile_images/1337484594757636102/sHPoIcHR_normal.jpg,https://pbs.twimg.com/profile_images/1337484594757636102/sHPoIcHR_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,"[{'url': 'https://t.co/WYApfpF3WZ', 'expanded_url': 'https://disciplines.ac-toulouse.fr/dane/', 'display_url': 'disciplines.ac-toulouse.fr/dane/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1076703912/1601213134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +277,Mon Apr 12 22:03:20 +0000 2021,1381729675463045120,1381729675463045120,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1214574337170300929,1214574337170300929,Nathalie Dufau,EbleNathalie,"Toulouse, France","Chargée de mission @DaneTlse #IA #ludification +Prof PLP économie gestion #Production +Fan de @canva @genially_fr",,[],False,145,310,1,Tue Jan 07 15:47:56 +0000 2020,589,,,False,False,1304,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1378096549637554182/O6O98ttD_normal.png,https://pbs.twimg.com/profile_images/1378096549637554182/O6O98ttD_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1214574337170300929/1579735111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +278,Mon Apr 12 21:11:15 +0000 2021,1381716568695046145,1381716568695046145,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,4921029377,4921029377,Milène Rioux,MileneRioux,"Aquitaine, France","Responsable #Communication +@reseau_canope #NouvelleAquitaine +Touche à tout : #Education #Culture #Formation #Digital #codesign #EducMediasInfo...",,[],False,663,487,131,Tue Feb 16 21:14:17 +0000 2016,9199,,,True,False,9102,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1302223852785799171/az7KIDCL_normal.jpg,https://pbs.twimg.com/profile_images/1302223852785799171/az7KIDCL_normal.jpg,558877,000000,000000,000000,True,False,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/4921029377/1615110176,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +279,Mon Apr 12 21:02:47 +0000 2021,1381714437279772674,1381714437279772674,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1348808556569636866,1348808556569636866,Prof Documentalistes Martinique,ProfDocMartinik,,"Fil des professeurs documentalistes de la Martinique, informations et curiosités, veille dynamique",,[],False,67,76,0,Tue Jan 12 01:48:39 +0000 2021,671,,,False,False,517,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1348824991563968514/Rir_Q5F0_normal.jpg,https://pbs.twimg.com/profile_images/1348824991563968514/Rir_Q5F0_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +280,Mon Apr 12 20:04:04 +0000 2021,1381699662365736962,1381699662365736962,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,186513288,186513288,Emmanuel Lafont,elafont76,Académie d'Amiens.,"Professeur Agrégé d'Economie et de Management en classe prépa DCG. +Interlocuteur Académique au Numérique/Webmaster. +Formateur. +Académie d'Amiens. +#Ecogestion",https://t.co/X6U1Dw7OO2,[],False,394,504,49,Fri Sep 03 17:23:07 +0000 2010,925,,,True,False,10029,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/661619643556171776/jQnsJ0mV_normal.jpg,https://pbs.twimg.com/profile_images/661619643556171776/jQnsJ0mV_normal.jpg,1B95E0,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/X6U1Dw7OO2', 'expanded_url': 'http://eco-gestion.ac-amiens.fr/', 'display_url': 'eco-gestion.ac-amiens.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/186513288/1593603164,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +281,Mon Apr 12 19:08:56 +0000 2021,1381685784206577681,1381685784206577681,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,910548929753870336,910548929753870336,Cécile Le Chevalier,PetitPixel29,,#Prof – #IANLettres @AcVersailles – #Différenciation – #RelationTexteImage – #HumanitésNumériques – #Graphes – #Cartographie – #SNT – #CAFFA2020 – Compte perso,,[],False,339,736,6,Wed Sep 20 16:59:16 +0000 2017,5824,,,False,False,10693,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/989966974250815490/mxZpvkc6_normal.jpg,https://pbs.twimg.com/profile_images/989966974250815490/mxZpvkc6_normal.jpg,6666FF,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/910548929753870336/1535578055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +282,Mon Apr 12 19:05:00 +0000 2021,1381684796812886019,1381684796812886019,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,2555491495,2555491495,m.bouza,bouzamass,Royaume du Maroc,professeur de technologie,http://t.co/JO4RyayWAf,[],False,434,1682,303,Sun Jun 08 20:47:25 +0000 2014,3706,,,False,False,16645,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/602446571540623360/nrkkkTQB_normal.jpg,https://pbs.twimg.com/profile_images/602446571540623360/nrkkkTQB_normal.jpg,89C9FA,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'http://t.co/JO4RyayWAf', 'expanded_url': 'http://bouzarouata.com', 'display_url': 'bouzarouata.com', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/2555491495/1431642845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +283,Mon Apr 12 18:48:14 +0000 2021,1381680578370617356,1381680578370617356,"RT @mdrechsler: Cognimates propose un ensemble d’extensions Scratch qui donnent accès à des API de génération de la parole, de reconnaissan…",False,"Twitter for iPhone",,,,,,,,,,False,6,0,False,False,fr,[],[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,1359579709554778113,1359579709554778113,Axel Thauvin,axthauvin,France,⌨️ Programmeur à mes heures perdues,https://t.co/ogJynbX5BX,[],False,3,21,0,Wed Feb 10 19:07:32 +0000 2021,31,,,True,False,12,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1359588254853521419/SIKwF7wW_normal.jpg,https://pbs.twimg.com/profile_images/1359588254853521419/SIKwF7wW_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Wed Jan 06 13:22:34 +0000 2021,1.3468093868036137e+18,1346809386803613698,"Cognimates propose un ensemble d’extensions Scratch qui donnent accès à des API de génération de la parole, de reco… https://t.co/guoKsLd2iy",True,[],[],[],"[{'url': 'https://t.co/guoKsLd2iy', 'expanded_url': 'https://twitter.com/i/web/status/1346809386803613698', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,6.0,7.0,False,False,False,fr,,"[{'url': 'https://t.co/ogJynbX5BX', 'expanded_url': 'http://globateur.github.io', 'display_url': 'globateur.github.io', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1359579709554778113/1617569105,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +284,Mon Apr 12 18:39:54 +0000 2021,1381678478047731714,1381678478047731714,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,361876069,361876069,Alain Thillay,athillay,,"direction du numérique pour l'éducation, @Edu_Num, histoire-géo, passionné de Japon et histoire de Paris. Mes tweets n'engagent que moi",,[],False,2358,341,91,Thu Aug 25 13:46:06 +0000 2011,7466,,,True,False,8914,,False,False,False,ACDED6,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,False,http://pbs.twimg.com/profile_images/538624383791546368/pNH6cBV3_normal.jpeg,https://pbs.twimg.com/profile_images/538624383791546368/pNH6cBV3_normal.jpeg,038543,EEEEEE,F6F6F6,333333,True,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/361876069/1417253282,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +285,Mon Apr 12 18:08:43 +0000 2021,1381670633449402368,1381670633449402368,"RT @FlashTweet: 8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'objectif…",False,"Twitter Web App",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Futur', 'indices': [21, 27]}, {'text': 'IA', 'indices': [29, 32]}, {'text': 'data', 'indices': [62, 67]}]",[],"[{'screen_name': 'FlashTweet', 'name': 'FlashTweet,LA Matinale sur la #TransfoNum', 'id': 115065053, 'id_str': '115065053', 'indices': [3, 14]}, {'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [110, 124]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [83, 106]}]",fr,recent,628613285,628613285,Etienne Dumontel,EtienneDumontel,Paris-Bordeaux,"Journaliste / Manager Magazine, La Tribune, @valeurs",,[],False,1057,347,0,Fri Jul 06 18:28:16 +0000 2012,73,,,False,False,249,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1334478973984772097/Lsk6H54h_normal.jpg,https://pbs.twimg.com/profile_images/1334478973984772097/Lsk6H54h_normal.jpg,009999,EEEEEE,EFEFEF,333333,True,False,False,False,False,False,False,none,Mon Apr 12 17:36:02 +0000 2021,1.3816624053364285e+18,1381662405336428550,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/z71nKIhp4V",True,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/z71nKIhp4V', 'expanded_url': 'https://twitter.com/i/web/status/1381662405336428550', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,115065053.0,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",[],False,57144.0,4488.0,4726.0,Wed Feb 17 14:09:44 +0000 2010,90929.0,,,True,False,105283.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_banners/115065053/1609517974,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/628613285/1607001137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +286,Mon Apr 12 18:02:06 +0000 2021,1381668967828369412,1381668967828369412,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for iPhone",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,39239510,39239510,Pascal Nogaro 👨‍💻,PascalNogaro,#Paris,Prof. EPS (Paris XIe) - Webmestre site EPS |Paris| - CPN |DANE| - Assistance ENT |DSI| - Expert EPS |DNE-TN3| #trail #yoga #nature 😍 👉🏻 compte personnel,,[],False,750,866,58,Mon May 11 12:17:27 +0000 2009,3266,,,True,False,4730,,False,False,False,010101,http://abs.twimg.com/images/themes/theme7/bg.gif,https://abs.twimg.com/images/themes/theme7/bg.gif,True,http://pbs.twimg.com/profile_images/1320105331515600898/Df1eFICZ_normal.jpg,https://pbs.twimg.com/profile_images/1320105331515600898/Df1eFICZ_normal.jpg,262524,E5E2E0,ABA7A4,686462,True,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/39239510/1595691096,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +287,Mon Apr 12 17:57:34 +0000 2021,1381667827774525440,1381667827774525440,"Microsoft acquiert un spécialiste de l'intelligence artificielle +https://t.co/QbMyIu2WER + +#Infosec #Security… https://t.co/oGNqs1zfFN",True,"Postfity.com",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Infosec', 'indices': [90, 98]}, {'text': 'Security', 'indices': [99, 108]}]",[],[],"[{'url': 'https://t.co/QbMyIu2WER', 'expanded_url': 'https://www.rfi.fr/fr/%C3%A9conomie/20210412-microsoft-acquiert-un-sp%C3%A9cialiste-de-l-intelligence-artificielle', 'display_url': 'rfi.fr/fr/%C3%A9conom…', 'indices': [65, 88]}, {'url': 'https://t.co/oGNqs1zfFN', 'expanded_url': 'https://twitter.com/i/web/status/1381667827774525440', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [110, 133]}]",fr,recent,100560178,100560178,Rene Robichaud,ReneRobichaud,Canada,#CyberSecurity #Security #Cyberdefense #InfoSec #CeptBiro #CisControl #Risk #VulnManagement Working @CeptBiro https://t.co/koAbDM42AL https://t.co/LBKOzjWcy4 - Tweets are my own.,https://t.co/ajI9xlWppS,"[{'url': 'https://t.co/koAbDM42AL', 'expanded_url': 'http://ow.ly/PkwFL', 'display_url': 'ow.ly/PkwFL', 'indices': [110, 133]}, {'url': 'https://t.co/LBKOzjWcy4', 'expanded_url': 'http://ht.ly/upc7307EQhA', 'display_url': 'ht.ly/upc7307EQhA', 'indices': [134, 157]}]",False,3739,2048,650,Wed Dec 30 18:12:20 +0000 2009,2150,,,False,False,57809,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/858762561004634112/QKrnif1X_normal.jpg,https://pbs.twimg.com/profile_images/858762561004634112/QKrnif1X_normal.jpg,FAB81E,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ajI9xlWppS', 'expanded_url': 'https://www.ceptbiro.com', 'display_url': 'ceptbiro.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/100560178/1585241828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +288,Mon Apr 12 17:57:27 +0000 2021,1381667796430491657,1381667796430491657,"Microsoft acquiert un spécialiste de l'intelligence artificielle +https://t.co/DNSOxCfpf8 + +#Infosec #Security… https://t.co/dxZRKx8XVc",True,"Postfity.com",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'Infosec', 'indices': [90, 98]}, {'text': 'Security', 'indices': [99, 108]}]",[],[],"[{'url': 'https://t.co/DNSOxCfpf8', 'expanded_url': 'https://www.rfi.fr/fr/%C3%A9conomie/20210412-microsoft-acquiert-un-sp%C3%A9cialiste-de-l-intelligence-artificielle', 'display_url': 'rfi.fr/fr/%C3%A9conom…', 'indices': [65, 88]}, {'url': 'https://t.co/dxZRKx8XVc', 'expanded_url': 'https://twitter.com/i/web/status/1381667796430491657', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [110, 133]}]",fr,recent,1884513522,1884513522,CeptBiro,CeptBiro,Canada,#CeptBiro #Securite #Cybersecurite #Infosec #Security #Cybersecurity #CyberSec #Siem #Architect https://t.co/MnrcP9LSfz,https://t.co/ajI9xlWppS,"[{'url': 'https://t.co/MnrcP9LSfz', 'expanded_url': 'http://ht.ly/8rHq30iS5G1', 'display_url': 'ht.ly/8rHq30iS5G1', 'indices': [96, 119]}]",False,283,0,581,Thu Sep 19 22:12:14 +0000 2013,70,,,False,False,50965,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/378800000480784583/735927632e46db966519d6342e6d0f04_normal.png,https://pbs.twimg.com/profile_images/378800000480784583/735927632e46db966519d6342e6d0f04_normal.png,FF691F,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ajI9xlWppS', 'expanded_url': 'https://www.ceptbiro.com', 'display_url': 'ceptbiro.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1884513522/1585241774,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +289,Mon Apr 12 17:36:58 +0000 2021,1381662643333820422,1381662643333820422,"RT @FlashTweet: 8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'objectif…",False,"Netvibes Widget",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'Futur', 'indices': [21, 27]}, {'text': 'IA', 'indices': [29, 32]}, {'text': 'data', 'indices': [62, 67]}]",[],"[{'screen_name': 'FlashTweet', 'name': 'FlashTweet,LA Matinale sur la #TransfoNum', 'id': 115065053, 'id_str': '115065053', 'indices': [3, 14]}, {'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [110, 124]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [83, 106]}]",fr,recent,1257247681916870656,1257247681916870656,Bibou,MrKemiP,,Only me,,[],False,1,24,0,Mon May 04 09:56:36 +0000 2020,3,,,False,False,251,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,True,False,False,False,none,Mon Apr 12 17:36:02 +0000 2021,1.3816624053364285e+18,1381662405336428550,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/z71nKIhp4V",True,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/z71nKIhp4V', 'expanded_url': 'https://twitter.com/i/web/status/1381662405336428550', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,115065053.0,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",[],False,57144.0,4488.0,4726.0,Wed Feb 17 14:09:44 +0000 2010,90929.0,,,True,False,105283.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_banners/115065053/1609517974,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,1.0,False,False,False,fr,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +290,Mon Apr 12 17:36:02 +0000 2021,1381662405336428550,1381662405336428550,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/z71nKIhp4V",True,"Buffer",,,,,,,,,,False,2,1,False,False,fr,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/z71nKIhp4V', 'expanded_url': 'https://twitter.com/i/web/status/1381662405336428550', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,115065053,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,[],False,57144,4488,4726,Wed Feb 17 14:09:44 +0000 2010,90929,,,True,False,105283,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/115065053/1609517974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +291,Mon Apr 12 17:32:02 +0000 2021,1381661402084048896,1381661402084048896,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for iPhone",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,71222436,71222436,Brigitte Pierrat,BrigittePierrat,,Veille sur l'éducation numérique. Compte personnel,,[],False,4175,528,528,Thu Sep 03 10:31:14 +0000 2009,1107,,,False,False,8839,,False,False,False,1E4387,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1380097425759690752/AgYmTLRn_normal.jpg,https://pbs.twimg.com/profile_images/1380097425759690752/AgYmTLRn_normal.jpg,1E4387,FFFFFF,C0DFEC,FFFFFF,False,True,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/71222436/1617875843,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +292,Mon Apr 12 17:31:07 +0000 2021,1381661169329430531,1381661169329430531,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for iPhone",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,4835378159,4835378159,Pierre NOBIS,PierreNobis,,Compte personnel,,[],False,424,510,48,Fri Jan 22 15:04:32 +0000 2016,2483,,,False,False,913,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/984552467986829318/2ukrLXuM_normal.jpg,https://pbs.twimg.com/profile_images/984552467986829318/2ukrLXuM_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/4835378159/1523570267,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +293,Mon Apr 12 17:24:43 +0000 2021,1381659560029609984,1381659560029609984,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"hubofml",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,3040871649,3040871649,HubOfML,hubofml,Germany ,"You'll receive a newsletter once a month with exciting content on ML, Data Science, Software Engineering, and Tech Leadership. Subscribe here 👉 https://t.co/X0opwdlleW",https://t.co/VRnN9grEfw,"[{'url': 'https://t.co/X0opwdlleW', 'expanded_url': 'http://bit.ly/hubofml1', 'display_url': 'bit.ly/hubofml1', 'indices': [144, 167]}]",False,8365,15,182,Mon Feb 16 15:33:55 +0000 2015,47200,,,False,False,459105,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1254334743333818373/F3xeh1db_normal.jpg,https://pbs.twimg.com/profile_images/1254334743333818373/F3xeh1db_normal.jpg,4A913C,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,"[{'url': 'https://t.co/VRnN9grEfw', 'expanded_url': 'http://bit.ly/hubofml1', 'display_url': 'bit.ly/hubofml1', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3040871649/1587892795,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +294,Mon Apr 12 17:24:37 +0000 2021,1381659534456987660,1381659534456987660,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"SociabbleApp",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,2331496824,2331496824,Pierre-Eric Guyot,Peg21240,Bourgogne,"Lean Manager +#Onsite #zcx #zcq #adecco #dijon #bourgogne #economie #hightech #vins #fintech #lean #ameliorationcontinue +#greenbelt",,[],False,649,898,133,Fri Feb 07 07:59:23 +0000 2014,10049,,,True,False,15546,,False,False,False,B2DFDA,http://abs.twimg.com/images/themes/theme13/bg.gif,https://abs.twimg.com/images/themes/theme13/bg.gif,False,http://pbs.twimg.com/profile_images/431834002186440705/GCKlMSTl_normal.jpeg,https://pbs.twimg.com/profile_images/431834002186440705/GCKlMSTl_normal.jpeg,3B94D9,FFFFFF,FFFFFF,333333,True,False,False,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/2331496824/1402253432,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +295,Mon Apr 12 17:15:56 +0000 2021,1381657347647492096,1381657347647492096,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for iPhone",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,573908570,573908570,Valérie Marcon,marcon_valerie,Paris,MENJS-DNE #HG #égalité #EcoleNumerique #pédagogie #Ress_Num #partage #collaboratif @edu_num - Compte perso,https://t.co/StjCtXd04F,[],False,2208,1283,98,Mon May 07 19:39:00 +0000 2012,4296,,,True,False,6497,,False,False,False,FFF04D,http://abs.twimg.com/images/themes/theme19/bg.gif,https://abs.twimg.com/images/themes/theme19/bg.gif,False,http://pbs.twimg.com/profile_images/1198540536757575680/UXaJgOc__normal.jpg,https://pbs.twimg.com/profile_images/1198540536757575680/UXaJgOc__normal.jpg,1B95E0,FFF8AD,F6FFD1,333333,True,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/StjCtXd04F', 'expanded_url': 'http://eduscol.education.fr/cid119187/presentation-fiches-reperes-sur-les-ressources-numeriques.html', 'display_url': 'eduscol.education.fr/cid119187/pres…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/573908570/1589140714,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +296,Mon Apr 12 17:00:42 +0000 2021,1381653516360503303,1381653516360503303,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1026645416,1026645416,Alexis Hajdukiewicz,flux_docs,"Bourges, France","Professeur-documentaliste, académie d'Orléans-Tours, Bourges #web #pratiquesnumjuvéniles #EMI #TraAMdoc +@DocsduBerry",,[],False,610,971,161,Fri Dec 21 15:52:28 +0000 2012,1503,,,False,False,5629,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/874334174823555073/3hWkErCA_normal.jpg,https://pbs.twimg.com/profile_images/874334174823555073/3hWkErCA_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1026645416/1433940418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +297,Mon Apr 12 16:34:03 +0000 2021,1381646808414351364,1381646808414351364,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter Web App",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1065585322736660480,1065585322736660480,DSDEN12,dsden12,Rodez,,,[],False,355,112,4,Thu Nov 22 12:38:33 +0000 2018,1262,,,False,False,5353,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1065586212759642112/NU89LAmn_normal.jpg,https://pbs.twimg.com/profile_images/1065586212759642112/NU89LAmn_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1065585322736660480/1546519597,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +298,Mon Apr 12 16:24:33 +0000 2021,1381644415450632198,1381644415450632198,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,960550851260698626,960550851260698626,Mission Numérique 37,Numerique37,Indre-et-Loire,#ERUN #CPDnumérique #RefNum,,[],False,172,165,1,Mon Feb 05 16:29:03 +0000 2018,729,,,False,False,1164,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1260475983049736193/Dsv-8iAA_normal.jpg,https://pbs.twimg.com/profile_images/1260475983049736193/Dsv-8iAA_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/960550851260698626/1589355942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +299,Mon Apr 12 16:05:11 +0000 2021,1381639545310097420,1381639545310097420,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for iPad",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,840583432417751041,840583432417751041,Anne Chiardola,nneChiardola,Paris/Mandelieu 🎷🇪🇺⛷,Inspectrice MENJS DocteureMCF #SciencesEducation #PhD #Numérique #Innovation #musicienne #PsyEN #EcoleRurale Viceprésidente #ObservatoireÉducationTerritoires,https://t.co/VvPviIo66E,[],False,4239,4574,43,Sat Mar 11 15:21:22 +0000 2017,58491,,,False,False,18528,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1346211232450293760/MDqU63oo_normal.jpg,https://pbs.twimg.com/profile_images/1346211232450293760/MDqU63oo_normal.jpg,981CEB,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,"[{'url': 'https://t.co/VvPviIo66E', 'expanded_url': 'https://www.linkedin.com/in/anne-chiardola-384640135/', 'display_url': 'linkedin.com/in/anne-chiard…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/840583432417751041/1611420361,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +300,Mon Apr 12 15:36:28 +0000 2021,1381632316011917315,1381632316011917315,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for iPhone",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,973888744314097664,973888744314097664,Documentation académie de Paris,DocsParis,"Paris, Île-de-France",Compte officiel du site académique de la Documentation à Paris #profsdocs | @Academie_Paris | @education_gouv | @gouvernementFR | https://t.co/2fL3KxFk3k,https://t.co/SQlDnA8rYh,"[{'url': 'https://t.co/2fL3KxFk3k', 'expanded_url': 'http://urlz.fr/duxo', 'display_url': 'urlz.fr/duxo', 'indices': [130, 153]}]",False,506,264,29,Wed Mar 14 11:49:05 +0000 2018,570,,,True,False,5636,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1379724934373576705/dORFspdN_normal.jpg,https://pbs.twimg.com/profile_images/1379724934373576705/dORFspdN_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,"[{'url': 'https://t.co/SQlDnA8rYh', 'expanded_url': 'https://www.ac-paris.fr/portail/jcms/piapp1_58805/accueil', 'display_url': 'ac-paris.fr/portail/jcms/p…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/973888744314097664/1595069646,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +301,Mon Apr 12 15:26:17 +0000 2021,1381629755414437892,1381629755414437892,RT @PressReviewNews: #parution #publication : L' #Intelligence #Artificielle #IntelligenceArtificielle #IA des #textes. Des #algorithmes à…,False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'parution', 'indices': [21, 30]}, {'text': 'publication', 'indices': [31, 43]}, {'text': 'Intelligence', 'indices': [49, 62]}, {'text': 'Artificielle', 'indices': [63, 76]}, {'text': 'IntelligenceArtificielle', 'indices': [77, 102]}, {'text': 'IA', 'indices': [103, 106]}, {'text': 'textes', 'indices': [111, 118]}, {'text': 'algorithmes', 'indices': [124, 136]}]",[],"[{'screen_name': 'PressReviewNews', 'name': 'PressReviewCotedAzur', 'id': 1265934723894915079, 'id_str': '1265934723894915079', 'indices': [3, 19]}]",[],fr,recent,1062385614308474880,1062385614308474880,Éditions Honoré Champion,HonoreChampion,3 rue corneille 75006 paris,Éditeur et libraire d’ouvrages d’érudition depuis 1874,https://t.co/5LsqJMTAwr,[],False,561,534,8,Tue Nov 13 16:44:03 +0000 2018,1182,,,True,False,475,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1149230786941526016/9RETcklO_normal.jpg,https://pbs.twimg.com/profile_images/1149230786941526016/9RETcklO_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:13:54 +0000 2021,1.3816115367797842e+18,1381611536779784195,#parution #publication : L' #Intelligence #Artificielle #IntelligenceArtificielle #IA des #textes. Des #algorithmes… https://t.co/QtrHTRHFLh,True,"[{'text': 'parution', 'indices': [0, 9]}, {'text': 'publication', 'indices': [10, 22]}, {'text': 'Intelligence', 'indices': [28, 41]}, {'text': 'Artificielle', 'indices': [42, 55]}, {'text': 'IntelligenceArtificielle', 'indices': [56, 81]}, {'text': 'IA', 'indices': [82, 85]}, {'text': 'textes', 'indices': [90, 97]}, {'text': 'algorithmes', 'indices': [103, 115]}]",[],[],"[{'url': 'https://t.co/QtrHTRHFLh', 'expanded_url': 'https://twitter.com/i/web/status/1381611536779784195', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,1.265934723894915e+18,1265934723894915079,PressReviewCotedAzur,PressReviewNews,,#nice #cotedazur #alpesmaritimes #universite #university #universitecotedazur #veille #médias,,,[],False,91.0,204.0,1.0,Thu May 28 09:15:56 +0000 2020,264.0,,,False,False,1192.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1265937756011802624/5B1Jk5CT_normal.jpg,https://pbs.twimg.com/profile_images/1265937756011802624/5B1Jk5CT_normal.jpg,https://pbs.twimg.com/profile_banners/1265934723894915079/1590658093,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,2.0,False,False,False,fr,,"[{'url': 'https://t.co/5LsqJMTAwr', 'expanded_url': 'http://www.honorechampion.com', 'display_url': 'honorechampion.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1062385614308474880/1582893383,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +302,Mon Apr 12 15:04:16 +0000 2021,1381624212855590912,1381624212855590912,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twidere for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,515262738,515262738,Vincent Meunier,EducMeunier,Normandie,Professeur en STS Comptabilité et gestion & #SNT dans #acnormandie - Expert à la Direction du numérique pour l'éducation @Eduscol_EG,,[],False,402,190,24,Mon Mar 05 08:58:31 +0000 2012,431,,,False,False,1048,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1366090887487488009/bTtS52BH_normal.jpg,https://pbs.twimg.com/profile_images/1366090887487488009/bTtS52BH_normal.jpg,000000,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/515262738/1611443436,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +303,Mon Apr 12 14:41:34 +0000 2021,1381618501480280065,1381618501480280065,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,12073732,12073732,François BOCQUET,fbocquet,"Lans-en-Vercors, France",Passionné de veille et de prospective sur les usages numérique dans l'éducation en France et dans le monde mais aussi supporter de France-Floorball @floorballfr,,[],False,7871,6178,645,Thu Jan 10 15:37:48 +0000 2008,7875,,,True,False,42042,,False,False,False,B2DFDA,http://abs.twimg.com/images/themes/theme13/bg.gif,https://abs.twimg.com/images/themes/theme13/bg.gif,False,http://pbs.twimg.com/profile_images/1056621064493633537/9vnlGcuj_normal.jpg,https://pbs.twimg.com/profile_images/1056621064493633537/9vnlGcuj_normal.jpg,93A644,EEEEEE,FFFFFF,333333,True,True,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/12073732/1534617364,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +304,Mon Apr 12 14:13:54 +0000 2021,1381611536779784195,1381611536779784195,#parution #publication : L' #Intelligence #Artificielle #IntelligenceArtificielle #IA des #textes. Des #algorithmes… https://t.co/QtrHTRHFLh,True,"Twitter Web App",,,,,,,,,,False,1,2,False,False,fr,"[{'text': 'parution', 'indices': [0, 9]}, {'text': 'publication', 'indices': [10, 22]}, {'text': 'Intelligence', 'indices': [28, 41]}, {'text': 'Artificielle', 'indices': [42, 55]}, {'text': 'IntelligenceArtificielle', 'indices': [56, 81]}, {'text': 'IA', 'indices': [82, 85]}, {'text': 'textes', 'indices': [90, 97]}, {'text': 'algorithmes', 'indices': [103, 115]}]",[],[],"[{'url': 'https://t.co/QtrHTRHFLh', 'expanded_url': 'https://twitter.com/i/web/status/1381611536779784195', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,1265934723894915079,1265934723894915079,PressReviewCotedAzur,PressReviewNews,,#nice #cotedazur #alpesmaritimes #universite #university #universitecotedazur #veille #médias,,[],False,91,204,1,Thu May 28 09:15:56 +0000 2020,264,,,False,False,1192,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1265937756011802624/5B1Jk5CT_normal.jpg,https://pbs.twimg.com/profile_images/1265937756011802624/5B1Jk5CT_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/1265934723894915079/1590658093,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +305,Mon Apr 12 14:12:37 +0000 2021,1381611213898010634,1381611213898010634,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter Web App",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1937519064,1937519064,Emmanuel Bethoux,EmmanuelBethoux,Cahors,"#CUEJ #ProfDoc certifié - Master Ingénierie Médiation e-Éducation (Univ. Poitiers) #SIC #Mediation #CSTI #écrituressonores #emi +/RT ne vaut pas approbation/",https://t.co/SSImAqbJNv,[],False,2124,1198,770,Sat Oct 05 12:49:36 +0000 2013,41756,,,True,False,114405,,False,False,False,ADC4D2,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/863337278890008576/93gG_Cp6_normal.jpg,https://pbs.twimg.com/profile_images/863337278890008576/93gG_Cp6_normal.jpg,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,"[{'url': 'https://t.co/SSImAqbJNv', 'expanded_url': 'http://www.pearltrees.com/ebethoux', 'display_url': 'pearltrees.com/ebethoux', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1937519064/1494670826,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +306,Mon Apr 12 14:10:55 +0000 2021,1381610786355810304,1381610786355810304,"RT @eduscol_EMI: [Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la #lecture, outi…",False,"Twitter for Android",,,,,,,,,,False,26,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'éducation', 'indices': [50, 60]}, {'text': 'robots', 'indices': [63, 70]}, {'text': 'lecture', 'indices': [125, 133]}]",[],"[{'screen_name': 'eduscol_EMI', 'name': 'éduscol EMI', 'id': 785822992563445761, 'id_str': '785822992563445761', 'indices': [3, 15]}]",[],fr,recent,1058347225116499973,1058347225116499973,Dane Orléans-Tours,Dane_ot,"Orléans, France",Compte officiel de la Délégation académique au numérique pour l’éducation (Dane) de l’@ac_orleanstours,https://t.co/HoRD4yr4th,[],False,1422,402,33,Fri Nov 02 13:16:56 +0000 2018,3047,,,True,False,3143,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1323882627468824576/BPNJ-CSs_normal.jpg,https://pbs.twimg.com/profile_images/1323882627468824576/BPNJ-CSs_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 14:07:55 +0000 2021,1.3816100332686008e+18,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,7.858229925634458e+17,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",[],False,9163.0,347.0,265.0,Tue Oct 11 12:42:56 +0000 2016,2428.0,,,False,False,2980.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,26.0,31.0,False,False,False,fr,,"[{'url': 'https://t.co/HoRD4yr4th', 'expanded_url': 'https://www.ac-orleans-tours.fr/pedagogie/le_numerique_a_lecole/', 'display_url': 'ac-orleans-tours.fr/pedagogie/le_n…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1058347225116499973/1547115087,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +307,Mon Apr 12 14:07:55 +0000 2021,1381610033268600844,1381610033268600844,"[Veille éducation numérique] #IA #éducation : #robots, notation automatique des élèves, apprentissage de la… https://t.co/sGnYR8paIV",True,"Twitter Web App",,,,,,,,,,False,26,31,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}, {'text': 'éducation', 'indices': [33, 43]}, {'text': 'robots', 'indices': [46, 53]}]",[],[],"[{'url': 'https://t.co/sGnYR8paIV', 'expanded_url': 'https://twitter.com/i/web/status/1381610033268600844', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,785822992563445761,785822992563445761,éduscol EMI,eduscol_EMI,,Compte #EMI de @eduscol. Tenu par les experts @Edu_Num de l'enseignement. DGESCO/DNE,https://t.co/6JurLwY9mr,[],False,9163,347,265,Tue Oct 11 12:42:56 +0000 2016,2428,,,False,False,2980,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,https://pbs.twimg.com/profile_images/1382011314399236098/Jut6F6C3_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/6JurLwY9mr', 'expanded_url': 'https://eduscol.education.fr/1531/education-aux-medias-et-l-information', 'display_url': 'eduscol.education.fr/1531/education…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/785822992563445761/1487692285,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +308,Mon Apr 12 13:54:06 +0000 2021,1381606555360100355,1381606555360100355,"Dé-surveiller : peut-on contrer l’accélération technologique ? +via @Digitaltrans4mF +#éthique #ia… https://t.co/GG2sgaNzgH",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'éthique', 'indices': [85, 93]}, {'text': 'ia', 'indices': [94, 97]}]",[],"[{'screen_name': 'Digitaltrans4mF', 'name': 'DigitalTrans4m_FR', 'id': 1091350270209073154, 'id_str': '1091350270209073154', 'indices': [67, 83]}]","[{'url': 'https://t.co/GG2sgaNzgH', 'expanded_url': 'https://twitter.com/i/web/status/1381606555360100355', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [99, 122]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +309,Mon Apr 12 13:42:44 +0000 2021,1381603694509228037,1381603694509228037,Cartographie des outils et des projets portant à la fois sur l’éducation et intelligence artificielle. #IA #AI… https://t.co/mxS0R5jiZI,True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [103, 106]}, {'text': 'AI', 'indices': [107, 110]}]",[],[],"[{'url': 'https://t.co/mxS0R5jiZI', 'expanded_url': 'https://twitter.com/i/web/status/1381603694509228037', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,92063336,92063336,HLC Education,HLC_education,"ÜT: 45.4283231,-75.6486608",Canada-Europe-Afrique : Développement des affaires en éducation-formation et développement de ressources novatrices.,https://t.co/6lHmJh1JPa,[],False,9610,801,988,Mon Nov 23 17:04:10 +0000 2009,481,,,True,False,110179,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1312900831457488897/yEgMvZph_normal.jpg,https://pbs.twimg.com/profile_images/1312900831457488897/yEgMvZph_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/6lHmJh1JPa', 'expanded_url': 'http://www.linkedin.com/in/hubertlalande', 'display_url': 'linkedin.com/in/hubertlalan…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/92063336/1430243138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +310,Mon Apr 12 13:42:19 +0000 2021,1381603590318526465,1381603590318526465,Feuille de route pour des projets autour de l’#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu… https://t.co/iqHet0hP4Q,True,"Hootsuite Inc.",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'AI', 'indices': [50, 53]}, {'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IAEduc', 'indices': [80, 87]}, {'text': 'IAEdu', 'indices': [88, 94]}]",[],[],"[{'url': 'https://t.co/iqHet0hP4Q', 'expanded_url': 'https://twitter.com/i/web/status/1381603590318526465', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [96, 119]}]",fr,recent,92063336,92063336,HLC Education,HLC_education,"ÜT: 45.4283231,-75.6486608",Canada-Europe-Afrique : Développement des affaires en éducation-formation et développement de ressources novatrices.,https://t.co/6lHmJh1JPa,[],False,9610,801,988,Mon Nov 23 17:04:10 +0000 2009,481,,,True,False,110179,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1312900831457488897/yEgMvZph_normal.jpg,https://pbs.twimg.com/profile_images/1312900831457488897/yEgMvZph_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/6lHmJh1JPa', 'expanded_url': 'http://www.linkedin.com/in/hubertlalande', 'display_url': 'linkedin.com/in/hubertlalan…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/92063336/1430243138,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +311,Mon Apr 12 13:41:27 +0000 2021,1381603371992416257,1381603371992416257,"RT @mdrechsler: Feuille de route pour des projets autour de l’#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu +https://t.co/KTnb97uFUO htt…",False,"Twitter Web App",,,,,,,,,,False,25,0,False,False,fr,"[{'text': 'IA', 'indices': [62, 65]}, {'text': 'AI', 'indices': [66, 69]}, {'text': 'IntelligenceArtificielle', 'indices': [70, 95]}, {'text': 'IAEduc', 'indices': [96, 103]}, {'text': 'IAEdu', 'indices': [104, 110]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/KTnb97uFUO', 'expanded_url': 'https://www.unicef.org/globalinsight/media/1171/file/UNICEF-Global-Insight-policy-guidance-AI-children-draft-1.0-2020.pdf', 'display_url': 'unicef.org/globalinsight/…', 'indices': [112, 135]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Sun Sep 20 19:35:38 +0000 2020,1.307765380610437e+18,1307765380610437124,Feuille de route pour des projets autour de l’#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu… https://t.co/sZjeqhuGJI,True,"[{'text': 'IA', 'indices': [46, 49]}, {'text': 'AI', 'indices': [50, 53]}, {'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IAEduc', 'indices': [80, 87]}, {'text': 'IAEdu', 'indices': [88, 94]}]",[],[],"[{'url': 'https://t.co/sZjeqhuGJI', 'expanded_url': 'https://twitter.com/i/web/status/1307765380610437124', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [96, 119]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,25.0,14.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +312,Mon Apr 12 13:41:13 +0000 2021,1381603314538852354,1381603314538852354,RT @mdrechsler: Cartographie des outils et des projets portant à la fois sur l’éducation et intelligence artificielle. #IA #AI #IAEduc #IAE…,False,"Twitter Web App",,,,,,,,,,False,8,0,False,False,fr,"[{'text': 'IA', 'indices': [119, 122]}, {'text': 'AI', 'indices': [123, 126]}, {'text': 'IAEduc', 'indices': [127, 134]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Fri Jan 15 11:07:18 +0000 2021,1.3500368351631032e+18,1350036835163103234,Cartographie des outils et des projets portant à la fois sur l’éducation et intelligence artificielle. #IA #AI… https://t.co/pJzg1oBEqw,True,"[{'text': 'IA', 'indices': [103, 106]}, {'text': 'AI', 'indices': [107, 110]}]",[],[],"[{'url': 'https://t.co/pJzg1oBEqw', 'expanded_url': 'https://twitter.com/i/web/status/1350036835163103234', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,8.0,15.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +313,Mon Apr 12 13:02:52 +0000 2021,1381593663868899329,1381593663868899329,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,517410796,517410796,DANE Montpellier @acmontpellier,DANEMontpellier,"Montpellier, France",Délégation Académique au Numérique Educatif,https://t.co/JB05usQYo1,[],False,4344,4023,118,Wed Mar 07 09:31:27 +0000 2012,3324,,,True,False,9439,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/644782723329060864/iHcjnETJ_normal.jpg,https://pbs.twimg.com/profile_images/644782723329060864/iHcjnETJ_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/JB05usQYo1', 'expanded_url': 'https://www.ac-montpellier.fr/sections/numerique-ent', 'display_url': 'ac-montpellier.fr/sections/numer…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/517410796/1538511290,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +314,Mon Apr 12 11:53:55 +0000 2021,1381576311274098688,1381576311274098688,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,741303044336451584,741303044336451584,Delphine Séchet,DelphineSechet,"Lycée de l'Essouriau, Les Ulis","Professeure de SVT lycée, Formatrice académique formation initiale site Orsay, chargée de mission d'inspection, Gep SVT, e-formation, e-éducation Ac.Versailles",,[],False,398,327,7,Fri Jun 10 16:16:33 +0000 2016,2101,,,True,False,2428,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/744206871700058112/1pP5LFCV_normal.jpg,https://pbs.twimg.com/profile_images/744206871700058112/1pP5LFCV_normal.jpg,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +315,Mon Apr 12 11:42:17 +0000 2021,1381573383037534211,1381573383037534211,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for iPhone",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,3957671775,3957671775,Delphine SEMAIL,SemailDelphine,France,Inspectrice de l'Education Nationale numérique éducatif formation hybride AI conduite de projet,,[],False,421,417,3,Wed Oct 14 17:25:44 +0000 2015,1545,,,False,False,3522,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/656380995147575297/NX8AetE9_normal.jpg,https://pbs.twimg.com/profile_images/656380995147575297/NX8AetE9_normal.jpg,E81C4F,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/3957671775/1596892082,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +316,Mon Apr 12 10:25:27 +0000 2021,1381554047786827781,1381554047786827781,Les différentes étapes de la #supplychain peuvent être complexes à gérer. Des technologies basées sur l'… https://t.co/gGcT8IAHMa,True,"Twitter Web App",,,,,,,,,,False,0,2,False,False,fr,"[{'text': 'supplychain', 'indices': [29, 41]}]",[],[],"[{'url': 'https://t.co/gGcT8IAHMa', 'expanded_url': 'https://twitter.com/i/web/status/1381554047786827781', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [106, 129]}]",fr,recent,2166392671,2166392671,Kardinal,KardinalAI,France,"Saas Solution for Real-Time Tour Optimization, based on cutting-edge algorithms #Delivery #Logistic #Algorithm #TourOptimization",https://t.co/5i9oBcheYN,[],False,206,67,14,Thu Oct 31 10:13:54 +0000 2013,74,,,False,False,122,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1191631517996466176/jGF3f4Db_normal.jpg,https://pbs.twimg.com/profile_images/1191631517996466176/jGF3f4Db_normal.jpg,1B95E0,C0DEED,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/5i9oBcheYN', 'expanded_url': 'https://www.kardinal.ai', 'display_url': 'kardinal.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2166392671/1617281062,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +317,Mon Apr 12 10:07:45 +0000 2021,1381549593373126664,1381549593373126664,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,4871394137,4871394137,Nathalie Rolle-B,Pas914,"Essonne, Ile-de-France",Proviseur-adjoint Lycée Tesla à Dourdan/ Ex-professeur lettres classiques #cadreEdu2016 #perdir,,[],False,231,113,3,Tue Feb 02 09:27:02 +0000 2016,407,,,True,False,582,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/880118047947841537/jbfv0_2c_normal.jpg,https://pbs.twimg.com/profile_images/880118047947841537/jbfv0_2c_normal.jpg,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/4871394137/1498673397,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +318,Mon Apr 12 10:01:49 +0000 2021,1381548098128855040,1381548098128855040,[#Analyse] - 🤔 Comment 🤖 l'#IntelligenceArtificielle impacte-t-elle l'univers de la 🪙 finance ? 📃 Analyse disponibl… https://t.co/uBaqdxDIjE,True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'Analyse', 'indices': [1, 9]}, {'text': 'IntelligenceArtificielle', 'indices': [27, 52]}]",[],[],"[{'url': 'https://t.co/uBaqdxDIjE', 'expanded_url': 'https://twitter.com/i/web/status/1381548098128855040', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,895545996,895545996,Particeep,Particeep,Paris,"🚀 #Fintech editing turnkey #financialservices distribution solutions for #banks, #insurers, #assetmanagers and #brokers. #api #openbanking #openinsurance",https://t.co/l4LKGQAk77,[],False,2112,988,733,Sun Oct 21 15:16:09 +0000 2012,2262,,,True,False,16028,,False,False,False,FFFFFF,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1280474917289558016/7hxvEOcn_normal.jpg,https://pbs.twimg.com/profile_images/1280474917289558016/7hxvEOcn_normal.jpg,EF5447,FFFFFF,DDEEF6,333333,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/l4LKGQAk77', 'expanded_url': 'https://www.particeep.com/?utm_source=twitter', 'display_url': 'particeep.com/?utm_source=tw…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/895545996/1594198028,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +319,Mon Apr 12 09:54:40 +0000 2021,1381546301574287364,1381546301574287364,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,960550851260698626,960550851260698626,Mission Numérique 37,Numerique37,Indre-et-Loire,#ERUN #CPDnumérique #RefNum,,[],False,172,165,1,Mon Feb 05 16:29:03 +0000 2018,729,,,False,False,1164,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1260475983049736193/Dsv-8iAA_normal.jpg,https://pbs.twimg.com/profile_images/1260475983049736193/Dsv-8iAA_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/960550851260698626/1589355942,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +320,Mon Apr 12 09:44:06 +0000 2021,1381543640284160000,1381543640284160000,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,2417892774,2417892774,isabelle marcangeli,imarcangeli,Académie de Corse,Chargée de mission à la Délégation Académique du Numérique Educatif Interlocuteur Académique pour le Numérique en Histoire Géographie,,[],False,354,440,60,Sat Mar 29 19:37:46 +0000 2014,978,,,True,False,4082,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/511483237580156928/jBrTfONP_normal.jpeg,https://pbs.twimg.com/profile_images/511483237580156928/jBrTfONP_normal.jpeg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/2417892774/1410816803,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +321,Mon Apr 12 09:42:57 +0000 2021,1381543350290026497,1381543350290026497,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"Twitter for Android",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,910548929753870336,910548929753870336,Cécile Le Chevalier,PetitPixel29,,#Prof – #IANLettres @AcVersailles – #Différenciation – #RelationTexteImage – #HumanitésNumériques – #Graphes – #Cartographie – #SNT – #CAFFA2020 – Compte perso,,[],False,339,736,6,Wed Sep 20 16:59:16 +0000 2017,5824,,,False,False,10693,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/989966974250815490/mxZpvkc6_normal.jpg,https://pbs.twimg.com/profile_images/989966974250815490/mxZpvkc6_normal.jpg,6666FF,000000,000000,000000,False,True,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/910548929753870336/1535578055,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +322,Mon Apr 12 09:39:06 +0000 2021,1381542384639619074,1381542384639619074,"Il HACK une intelligence artificielle avec un masque ?! + +https://t.co/95Qset0JNw + +#IA #IntelligenceArtificielle… https://t.co/coA8ouysZ7",True,"Twidere for Android",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [82, 85]}, {'text': 'IntelligenceArtificielle', 'indices': [86, 111]}]",[],[],"[{'url': 'https://t.co/95Qset0JNw', 'expanded_url': 'https://www.youtube.com/watch?v=jvudfH02Z0g', 'display_url': 'youtube.com/watch?v=jvudfH…', 'indices': [57, 80]}, {'url': 'https://t.co/coA8ouysZ7', 'expanded_url': 'https://twitter.com/i/web/status/1381542384639619074', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [113, 136]}]",fr,recent,123691672,123691672,Se7h [Mastodon 🐘💨],Se7h_Bzh,.bzh,Webmestre de @NintendoLeSite - Développeur Web indépendant - ID SMM2 : 4JH-M2G-SFF - #Libriste #Joueur #SuperMarioMaker2 - https://t.co/LYVrdy9s5m,https://t.co/akqLW4NYs7,"[{'url': 'https://t.co/LYVrdy9s5m', 'expanded_url': 'http://mastodon.xyz/@se7h', 'display_url': 'mastodon.xyz/@se7h', 'indices': [123, 146]}]",False,191,646,82,Tue Mar 16 23:06:52 +0000 2010,1092,,,False,False,18735,,False,False,True,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/458999893462233088/8iBryJvK_normal.png,https://pbs.twimg.com/profile_images/458999893462233088/8iBryJvK_normal.png,3A8BC4,FFFFFF,EFEFEF,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/akqLW4NYs7', 'expanded_url': 'https://NintendoLeSite.com', 'display_url': 'NintendoLeSite.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/123691672/1594913680,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +323,Mon Apr 12 09:31:50 +0000 2021,1381540554790600706,1381540554790600706,"RT @Edu_Num: [Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et organisation…",False,"TweetDeck",,,,,,,,,,False,21,0,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [54, 79]}, {'text': 'IA', 'indices': [99, 102]}]",[],"[{'screen_name': 'Edu_Num', 'name': 'Éducation Numérique', 'id': 2693338249, 'id_str': '2693338249', 'indices': [3, 11]}]",[],fr,recent,2229540944,2229540944,Atelier Canopé 21,Canope_21,"3, Avenue Alain Savary, Dijon","Atelier Canopé 21 – Dijon. Création et accompagnement pédagogiques. Actualités de l'Atelier, #veille, #pédagogie, #numérique, #éducation, #Dijon, #Cotedor",https://t.co/KUcZyA9G1l,[],False,2735,212,197,Wed Dec 04 08:35:17 +0000 2013,216,,,True,False,12525,,False,False,False,AFC1C3,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1336960108102868992/rJhOA2-0_normal.png,https://pbs.twimg.com/profile_images/1336960108102868992/rJhOA2-0_normal.png,ABB8C2,FFFFFF,DDEEF6,333333,False,False,False,False,False,False,False,none,Mon Apr 12 09:30:02 +0000 2021,1.3815400990668472e+18,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Swello",,,,,,2693338249.0,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",[],False,58050.0,1667.0,1155.0,Wed Jul 30 16:10:18 +0000 2014,6805.0,,,True,True,8112.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_banners/2693338249/1610122478,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,21.0,26.0,False,False,False,fr,,"[{'url': 'https://t.co/KUcZyA9G1l', 'expanded_url': 'https://www.reseau-canope.fr/academie-de-dijon/atelier-canope-21-dijon', 'display_url': 'reseau-canope.fr/academie-de-di…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2229540944/1473149137,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +324,Mon Apr 12 09:30:02 +0000 2021,1381540099066847232,1381540099066847232,"[Veille éducation numérique] Usages de l'#IntelligenceArtificielle : + +🔎Panorama de l’#IA pour les entreprises et o… https://t.co/Q2qJEMLUlb",True,"Swello",,,,,,,,,,False,21,26,False,False,fr,"[{'text': 'IntelligenceArtificielle', 'indices': [41, 66]}, {'text': 'IA', 'indices': [86, 89]}]",[],[],"[{'url': 'https://t.co/Q2qJEMLUlb', 'expanded_url': 'https://twitter.com/i/web/status/1381540099066847232', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,2693338249,2693338249,Éducation Numérique,Edu_Num,Paris,Le compte officiel de la Direction du Numérique pour l'Éducation @EducationFrance et @sup_recherche #ÉcoleNumérique,https://t.co/lpl1z5sRSr,[],False,58050,1667,1155,Wed Jul 30 16:10:18 +0000 2014,6805,,,True,True,8112,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,https://pbs.twimg.com/profile_images/1341767674481786882/91S0Cl2t_normal.jpg,0084B4,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/lpl1z5sRSr', 'expanded_url': 'http://ecolenumerique.education.gouv.fr', 'display_url': 'ecolenumerique.education.gouv.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/2693338249/1610122478,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +325,Mon Apr 12 08:25:40 +0000 2021,1381523904150310912,1381523904150310912,✅ Kaisens data est votre partenaire qui vous accompagne pour l'intégration de nouvelles solutions technologiques à… https://t.co/9aVdxkUa5P,True,"Crowdfire App",,,,,,,,,,False,0,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/9aVdxkUa5P', 'expanded_url': 'https://twitter.com/i/web/status/1381523904150310912', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,1069983065236234241,1069983065236234241,Kaisens Data,KaisensData,"Paris, France","#KaisensRadar #KaisensGen #KaisensEnrich #KaisensCbots #Conseil #BI #BigData +Suivez-nous sur Facebook: +https://t.co/M7UKnbCbWu…",https://t.co/ZPG0TE9Zhz,"[{'url': 'https://t.co/M7UKnbCbWu', 'expanded_url': 'http://fb.com/KaisensDataOff', 'display_url': 'fb.com/KaisensDataOff', 'indices': [103, 126]}]",False,84,109,4,Tue Dec 04 15:53:36 +0000 2018,293,,,False,False,1786,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1338766014482411520/wZ0OimeT_normal.jpg,https://pbs.twimg.com/profile_images/1338766014482411520/wZ0OimeT_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/ZPG0TE9Zhz', 'expanded_url': 'http://kaisensdata.fr', 'display_url': 'kaisensdata.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1069983065236234241/1606733511,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +326,Mon Apr 12 07:30:01 +0000 2021,1381509897595060224,1381509897595060224,"Intelligence artificielle : Microsoft prêt à racheter Nuance pour 16 milliards de dollars + +#IA #NLP… https://t.co/5f8TEuyYFp",True,"Rss2Twitter for La Forge",,,,,,,,,,False,0,3,False,False,fr,"[{'text': 'IA', 'indices': [91, 94]}, {'text': 'NLP', 'indices': [95, 99]}]",[],[],"[{'url': 'https://t.co/5f8TEuyYFp', 'expanded_url': 'https://twitter.com/i/web/status/1381509897595060224', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [101, 124]}]",fr,recent,1150436914471866368,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,[],False,9932,491,127,Sun Jul 14 16:08:29 +0000 2019,22145,,,False,False,10500,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +327,Mon Apr 12 07:06:26 +0000 2021,1381503964399734784,1381503964399734784,Le projet européen MAESTRIA utilisera l’IA afin de prévenir les risques d’AVC et d’affections du rythme cardiaque… https://t.co/YggZCGFV1N,True,"Twitter Web App",,,,,,,,,,False,0,1,False,False,fr,[],[],[],"[{'url': 'https://t.co/YggZCGFV1N', 'expanded_url': 'https://twitter.com/i/web/status/1381503964399734784', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [115, 138]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +328,Mon Apr 12 06:48:11 +0000 2021,1381499372043698180,1381499372043698180,"RT @Orange_Future: [#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa chaîne…",False,"Twitter for iPhone",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'IA', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [88, 113]}]",[],"[{'screen_name': 'Orange_Future', 'name': 'Hello Future', 'id': 864130877906989059, 'id_str': '864130877906989059', 'indices': [3, 17]}]",[],fr,recent,461126808,461126808,Noemie_Gllmt,NoemieGllmt,"Paris, France",👩🏻‍💻Social Media Manager @orange_future @orange // 🏅Master II UX/UI Designer // 📸 Insta : noemie_gllmt,https://t.co/tJuqxQ8OfO,[],False,78,79,5,Wed Jan 11 13:42:02 +0000 2012,3075,,,True,False,1085,,False,False,False,ACDED6,http://abs.twimg.com/images/themes/theme18/bg.gif,https://abs.twimg.com/images/themes/theme18/bg.gif,False,http://pbs.twimg.com/profile_images/1186659864820490240/AkcKtk98_normal.jpg,https://pbs.twimg.com/profile_images/1186659864820490240/AkcKtk98_normal.jpg,038543,EEEEEE,F6F6F6,333333,True,True,False,False,False,False,False,none,Sun Apr 11 08:00:01 +0000 2021,1.3811550603573412e+18,1381155060357341185,"[#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa ch… https://t.co/UXjgk4rhog",True,"[{'text': 'IA', 'indices': [1, 4]}, {'text': 'IntelligenceArtificielle', 'indices': [69, 94]}]",[],[],"[{'url': 'https://t.co/UXjgk4rhog', 'expanded_url': 'https://twitter.com/i/web/status/1381155060357341185', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Media Studio",,,,,,8.64130877906989e+17,864130877906989059,Hello Future,Orange_Future,,Partageons ensemble nos sujets d'#innovation et de #recherche dans les domaines du #digital et des nouvelles #technologies. #Networks #IT #IoT #Data #AI @Orange,https://t.co/K0Au0hZOvs,"[{'url': 'https://t.co/K0Au0hZOvs', 'expanded_url': 'http://hellofuture.orange.com', 'display_url': 'hellofuture.orange.com', 'indices': [0, 23]}]",[],False,5397.0,219.0,72.0,Mon May 15 14:50:30 +0000 2017,425.0,,,False,True,3393.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_banners/864130877906989059/1594213141,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/tJuqxQ8OfO', 'expanded_url': 'http://adbeona.com', 'display_url': 'adbeona.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/461126808/1506453673,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +329,Mon Apr 12 06:35:37 +0000 2021,1381496207185477635,1381496207185477635,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter for Android",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,967796267127656448,967796267127656448,Isa M,IsabelleMalher4,"Lyon, France",#DevOps,,[],False,136,23,8,Sun Feb 25 16:19:45 +0000 2018,4398,,,False,False,5755,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/974298269617737735/PIE1lM6v_normal.jpg,https://pbs.twimg.com/profile_images/974298269617737735/PIE1lM6v_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/967796267127656448/1519577339,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +330,Mon Apr 12 06:35:04 +0000 2021,1381496070652493824,1381496070652493824,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter for Android",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,964912158906732544,964912158906732544,Audrey_cyber,AudreyLEROY19,"Ile-de-France, France",🇫🇷 Passionnée par la #Blockchain #Cybersecurity #IoT #AI #ArtificialIntelligence #MachineLearning #Tech #ITSecurity,,[],False,155,15,10,Sat Feb 17 17:19:20 +0000 2018,4599,,,False,False,5923,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1204516318726242304/Rwu-z5Fa_normal.jpg,https://pbs.twimg.com/profile_images/1204516318726242304/Rwu-z5Fa_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/964912158906732544/1518891513,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +331,Mon Apr 12 06:34:38 +0000 2021,1381495959276953602,1381495959276953602,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter for Android",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,820642045316448257,820642045316448257,Ronand_B,RonandBernard,"Aquitaine, France",Passionné par : #industry40 #innovation #tech #robotics #IIoT #aerospace #AvGeek #aviation. #SIAE2019 #ParisAirShow,,[],False,657,756,186,Sun Jan 15 14:41:25 +0000 2017,6566,,,False,False,9105,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1204514561065402368/T4zTJxqZ_normal.jpg,https://pbs.twimg.com/profile_images/1204514561065402368/T4zTJxqZ_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/820642045316448257/1486928207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +332,Mon Apr 12 06:04:46 +0000 2021,1381488444828966913,1381488444828966913,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Autism_twitter",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,2358562603,2358562603,Andrew Morris,andrewmorrisuk,Bedford,Passionate about how IT solutions can bring positive value to our business and personal lives. Proud #autisticparent,,[],False,12965,971,320,Sun Feb 23 21:58:16 +0000 2014,3159,,,True,False,526318,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1138114915619749888/1e0u-1mE_normal.png,https://pbs.twimg.com/profile_images/1138114915619749888/1e0u-1mE_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +333,Mon Apr 12 06:04:38 +0000 2021,1381488409928171522,1381488409928171522,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter for iPhone",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,871624223395020800,871624223395020800,simon_th,thomassimon471,,#transformationdigitale #LegalTech #TransfoNum #Marketing #MarTech,,[],False,361,388,17,Mon Jun 05 07:06:23 +0000 2017,5747,,,False,False,7970,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/965925144727379968/L77Pww5n_normal.jpg,https://pbs.twimg.com/profile_images/965925144727379968/L77Pww5n_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/871624223395020800/1497555699,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +334,Mon Apr 12 06:04:17 +0000 2021,1381488321239658497,1381488321239658497,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter for iPhone",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,820650170773868544,820650170773868544,Tech3873,tech38731,France,"#AI #VR #AR #blockchain #tech #chabots #wearables #Robotics #BigData #IoT #Industry40 #cybersecurity #infosec +#iotsecurity",,[],False,1277,1438,245,Sun Jan 15 15:13:42 +0000 2017,6582,,,False,False,10181,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/964581180963254272/rPlxdt8M_normal.jpg,https://pbs.twimg.com/profile_images/964581180963254272/rPlxdt8M_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/820650170773868544/1511388188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +335,Mon Apr 12 06:02:59 +0000 2021,1381487997112176645,1381487997112176645,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Twitter Web App",,,,,,,,,,False,12,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,817131260,817131260,Modis Recrute 🇫🇷,ModisRecruteFR,France,"L'actu #carrière, #emploi et #formation dans les métiers de l'#ingénierie & du #numérique de @ModisFrance",https://t.co/jaWwTG4Jx2,[],False,2352,952,293,Tue Sep 11 10:19:43 +0000 2012,6589,,,False,False,7181,,False,False,False,005084,http://abs.twimg.com/images/themes/theme7/bg.gif,https://abs.twimg.com/images/themes/theme7/bg.gif,False,http://pbs.twimg.com/profile_images/1260093629370073089/Wmb884ZW_normal.jpg,https://pbs.twimg.com/profile_images/1260093629370073089/Wmb884ZW_normal.jpg,1B95E0,FFFFFF,F3F3F3,333333,False,True,False,False,False,False,False,none,Mon Apr 12 06:02:44 +0000 2021,1.3814879319704412e+18,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,12.0,17.0,False,False,False,fr,,"[{'url': 'https://t.co/jaWwTG4Jx2', 'expanded_url': 'https://www.modisfrance.fr/', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/817131260/1603117366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +336,Mon Apr 12 06:02:44 +0000 2021,1381487931970441216,1381487931970441216,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/a8xkweVNtp,True,"Twitter Web App",,,,,,,,,,False,12,17,False,False,fr,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/a8xkweVNtp', 'expanded_url': 'https://twitter.com/i/web/status/1381487931970441216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,387867632,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,[],False,5129,3606,286,Sun Oct 09 20:13:41 +0000 2011,6473,,,False,False,5532,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/387867632/1603117329,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +337,Mon Apr 12 05:59:53 +0000 2021,1381487215843377152,1381487215843377152,"RT @FlashTweet: 8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'objectif…",False,"Twitter for Android",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'Futur', 'indices': [21, 27]}, {'text': 'IA', 'indices': [29, 32]}, {'text': 'data', 'indices': [62, 67]}]",[],"[{'screen_name': 'FlashTweet', 'name': 'FlashTweet,LA Matinale sur la #TransfoNum', 'id': 115065053, 'id_str': '115065053', 'indices': [3, 14]}, {'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [110, 124]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [83, 106]}]",fr,recent,1389342378,1389342378,Franck.R,FranckyPedia,France,"Passionné d'#informatique, #technologie, #Veille-#stratégique, #News, #SocialMedias, #design, #data, #Informations, #audiophile, #IT",https://t.co/RoiFY6YJ4i,[],False,8362,7898,1981,Mon Apr 29 12:10:43 +0000 2013,16088,,,False,False,73071,,False,False,False,0085C3,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/923181193557921792/0gFuFh0V_normal.jpg,https://pbs.twimg.com/profile_images/923181193557921792/0gFuFh0V_normal.jpg,1B95E0,FFFFFF,DDEEF6,333333,True,True,False,False,False,False,False,none,Mon Apr 12 05:51:03 +0000 2021,1.381484990651859e+18,1381484990651858947,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/NHrSyMJdtD",True,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/NHrSyMJdtD', 'expanded_url': 'https://twitter.com/i/web/status/1381484990651858947', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,115065053.0,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",[],False,57144.0,4488.0,4726.0,Wed Feb 17 14:09:44 +0000 2010,90929.0,,,True,False,105283.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_banners/115065053/1609517974,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,False,"[{'url': 'https://t.co/RoiFY6YJ4i', 'expanded_url': 'https://www.franckypedia.com/', 'display_url': 'franckypedia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1389342378/1508936341,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +338,Mon Apr 12 05:58:07 +0000 2021,1381486772031520769,1381486772031520769,"RT @FlashTweet: 8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'objectif…",False,"Twitter for Android",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'Futur', 'indices': [21, 27]}, {'text': 'IA', 'indices': [29, 32]}, {'text': 'data', 'indices': [62, 67]}]",[],"[{'screen_name': 'FlashTweet', 'name': 'FlashTweet,LA Matinale sur la #TransfoNum', 'id': 115065053, 'id_str': '115065053', 'indices': [3, 14]}, {'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [110, 124]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [83, 106]}]",fr,recent,88284033,88284033,Christian Belala,BelalaC,"France, Paris, Nice","#privacy #CyberSecurite #SecuriyByDesign #socialmedia @Orange_France #TransfoNum #IA #mixité | +#VR #AR #innovation #makers | +#BonjourPPC team #LeDigitalPourTous",https://t.co/zJbEbSZ4CQ,[],False,1650,1472,692,Sat Nov 07 22:11:55 +0000 2009,24667,,,True,False,24162,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/1198023118205403139/-PHpOO3i_normal.jpg,https://pbs.twimg.com/profile_images/1198023118205403139/-PHpOO3i_normal.jpg,FF691F,FFFFFF,DDEEF6,333333,True,True,False,False,False,False,False,none,Mon Apr 12 05:51:03 +0000 2021,1.381484990651859e+18,1381484990651858947,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/NHrSyMJdtD",True,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/NHrSyMJdtD', 'expanded_url': 'https://twitter.com/i/web/status/1381484990651858947', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,115065053.0,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",[],False,57144.0,4488.0,4726.0,Wed Feb 17 14:09:44 +0000 2010,90929.0,,,True,False,105283.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_banners/115065053/1609517974,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,False,"[{'url': 'https://t.co/zJbEbSZ4CQ', 'expanded_url': 'https://christian.belala.fr', 'display_url': 'christian.belala.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/88284033/1424870730,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +339,Mon Apr 12 05:57:01 +0000 2021,1381486493982674947,1381486493982674947,"RT @FlashTweet: 8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'objectif…",False,"Netvibes Widget",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'Futur', 'indices': [21, 27]}, {'text': 'IA', 'indices': [29, 32]}, {'text': 'data', 'indices': [62, 67]}]",[],"[{'screen_name': 'FlashTweet', 'name': 'FlashTweet,LA Matinale sur la #TransfoNum', 'id': 115065053, 'id_str': '115065053', 'indices': [3, 14]}, {'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [110, 124]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [83, 106]}]",fr,recent,1257247681916870656,1257247681916870656,Bibou,MrKemiP,,Only me,,[],False,1,24,0,Mon May 04 09:56:36 +0000 2020,3,,,False,False,251,,False,False,False,F5F8FA,,,False,http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,True,False,False,False,none,Mon Apr 12 05:51:03 +0000 2021,1.381484990651859e+18,1381484990651858947,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/NHrSyMJdtD",True,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/NHrSyMJdtD', 'expanded_url': 'https://twitter.com/i/web/status/1381484990651858947', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Buffer",,,,,,115065053.0,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",[],False,57144.0,4488.0,4726.0,Wed Feb 17 14:09:44 +0000 2010,90929.0,,,True,False,105283.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_banners/115065053/1609517974,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,False,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +340,Mon Apr 12 05:51:03 +0000 2021,1381484990651858947,1381484990651858947,"8️⃣🚀[#Futur] #IA : Facebook va payer pour les #data d’utilisateurs https://t.co/Hkh4mG8ms9 v/ @digitaliworld + +💬 L'… https://t.co/NHrSyMJdtD",True,"Buffer",,,,,,,,,,False,3,3,False,False,fr,"[{'text': 'Futur', 'indices': [5, 11]}, {'text': 'IA', 'indices': [13, 16]}, {'text': 'data', 'indices': [46, 51]}]",[],"[{'screen_name': 'digitaliworld', 'name': 'Digitaliworld', 'id': 2888919195, 'id_str': '2888919195', 'indices': [94, 108]}]","[{'url': 'https://t.co/Hkh4mG8ms9', 'expanded_url': 'https://buff.ly/2QadsVP', 'display_url': 'buff.ly/2QadsVP', 'indices': [67, 90]}, {'url': 'https://t.co/NHrSyMJdtD', 'expanded_url': 'https://twitter.com/i/web/status/1381484990651858947', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,115065053,115065053,"FlashTweet,LA Matinale sur la #TransfoNum",FlashTweet,📷Instagram _@FlashTweet_,⏰RDV 7:30 pour LA #Matinale de #Twitter sur la #TransfoNum by @EmmanuelleL9 #Tech #IA #SocialMedia #startup #innovation,https://t.co/AR06LHBmYl,[],False,57144,4488,4726,Wed Feb 17 14:09:44 +0000 2010,90929,,,True,False,105283,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,https://pbs.twimg.com/profile_images/1268964372715536392/eHmArlo7_normal.jpg,FA743E,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/AR06LHBmYl', 'expanded_url': 'http://www.flashtweet.fr', 'display_url': 'flashtweet.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/115065053/1609517974,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +341,Mon Apr 12 02:09:54 +0000 2021,1381429339418456068,1381429339418456068,"RT @__LENIA: #Métiers du numérique : où sont les #femmes ? +via @Digitaltrans4mF +#éthique #numérique #ia #intelligenceartificielle #algorit…",False,"Integromat",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Métiers', 'indices': [13, 21]}, {'text': 'femmes', 'indices': [49, 56]}, {'text': 'éthique', 'indices': [81, 89]}, {'text': 'numérique', 'indices': [90, 100]}, {'text': 'ia', 'indices': [101, 104]}, {'text': 'intelligenceartificielle', 'indices': [105, 130]}]",[],"[{'screen_name': '__LENIA', 'name': 'LEN.IA', 'id': 1225612353053564928, 'id_str': '1225612353053564928', 'indices': [3, 11]}, {'screen_name': 'Digitaltrans4mF', 'name': 'DigitalTrans4m_FR', 'id': 1091350270209073154, 'id_str': '1091350270209073154', 'indices': [63, 79]}]",[],fr,recent,439561828,439561828,DevMy,DevMy_fr,France,Si 1 entreprise doit ressembler à son dirigeant et 1 logo doit ressembler à son entreprise = 1 logo doit ressembler au dirigeant ... je crois que c’est bon !,https://t.co/RgigaS8wAm,[],False,1694,3594,101,Sat Dec 17 23:05:37 +0000 2011,202,,,False,False,35386,,False,False,False,0099B9,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,False,http://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,https://pbs.twimg.com/profile_images/1350888730354196483/L6-2c1Oq_normal.jpg,0099B9,FFFFFF,95E8EC,3C3940,True,True,False,False,False,False,False,none,Mon Apr 12 02:08:55 +0000 2021,1.38142909147213e+18,1381429091472130051,"#Métiers du numérique : où sont les #femmes ? +via @Digitaltrans4mF +#éthique #numérique #ia… https://t.co/wZa16n9sRu",True,"[{'text': 'Métiers', 'indices': [0, 8]}, {'text': 'femmes', 'indices': [36, 43]}, {'text': 'éthique', 'indices': [68, 76]}, {'text': 'numérique', 'indices': [77, 87]}, {'text': 'ia', 'indices': [88, 91]}]",[],"[{'screen_name': 'Digitaltrans4mF', 'name': 'DigitalTrans4m_FR', 'id': 1091350270209073154, 'id_str': '1091350270209073154', 'indices': [50, 66]}]","[{'url': 'https://t.co/wZa16n9sRu', 'expanded_url': 'https://twitter.com/i/web/status/1381429091472130051', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [93, 116]}]",fr,recent,"Twitter Web App",,,,,,1.225612353053565e+18,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",[],False,1120.0,2863.0,22.0,Fri Feb 07 02:49:47 +0000 2020,288.0,,,False,False,3112.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,,"[{'url': 'https://t.co/RgigaS8wAm', 'expanded_url': 'https://devmy.fr', 'display_url': 'devmy.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/439561828/1611138098,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +342,Mon Apr 12 02:08:55 +0000 2021,1381429091472130051,1381429091472130051,"#Métiers du numérique : où sont les #femmes ? +via @Digitaltrans4mF +#éthique #numérique #ia… https://t.co/wZa16n9sRu",True,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'Métiers', 'indices': [0, 8]}, {'text': 'femmes', 'indices': [36, 43]}, {'text': 'éthique', 'indices': [68, 76]}, {'text': 'numérique', 'indices': [77, 87]}, {'text': 'ia', 'indices': [88, 91]}]",[],"[{'screen_name': 'Digitaltrans4mF', 'name': 'DigitalTrans4m_FR', 'id': 1091350270209073154, 'id_str': '1091350270209073154', 'indices': [50, 66]}]","[{'url': 'https://t.co/wZa16n9sRu', 'expanded_url': 'https://twitter.com/i/web/status/1381429091472130051', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [93, 116]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +343,Mon Apr 12 02:03:34 +0000 2021,1381427741879336961,1381427741879336961,"#Réglementation du numérique en #Europe : un petit pas vers de nombreux possibles +via @K_Le_Jolif +#éthique… https://t.co/bIXLd5yg6X",True,"Twitter Web App",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'Réglementation', 'indices': [0, 15]}, {'text': 'Europe', 'indices': [32, 39]}, {'text': 'éthique', 'indices': [99, 107]}]",[],"[{'screen_name': 'K_Le_Jolif', 'name': '🌈 Karen Le Jolif', 'id': 894156782360297472, 'id_str': '894156782360297472', 'indices': [86, 97]}]","[{'url': 'https://t.co/bIXLd5yg6X', 'expanded_url': 'https://twitter.com/i/web/status/1381427741879336961', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,1225612353053564928,1225612353053564928,LEN.IA,__LENIA,"Montréal, Québec, Canada","Laboratoire d'#éthique du #numérique et de l'#IA | +#AI & #Digital #Ethics Lab +Conseil · Formation · Recherche + +#AIEthics | #Data | #Tech | #TransfoNum",https://t.co/3sQcpG0OWj,[],False,1120,2863,22,Fri Feb 07 02:49:47 +0000 2020,288,,,False,False,3112,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,https://pbs.twimg.com/profile_images/1262360191921684482/N_2QUdGt_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/3sQcpG0OWj', 'expanded_url': 'http://lenia.net', 'display_url': 'lenia.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1225612353053564928/1581045083,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +344,Mon Apr 12 00:00:20 +0000 2021,1381396729556242433,1381396729556242433,🇫🇷 🧠 L' #IA va créer de nouveaux metiers : on peut se former rapidement sans être ingénieur.… https://t.co/bMdyFRU8HV,True,"DatazFr",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'IA', 'indices': [8, 11]}]",[],[],"[{'url': 'https://t.co/bMdyFRU8HV', 'expanded_url': 'https://twitter.com/i/web/status/1381396729556242433', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [94, 117]}]",fr,recent,1320792368031956994,1320792368031956994,dataz 🇫🇷 🇪🇺,datazFr,"Paris, France","La protection des données de A à Z : textes, articles, outils et assistants vocaux seront prochainement disponibles sur https://t.co/oKDyrYf9g1. +🇫🇷 🇪🇺 🧑‍⚖️",https://t.co/RXXj4sBMpz,"[{'url': 'https://t.co/oKDyrYf9g1', 'expanded_url': 'http://dataz.fr', 'display_url': 'dataz.fr', 'indices': [120, 143]}]",False,62,153,1,Mon Oct 26 18:20:25 +0000 2020,529,,,False,False,3339,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1321008018843181056/T-7EL9kB_normal.jpg,https://pbs.twimg.com/profile_images/1321008018843181056/T-7EL9kB_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/RXXj4sBMpz', 'expanded_url': 'https://www.dataz.fr', 'display_url': 'dataz.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1320792368031956994/1603777663,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +345,Sun Apr 11 20:10:20 +0000 2021,1381338849360547840,1381338849360547840,"RT @mdrechsler: Le philosophe français Pierre Lévy, connu pour ses travaux sur l'intelligence collective de l'humanité, fait valoir qu'il n…",False,"Twitter for iPhone",,,,,,,,,,True,8,0,False,False,fr,[],[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,337506882,337506882,Pascal Gangutia,MrPaski66,Nouvelle-Calédonie,"Professeur Documentaliste à @CdiLpfa passionné de technologies et pédagogies innovantes, de changement constant, d'agilité, et Surf Skate SUP Snowboard !",https://t.co/QnlVrnN3ya,[],False,31,211,0,Mon Jul 18 04:06:10 +0000 2011,890,,,False,False,208,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1327099337403293696/Bi9bCMgb_normal.jpg,https://pbs.twimg.com/profile_images/1327099337403293696/Bi9bCMgb_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Mon Jun 08 13:38:41 +0000 2020,1.2699872143914148e+18,1269987214391414786,"Le philosophe français Pierre Lévy, connu pour ses travaux sur l'intelligence collective de l'humanité, fait valoir… https://t.co/m8bP4nVP5s",True,[],[],[],"[{'url': 'https://t.co/m8bP4nVP5s', 'expanded_url': 'https://twitter.com/i/web/status/1269987214391414786', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,8.0,8.0,False,False,False,fr,,"[{'url': 'https://t.co/QnlVrnN3ya', 'expanded_url': 'http://cdi4scrum.net', 'display_url': 'cdi4scrum.net', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/337506882/1617311677,1.0362956864746701e+18,1036295686474670081,1.0362956864746701e+18,1036295686474670081,Sun Sep 02 16:51:59 +0000 2018,1.0362956864746701e+18,1036295686474670081,"İnsanlığın kolektif zekası üzerine yaptığı çalışmalarıyla bilinen Fransız filozof Pierre Lévy, ""yapay zeka"" kavramı… https://t.co/2B0Z5mRhW4",True,[],[],[],"[{'url': 'https://t.co/2B0Z5mRhW4', 'expanded_url': 'https://twitter.com/i/web/status/1036295686474670081', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web Client",,,,,,9.036742352389612e+17,903674235238961152,Çeviri Konuşmalar,ckonusmalar,"İstanbul, Türkiye",Fransızca ve İngilizce videoların Türkçe çevirileri ve Bişeyler Konuşuyoruz @ilker_kocael ve @gkirnali https://t.co/BNt7Juyz2B,https://t.co/quLK8Hoejz,"[{'url': 'https://t.co/quLK8Hoejz', 'expanded_url': 'http://youtube.com/CeviriKonusmalar', 'display_url': 'youtube.com/CeviriKonusmal…', 'indices': [0, 23]}]","[{'url': 'https://t.co/BNt7Juyz2B', 'expanded_url': 'http://instagram.com/ckonusmalar', 'display_url': 'instagram.com/ckonusmalar', 'indices': [103, 126]}]",False,112740.0,3.0,273.0,Fri Sep 01 17:41:41 +0000 2017,202.0,,,False,False,1269.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1001177587891228673/4ManII1Z_normal.jpg,https://pbs.twimg.com/profile_images/1001177587891228673/4ManII1Z_normal.jpg,https://pbs.twimg.com/profile_banners/903674235238961152/1527534335,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,72.0,340.0,False,False,False,tr,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +346,Sun Apr 11 20:01:59 +0000 2021,1381336750304473090,1381336750304473090,"RT @Orange_Future: [#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa chaîne…",False,"Twitter for Android",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'IA', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [88, 113]}]",[],"[{'screen_name': 'Orange_Future', 'name': 'Hello Future', 'id': 864130877906989059, 'id_str': '864130877906989059', 'indices': [3, 17]}]",[],fr,recent,776383170572877824,776383170572877824,pierre ramette,PierreRamette,,,,[],False,244,422,419,Thu Sep 15 11:32:27 +0000 2016,25521,,,False,False,50802,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/776709360894574593/GHkTMxjt_normal.jpg,https://pbs.twimg.com/profile_images/776709360894574593/GHkTMxjt_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,Sun Apr 11 08:00:01 +0000 2021,1.3811550603573412e+18,1381155060357341185,"[#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa ch… https://t.co/UXjgk4rhog",True,"[{'text': 'IA', 'indices': [1, 4]}, {'text': 'IntelligenceArtificielle', 'indices': [69, 94]}]",[],[],"[{'url': 'https://t.co/UXjgk4rhog', 'expanded_url': 'https://twitter.com/i/web/status/1381155060357341185', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Media Studio",,,,,,8.64130877906989e+17,864130877906989059,Hello Future,Orange_Future,,Partageons ensemble nos sujets d'#innovation et de #recherche dans les domaines du #digital et des nouvelles #technologies. #Networks #IT #IoT #Data #AI @Orange,https://t.co/K0Au0hZOvs,"[{'url': 'https://t.co/K0Au0hZOvs', 'expanded_url': 'http://hellofuture.orange.com', 'display_url': 'hellofuture.orange.com', 'indices': [0, 23]}]",[],False,5397.0,219.0,72.0,Mon May 15 14:50:30 +0000 2017,425.0,,,False,True,3393.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_banners/864130877906989059/1594213141,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,6.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/776383170572877824/1614448772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +347,Sun Apr 11 19:24:26 +0000 2021,1381327298809499650,1381327298809499650,"RT @Orange_Future: [#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa chaîne…",False,"Twitter for Android",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'IA', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [88, 113]}]",[],"[{'screen_name': 'Orange_Future', 'name': 'Hello Future', 'id': 864130877906989059, 'id_str': '864130877906989059', 'indices': [3, 17]}]",[],fr,recent,707496397541679104,707496397541679104,Christine Evanno,ChristineEvanno,,Responsable de communication éditoriale @orange à Product Marketing & Design #HelloLab. Intéressée par #Innovation #ComDigitale #ParisLover et #JO #Paris2024,https://t.co/BXQ7NJ1stu,[],False,209,207,7,Wed Mar 09 09:21:00 +0000 2016,2255,,,False,False,2032,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/816775179082887172/LnrTpGya_normal.jpg,https://pbs.twimg.com/profile_images/816775179082887172/LnrTpGya_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sun Apr 11 08:00:01 +0000 2021,1.3811550603573412e+18,1381155060357341185,"[#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa ch… https://t.co/UXjgk4rhog",True,"[{'text': 'IA', 'indices': [1, 4]}, {'text': 'IntelligenceArtificielle', 'indices': [69, 94]}]",[],[],"[{'url': 'https://t.co/UXjgk4rhog', 'expanded_url': 'https://twitter.com/i/web/status/1381155060357341185', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Media Studio",,,,,,8.64130877906989e+17,864130877906989059,Hello Future,Orange_Future,,Partageons ensemble nos sujets d'#innovation et de #recherche dans les domaines du #digital et des nouvelles #technologies. #Networks #IT #IoT #Data #AI @Orange,https://t.co/K0Au0hZOvs,"[{'url': 'https://t.co/K0Au0hZOvs', 'expanded_url': 'http://hellofuture.orange.com', 'display_url': 'hellofuture.orange.com', 'indices': [0, 23]}]",[],False,5397.0,219.0,72.0,Mon May 15 14:50:30 +0000 2017,425.0,,,False,True,3393.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_banners/864130877906989059/1594213141,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/BXQ7NJ1stu', 'expanded_url': 'https://hellofuture.orange.com/fr/', 'display_url': 'hellofuture.orange.com/fr/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/707496397541679104/1457517111,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +348,Sun Apr 11 14:45:37 +0000 2021,1381257132100698112,1381257132100698112,"Evidemment que si le but est l’AGI, alors on ne craint pas de devenir ""inutile"" sur le marché de l’emploi. + +C’est u… https://t.co/8Yf4MuyYKG",True,"Twitter Web App",,,,,,,,,,True,0,0,False,False,fr,[],[],[],"[{'url': 'https://t.co/8Yf4MuyYKG', 'expanded_url': 'https://twitter.com/i/web/status/1381257132100698112', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,861246882630205440,861246882630205440,Chris Rabane🧢➕🤖,ChrisRabane,,Writer. PhD. Neuroscientist. Author of The Saturnian Tales. #Yanggang #AGI #transhumanism #writingcommunity #fightaging #UBIASAP,https://t.co/THZXP8dwIE,[],False,11388,11386,79,Sun May 07 15:50:32 +0000 2017,32313,,,False,False,21361,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1032252291305406464/c7wtO4j1_normal.jpg,https://pbs.twimg.com/profile_images/1032252291305406464/c7wtO4j1_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/THZXP8dwIE', 'expanded_url': 'http://amzn.to/2pUFJ3E', 'display_url': 'amzn.to/2pUFJ3E', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/861246882630205440/1494190237,1.3812552525030973e+18,1381255252503097347,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Sun Apr 11 14:38:09 +0000 2021,1.3812552525030973e+18,1381255252503097347,"@ChrisRabane Le RU et le monde virtuel qui va avec, la réalité augmentée, le divertissement a vie et la fin du viva… https://t.co/TO4y12kNWp",True,[],[],"[{'screen_name': 'ChrisRabane', 'name': 'Chris Rabane🧢➕🤖', 'id': 861246882630205440, 'id_str': '861246882630205440', 'indices': [0, 12]}]","[{'url': 'https://t.co/TO4y12kNWp', 'expanded_url': 'https://twitter.com/i/web/status/1381255252503097347', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",1.3812437280321126e+18,1381243728032112647,8.612468826302054e+17,861246882630205440,ChrisRabane,1379796642.0,1379796642,kdo,kdojah06_kdo,,,,,[],False,128.0,186.0,1.0,Thu Apr 25 16:14:03 +0000 2013,19807.0,,,False,False,19879.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1372336460561575939/9b5Q2ygf_normal.jpg,https://pbs.twimg.com/profile_images/1372336460561575939/9b5Q2ygf_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,0.0,0.0,False,False,,fr,https://pbs.twimg.com/profile_banners/1379796642/1607760800,, +349,Sun Apr 11 13:01:41 +0000 2021,1381230976181895174,1381230976181895174,"RT @ActuIAFr: Éthique : Licenciement de deux chercheuses chez Google, le dirigeant et cofondateur de Google Brain démissionne #GoogleBrain…",False,"Twitter for Android",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'GoogleBrain', 'indices': [126, 138]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}]",[],fr,recent,936174873851973632,936174873851973632,Zach,Zach_Tzt,"Toulouse, France","Zach, 23 ans, Étudiant à @Toulouse, ma ville #rose + +#Supporter du @ToulouseFC 💜 +#Animateur sur @CampusFM 🎙️ +#Rédacteur pour @ActuIAFr 💻",,[],False,47,95,0,Thu Nov 30 10:07:37 +0000 2017,149,,,True,False,345,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1287732094500843520/kbAN9EfI_normal.jpg,https://pbs.twimg.com/profile_images/1287732094500843520/kbAN9EfI_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Fri Apr 09 11:38:48 +0000 2021,1.3804853431793787e+18,1380485343179378692,"Éthique : Licenciement de deux chercheuses chez Google, le dirigeant et cofondateur de Google Brain démissionne… https://t.co/GS0rXqenjQ",True,[],[],[],"[{'url': 'https://t.co/GS0rXqenjQ', 'expanded_url': 'https://twitter.com/i/web/status/1380485343179378692', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [113, 136]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/936174873851973632/1537436881,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +350,Sun Apr 11 12:21:58 +0000 2021,1381220982036258817,1381220982036258817,"RT @Orange_Future: [#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa chaîne…",False,"Twitter Web App",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'IA', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [88, 113]}]",[],"[{'screen_name': 'Orange_Future', 'name': 'Hello Future', 'id': 864130877906989059, 'id_str': '864130877906989059', 'indices': [3, 17]}]",[],fr,recent,1025085833106337792,1025085833106337792,Vigie Conso,ConsoVigie,,Commerce et modes de consommation : décrypter les tendances de société,https://t.co/OY8Q6drL6m,[],False,435,3392,7,Thu Aug 02 18:28:02 +0000 2018,2540,,,False,False,2335,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1025101509598629893/cGmWJnsW_normal.jpg,https://pbs.twimg.com/profile_images/1025101509598629893/cGmWJnsW_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sun Apr 11 08:00:01 +0000 2021,1.3811550603573412e+18,1381155060357341185,"[#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa ch… https://t.co/UXjgk4rhog",True,"[{'text': 'IA', 'indices': [1, 4]}, {'text': 'IntelligenceArtificielle', 'indices': [69, 94]}]",[],[],"[{'url': 'https://t.co/UXjgk4rhog', 'expanded_url': 'https://twitter.com/i/web/status/1381155060357341185', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Media Studio",,,,,,8.64130877906989e+17,864130877906989059,Hello Future,Orange_Future,,Partageons ensemble nos sujets d'#innovation et de #recherche dans les domaines du #digital et des nouvelles #technologies. #Networks #IT #IoT #Data #AI @Orange,https://t.co/K0Au0hZOvs,"[{'url': 'https://t.co/K0Au0hZOvs', 'expanded_url': 'http://hellofuture.orange.com', 'display_url': 'hellofuture.orange.com', 'indices': [0, 23]}]",[],False,5397.0,219.0,72.0,Mon May 15 14:50:30 +0000 2017,425.0,,,False,True,3393.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_banners/864130877906989059/1594213141,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,6.0,False,False,False,fr,,"[{'url': 'https://t.co/OY8Q6drL6m', 'expanded_url': 'http://conso-vigie.over-blog.com/', 'display_url': 'conso-vigie.over-blog.com', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +351,Sun Apr 11 09:44:15 +0000 2021,1381181291102605312,1381181291102605312,"RT @Orange_Future: [#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa chaîne…",False,"Twitter for iPad",,,,,,,,,,False,5,0,False,False,fr,"[{'text': 'IA', 'indices': [20, 23]}, {'text': 'IntelligenceArtificielle', 'indices': [88, 113]}]",[],"[{'screen_name': 'Orange_Future', 'name': 'Hello Future', 'id': 864130877906989059, 'id_str': '864130877906989059', 'indices': [3, 17]}]",[],fr,recent,482961775,482961775,Latruffe Frank,FrankLat66,Paris,Responsable démonstrations au #HelloLab showroom des #innovations site Orange Gardens. tweets are my owns and do not necessarily represent my company,,[],False,1390,2478,122,Sat Feb 04 14:00:21 +0000 2012,6067,,,True,False,4832,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1867067574/IW75ffqI_normal,https://pbs.twimg.com/profile_images/1867067574/IW75ffqI_normal,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Sun Apr 11 08:00:01 +0000 2021,1.3811550603573412e+18,1381155060357341185,"[#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa ch… https://t.co/UXjgk4rhog",True,"[{'text': 'IA', 'indices': [1, 4]}, {'text': 'IntelligenceArtificielle', 'indices': [69, 94]}]",[],[],"[{'url': 'https://t.co/UXjgk4rhog', 'expanded_url': 'https://twitter.com/i/web/status/1381155060357341185', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Media Studio",,,,,,8.64130877906989e+17,864130877906989059,Hello Future,Orange_Future,,Partageons ensemble nos sujets d'#innovation et de #recherche dans les domaines du #digital et des nouvelles #technologies. #Networks #IT #IoT #Data #AI @Orange,https://t.co/K0Au0hZOvs,"[{'url': 'https://t.co/K0Au0hZOvs', 'expanded_url': 'http://hellofuture.orange.com', 'display_url': 'hellofuture.orange.com', 'indices': [0, 23]}]",[],False,5397.0,219.0,72.0,Mon May 15 14:50:30 +0000 2017,425.0,,,False,True,3393.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_banners/864130877906989059/1594213141,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,5.0,6.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/482961775/1559381893,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +352,Sun Apr 11 08:00:01 +0000 2021,1381155060357341185,1381155060357341185,"[#IA]🤖 + +Le secteur de la grande distribution alimentaire mise sur l’#IntelligenceArtificielle pour optimiser sa ch… https://t.co/UXjgk4rhog",True,"Twitter Media Studio",,,,,,,,,,False,5,6,False,False,fr,"[{'text': 'IA', 'indices': [1, 4]}, {'text': 'IntelligenceArtificielle', 'indices': [69, 94]}]",[],[],"[{'url': 'https://t.co/UXjgk4rhog', 'expanded_url': 'https://twitter.com/i/web/status/1381155060357341185', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,864130877906989059,864130877906989059,Hello Future,Orange_Future,,Partageons ensemble nos sujets d'#innovation et de #recherche dans les domaines du #digital et des nouvelles #technologies. #Networks #IT #IoT #Data #AI @Orange,https://t.co/K0Au0hZOvs,[],False,5397,219,72,Mon May 15 14:50:30 +0000 2017,425,,,False,True,3393,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,https://pbs.twimg.com/profile_images/1229783045428928515/JdvdZJCW_normal.png,FF691F,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/K0Au0hZOvs', 'expanded_url': 'http://hellofuture.orange.com', 'display_url': 'hellofuture.orange.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/864130877906989059/1594213141,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +353,Sun Apr 11 07:11:49 +0000 2021,1381142928819638273,1381142928819638273,RT @PFreminville: Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (#IntelligenceArtifici…,False,"AiSpaceBot",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'SF', 'indices': [46, 49]}, {'text': 'hardsf', 'indices': [53, 60]}, {'text': 'cyberpunk', 'indices': [61, 71]}, {'text': 'IA', 'indices': [106, 109]}, {'text': 'AI', 'indices': [113, 116]}]",[],"[{'screen_name': 'PFreminville', 'name': 'Patrice de Fréminville (auteur)', 'id': 932618057058521088, 'id_str': '932618057058521088', 'indices': [3, 16]}]",[],fr,recent,935446829730291717,935446829730291717,godfrey,godfrey_G_,"Johannesburg, South Africa","If our limited intelligence got us here imagine where unlimited A.I intelligence can take us. Hi Am GeE and am a God fearing, Space fanatic and an AI believer.",,[],False,1454,31,31,Tue Nov 28 09:54:38 +0000 2017,57374,,,False,False,195280,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1331728812300767233/vplJ5zhZ_normal.jpg,https://pbs.twimg.com/profile_images/1331728812300767233/vplJ5zhZ_normal.jpg,7FDBB6,000000,000000,000000,False,False,False,False,False,False,False,none,Sat Apr 10 16:28:23 +0000 2021,1.380920606624002e+18,1380920606624002050,Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (… https://t.co/4ScgwuofRJ,True,"[{'text': 'SF', 'indices': [28, 31]}, {'text': 'hardsf', 'indices': [35, 42]}, {'text': 'cyberpunk', 'indices': [43, 53]}, {'text': 'IA', 'indices': [88, 91]}, {'text': 'AI', 'indices': [95, 98]}]",[],[],"[{'url': 'https://t.co/4ScgwuofRJ', 'expanded_url': 'https://twitter.com/i/web/status/1380920606624002050', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [102, 125]}]",fr,recent,"Twitter Web App",,,,,,9.326180570585211e+17,932618057058521088,Patrice de Fréminville (auteur),PFreminville,,"Nouvelles +Blog lecture + critiques, #SP, sciences et écriture +#anticipation #IA #SF #humanisme #sciences #technologie #SFFF #aipunk #auteur #imaginaire #fiction",https://t.co/RD15W6Kmi8,"[{'url': 'https://t.co/RD15W6Kmi8', 'expanded_url': 'https://www.patricedefreminville.fr/', 'display_url': 'patricedefreminville.fr', 'indices': [0, 23]}]",[],False,482.0,447.0,6.0,Mon Nov 20 14:34:06 +0000 2017,8744.0,,,False,False,2350.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_banners/932618057058521088/1617634348,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/935446829730291717/1540381509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +354,Sun Apr 11 06:51:55 +0000 2021,1381137923433709569,1381137923433709569,RT @PFreminville: Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (#IntelligenceArtifici…,False,"Twitter for Android",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'SF', 'indices': [46, 49]}, {'text': 'hardsf', 'indices': [53, 60]}, {'text': 'cyberpunk', 'indices': [61, 71]}, {'text': 'IA', 'indices': [106, 109]}, {'text': 'AI', 'indices': [113, 116]}]",[],"[{'screen_name': 'PFreminville', 'name': 'Patrice de Fréminville (auteur)', 'id': 932618057058521088, 'id_str': '932618057058521088', 'indices': [3, 16]}]",[],fr,recent,932618057058521088,932618057058521088,Patrice de Fréminville (auteur),PFreminville,,"Nouvelles +Blog lecture + critiques, #SP, sciences et écriture +#anticipation #IA #SF #humanisme #sciences #technologie #SFFF #aipunk #auteur #imaginaire #fiction",https://t.co/RD15W6Kmi8,[],False,482,447,6,Mon Nov 20 14:34:06 +0000 2017,8744,,,False,False,2350,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sat Apr 10 16:28:23 +0000 2021,1.380920606624002e+18,1380920606624002050,Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (… https://t.co/4ScgwuofRJ,True,"[{'text': 'SF', 'indices': [28, 31]}, {'text': 'hardsf', 'indices': [35, 42]}, {'text': 'cyberpunk', 'indices': [43, 53]}, {'text': 'IA', 'indices': [88, 91]}, {'text': 'AI', 'indices': [95, 98]}]",[],[],"[{'url': 'https://t.co/4ScgwuofRJ', 'expanded_url': 'https://twitter.com/i/web/status/1380920606624002050', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [102, 125]}]",fr,recent,"Twitter Web App",,,,,,9.326180570585211e+17,932618057058521088,Patrice de Fréminville (auteur),PFreminville,,"Nouvelles +Blog lecture + critiques, #SP, sciences et écriture +#anticipation #IA #SF #humanisme #sciences #technologie #SFFF #aipunk #auteur #imaginaire #fiction",https://t.co/RD15W6Kmi8,"[{'url': 'https://t.co/RD15W6Kmi8', 'expanded_url': 'https://www.patricedefreminville.fr/', 'display_url': 'patricedefreminville.fr', 'indices': [0, 23]}]",[],False,482.0,447.0,6.0,Mon Nov 20 14:34:06 +0000 2017,8744.0,,,False,False,2350.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_banners/932618057058521088/1617634348,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/RD15W6Kmi8', 'expanded_url': 'https://www.patricedefreminville.fr/', 'display_url': 'patricedefreminville.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/932618057058521088/1617634348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +355,Sun Apr 11 06:48:27 +0000 2021,1381137049764438019,1381137049764438019,RT @DailyDigital: 🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Suisse : Le Swiss Data Science Center va apporter son expertise à l’Offi…,False,"Twitter for Android",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [19, 34]}, {'text': 'IntelligenceArtificielle', 'indices': [36, 61]}, {'text': 'IA', 'indices': [62, 65]}]",[],"[{'screen_name': 'DailyDigital', 'name': '✨Daily Digital', 'id': 3405442043, 'id_str': '3405442043', 'indices': [3, 16]}]",[],fr,recent,253654366,253654366,B Giry,girybernard,"Paris, France","Digital, innovation and research Advisor @iledefrance @ParisRegion #startup #innovation #Iot #quantum #design #smartregion #Gentilly #bioproduction #AI",https://t.co/2vlwqoaEEu,[],False,1685,2168,327,Thu Feb 17 17:59:46 +0000 2011,3355,,,True,False,18217,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/979454029519605760/xEVr7P_T_normal.jpg,https://pbs.twimg.com/profile_images/979454029519605760/xEVr7P_T_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sun Apr 11 05:53:20 +0000 2021,1.3811231785593733e+18,1381123178559373315,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Suisse : Le Swiss Data Science Center va apporter son expertise à… https://t.co/9Hl94Z2wQ1,True,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/9Hl94Z2wQ1', 'expanded_url': 'https://twitter.com/i/web/status/1381123178559373315', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Sociallymap",,,,,,3405442043.0,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",[],False,13819.0,4530.0,1694.0,Thu Aug 06 10:15:10 +0000 2015,3840.0,,,False,False,134692.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_banners/3405442043/1585496890,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,1.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/2vlwqoaEEu', 'expanded_url': 'https://www.linkedin.com/in/bernard-giry-23b6643', 'display_url': 'linkedin.com/in/bernard-gir…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/253654366/1593936834,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +356,Sun Apr 11 05:53:20 +0000 2021,1381123178559373315,1381123178559373315,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Suisse : Le Swiss Data Science Center va apporter son expertise à… https://t.co/9Hl94Z2wQ1,True,"Sociallymap",,,,,,,,,,False,1,1,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/9Hl94Z2wQ1', 'expanded_url': 'https://twitter.com/i/web/status/1381123178559373315', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +357,Sun Apr 11 05:43:16 +0000 2021,1381120646990729216,1381120646990729216,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Retour sur le comité éthique sur l’intelligence artificielle de Pô… https://t.co/centGS4IWU,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/centGS4IWU', 'expanded_url': 'https://twitter.com/i/web/status/1381120646990729216', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +358,Sat Apr 10 23:20:07 +0000 2021,1381024220600283137,1381024220600283137,"RT @chticom: Quand @MastercardFR et @cmarkea s'engagent pour l'éducation des jeunes femmes à la tech, ça donne le programme #TechthePower e…",False,"Twitter for iPhone",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'TechthePower', 'indices': [124, 137]}]",[],"[{'screen_name': 'chticom', 'name': 'Violaine Cherrier', 'id': 193241078, 'id_str': '193241078', 'indices': [3, 11]}, {'screen_name': 'MastercardFR', 'name': 'Mastercard France', 'id': 800168845, 'id_str': '800168845', 'indices': [19, 32]}, {'screen_name': 'cmarkea', 'name': 'Arkéa', 'id': 35189444, 'id_str': '35189444', 'indices': [36, 44]}]",[],fr,recent,74968853,74968853,Maxime Maton,matoons,Paris,"#Innovation #Media #Video #Podcast #Adtech #Edtech. CEO matoons. Partner @Adways X @LaConcepteria @TF1 @Endemol +🎧 EdTech France podcast : https://t.co/NWAYxuFomF",https://t.co/ZFXTgQPQ8l,"[{'url': 'https://t.co/NWAYxuFomF', 'expanded_url': 'http://bit.ly/2kntkol', 'display_url': 'bit.ly/2kntkol', 'indices': [139, 162]}]",False,1420,5002,75,Thu Sep 17 08:51:13 +0000 2009,3134,,,True,False,1962,,False,False,False,000000,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,False,http://pbs.twimg.com/profile_images/1256147367511896064/0occUhtM_normal.jpg,https://pbs.twimg.com/profile_images/1256147367511896064/0occUhtM_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,Tue Mar 30 10:08:32 +0000 2021,1.376838746398724e+18,1376838746398724096,"Quand @MastercardFR et @cmarkea s'engagent pour l'éducation des jeunes femmes à la tech, ça donne le programme… https://t.co/IYq39a5lsP",True,[],[],"[{'screen_name': 'MastercardFR', 'name': 'Mastercard France', 'id': 800168845, 'id_str': '800168845', 'indices': [6, 19]}, {'screen_name': 'cmarkea', 'name': 'Arkéa', 'id': 35189444, 'id_str': '35189444', 'indices': [23, 31]}]","[{'url': 'https://t.co/IYq39a5lsP', 'expanded_url': 'https://twitter.com/i/web/status/1376838746398724096', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [112, 135]}]",fr,recent,"Twitter Web App",,,,,,193241078.0,193241078,Violaine Cherrier,chticom,"Paris, 11","Journaliste / Content manager #IT freelance. #socialmedia, #ContentMarketing, #IA... Blogueuse et engagée sur l’#egaliteFH. Secrétaire générale @FeminismeAsso",https://t.co/8NLGMwQKtQ,"[{'url': 'https://t.co/8NLGMwQKtQ', 'expanded_url': 'https://www.violainecherrier.com', 'display_url': 'violainecherrier.com', 'indices': [0, 23]}]",[],False,2745.0,2952.0,144.0,Tue Sep 21 10:16:09 +0000 2010,2101.0,,,True,False,19645.0,,False,False,False,1A1B1F,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,False,http://pbs.twimg.com/profile_images/553517822827954178/E-VsNUSq_normal.jpeg,https://pbs.twimg.com/profile_images/553517822827954178/E-VsNUSq_normal.jpeg,https://pbs.twimg.com/profile_banners/193241078/1510576004,DD2E44,FFFFFF,252429,666666,True,False,False,False,False,False,False,none,,,,,False,1.0,2.0,False,False,True,fr,,"[{'url': 'https://t.co/ZFXTgQPQ8l', 'expanded_url': 'https://www.linkedin.com/in/maximematon/', 'display_url': 'linkedin.com/in/maximematon/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/74968853/1588323855,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +359,Sat Apr 10 19:54:09 +0000 2021,1380972390486773764,1380972390486773764,"RT @LaForge_AI: Les bases erronées de l'intelligence artificielle + +#IA #intelligenceartificielle #scienceetavenir #science +https://t.co/qMG…",False,"Twitter for Android",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'IA', 'indices': [67, 70]}, {'text': 'intelligenceartificielle', 'indices': [71, 96]}, {'text': 'scienceetavenir', 'indices': [97, 113]}, {'text': 'science', 'indices': [114, 122]}]",[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,1126538509,1126538509,Cimelli,ClaudioCimelli,"Numeri'lab, DNE",Directeur de projet,http://t.co/R8OAsD8sjj,[],False,1470,989,108,Sun Jan 27 23:50:16 +0000 2013,3126,,,False,False,10183,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/734850134316621825/NQDNfd5l_normal.jpg,https://pbs.twimg.com/profile_images/734850134316621825/NQDNfd5l_normal.jpg,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Sat Apr 10 13:00:01 +0000 2021,1.3808681688858665e+18,1380868168885866498,"Les bases erronées de l'intelligence artificielle + +#IA #intelligenceartificielle #scienceetavenir #science… https://t.co/xpXDuHC8Dz",True,"[{'text': 'IA', 'indices': [51, 54]}, {'text': 'intelligenceartificielle', 'indices': [55, 80]}, {'text': 'scienceetavenir', 'indices': [81, 97]}, {'text': 'science', 'indices': [98, 106]}]",[],[],"[{'url': 'https://t.co/xpXDuHC8Dz', 'expanded_url': 'https://twitter.com/i/web/status/1380868168885866498', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,3.0,False,False,False,fr,,"[{'url': 'http://t.co/R8OAsD8sjj', 'expanded_url': 'http://www.education.gouv.fr/pid29064/ecole-numerique.html', 'display_url': 'education.gouv.fr/pid29064/ecole…', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/1126538509/1367048766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +360,Sat Apr 10 19:28:49 +0000 2021,1380966014624628741,1380966014624628741,"RT @ModisFrance: [Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intrusions,…",False,"Cyber Security Feed",,,,,,,,,,False,20,0,False,False,fr,"[{'text': 'IA', 'indices': [29, 32]}]",[],"[{'screen_name': 'ModisFrance', 'name': 'Modis France', 'id': 387867632, 'id_str': '387867632', 'indices': [3, 15]}]",[],fr,recent,1131854274223366144,1131854274223366144,Cyber Security Feed,cybersec_feeds,Internet,check out a privacy oriented social media platform 👉🏾https://t.co/KkqBnPkRZK Cyber Security News in 1 place! Retweets original Cyber Sec tweets. 🤖 made by @AbdirahiimYa,,"[{'url': 'https://t.co/KkqBnPkRZK', 'expanded_url': 'http://samochat.net', 'display_url': 'samochat.net', 'indices': [53, 76]}]",False,15317,1,271,Fri May 24 09:27:42 +0000 2019,0,,,False,False,1440947,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1131855016766124032/vhasETOF_normal.jpg,https://pbs.twimg.com/profile_images/1131855016766124032/vhasETOF_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Fri Apr 02 06:00:42 +0000 2021,1.3778635399148995e+18,1377863539914899456,[Décryptage #IA] De la détection des comportements à la gestion des vulnérabilités en passant par les tests d’intru… https://t.co/44jkpDcJeW,True,"[{'text': 'IA', 'indices': [12, 15]}]",[],[],"[{'url': 'https://t.co/44jkpDcJeW', 'expanded_url': 'https://twitter.com/i/web/status/1377863539914899456', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,387867632.0,387867632,Modis France,ModisFrance,France,"Modis, acteur mondial du conseil en ingénierie et services numériques. +#Innovation #Tech #HighTech #IA #Cloud #TransfoNum #Data #FormulaE",https://t.co/R29Mupxuhy,"[{'url': 'https://t.co/R29Mupxuhy', 'expanded_url': 'https://www.modisfrance.fr', 'display_url': 'modisfrance.fr', 'indices': [0, 23]}]",[],False,5129.0,3606.0,286.0,Sun Oct 09 20:13:41 +0000 2011,6473.0,,,False,False,5532.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_images/1258638568475496448/lJiHATNl_normal.jpg,https://pbs.twimg.com/profile_banners/387867632/1603117329,618CAC,EEEEEE,EFEFEF,333333,True,True,False,False,False,False,False,none,,,,,False,20.0,21.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/1131854274223366144/1558718830,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +361,Sat Apr 10 18:36:33 +0000 2021,1380952860247003137,1380952860247003137,RT @odilon236: Un singe de Neuralink joue à Pong par la pensée https://t.co/hg5LoWEsEL #intelligenceartificielle #ai #ia,False,"dlvr.it",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'intelligenceartificielle', 'indices': [87, 112]}, {'text': 'ai', 'indices': [113, 116]}, {'text': 'ia', 'indices': [117, 120]}]",[],"[{'screen_name': 'odilon236', 'name': 'Odilon Doundembi', 'id': 972065918, 'id_str': '972065918', 'indices': [3, 13]}]","[{'url': 'https://t.co/hg5LoWEsEL', 'expanded_url': 'https://www.ulyces.co/news/un-singe-de-neuralink-joue-a-pong-par-la-pensee/', 'display_url': 'ulyces.co/news/un-singe-…', 'indices': [63, 86]}]",fr,recent,1240820325081911296,1240820325081911296,236 News 🇨🇫,236News,Central African Republic,"L’information de la République centrafricaine en temps réel. Retrouvez ici tous les articles, rapports et analyses publiés sur Internet. 🇨🇫 #Centrafrique",https://t.co/8LCAfqnWEA,[],False,4417,4441,23,Fri Mar 20 02:00:07 +0000 2020,6,,,True,False,33121,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1240829740820373506/p82e4MwI_normal.jpg,https://pbs.twimg.com/profile_images/1240829740820373506/p82e4MwI_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Sat Apr 10 18:32:21 +0000 2021,1.3809518053293548e+18,1380951805329354752,Un singe de Neuralink joue à Pong par la pensée https://t.co/hg5LoWEsEL #intelligenceartificielle #ai #ia,False,"[{'text': 'intelligenceartificielle', 'indices': [72, 97]}, {'text': 'ai', 'indices': [98, 101]}, {'text': 'ia', 'indices': [102, 105]}]",[],[],"[{'url': 'https://t.co/hg5LoWEsEL', 'expanded_url': 'https://www.ulyces.co/news/un-singe-de-neuralink-joue-a-pong-par-la-pensee/', 'display_url': 'ulyces.co/news/un-singe-…', 'indices': [48, 71]}]",fr,recent,"Twitter for Android",,,,,,972065918.0,972065918,Odilon Doundembi,odilon236,Africa,"Blogger/Blogueur +#Activisme #Justice #Liberte #DroitsdelHomme #Tech #Web #Marketing #Digital236 @ABCA_Blogueurs 🇨🇫 #Mondoblog",https://t.co/iN1V3ED16y,"[{'url': 'https://t.co/iN1V3ED16y', 'expanded_url': 'http://rcadurable.wordpress.com', 'display_url': 'rcadurable.wordpress.com', 'indices': [0, 23]}]",[],False,3504.0,2539.0,80.0,Mon Nov 26 14:28:48 +0000 2012,12296.0,,,True,False,12564.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1301790747897851904/15JFNRIW_normal.jpg,https://pbs.twimg.com/profile_images/1301790747897851904/15JFNRIW_normal.jpg,https://pbs.twimg.com/profile_banners/972065918/1618599574,1B95E0,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,False,1.0,0.0,False,False,False,fr,False,"[{'url': 'https://t.co/8LCAfqnWEA', 'expanded_url': 'https://www.facebook.com/236News/', 'display_url': 'facebook.com/236News/', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1240820325081911296/1586122861,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +362,Sat Apr 10 18:32:21 +0000 2021,1380951805329354752,1380951805329354752,Un singe de Neuralink joue à Pong par la pensée https://t.co/hg5LoWEsEL #intelligenceartificielle #ai #ia,False,"Twitter for Android",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'intelligenceartificielle', 'indices': [72, 97]}, {'text': 'ai', 'indices': [98, 101]}, {'text': 'ia', 'indices': [102, 105]}]",[],[],"[{'url': 'https://t.co/hg5LoWEsEL', 'expanded_url': 'https://www.ulyces.co/news/un-singe-de-neuralink-joue-a-pong-par-la-pensee/', 'display_url': 'ulyces.co/news/un-singe-…', 'indices': [48, 71]}]",fr,recent,972065918,972065918,Odilon Doundembi,odilon236,Africa,"Blogger/Blogueur +#Activisme #Justice #Liberte #DroitsdelHomme #Tech #Web #Marketing #Digital236 @ABCA_Blogueurs 🇨🇫 #Mondoblog",https://t.co/iN1V3ED16y,[],False,3504,2539,80,Mon Nov 26 14:28:48 +0000 2012,12296,,,True,False,12564,,False,False,False,000000,http://abs.twimg.com/images/themes/theme15/bg.png,https://abs.twimg.com/images/themes/theme15/bg.png,False,http://pbs.twimg.com/profile_images/1301790747897851904/15JFNRIW_normal.jpg,https://pbs.twimg.com/profile_images/1301790747897851904/15JFNRIW_normal.jpg,1B95E0,000000,000000,000000,False,True,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/iN1V3ED16y', 'expanded_url': 'http://rcadurable.wordpress.com', 'display_url': 'rcadurable.wordpress.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/972065918/1618599574,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +363,Sat Apr 10 18:04:49 +0000 2021,1380944875206676483,1380944875206676483,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Le programme Robotics4EU propose un sondage dans le but d’améliore… https://t.co/PfaowsytWl,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/PfaowsytWl', 'expanded_url': 'https://twitter.com/i/web/status/1380944875206676483', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +364,Sat Apr 10 17:45:43 +0000 2021,1380940069830283266,1380940069830283266,"RT @LaForge_AI: Les bases erronées de l'intelligence artificielle + +#IA #intelligenceartificielle #scienceetavenir #science +https://t.co/qMG…",False,"Twitter for iPhone",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'IA', 'indices': [67, 70]}, {'text': 'intelligenceartificielle', 'indices': [71, 96]}, {'text': 'scienceetavenir', 'indices': [97, 113]}, {'text': 'science', 'indices': [114, 122]}]",[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,238169471,238169471,André-Paul BAHUON,APBAHUON,PARIS,Président #CREATISGROUPE Psdt Honneur IFEC Psdt Honneur OEC PIDF Psdt #CCEF Compagnie des Conseils et Experts Financiers,https://t.co/RgKep41WNu,[],False,1143,433,25,Fri Jan 14 14:43:32 +0000 2011,2935,,,False,False,13774,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1381613634703478792/0JA6g71C_normal.jpg,https://pbs.twimg.com/profile_images/1381613634703478792/0JA6g71C_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Sat Apr 10 13:00:01 +0000 2021,1.3808681688858665e+18,1380868168885866498,"Les bases erronées de l'intelligence artificielle + +#IA #intelligenceartificielle #scienceetavenir #science… https://t.co/xpXDuHC8Dz",True,"[{'text': 'IA', 'indices': [51, 54]}, {'text': 'intelligenceartificielle', 'indices': [55, 80]}, {'text': 'scienceetavenir', 'indices': [81, 97]}, {'text': 'science', 'indices': [98, 106]}]",[],[],"[{'url': 'https://t.co/xpXDuHC8Dz', 'expanded_url': 'https://twitter.com/i/web/status/1380868168885866498', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,3.0,False,False,False,fr,,"[{'url': 'https://t.co/RgKep41WNu', 'expanded_url': 'http://creatisgroupe.com', 'display_url': 'creatisgroupe.com', 'indices': [0, 23]}]",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +365,Sat Apr 10 16:29:04 +0000 2021,1380920777739010049,1380920777739010049,RT @PFreminville: Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (#IntelligenceArtifici…,False,"Tweet1425526",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'SF', 'indices': [46, 49]}, {'text': 'hardsf', 'indices': [53, 60]}, {'text': 'cyberpunk', 'indices': [61, 71]}, {'text': 'IA', 'indices': [106, 109]}, {'text': 'AI', 'indices': [113, 116]}]",[],"[{'screen_name': 'PFreminville', 'name': 'Patrice de Fréminville (auteur)', 'id': 932618057058521088, 'id_str': '932618057058521088', 'indices': [3, 16]}]",[],fr,recent,1142010313782546437,1142010313782546437,SeetaLabs,SeetaLabs,Italy,"Making stuff with algos, tiramisù and crème brûlée lovers, global team focused on #AI applications to solve B2B problems",https://t.co/xwaspjSBDM,[],False,1365,1268,31,Fri Jun 21 10:04:11 +0000 2019,249,,,False,False,54402,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1142017772978937857/VAffpD5s_normal.png,https://pbs.twimg.com/profile_images/1142017772978937857/VAffpD5s_normal.png,FAB81E,000000,000000,000000,False,False,False,False,False,False,False,none,Sat Apr 10 16:28:23 +0000 2021,1.380920606624002e+18,1380920606624002050,Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (… https://t.co/4ScgwuofRJ,True,"[{'text': 'SF', 'indices': [28, 31]}, {'text': 'hardsf', 'indices': [35, 42]}, {'text': 'cyberpunk', 'indices': [43, 53]}, {'text': 'IA', 'indices': [88, 91]}, {'text': 'AI', 'indices': [95, 98]}]",[],[],"[{'url': 'https://t.co/4ScgwuofRJ', 'expanded_url': 'https://twitter.com/i/web/status/1380920606624002050', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [102, 125]}]",fr,recent,"Twitter Web App",,,,,,9.326180570585211e+17,932618057058521088,Patrice de Fréminville (auteur),PFreminville,,"Nouvelles +Blog lecture + critiques, #SP, sciences et écriture +#anticipation #IA #SF #humanisme #sciences #technologie #SFFF #aipunk #auteur #imaginaire #fiction",https://t.co/RD15W6Kmi8,"[{'url': 'https://t.co/RD15W6Kmi8', 'expanded_url': 'https://www.patricedefreminville.fr/', 'display_url': 'patricedefreminville.fr', 'indices': [0, 23]}]",[],False,482.0,447.0,6.0,Mon Nov 20 14:34:06 +0000 2017,8744.0,,,False,False,2350.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_banners/932618057058521088/1617634348,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,1.0,False,False,False,fr,,"[{'url': 'https://t.co/xwaspjSBDM', 'expanded_url': 'http://www.seetalabs.com', 'display_url': 'seetalabs.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1142010313782546437/1561111696,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +366,Sat Apr 10 16:28:23 +0000 2021,1380920606624002050,1380920606624002050,Je m'adresse aux auteurs de #SF et #hardsf #cyberpunk dont les écrits ont comme pivot l'#IA ou #AI (… https://t.co/4ScgwuofRJ,True,"Twitter Web App",,,,,,,,,,False,3,1,False,False,fr,"[{'text': 'SF', 'indices': [28, 31]}, {'text': 'hardsf', 'indices': [35, 42]}, {'text': 'cyberpunk', 'indices': [43, 53]}, {'text': 'IA', 'indices': [88, 91]}, {'text': 'AI', 'indices': [95, 98]}]",[],[],"[{'url': 'https://t.co/4ScgwuofRJ', 'expanded_url': 'https://twitter.com/i/web/status/1380920606624002050', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [102, 125]}]",fr,recent,932618057058521088,932618057058521088,Patrice de Fréminville (auteur),PFreminville,,"Nouvelles +Blog lecture + critiques, #SP, sciences et écriture +#anticipation #IA #SF #humanisme #sciences #technologie #SFFF #aipunk #auteur #imaginaire #fiction",https://t.co/RD15W6Kmi8,[],False,482,447,6,Mon Nov 20 14:34:06 +0000 2017,8744,,,False,False,2350,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,https://pbs.twimg.com/profile_images/1212307822635036673/_fzkFe99_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/RD15W6Kmi8', 'expanded_url': 'https://www.patricedefreminville.fr/', 'display_url': 'patricedefreminville.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/932618057058521088/1617634348,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +367,Sat Apr 10 15:31:30 +0000 2021,1380906293301493764,1380906293301493764,"RT @mdrechsler: Enseignez aux enfants le #machinelearning en créant un jeu d'yeux laser à commande vocale #Scratch +#IA #AI #IntelligenceAr…",False,"Twitter Web App",,,,,,,,,,True,22,0,False,False,fr,"[{'text': 'machinelearning', 'indices': [41, 57]}, {'text': 'Scratch', 'indices': [106, 114]}, {'text': 'IA', 'indices': [116, 119]}, {'text': 'AI', 'indices': [120, 123]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Thu Oct 01 17:26:48 +0000 2020,1.311719226164605e+18,1311719226164604928,"Enseignez aux enfants le #machinelearning en créant un jeu d'yeux laser à commande vocale #Scratch +#IA #AI… https://t.co/Wn0IWdXulz",True,"[{'text': 'machinelearning', 'indices': [25, 41]}, {'text': 'Scratch', 'indices': [90, 98]}, {'text': 'IA', 'indices': [100, 103]}, {'text': 'AI', 'indices': [104, 107]}]",[],[],"[{'url': 'https://t.co/Wn0IWdXulz', 'expanded_url': 'https://twitter.com/i/web/status/1311719226164604928', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [109, 132]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,22.0,15.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.2570969463150756e+18,1257096946315075584,1.2570969463150756e+18,1257096946315075584,Sun May 03 23:57:22 +0000 2020,1.2570969463150756e+18,1257096946315075584,"Teach kids about #machinelearning by making a voice-powered laser eyes game in #Scratch +Train a speech recognition… https://t.co/UsYZTknOsS",True,"[{'text': 'machinelearning', 'indices': [17, 33]}, {'text': 'Scratch', 'indices': [79, 87]}]",[],[],"[{'url': 'https://t.co/UsYZTknOsS', 'expanded_url': 'https://twitter.com/i/web/status/1257096946315075584', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.536362206976696e+17,853636220697669632,ML for Kids,MLforKids,UK,"Introducing kids to machine learning using Scratch, Python and App Inventor (account run by @dalelane)",https://t.co/VqmZtoag6S,"[{'url': 'https://t.co/VqmZtoag6S', 'expanded_url': 'http://machinelearningforkids.co.uk', 'display_url': 'machinelearningforkids.co.uk', 'indices': [0, 23]}]",[],False,2246.0,378.0,47.0,Sun Apr 16 15:48:29 +0000 2017,994.0,,,True,False,222.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,https://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,,ABB8C2,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,20.0,39.0,False,False,False,en,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +368,Sat Apr 10 15:31:19 +0000 2021,1380906243498332160,1380906243498332160,"RT @mdrechsler: Ajoutez de l'intelligence artificielle aux projets scolaires qui incluent des enquêtes, en formant un modèle prédictif à l'…",False,"Twitter Web App",,,,,,,,,,True,6,0,False,False,fr,[],[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Thu Oct 01 17:45:59 +0000 2020,1.3117240538336911e+18,1311724053833691136,"Ajoutez de l'intelligence artificielle aux projets scolaires qui incluent des enquêtes, en formant un modèle prédic… https://t.co/c3fUU3TqEB",True,[],[],[],"[{'url': 'https://t.co/c3fUU3TqEB', 'expanded_url': 'https://twitter.com/i/web/status/1311724053833691136', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,6.0,7.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.1869551359242158e+18,1186955135924215809,1.1869551359242158e+18,1186955135924215809,Wed Oct 23 10:38:51 +0000 2019,1.1869551359242158e+18,1186955135924215809,"Add some Artificial Intelligence to school projects that include surveys, by training a predictive model using the… https://t.co/ZoSbeSg9yM",True,[],[],[],"[{'url': 'https://t.co/ZoSbeSg9yM', 'expanded_url': 'https://twitter.com/i/web/status/1186955135924215809', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,8.536362206976696e+17,853636220697669632,ML for Kids,MLforKids,UK,"Introducing kids to machine learning using Scratch, Python and App Inventor (account run by @dalelane)",https://t.co/VqmZtoag6S,"[{'url': 'https://t.co/VqmZtoag6S', 'expanded_url': 'http://machinelearningforkids.co.uk', 'display_url': 'machinelearningforkids.co.uk', 'indices': [0, 23]}]",[],False,2246.0,378.0,47.0,Sun Apr 16 15:48:29 +0000 2017,994.0,,,True,False,222.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,https://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,,ABB8C2,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,10.0,22.0,False,False,False,en,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +369,Sat Apr 10 15:30:45 +0000 2021,1380906101764456455,1380906101764456455,RT @mdrechsler: Edsquare https://t.co/9PnM7DpCKF leçons débranchées gratuites sur #IA #AI #IntelligenceArtificielle #IAEduc #IAEdu dès le #…,False,"Twitter Web App",,,,,,,,,,False,9,0,False,False,fr,"[{'text': 'IA', 'indices': [82, 85]}, {'text': 'AI', 'indices': [86, 89]}, {'text': 'IntelligenceArtificielle', 'indices': [90, 115]}, {'text': 'IAEduc', 'indices': [116, 123]}, {'text': 'IAEdu', 'indices': [124, 130]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/9PnM7DpCKF', 'expanded_url': 'https://edsquare.co/learnai/', 'display_url': 'edsquare.co/learnai/', 'indices': [25, 48]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Wed Jan 06 11:54:57 +0000 2021,1.3467873345708442e+18,1346787334570844160,Edsquare https://t.co/9PnM7DpCKF leçons débranchées gratuites sur #IA #AI #IntelligenceArtificielle #IAEduc #IAEdu… https://t.co/oL7JyBaC5f,True,"[{'text': 'IA', 'indices': [66, 69]}, {'text': 'AI', 'indices': [70, 73]}, {'text': 'IntelligenceArtificielle', 'indices': [74, 99]}, {'text': 'IAEduc', 'indices': [100, 107]}, {'text': 'IAEdu', 'indices': [108, 114]}]",[],[],"[{'url': 'https://t.co/9PnM7DpCKF', 'expanded_url': 'https://edsquare.co/learnai/', 'display_url': 'edsquare.co/learnai/', 'indices': [9, 32]}, {'url': 'https://t.co/oL7JyBaC5f', 'expanded_url': 'https://twitter.com/i/web/status/1346787334570844160', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,9.0,7.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +370,Sat Apr 10 15:30:23 +0000 2021,1380906008277573633,1380906008277573633,"RT @mdrechsler: 5 façons dont l'éducation adopte l'intelligence artificielle. +#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu https://t.co…",False,"Twitter Web App",,,,,,,,,,True,5,0,False,False,fr,"[{'text': 'IA', 'indices': [78, 81]}, {'text': 'AI', 'indices': [82, 85]}, {'text': 'IntelligenceArtificielle', 'indices': [86, 111]}, {'text': 'IAEduc', 'indices': [112, 119]}, {'text': 'IAEdu', 'indices': [120, 126]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Sun Sep 20 12:01:49 +0000 2020,1.3076511740535767e+18,1307651174053576704,"5 façons dont l'éducation adopte l'intelligence artificielle. +#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu https://t.co/oNWK3mV2Ah",False,"[{'text': 'IA', 'indices': [62, 65]}, {'text': 'AI', 'indices': [66, 69]}, {'text': 'IntelligenceArtificielle', 'indices': [70, 95]}, {'text': 'IAEduc', 'indices': [96, 103]}, {'text': 'IAEdu', 'indices': [104, 110]}]",[],[],"[{'url': 'https://t.co/oNWK3mV2Ah', 'expanded_url': 'https://twitter.com/kuriharan/status/1307650715737874432', 'display_url': 'twitter.com/kuriharan/stat…', 'indices': [111, 134]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,5.0,3.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.3076507157378744e+18,1307650715737874432,1.3076507157378744e+18,1307650715737874432,Sun Sep 20 12:00:00 +0000 2020,1.3076507157378744e+18,1307650715737874432,Learn out. 5 Ways Education Is Adopting Artificial Intelligence https://t.co/59FkARmra5 via @cbinsights #tech… https://t.co/Uk41ys7Ss6,True,"[{'text': 'tech', 'indices': [104, 109]}]",[],"[{'screen_name': 'CBinsights', 'name': 'CB Insights', 'id': 110171914, 'id_str': '110171914', 'indices': [92, 103]}]","[{'url': 'https://t.co/59FkARmra5', 'expanded_url': 'https://www.cbinsights.com/research/education-artificial-intelligence/', 'display_url': 'cbinsights.com/research/educa…', 'indices': [64, 87]}, {'url': 'https://t.co/Uk41ys7Ss6', 'expanded_url': 'https://twitter.com/i/web/status/1307650715737874432', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [111, 134]}]",fr,recent,"TweetDeck",,,,,,135922295.0,135922295,Kohei Kurihara -DataPrivacy for Fighting Covid-19-,kuriharan,"Tokyo-to, Japan","Co-founder @pbdlab, develop data privacy culture and collaborative measures for future data society. Let’s make collaboration for sustainable society together!",https://t.co/r7lP3ReEuX,"[{'url': 'https://t.co/r7lP3ReEuX', 'expanded_url': 'https://jp.linkedin.com/in/kuriharan', 'display_url': 'jp.linkedin.com/in/kuriharan', 'indices': [0, 23]}]",[],False,53297.0,40786.0,2419.0,Thu Apr 22 15:09:22 +0000 2010,50453.0,,,True,False,272139.0,,False,False,False,131516,http://abs.twimg.com/images/themes/theme9/bg.gif,https://abs.twimg.com/images/themes/theme9/bg.gif,True,http://pbs.twimg.com/profile_images/1062357613289979909/NLvrLDsv_normal.jpg,https://pbs.twimg.com/profile_images/1062357613289979909/NLvrLDsv_normal.jpg,https://pbs.twimg.com/profile_banners/135922295/1610535186,040470,0E285C,8CC4DE,153C8A,True,True,False,False,False,False,False,none,,,,,False,9.0,7.0,False,False,False,en,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +371,Sat Apr 10 15:30:14 +0000 2021,1380905972424654852,1380905972424654852,RT @mdrechsler: Activités pour élèves de 6e année #MachineLearning et #IA #AI #IntelligenceArtificielle #IAEduc #IAEdu pour l'accès à l'éco…,False,"Twitter Web App",,,,,,,,,,True,8,0,False,False,fr,"[{'text': 'MachineLearning', 'indices': [50, 66]}, {'text': 'IA', 'indices': [70, 73]}, {'text': 'AI', 'indices': [74, 77]}, {'text': 'IntelligenceArtificielle', 'indices': [78, 103]}, {'text': 'IAEduc', 'indices': [104, 111]}, {'text': 'IAEdu', 'indices': [112, 118]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Sat Jan 16 07:03:29 +0000 2021,1.350337865792807e+18,1350337865792806912,Activités pour élèves de 6e année #MachineLearning et #IA #AI #IntelligenceArtificielle #IAEduc #IAEdu pour l'accès… https://t.co/XFoPjFopUC,True,"[{'text': 'MachineLearning', 'indices': [34, 50]}, {'text': 'IA', 'indices': [54, 57]}, {'text': 'AI', 'indices': [58, 61]}, {'text': 'IntelligenceArtificielle', 'indices': [62, 87]}, {'text': 'IAEduc', 'indices': [88, 95]}, {'text': 'IAEdu', 'indices': [96, 102]}]",[],[],"[{'url': 'https://t.co/XFoPjFopUC', 'expanded_url': 'https://twitter.com/i/web/status/1350337865792806912', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,8.0,9.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.35033711551155e+18,1350337115511549953,1.35033711551155e+18,1350337115511549953,Sat Jan 16 07:00:31 +0000 2021,1.35033711551155e+18,1350337115511549953,Year 6 Machine Learning & Artificial Intelligence Pupil Activity Pack for school/home access. Includes introduction… https://t.co/phKVcRdHC3,True,[],[],[],"[{'url': 'https://t.co/phKVcRdHC3', 'expanded_url': 'https://twitter.com/i/web/status/1350337115511549953', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [121, 144]}]",fr,recent,"The Social Jukebox",,,,,,200544613.0,200544613,iLearn2 - Primary Computing,iLearn2Primary,"Worcestershire, UK",Trusted primary computing scheme used in over 800 schools with 70+ pupil activity packs for school or home access. New content EVERY week. Made by teachers.,https://t.co/gwdVXUMsQW,"[{'url': 'https://t.co/gwdVXUMsQW', 'expanded_url': 'http://www.iLearn2.co.uk', 'display_url': 'iLearn2.co.uk', 'indices': [0, 23]}]",[],False,13981.0,9270.0,439.0,Sat Oct 09 15:43:04 +0000 2010,725.0,,,True,False,77145.0,,False,False,False,050505,http://abs.twimg.com/images/themes/theme14/bg.gif,https://abs.twimg.com/images/themes/theme14/bg.gif,True,http://pbs.twimg.com/profile_images/1210328738493280256/DAkogZRQ_normal.jpg,https://pbs.twimg.com/profile_images/1210328738493280256/DAkogZRQ_normal.jpg,https://pbs.twimg.com/profile_banners/200544613/1585760660,009999,EEEEEE,EFEFEF,333333,False,True,False,False,False,False,False,none,,,,,False,5.0,2.0,False,False,False,en,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +372,Sat Apr 10 15:30:07 +0000 2021,1380905942636716035,1380905942636716035,RT @mdrechsler: Apprendre - Quelle place pour l’#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu (Dossier MIT Lab) https://t.co/Co2jOxf7Le,False,"Twitter Web App",,,,,,,,,,False,7,0,False,False,fr,"[{'text': 'IA', 'indices': [48, 51]}, {'text': 'AI', 'indices': [52, 55]}, {'text': 'IntelligenceArtificielle', 'indices': [56, 81]}, {'text': 'IAEduc', 'indices': [82, 89]}, {'text': 'IAEdu', 'indices': [90, 96]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]","[{'url': 'https://t.co/Co2jOxf7Le', 'expanded_url': 'https://news.mit.edu/2021/learning-and-about-ai-technology-0125', 'display_url': 'news.mit.edu/2021/learning-…', 'indices': [115, 138]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Tue Jan 26 11:42:31 +0000 2021,1.3540319630369382e+18,1354031963036938241,Apprendre - Quelle place pour l’#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu (Dossier MIT Lab) https://t.co/Co2jOxf7Le,False,"[{'text': 'IA', 'indices': [32, 35]}, {'text': 'AI', 'indices': [36, 39]}, {'text': 'IntelligenceArtificielle', 'indices': [40, 65]}, {'text': 'IAEduc', 'indices': [66, 73]}, {'text': 'IAEdu', 'indices': [74, 80]}]",[],[],"[{'url': 'https://t.co/Co2jOxf7Le', 'expanded_url': 'https://news.mit.edu/2021/learning-and-about-ai-technology-0125', 'display_url': 'news.mit.edu/2021/learning-…', 'indices': [99, 122]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,7.0,9.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +373,Sat Apr 10 15:29:59 +0000 2021,1380905909614997505,1380905909614997505,"RT @mdrechsler: Enseignez aux enfants #machinelearning en créant un jeu de sémaphores à commande vocale #Scratch +#IA #AI #IntelligenceArti…",False,"Twitter Web App",,,,,,,,,,True,4,0,False,False,fr,"[{'text': 'machinelearning', 'indices': [38, 54]}, {'text': 'Scratch', 'indices': [104, 112]}, {'text': 'IA', 'indices': [114, 117]}, {'text': 'AI', 'indices': [118, 121]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Thu Oct 01 17:25:51 +0000 2020,1.3117189857093673e+18,1311718985709367296,"Enseignez aux enfants #machinelearning en créant un jeu de sémaphores à commande vocale #Scratch +#IA #AI… https://t.co/phWChRoYvF",True,"[{'text': 'machinelearning', 'indices': [22, 38]}, {'text': 'Scratch', 'indices': [88, 96]}, {'text': 'IA', 'indices': [98, 101]}, {'text': 'AI', 'indices': [102, 105]}]",[],[],"[{'url': 'https://t.co/phWChRoYvF', 'expanded_url': 'https://twitter.com/i/web/status/1311718985709367296', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [107, 130]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,True,4.0,6.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.2649235762657772e+18,1264923576265777152,1.2649235762657772e+18,1264923576265777152,Mon May 25 14:17:36 +0000 2020,1.2649235762657772e+18,1264923576265777152,"Teach kids about #machinelearning by making a voice-controlled semaphores game in #Scratch +Train a speech recogniti… https://t.co/KVjRi19mEw",True,"[{'text': 'machinelearning', 'indices': [17, 33]}, {'text': 'Scratch', 'indices': [82, 90]}]",[],[],"[{'url': 'https://t.co/KVjRi19mEw', 'expanded_url': 'https://twitter.com/i/web/status/1264923576265777152', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,8.536362206976696e+17,853636220697669632,ML for Kids,MLforKids,UK,"Introducing kids to machine learning using Scratch, Python and App Inventor (account run by @dalelane)",https://t.co/VqmZtoag6S,"[{'url': 'https://t.co/VqmZtoag6S', 'expanded_url': 'http://machinelearningforkids.co.uk', 'display_url': 'machinelearningforkids.co.uk', 'indices': [0, 23]}]",[],False,2246.0,378.0,47.0,Sun Apr 16 15:48:29 +0000 2017,994.0,,,True,False,222.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,https://pbs.twimg.com/profile_images/1067534004944027650/tmW3V0UC_normal.jpg,,ABB8C2,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,17.0,34.0,False,False,False,en,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +374,Sat Apr 10 15:29:52 +0000 2021,1380905882142306308,1380905882142306308,RT @mdrechsler: Conférence en ligne : Sciences cognitives et éducation avec Adaptiv’Math #IA #AI #IntelligenceArtificielle #IAEduc #IAEdu h…,False,"Twitter Web App",,,,,,,,,,False,10,0,False,False,fr,"[{'text': 'IA', 'indices': [89, 92]}, {'text': 'AI', 'indices': [93, 96]}, {'text': 'IntelligenceArtificielle', 'indices': [97, 122]}, {'text': 'IAEduc', 'indices': [123, 130]}, {'text': 'IAEdu', 'indices': [131, 137]}]",[],"[{'screen_name': 'mdrechsler', 'name': 'Michèle Drechsler', 'id': 17563531, 'id_str': '17563531', 'indices': [3, 14]}]",[],fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,Mon Dec 21 18:52:12 +0000 2020,1.3410941330044436e+18,1341094133004443649,Conférence en ligne : Sciences cognitives et éducation avec Adaptiv’Math #IA #AI #IntelligenceArtificielle #IAEduc… https://t.co/i4ewYgYrKB,True,"[{'text': 'IA', 'indices': [73, 76]}, {'text': 'AI', 'indices': [77, 80]}, {'text': 'IntelligenceArtificielle', 'indices': [81, 106]}, {'text': 'IAEduc', 'indices': [107, 114]}]",[],[],"[{'url': 'https://t.co/i4ewYgYrKB', 'expanded_url': 'https://twitter.com/i/web/status/1341094133004443649', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,"Twitter Web App",,,,,,17563531.0,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,,[],False,20850.0,21172.0,1907.0,Sat Nov 22 21:47:55 +0000 2008,199876.0,,,False,False,236057.0,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_banners/17563531/1398237804,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,False,10.0,9.0,False,False,False,fr,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +375,Sat Apr 10 15:09:37 +0000 2021,1380900784137723905,1380900784137723905,"L'IA révolutionne l'éducation - eCampus News +#IA #AI #IntelligenceArtificielle #IAEduc #IAEdu https://t.co/gpfsRr14vg",False,"Twitter Web App",,,,,,,,,,True,0,0,False,False,fr,"[{'text': 'IA', 'indices': [45, 48]}, {'text': 'AI', 'indices': [49, 52]}, {'text': 'IntelligenceArtificielle', 'indices': [53, 78]}, {'text': 'IAEduc', 'indices': [79, 86]}, {'text': 'IAEdu', 'indices': [87, 93]}]",[],[],"[{'url': 'https://t.co/gpfsRr14vg', 'expanded_url': 'https://twitter.com/marcyves/status/1380900135908081666', 'display_url': 'twitter.com/marcyves/statu…', 'indices': [94, 117]}]",fr,recent,17563531,17563531,Michèle Drechsler,mdrechsler,France,Compte perso - Docteur sciences info-com #pédagogie #innovation #formation #numérique #CoPs #recherche #EdTech #EcoleFutur #cadres #OrganisationApprenante #KM,,[],False,20850,21172,1907,Sat Nov 22 21:47:55 +0000 2008,199876,,,False,False,236057,,False,False,False,DBE9ED,http://abs.twimg.com/images/themes/theme17/bg.gif,https://abs.twimg.com/images/themes/theme17/bg.gif,False,http://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,https://pbs.twimg.com/profile_images/524658998239191040/wh1JED_6_normal.jpeg,CC3366,DBE9ED,E6F6F9,333333,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,,https://pbs.twimg.com/profile_banners/17563531/1398237804,1.3809001359080817e+18,1380900135908081666,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Sat Apr 10 15:07:02 +0000 2021,1.3809001359080817e+18,1380900135908081666,AI is revolutionizing education - eCampus News https://t.co/HxOu2Ug3Wc https://t.co/HNW2fELy0K,False,[],[],[],"[{'url': 'https://t.co/HxOu2Ug3Wc', 'expanded_url': 'https://buff.ly/3dLW9m8', 'display_url': 'buff.ly/3dLW9m8', 'indices': [47, 70]}]",fr,recent,"Buffer",,,,,,33008657.0,33008657,Marc Augier | Sherpa Numérique chez xDM Consulting,marcyves,Sophia Antipolis,Consultant https://t.co/ayeU3PjKsu Professeur https://t.co/brWZDfRXgn révolution numérique https://t.co/2AHeWxUelV… et https://t.co/o2CgFmXuys,https://t.co/H41xBKo5iB,"[{'url': 'https://t.co/H41xBKo5iB', 'expanded_url': 'http://www.xdm-consulting.fr/', 'display_url': 'xdm-consulting.fr', 'indices': [0, 23]}]","[{'url': 'https://t.co/ayeU3PjKsu', 'expanded_url': 'http://xdm-consulting.fr', 'display_url': 'xdm-consulting.fr', 'indices': [11, 34]}, {'url': 'https://t.co/brWZDfRXgn', 'expanded_url': 'http://bit.ly/xdm-cours', 'display_url': 'bit.ly/xdm-cours', 'indices': [47, 70]}, {'url': 'https://t.co/2AHeWxUelV', 'expanded_url': 'http://bit.ly/societe-numeri', 'display_url': 'bit.ly/societe-numeri', 'indices': [95, 118]}, {'url': 'https://t.co/o2CgFmXuys', 'expanded_url': 'http://bit.ly/xdmEDU', 'display_url': 'bit.ly/xdmEDU', 'indices': [123, 146]}]",False,1893.0,1923.0,194.0,Sat Apr 18 20:53:30 +0000 2009,19530.0,,,True,False,17935.0,,False,False,False,642D8B,http://abs.twimg.com/images/themes/theme10/bg.gif,https://abs.twimg.com/images/themes/theme10/bg.gif,False,http://pbs.twimg.com/profile_images/587907050090430464/LP0-IQzP_normal.jpg,https://pbs.twimg.com/profile_images/587907050090430464/LP0-IQzP_normal.jpg,5A41E8,65B0DA,7AC3EE,3D1957,False,False,False,False,False,False,False,none,,,,,False,0.0,1.0,False,False,False,en,https://pbs.twimg.com/profile_banners/33008657/1609768076,"[{'id': 1380900134641356800, 'id_str': '1380900134641356800', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/EynxWyuWUAAM4hZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/EynxWyuWUAAM4hZ.jpg', 'url': 'https://t.co/HNW2fELy0K', 'display_url': 'pic.twitter.com/HNW2fELy0K', 'expanded_url': 'https://twitter.com/marcyves/status/1380900135908081666/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 500, 'h': 333, 'resize': 'fit'}, 'medium': {'w': 500, 'h': 333, 'resize': 'fit'}, 'small': {'w': 500, 'h': 333, 'resize': 'fit'}}}]","[{'id': 1380900134641356800, 'id_str': '1380900134641356800', 'indices': [71, 94], 'media_url': 'http://pbs.twimg.com/media/EynxWyuWUAAM4hZ.jpg', 'media_url_https': 'https://pbs.twimg.com/media/EynxWyuWUAAM4hZ.jpg', 'url': 'https://t.co/HNW2fELy0K', 'display_url': 'pic.twitter.com/HNW2fELy0K', 'expanded_url': 'https://twitter.com/marcyves/status/1380900135908081666/photo/1', 'type': 'photo', 'sizes': {'thumb': {'w': 150, 'h': 150, 'resize': 'crop'}, 'large': {'w': 500, 'h': 333, 'resize': 'fit'}, 'medium': {'w': 500, 'h': 333, 'resize': 'fit'}, 'small': {'w': 500, 'h': 333, 'resize': 'fit'}}}]" +376,Sat Apr 10 15:00:01 +0000 2021,1380898366784110595,1380898366784110595,"#Egypte : @thalesgroup, le groupe français d'électronique spécialisé dans l'#aérospatiale, la #défense, la… https://t.co/WOCW7VlRqy",True,"TweetDeck",,,,,,,,,,False,0,1,False,False,fr,"[{'text': 'Egypte', 'indices': [0, 7]}, {'text': 'aérospatiale', 'indices': [76, 89]}, {'text': 'défense', 'indices': [94, 102]}]",[],"[{'screen_name': 'thalesgroup', 'name': 'Thales Group', 'id': 23314228, 'id_str': '23314228', 'indices': [10, 22]}]","[{'url': 'https://t.co/WOCW7VlRqy', 'expanded_url': 'https://twitter.com/i/web/status/1380898366784110595', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,3560045421,3560045421,ECOMNEWSMED,ecomnewsmed,,"L'actualité #économique, #politique et des #entreprises des pays de la #Méditerranée par @ecom_news. #UEMed @EcomnewsAfrique @EcomnewsMedia @ecom_news",https://t.co/bZMtusPUvf,[],False,63832,5032,476,Sat Sep 05 23:01:10 +0000 2015,4018,,,False,False,55658,,False,False,False,8B542B,http://abs.twimg.com/images/themes/theme8/bg.gif,https://abs.twimg.com/images/themes/theme8/bg.gif,False,http://pbs.twimg.com/profile_images/691778920472014849/fnYR7NjY_normal.jpg,https://pbs.twimg.com/profile_images/691778920472014849/fnYR7NjY_normal.jpg,3B94D9,000000,000000,000000,True,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/bZMtusPUvf', 'expanded_url': 'http://www.ecomnewsmed.com', 'display_url': 'ecomnewsmed.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3560045421/1559893532,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +377,Sat Apr 10 13:39:39 +0000 2021,1380878143746154502,1380878143746154502,"RT @ActuIAFr: Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI https://t.co/ozOnS…",False,"Twitter for iPhone",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'GirlsinAI', 'indices': [38, 48]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}, {'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [110, 120]}]",[],fr,recent,72294005,72294005,"Laurent Cervoni, Dr",LaurentCervoni,France,"#Numérique, #MOOC, #Design, #Conseil, #Formation, #IntelligenceArtificielle",https://t.co/67gnNAyXNs,[],False,410,426,39,Mon Sep 07 14:35:31 +0000 2009,211,,,True,False,2035,,False,False,False,BADFCD,http://abs.twimg.com/images/themes/theme12/bg.gif,https://abs.twimg.com/images/themes/theme12/bg.gif,False,http://pbs.twimg.com/profile_images/743748547615436803/ZSMZl1ZC_normal.jpg,https://pbs.twimg.com/profile_images/743748547615436803/ZSMZl1ZC_normal.jpg,FF0000,F2E195,FFF7CC,0C3E53,True,False,False,False,False,False,False,none,Sat Apr 10 12:35:18 +0000 2021,1.380861949907501e+18,1380861949907501064,"Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI… https://t.co/LDX7IK5l9f",True,"[{'text': 'GirlsinAI', 'indices': [24, 34]}]",[],"[{'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [96, 106]}]","[{'url': 'https://t.co/LDX7IK5l9f', 'expanded_url': 'https://twitter.com/i/web/status/1380861949907501064', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,,"[{'url': 'https://t.co/67gnNAyXNs', 'expanded_url': 'http://www.laurentcervoni.fr', 'display_url': 'laurentcervoni.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/72294005/1441357841,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +378,Sat Apr 10 13:00:01 +0000 2021,1380868168885866498,1380868168885866498,"Les bases erronées de l'intelligence artificielle + +#IA #intelligenceartificielle #scienceetavenir #science… https://t.co/xpXDuHC8Dz",True,"Rss2Twitter for La Forge",,,,,,,,,,False,2,3,False,False,fr,"[{'text': 'IA', 'indices': [51, 54]}, {'text': 'intelligenceartificielle', 'indices': [55, 80]}, {'text': 'scienceetavenir', 'indices': [81, 97]}, {'text': 'science', 'indices': [98, 106]}]",[],[],"[{'url': 'https://t.co/xpXDuHC8Dz', 'expanded_url': 'https://twitter.com/i/web/status/1380868168885866498', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,1150436914471866368,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,[],False,9932,491,127,Sun Jul 14 16:08:29 +0000 2019,22145,,,False,False,10500,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +379,Sat Apr 10 12:58:47 +0000 2021,1380867857744019458,1380867857744019458,"RT @ActuIAFr: Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI https://t.co/ozOnS…",False,"Twitter for iPhone",,,,,,,,,,False,3,0,False,False,fr,"[{'text': 'GirlsinAI', 'indices': [38, 48]}]",[],"[{'screen_name': 'ActuIAFr', 'name': 'Actu IA - Intelligence Artificielle', 'id': 852232832726556672, 'id_str': '852232832726556672', 'indices': [3, 12]}, {'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [110, 120]}]",[],fr,recent,3068007413,3068007413,Lionel Lesguer 📖 💻 🏰🖼,lesguer_lionel,"Angers, Pays de la Loire",#DroitsDesFemmes #EgaliteFH #HeForShe #inclusion / #Angers #Culture #Histoire #Chateau #Musée #Arts #theatre / #insatiablecurieux #tech4Good / #humour #i4emploi,https://t.co/kSrb5tnYHi,[],False,23090,25081,4317,Tue Mar 03 15:26:49 +0000 2015,135039,,,False,False,285154,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1383673492319596544/PMRuCek6_normal.jpg,https://pbs.twimg.com/profile_images/1383673492319596544/PMRuCek6_normal.jpg,3B94D9,000000,000000,000000,False,True,False,False,False,False,False,none,Sat Apr 10 12:35:18 +0000 2021,1.380861949907501e+18,1380861949907501064,"Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI… https://t.co/LDX7IK5l9f",True,"[{'text': 'GirlsinAI', 'indices': [24, 34]}]",[],"[{'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [96, 106]}]","[{'url': 'https://t.co/LDX7IK5l9f', 'expanded_url': 'https://twitter.com/i/web/status/1380861949907501064', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Twitter Web App",,,,,,8.522328327265567e+17,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",[],False,11902.0,8835.0,240.0,Wed Apr 12 18:51:55 +0000 2017,2464.0,,,False,False,5104.0,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,False,3.0,3.0,False,False,False,fr,,"[{'url': 'https://t.co/kSrb5tnYHi', 'expanded_url': 'https://www.linkedin.com/in/lionel-lesguer-van-beekum', 'display_url': 'linkedin.com/in/lionel-lesg…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3068007413/1615458200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +380,Sat Apr 10 12:58:09 +0000 2021,1380867698138169344,1380867698138169344,RT @jbonnel: Le panel « #Cinéma et #Entertainment de #demain » revient le 9 avril à 12h45 en after du #SXSW avec au programme #IA et #DataS…,False,"Twitter for Android",,,,,,,,,,False,15,0,False,False,fr,"[{'text': 'Cinéma', 'indices': [24, 31]}, {'text': 'Entertainment', 'indices': [35, 49]}, {'text': 'demain', 'indices': [53, 60]}, {'text': 'SXSW', 'indices': [102, 107]}, {'text': 'IA', 'indices': [126, 129]}]",[],"[{'screen_name': 'jbonnel', 'name': 'Julien Bonnel 🌱 🌍🌏🌎 ✨ @ #HM21', 'id': 14171812, 'id_str': '14171812', 'indices': [3, 11]}]",[],fr,recent,750337458898886660,750337458898886660,Sèlen,selene_vk,France,"j'ai les goûts les plus simples du monde , je me contente du meilleur : One cloud nine , yolo",,[],False,479,699,87,Tue Jul 05 14:36:05 +0000 2016,12069,,,False,False,17569,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1088871009032331264/wOMuF4sm_normal.jpg,https://pbs.twimg.com/profile_images/1088871009032331264/wOMuF4sm_normal.jpg,ABB8C2,000000,000000,000000,False,False,False,False,False,False,False,none,Tue Apr 06 06:44:58 +0000 2021,1.3793242337513554e+18,1379324233751355394,Le panel « #Cinéma et #Entertainment de #demain » revient le 9 avril à 12h45 en after du #SXSW avec au programme… https://t.co/mcWGR0ZLh8,True,"[{'text': 'Cinéma', 'indices': [11, 18]}, {'text': 'Entertainment', 'indices': [22, 36]}, {'text': 'demain', 'indices': [40, 47]}, {'text': 'SXSW', 'indices': [89, 94]}]",[],[],"[{'url': 'https://t.co/mcWGR0ZLh8', 'expanded_url': 'https://twitter.com/i/web/status/1379324233751355394', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [114, 137]}]",fr,recent,"Twitter Web App",,,,,,14171812.0,14171812,Julien Bonnel 🌱 🌍🌏🌎 ✨ @ #HM21,jbonnel,Sophia Antipolis 🇫🇷 🇪🇺 🌞,"#Innovation #Blockchain #Retail #IA #TechForGood +🌐 Coordonne @VFAzurMonaco 🚀 +#SophiaAntipolis #CotedAzurFrance +🔗 pro @Symag_by_BNPPPF @Pole_SCS @BNPParibas",https://t.co/n91t131OxN,"[{'url': 'https://t.co/n91t131OxN', 'expanded_url': 'https://www.linkedin.com/in/jbonnel/', 'display_url': 'linkedin.com/in/jbonnel/', 'indices': [0, 23]}]",[],False,23293.0,8404.0,1896.0,Tue Mar 18 19:16:55 +0000 2008,4699.0,,,True,False,54053.0,,False,False,False,DEEBFF,http://abs.twimg.com/images/themes/theme4/bg.gif,https://abs.twimg.com/images/themes/theme4/bg.gif,True,http://pbs.twimg.com/profile_images/1330110997479231495/B5z1V6NU_normal.jpg,https://pbs.twimg.com/profile_images/1330110997479231495/B5z1V6NU_normal.jpg,https://pbs.twimg.com/profile_banners/14171812/1577313641,3B94D9,FFFFFF,FF7100,030007,True,True,False,False,False,False,False,regular,,,,,False,15.0,18.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/750337458898886660/1543291898,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +381,Sat Apr 10 12:35:18 +0000 2021,1380861949907501064,1380861949907501064,"Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le thème de l’égalité des sexes +@TeensInAI… https://t.co/LDX7IK5l9f",True,"Twitter Web App",,,,,,,,,,False,3,3,False,False,fr,"[{'text': 'GirlsinAI', 'indices': [24, 34]}]",[],"[{'screen_name': 'TeensInAI', 'name': 'teensinai', 'id': 985918098921451521, 'id_str': '985918098921451521', 'indices': [96, 106]}]","[{'url': 'https://t.co/LDX7IK5l9f', 'expanded_url': 'https://twitter.com/i/web/status/1380861949907501064', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,852232832726556672,852232832726556672,Actu IA - Intelligence Artificielle,ActuIAFr,"Paris, France","Toute l'actualité de l' #IntelligenceArtificielle / +Première source d'info 🇫🇷 / Membre de l' #AI Alliance 🇪🇺 + #IA #machinelearning #DeepLearning #Transfonum",https://t.co/4PveaWvOFw,[],False,11902,8835,240,Wed Apr 12 18:51:55 +0000 2017,2464,,,False,False,5104,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,https://pbs.twimg.com/profile_images/884717468803108864/fTjexMTD_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/4PveaWvOFw', 'expanded_url': 'https://boutique.actuia.com/', 'display_url': 'boutique.actuia.com', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/852232832726556672/1613724818,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +382,Sat Apr 10 11:52:41 +0000 2021,1380851226003263490,1380851226003263490,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Suisse : Le Swiss Data Science Center va apporter son expertise à… https://t.co/ei5BK57764,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}]",[],[],"[{'url': 'https://t.co/ei5BK57764', 'expanded_url': 'https://twitter.com/i/web/status/1380851226003263490', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [116, 139]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +383,Sat Apr 10 11:49:07 +0000 2021,1380850325855350786,1380850325855350786,"RT @LaForge_AI: L’intelligence artificielle au cœur de la compétition sino-américaine + +#AI #IA #intelligenceartificielle #geopolitics +https…",False,"Twitter Web App",,,,,,,,,,False,1,0,False,False,fr,"[{'text': 'AI', 'indices': [87, 90]}, {'text': 'IA', 'indices': [91, 94]}, {'text': 'intelligenceartificielle', 'indices': [95, 120]}, {'text': 'geopolitics', 'indices': [121, 133]}]",[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,1126538509,1126538509,Cimelli,ClaudioCimelli,"Numeri'lab, DNE",Directeur de projet,http://t.co/R8OAsD8sjj,[],False,1470,989,108,Sun Jan 27 23:50:16 +0000 2013,3126,,,False,False,10183,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,True,http://pbs.twimg.com/profile_images/734850134316621825/NQDNfd5l_normal.jpg,https://pbs.twimg.com/profile_images/734850134316621825/NQDNfd5l_normal.jpg,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,Sat Apr 10 00:00:01 +0000 2021,1.3806718746492355e+18,1380671874649235458,"L’intelligence artificielle au cœur de la compétition sino-américaine + +#AI #IA #intelligenceartificielle… https://t.co/oxRg3diZMy",True,"[{'text': 'AI', 'indices': [71, 74]}, {'text': 'IA', 'indices': [75, 78]}, {'text': 'intelligenceartificielle', 'indices': [79, 104]}]",[],[],"[{'url': 'https://t.co/oxRg3diZMy', 'expanded_url': 'https://twitter.com/i/web/status/1380671874649235458', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [106, 129]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,1.0,3.0,False,False,False,fr,,"[{'url': 'http://t.co/R8OAsD8sjj', 'expanded_url': 'http://www.education.gouv.fr/pid29064/ecole-numerique.html', 'display_url': 'education.gouv.fr/pid29064/ecole…', 'indices': [0, 22]}]",https://pbs.twimg.com/profile_banners/1126538509/1367048766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +384,Sat Apr 10 11:21:06 +0000 2021,1380843274026557443,1380843274026557443,"RT @LaForge_AI: Retour sur le comité éthique sur l'intelligence artificielle de Pôle Emploi + +#IA #IntelligenceArtificielle #deeplearning #d…",False,"Twitter for Android",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'IA', 'indices': [93, 96]}, {'text': 'IntelligenceArtificielle', 'indices': [97, 122]}, {'text': 'deeplearning', 'indices': [123, 136]}]",[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,1147138494004899840,1147138494004899840,Thib.Fay,ThibFay,"Avignon, France","#INTJ / Padawan en e-Marketing & Stratégie digitale. +Chaque jour, acteur de la transition digitale. +#digitalworker #stratégiedigitale #transitiondigitale",https://t.co/qZsnaYrbo2,[],False,164,280,0,Fri Jul 05 13:41:44 +0000 2019,239,,,False,False,249,,False,False,False,F5F8FA,,,False,http://pbs.twimg.com/profile_images/1197200429505032192/6QcjqPKa_normal.jpg,https://pbs.twimg.com/profile_images/1197200429505032192/6QcjqPKa_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,True,True,False,False,False,False,none,Sat Apr 10 10:00:01 +0000 2021,1.3808228700797747e+18,1380822870079774721,"Retour sur le comité éthique sur l'intelligence artificielle de Pôle Emploi + +#IA #IntelligenceArtificielle… https://t.co/O7yM4y7qc4",True,"[{'text': 'IA', 'indices': [77, 80]}, {'text': 'IntelligenceArtificielle', 'indices': [81, 106]}]",[],[],"[{'url': 'https://t.co/O7yM4y7qc4', 'expanded_url': 'https://twitter.com/i/web/status/1380822870079774721', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,2.0,False,False,False,fr,,"[{'url': 'https://t.co/qZsnaYrbo2', 'expanded_url': 'https://www.linkedin.com/in/thibault-fayol/', 'display_url': 'linkedin.com/in/thibault-fa…', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1147138494004899840/1562334849,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +385,Sat Apr 10 11:03:50 +0000 2021,1380838932208836610,1380838932208836610,"RT @Inst_Lecanuet: Pour aller plus loin, retrouvez le n° 61 (avril 2016) de #FranceForum dédié aux questions du numérique et des sciences :…",False,"Twitter for iPhone",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'FranceForum', 'indices': [76, 88]}]",[],"[{'screen_name': 'Inst_Lecanuet', 'name': 'Institut Lecanuet', 'id': 2149075675, 'id_str': '2149075675', 'indices': [3, 17]}]",[],fr,recent,2365378849,2365378849,Yves Pozzo di Borgo,YvesPDB,Paris,Sénateur (2004-2017) Conseiller Paris7e (1998-2020) #COE #OSCE ex-IGAENR Administrateur Tour Eiffel (2001-2020) Directeur Revue France Forum Pr #instLecanuet,,[],False,31445,20929,466,Fri Feb 28 09:53:47 +0000 2014,235291,,,True,False,355645,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/999000836272340992/X07-Ibut_normal.jpg,https://pbs.twimg.com/profile_images/999000836272340992/X07-Ibut_normal.jpg,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,Mon Mar 29 13:54:08 +0000 2021,1.3765331350815375e+18,1376533135081537540,"Pour aller plus loin, retrouvez le n° 61 (avril 2016) de #FranceForum dédié aux questions du numérique et des scien… https://t.co/LnDrip2Z0g",True,"[{'text': 'FranceForum', 'indices': [57, 69]}]",[],[],"[{'url': 'https://t.co/LnDrip2Z0g', 'expanded_url': 'https://twitter.com/i/web/status/1376533135081537540', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,"Twitter Web App",,,,,,2149075675.0,2149075675,Institut Lecanuet,Inst_Lecanuet,Paris,"Compte officiel de l’institut Jean Lecanuet, présidé par @YvesPDB, et de la revue #FranceForum - « Un forum pour le monde » #international",https://t.co/tFPHpknnlD,"[{'url': 'https://t.co/tFPHpknnlD', 'expanded_url': 'http://www.institutjeanlecanuet.org', 'display_url': 'institutjeanlecanuet.org', 'indices': [0, 23]}]",[],False,2044.0,1968.0,89.0,Tue Oct 22 13:48:43 +0000 2013,473.0,,,True,False,8451.0,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/743446845460996098/b8-Q3RSf_normal.jpg,https://pbs.twimg.com/profile_images/743446845460996098/b8-Q3RSf_normal.jpg,https://pbs.twimg.com/profile_banners/2149075675/1559834383,0084B4,FFFFFF,DDEEF6,333333,True,False,False,False,False,False,False,none,,,,,False,2.0,4.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/2365378849/1527015276,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +386,Sat Apr 10 10:22:04 +0000 2021,1380828419521458176,1380828419521458176,🏖#DigitalWeekEnd [#IntelligenceArtificielle #IA] Retour sur le hackathon #GirlsinAI organisé par Teens in AI sur le… https://t.co/mIW7fOyNp5,True,"Sociallymap",,,,,,,,,,False,0,0,False,False,fr,"[{'text': 'DigitalWeekEnd', 'indices': [1, 16]}, {'text': 'IntelligenceArtificielle', 'indices': [18, 43]}, {'text': 'IA', 'indices': [44, 47]}, {'text': 'GirlsinAI', 'indices': [73, 83]}]",[],[],"[{'url': 'https://t.co/mIW7fOyNp5', 'expanded_url': 'https://twitter.com/i/web/status/1380828419521458176', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [117, 140]}]",fr,recent,3405442043,3405442043,✨Daily Digital,DailyDigital,"Paris, France",Fil d’information en continu sur la #TransfoNum par un collectif de consultants en #strategie #socialmedia #communication #veille #innovation Partenariat ➡️DM,https://t.co/KeGLm3TaoN,[],False,13819,4530,1694,Thu Aug 06 10:15:10 +0000 2015,3840,,,False,False,134692,,False,False,False,C0DEED,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,https://pbs.twimg.com/profile_images/639049581649657856/iCuA5mMv_normal.png,1DA1F2,C0DEED,DDEEF6,333333,True,False,True,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/KeGLm3TaoN', 'expanded_url': 'http://dailydigital.fr/', 'display_url': 'dailydigital.fr', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/3405442043/1585496890,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +387,Sat Apr 10 10:02:25 +0000 2021,1380823475477217282,1380823475477217282,"RT @LaForge_AI: Retour sur le comité éthique sur l'intelligence artificielle de Pôle Emploi + +#IA #IntelligenceArtificielle #deeplearning #d…",False,"Twitter for Android",,,,,,,,,,False,2,0,False,False,fr,"[{'text': 'IA', 'indices': [93, 96]}, {'text': 'IntelligenceArtificielle', 'indices': [97, 122]}, {'text': 'deeplearning', 'indices': [123, 136]}]",[],"[{'screen_name': 'LaForge_AI', 'name': 'La Forge AI', 'id': 1150436914471866368, 'id_str': '1150436914471866368', 'indices': [3, 14]}]",[],fr,recent,776383170572877824,776383170572877824,pierre ramette,PierreRamette,,,,[],False,244,422,419,Thu Sep 15 11:32:27 +0000 2016,25521,,,False,False,50802,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/776709360894574593/GHkTMxjt_normal.jpg,https://pbs.twimg.com/profile_images/776709360894574593/GHkTMxjt_normal.jpg,1B95E0,000000,000000,000000,False,False,False,False,False,False,False,none,Sat Apr 10 10:00:01 +0000 2021,1.3808228700797747e+18,1380822870079774721,"Retour sur le comité éthique sur l'intelligence artificielle de Pôle Emploi + +#IA #IntelligenceArtificielle… https://t.co/O7yM4y7qc4",True,"[{'text': 'IA', 'indices': [77, 80]}, {'text': 'IntelligenceArtificielle', 'indices': [81, 106]}]",[],[],"[{'url': 'https://t.co/O7yM4y7qc4', 'expanded_url': 'https://twitter.com/i/web/status/1380822870079774721', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,"Rss2Twitter for La Forge",,,,,,1.1504369144718664e+18,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",[],False,9932.0,491.0,127.0,Sun Jul 14 16:08:29 +0000 2019,22145.0,,,False,False,10500.0,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,False,2.0,2.0,False,False,False,fr,,,https://pbs.twimg.com/profile_banners/776383170572877824/1614448772,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +388,Sat Apr 10 10:00:01 +0000 2021,1380822870079774721,1380822870079774721,"Retour sur le comité éthique sur l'intelligence artificielle de Pôle Emploi + +#IA #IntelligenceArtificielle… https://t.co/O7yM4y7qc4",True,"Rss2Twitter for La Forge",,,,,,,,,,False,2,2,False,False,fr,"[{'text': 'IA', 'indices': [77, 80]}, {'text': 'IntelligenceArtificielle', 'indices': [81, 106]}]",[],[],"[{'url': 'https://t.co/O7yM4y7qc4', 'expanded_url': 'https://twitter.com/i/web/status/1380822870079774721', 'display_url': 'twitter.com/i/web/status/1…', 'indices': [108, 131]}]",fr,recent,1150436914471866368,1150436914471866368,La Forge AI,LaForge_AI,"Paris, France","L'#IntelligenceArtificielle pour démultiplier les savoir-faire 🚀 +Nous investissons dans les entreprises pour co-développer leur produit #IA",https://t.co/IqOwMUBYlG,[],False,9932,491,127,Sun Jul 14 16:08:29 +0000 2019,22145,,,False,False,10500,,False,False,False,000000,http://abs.twimg.com/images/themes/theme1/bg.png,https://abs.twimg.com/images/themes/theme1/bg.png,False,http://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,https://pbs.twimg.com/profile_images/1261961910020423681/fC-WUmbt_normal.jpg,777777,000000,000000,000000,False,False,False,False,False,False,False,none,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,False,"[{'url': 'https://t.co/IqOwMUBYlG', 'expanded_url': 'http://www.la-forge.ai', 'display_url': 'la-forge.ai', 'indices': [0, 23]}]",https://pbs.twimg.com/profile_banners/1150436914471866368/1589822564,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/twitter_network_mapping_degree.pdf b/twitter_network_mapping_degree.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c7ab5c9a89f7014e8ca08528a2d9e92b4030469a GIT binary patch literal 44451 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 K#wMpGkMloWG|7el literal 0 HcmV?d00001