{ "cells": [ { "cell_type": "markdown", "source": [ "# Crawling Twitter Data based on **Search Keyword** Using `tweet-harvest`\n", "Last updated by Helmi Satria (helmisatria.com) on September 22, 2023\n", "\n", "Note: **For educational purposes only**\n" ], "metadata": { "id": "lAE7WPkQINAz" } }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true, "id": "4UIL1x21P9rQ", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "457c9af5-4f63-48f4-9d25-b3cb1172f87b" }, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Requirement already satisfied: pandas in /usr/local/lib/python3.10/dist-packages (1.5.3)\n", "Requirement already satisfied: python-dateutil>=2.8.1 in /usr/local/lib/python3.10/dist-packages (from pandas) (2.8.2)\n", "Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas) (2023.3.post1)\n", "Requirement already satisfied: numpy>=1.21.0 in /usr/local/lib/python3.10/dist-packages (from pandas) (1.23.5)\n", "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.8.1->pandas) (1.16.0)\n", "Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB]\n", "Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease\n", "Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]\n", "Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB]\n", "Get:5 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ InRelease [3,626 B]\n", "Hit:6 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64 InRelease\n", "Hit:7 https://ppa.launchpadcontent.net/c2d4u.team/c2d4u4.0+/ubuntu jammy InRelease\n", "Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,260 kB]\n", "Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,283 kB]\n", "Hit:10 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy InRelease\n", "Hit:11 https://ppa.launchpadcontent.net/graphics-drivers/ppa/ubuntu jammy InRelease\n", "Hit:12 https://ppa.launchpadcontent.net/ubuntugis/ppa/ubuntu jammy InRelease\n", "Get:13 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [50.4 kB]\n", "Get:14 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.1 kB]\n", "Fetched 2,964 kB in 3s (919 kB/s)\n", "Reading package lists... Done\n", "Reading package lists... Done\n", "Building dependency tree... Done\n", "Reading state information... Done\n", "ca-certificates is already the newest version (20230311ubuntu0.22.04.1).\n", "curl is already the newest version (7.81.0-1ubuntu1.13).\n", "gnupg is already the newest version (2.2.27-3ubuntu2.1).\n", "gnupg set to manually installed.\n", "0 upgraded, 0 newly installed, 0 to remove and 18 not upgraded.\n", "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main\n", "Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease\n", "Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease\n", "Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease\n", "Hit:4 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ InRelease\n", "Hit:5 http://archive.ubuntu.com/ubuntu jammy-backports InRelease\n", "Get:6 https://deb.nodesource.com/node_20.x nodistro InRelease [12.1 kB]\n", "Hit:7 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64 InRelease\n", "Hit:8 https://ppa.launchpadcontent.net/c2d4u.team/c2d4u4.0+/ubuntu jammy InRelease\n", "Hit:9 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy InRelease\n", "Get:10 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages [2,729 B]\n", "Hit:11 https://ppa.launchpadcontent.net/graphics-drivers/ppa/ubuntu jammy InRelease\n", "Hit:12 https://ppa.launchpadcontent.net/ubuntugis/ppa/ubuntu jammy InRelease\n", "Fetched 14.9 kB in 1s (9,970 B/s)\n", "Reading package lists... Done\n", "Reading package lists... Done\n", "Building dependency tree... Done\n", "Reading state information... Done\n", "The following NEW packages will be installed:\n", " nodejs\n", "0 upgraded, 1 newly installed, 0 to remove and 18 not upgraded.\n", "Need to get 31.1 MB of archives.\n", "After this operation, 195 MB of additional disk space will be used.\n", "Get:1 https://deb.nodesource.com/node_20.x nodistro/main amd64 nodejs amd64 20.7.0-1nodesource1 [31.1 MB]\n", "Fetched 31.1 MB in 0s (66.0 MB/s)\n", "debconf: unable to initialize frontend: Dialog\n", "debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 78, <> line 1.)\n", "debconf: falling back to frontend: Readline\n", "debconf: unable to initialize frontend: Readline\n", "debconf: (This frontend requires a controlling tty.)\n", "debconf: falling back to frontend: Teletype\n", "dpkg-preconfigure: unable to re-open stdin: \n", "Selecting previously unselected package nodejs.\n", "(Reading database ... 120895 files and directories currently installed.)\n", "Preparing to unpack .../nodejs_20.7.0-1nodesource1_amd64.deb ...\n", "Unpacking nodejs (20.7.0-1nodesource1) ...\n", "Setting up nodejs (20.7.0-1nodesource1) ...\n", "Processing triggers for man-db (2.10.2-1) ...\n", "v20.7.0\n" ] } ], "source": [ "# Import required Python package\n", "!pip install pandas\n", "\n", "# Install Node.js (because tweet-harvest built using Node.js)\n", "!sudo apt-get update\n", "!sudo apt-get install -y ca-certificates curl gnupg\n", "!sudo mkdir -p /etc/apt/keyrings\n", "!curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg\n", "\n", "!NODE_MAJOR=20 && echo \"deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main\" | sudo tee /etc/apt/sources.list.d/nodesource.list\n", "\n", "!sudo apt-get update\n", "!sudo apt-get install nodejs -y\n", "\n", "!node -v" ] }, { "cell_type": "code", "source": [ "# Crawl Data\n", "\n", "filename = 'ikn-masyarakat.csv'\n", "search_keyword = 'masyarakat ikn until:2023-09-23 since:2023-05-01'\n", "limit = 200\n", "\n", "!npx --yes tweet-harvest@latest -o \"{filename}\" -s \"{search_keyword}\" -l {limit} --token \"\"" ], "metadata": { "id": "LYDR51dJlVlX", "outputId": "33be19a6-a4c6-4635-f7fb-6b45b8684153", "colab": { "base_uri": "https://localhost:8080/" } }, "execution_count": 2, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "\u001b[K\u001b[?25h\u001b[1m\u001b[22m\n", "\u001b[1mWelcome to the Twitter Crawler 🕷️\u001b[22m\n", "\u001b[1m\u001b[22m\n", "This script uses Chromium Browser to crawl data from Twitter with *your* Twitter auth token.\n", "Please enter your Twitter auth token when prompted.\n", "\n", "Note: Keep your access token secret! Don't share it with anyone else.\n", "Note: This script only runs on your local device.\n", "\n", "\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m \u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ****\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *****\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ******\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *******\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ********\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *********\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **********\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***********\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ****************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *****************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ******************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *******************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ********************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *********************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **********************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***********************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ****************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *****************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ******************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *******************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ********************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *********************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **********************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***********************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ************************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m *************************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m **************************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ***************************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[36m?\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m›\u001b[39m ****************************************\u001b7\u001b8\u001b[2K\u001b[1G\u001b[2K\u001b[1G\u001b[32m✔\u001b[39m \u001b[1mWhat's your Twitter auth token?\u001b[22m \u001b[90m…\u001b[39m ****************************************\u001b7\u001b8\n", "\u001b[K\u001b[?25h\n", "added 3 packages in 975ms\n", "Installing dependencies...\n", "Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease\n", "Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease\n", "Hit:3 https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/ InRelease\n", "Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease\n", "Hit:5 https://deb.nodesource.com/node_20.x nodistro InRelease\n", "Hit:6 https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64 InRelease\n", "Hit:7 http://security.ubuntu.com/ubuntu jammy-security InRelease\n", "Hit:8 https://ppa.launchpadcontent.net/c2d4u.team/c2d4u4.0+/ubuntu jammy InRelease\n", "Hit:9 https://ppa.launchpadcontent.net/deadsnakes/ppa/ubuntu jammy InRelease\n", "Hit:10 https://ppa.launchpadcontent.net/graphics-drivers/ppa/ubuntu jammy InRelease\n", "Hit:11 https://ppa.launchpadcontent.net/ubuntugis/ppa/ubuntu jammy InRelease\n", "Reading package lists... Done\n", "Reading package lists... Done\n", "Building dependency tree... Done\n", "Reading state information... Done\n", "fonts-liberation is already the newest version (1:1.07.4-11).\n", "libasound2 is already the newest version (1.2.6.1-1ubuntu1).\n", "libasound2 set to manually installed.\n", "libatk-bridge2.0-0 is already the newest version (2.38.0-3).\n", "libatk-bridge2.0-0 set to manually installed.\n", "libatk1.0-0 is already the newest version (2.36.0-3build1).\n", "libatk1.0-0 set to manually installed.\n", "libatspi2.0-0 is already the newest version (2.44.0-3).\n", "libatspi2.0-0 set to manually installed.\n", "libcairo2 is already the newest version (1.16.0-5ubuntu2).\n", "libcairo2 set to manually installed.\n", "libfontconfig1 is already the newest version (2.13.1-4.2ubuntu5).\n", "libfontconfig1 set to manually installed.\n", "libnspr4 is already the newest version (2:4.32-3build1).\n", "libnspr4 set to manually installed.\n", "libxcb1 is already the newest version (1.14-3ubuntu3).\n", "libxcb1 set to manually installed.\n", "libxcomposite1 is already the newest version (1:0.4.5-1build2).\n", "libxcomposite1 set to manually installed.\n", "libxdamage1 is already the newest version (1:1.1.5-2build2).\n", "libxdamage1 set to manually installed.\n", "libxext6 is already the newest version (2:1.3.4-1build1).\n", "libxfixes3 is already the newest version (1:6.0.0-1).\n", "libxfixes3 set to manually installed.\n", "libxkbcommon0 is already the newest version (1.4.0-1).\n", "libxkbcommon0 set to manually installed.\n", "libxrandr2 is already the newest version (2:1.5.2-1build1).\n", "libxrandr2 set to manually installed.\n", "libcups2 is already the newest version (2.4.1op1-1ubuntu4.7).\n", "libcups2 set to manually installed.\n", "libdbus-1-3 is already the newest version (1.12.20-2ubuntu4.1).\n", "libdbus-1-3 set to manually installed.\n", "libdrm2 is already the newest version (2.4.113-2~ubuntu0.22.04.1).\n", "libdrm2 set to manually installed.\n", "libfreetype6 is already the newest version (2.11.1+dfsg-1ubuntu0.2).\n", "libfreetype6 set to manually installed.\n", "libgbm1 is already the newest version (23.0.4-0ubuntu1~22.04.1).\n", "libgbm1 set to manually installed.\n", "libglib2.0-0 is already the newest version (2.72.4-0ubuntu2.2).\n", "libglib2.0-0 set to manually installed.\n", "libnss3 is already the newest version (2:3.68.2-0ubuntu1.2).\n", "libnss3 set to manually installed.\n", "libpango-1.0-0 is already the newest version (1.50.6+ds-2ubuntu1).\n", "libpango-1.0-0 set to manually installed.\n", "libwayland-client0 is already the newest version (1.20.0-1ubuntu0.1).\n", "libwayland-client0 set to manually installed.\n", "libx11-6 is already the newest version (2:1.7.5-1ubuntu0.2).\n", "libx11-6 set to manually installed.\n", "The following additional packages will be installed:\n", " libfontenc1 libxfont2 libxkbfile1 x11-xkb-utils xfonts-encodings\n", " xfonts-utils xserver-common\n", "Recommended packages:\n", " fonts-ipafont-mincho fonts-tlwg-loma xfonts-base\n", "The following NEW packages will be installed:\n", " fonts-freefont-ttf fonts-ipafont-gothic fonts-noto-color-emoji\n", " fonts-tlwg-loma-otf fonts-unifont fonts-wqy-zenhei libfontenc1 libxfont2\n", " libxkbfile1 x11-xkb-utils xfonts-cyrillic xfonts-encodings xfonts-scalable\n", " xfonts-utils xserver-common xvfb\n", "0 upgraded, 16 newly installed, 0 to remove and 18 not upgraded.\n", "Need to get 29.4 MB of archives.\n", "After this operation, 71.1 MB of additional disk space will be used.\n", "Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3,513 kB]\n", "Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-freefont-ttf all 20120503-10build1 [2,388 kB]\n", "Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 fonts-noto-color-emoji all 2.038-0ubuntu1 [9,755 kB]\n", "Get:4 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]\n", "Get:5 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-unifont all 1:14.0.01-1 [3,551 kB]\n", "Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7,472 kB]\n", "Get:7 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontenc1 amd64 1:1.1.4-1build3 [14.7 kB]\n", "Get:8 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxfont2 amd64 1:2.0.5-1build1 [94.5 kB]\n", "Get:9 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxkbfile1 amd64 1:1.1.0-1build3 [71.8 kB]\n", "Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 x11-xkb-utils amd64 7.7+5build4 [172 kB]\n", "Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]\n", "Get:12 http://archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-utils amd64 1:7.7+6build2 [94.6 kB]\n", "Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 xfonts-cyrillic all 1:1.0.5 [386 kB]\n", "Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-scalable all 1:1.0.3-1.2ubuntu1 [306 kB]\n", "Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 xserver-common all 2:21.1.4-2ubuntu1.7~22.04.1 [28.0 kB]\n", "Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 xvfb amd64 2:21.1.4-2ubuntu1.7~22.04.1 [863 kB]\n", "Fetched 29.4 MB in 1s (41.7 MB/s)\n", "Selecting previously unselected package fonts-ipafont-gothic.\n", "(Reading database ... 126717 files and directories currently installed.)\n", "Preparing to unpack .../00-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...\n", "Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...\n", "Selecting previously unselected package fonts-freefont-ttf.\n", "Preparing to unpack .../01-fonts-freefont-ttf_20120503-10build1_all.deb ...\n", "Unpacking fonts-freefont-ttf (20120503-10build1) ...\n", "Selecting previously unselected package fonts-noto-color-emoji.\n", "Preparing to unpack .../02-fonts-noto-color-emoji_2.038-0ubuntu1_all.deb ...\n", "Unpacking fonts-noto-color-emoji (2.038-0ubuntu1) ...\n", "Selecting previously unselected package fonts-tlwg-loma-otf.\n", "Preparing to unpack .../03-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...\n", "Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...\n", "Selecting previously unselected package fonts-unifont.\n", "Preparing to unpack .../04-fonts-unifont_1%3a14.0.01-1_all.deb ...\n", "Unpacking fonts-unifont (1:14.0.01-1) ...\n", "Selecting previously unselected package fonts-wqy-zenhei.\n", "Preparing to unpack .../05-fonts-wqy-zenhei_0.9.45-8_all.deb ...\n", "Unpacking fonts-wqy-zenhei (0.9.45-8) ...\n", "Selecting previously unselected package libfontenc1:amd64.\n", "Preparing to unpack .../06-libfontenc1_1%3a1.1.4-1build3_amd64.deb ...\n", "Unpacking libfontenc1:amd64 (1:1.1.4-1build3) ...\n", "Selecting previously unselected package libxfont2:amd64.\n", "Preparing to unpack .../07-libxfont2_1%3a2.0.5-1build1_amd64.deb ...\n", "Unpacking libxfont2:amd64 (1:2.0.5-1build1) ...\n", "Selecting previously unselected package libxkbfile1:amd64.\n", "Preparing to unpack .../08-libxkbfile1_1%3a1.1.0-1build3_amd64.deb ...\n", "Unpacking libxkbfile1:amd64 (1:1.1.0-1build3) ...\n", "Selecting previously unselected package x11-xkb-utils.\n", "Preparing to unpack .../09-x11-xkb-utils_7.7+5build4_amd64.deb ...\n", "Unpacking x11-xkb-utils (7.7+5build4) ...\n", "Selecting previously unselected package xfonts-encodings.\n", "Preparing to unpack .../10-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...\n", "Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...\n", "Selecting previously unselected package xfonts-utils.\n", "Preparing to unpack .../11-xfonts-utils_1%3a7.7+6build2_amd64.deb ...\n", "Unpacking xfonts-utils (1:7.7+6build2) ...\n", "Selecting previously unselected package xfonts-cyrillic.\n", "Preparing to unpack .../12-xfonts-cyrillic_1%3a1.0.5_all.deb ...\n", "Unpacking xfonts-cyrillic (1:1.0.5) ...\n", "Selecting previously unselected package xfonts-scalable.\n", "Preparing to unpack .../13-xfonts-scalable_1%3a1.0.3-1.2ubuntu1_all.deb ...\n", "Unpacking xfonts-scalable (1:1.0.3-1.2ubuntu1) ...\n", "Selecting previously unselected package xserver-common.\n", "Preparing to unpack .../14-xserver-common_2%3a21.1.4-2ubuntu1.7~22.04.1_all.deb ...\n", "Unpacking xserver-common (2:21.1.4-2ubuntu1.7~22.04.1) ...\n", "Selecting previously unselected package xvfb.\n", "Preparing to unpack .../15-xvfb_2%3a21.1.4-2ubuntu1.7~22.04.1_amd64.deb ...\n", "Unpacking xvfb (2:21.1.4-2ubuntu1.7~22.04.1) ...\n", "Setting up fonts-noto-color-emoji (2.038-0ubuntu1) ...\n", "Setting up fonts-wqy-zenhei (0.9.45-8) ...\n", "Setting up fonts-freefont-ttf (20120503-10build1) ...\n", "Setting up libfontenc1:amd64 (1:1.1.4-1build3) ...\n", "Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...\n", "Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...\n", "Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...\n", "update-alternatives: using /usr/share/fonts/opentype/ipafont-gothic/ipag.ttf to provide /usr/share/fonts/truetype/fonts-japanese-gothic.ttf (fonts-japanese-gothic.ttf) in auto mode\n", "Setting up libxkbfile1:amd64 (1:1.1.0-1build3) ...\n", "Setting up libxfont2:amd64 (1:2.0.5-1build1) ...\n", "Setting up fonts-unifont (1:14.0.01-1) ...\n", "Setting up x11-xkb-utils (7.7+5build4) ...\n", "Setting up xfonts-utils (1:7.7+6build2) ...\n", "Setting up xfonts-cyrillic (1:1.0.5) ...\n", "Setting up xserver-common (2:21.1.4-2ubuntu1.7~22.04.1) ...\n", "Setting up xfonts-scalable (1:1.0.3-1.2ubuntu1) ...\n", "Setting up xvfb (2:21.1.4-2ubuntu1.7~22.04.1) ...\n", "Processing triggers for man-db (2.10.2-1) ...\n", "Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ...\n", "Processing triggers for libc-bin (2.35-0ubuntu3.1) ...\n", "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n", "\n", "/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n", "\n", "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n", "\n", "/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n", "\n", "/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n", "\n", "/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n", "\n", "Downloading Chromium 117.0.5938.62 (playwright build v1080)\u001b[2m from https://playwright.azureedge.net/builds/chromium/1080/chromium-linux.zip\u001b[22m\n", "\u001b[1G153.1 Mb [] 0% 0.0s\u001b[0K\u001b[1G153.1 Mb [] 0% 6.0s\u001b[0K\u001b[1G153.1 Mb [] 0% 5.0s\u001b[0K\u001b[1G153.1 Mb [] 1% 3.7s\u001b[0K\u001b[1G153.1 Mb [] 2% 3.6s\u001b[0K\u001b[1G153.1 Mb [] 2% 3.4s\u001b[0K\u001b[1G153.1 Mb [] 2% 3.7s\u001b[0K\u001b[1G153.1 Mb [] 3% 3.7s\u001b[0K\u001b[1G153.1 Mb [] 4% 3.3s\u001b[0K\u001b[1G153.1 Mb [] 4% 3.2s\u001b[0K\u001b[1G153.1 Mb [] 5% 3.4s\u001b[0K\u001b[1G153.1 Mb [] 6% 3.1s\u001b[0K\u001b[1G153.1 Mb [] 7% 3.0s\u001b[0K\u001b[1G153.1 Mb [] 7% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 8% 3.0s\u001b[0K\u001b[1G153.1 Mb [] 8% 3.1s\u001b[0K\u001b[1G153.1 Mb [] 9% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 9% 3.0s\u001b[0K\u001b[1G153.1 Mb [] 10% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 11% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 12% 2.8s\u001b[0K\u001b[1G153.1 Mb [] 12% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 13% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 14% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 15% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 15% 3.0s\u001b[0K\u001b[1G153.1 Mb [] 16% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 17% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 18% 2.9s\u001b[0K\u001b[1G153.1 Mb [] 19% 2.7s\u001b[0K\u001b[1G153.1 Mb [] 20% 2.7s\u001b[0K\u001b[1G153.1 Mb [] 21% 2.6s\u001b[0K\u001b[1G153.1 Mb [] 22% 2.6s\u001b[0K\u001b[1G153.1 Mb [] 23% 2.4s\u001b[0K\u001b[1G153.1 Mb [] 24% 2.4s\u001b[0K\u001b[1G153.1 Mb [] 25% 2.3s\u001b[0K\u001b[1G153.1 Mb [] 26% 2.3s\u001b[0K\u001b[1G153.1 Mb [] 26% 2.2s\u001b[0K\u001b[1G153.1 Mb [] 28% 2.2s\u001b[0K\u001b[1G153.1 Mb [] 28% 2.1s\u001b[0K\u001b[1G153.1 Mb [] 29% 2.1s\u001b[0K\u001b[1G153.1 Mb [] 30% 2.1s\u001b[0K\u001b[1G153.1 Mb [] 30% 2.0s\u001b[0K\u001b[1G153.1 Mb [] 32% 1.9s\u001b[0K\u001b[1G153.1 Mb [] 34% 1.8s\u001b[0K\u001b[1G153.1 Mb [] 35% 1.8s\u001b[0K\u001b[1G153.1 Mb [] 36% 1.7s\u001b[0K\u001b[1G153.1 Mb [] 37% 1.7s\u001b[0K\u001b[1G153.1 Mb [] 38% 1.6s\u001b[0K\u001b[1G153.1 Mb [] 39% 1.6s\u001b[0K\u001b[1G153.1 Mb [] 40% 1.5s\u001b[0K\u001b[1G153.1 Mb [] 41% 1.5s\u001b[0K\u001b[1G153.1 Mb [] 42% 1.5s\u001b[0K\u001b[1G153.1 Mb [] 43% 1.4s\u001b[0K\u001b[1G153.1 Mb [] 44% 1.4s\u001b[0K\u001b[1G153.1 Mb [] 46% 1.3s\u001b[0K\u001b[1G153.1 Mb [] 47% 1.3s\u001b[0K\u001b[1G153.1 Mb [] 48% 1.2s\u001b[0K\u001b[1G153.1 Mb [] 49% 1.2s\u001b[0K\u001b[1G153.1 Mb [] 50% 1.2s\u001b[0K\u001b[1G153.1 Mb [] 51% 1.1s\u001b[0K\u001b[1G153.1 Mb [] 53% 1.1s\u001b[0K\u001b[1G153.1 Mb [] 54% 1.0s\u001b[0K\u001b[1G153.1 Mb [] 56% 1.0s\u001b[0K\u001b[1G153.1 Mb [] 57% 1.0s\u001b[0K\u001b[1G153.1 Mb [] 58% 0.9s\u001b[0K\u001b[1G153.1 Mb [] 59% 0.9s\u001b[0K\u001b[1G153.1 Mb [] 61% 0.9s\u001b[0K\u001b[1G153.1 Mb [] 62% 0.8s\u001b[0K\u001b[1G153.1 Mb [] 63% 0.8s\u001b[0K\u001b[1G153.1 Mb [] 64% 0.8s\u001b[0K\u001b[1G153.1 Mb [] 65% 0.7s\u001b[0K\u001b[1G153.1 Mb [] 67% 0.7s\u001b[0K\u001b[1G153.1 Mb [] 68% 0.7s\u001b[0K\u001b[1G153.1 Mb [] 69% 0.7s\u001b[0K\u001b[1G153.1 Mb [] 70% 0.6s\u001b[0K\u001b[1G153.1 Mb [] 71% 0.6s\u001b[0K\u001b[1G153.1 Mb [] 72% 0.6s\u001b[0K\u001b[1G153.1 Mb [] 73% 0.6s\u001b[0K\u001b[1G153.1 Mb [] 74% 0.6s\u001b[0K\u001b[1G153.1 Mb [] 75% 0.6s\u001b[0K\u001b[1G153.1 Mb [] 76% 0.5s\u001b[0K\u001b[1G153.1 Mb [] 77% 0.5s\u001b[0K\u001b[1G153.1 Mb [] 78% 0.5s\u001b[0K\u001b[1G153.1 Mb [] 79% 0.5s\u001b[0K\u001b[1G153.1 Mb [] 80% 0.4s\u001b[0K\u001b[1G153.1 Mb [] 81% 0.4s\u001b[0K\u001b[1G153.1 Mb [] 82% 0.4s\u001b[0K\u001b[1G153.1 Mb [] 83% 0.4s\u001b[0K\u001b[1G153.1 Mb [] 84% 0.4s\u001b[0K\u001b[1G153.1 Mb [] 85% 0.3s\u001b[0K\u001b[1G153.1 Mb [] 86% 0.3s\u001b[0K\u001b[1G153.1 Mb [] 87% 0.3s\u001b[0K\u001b[1G153.1 Mb [] 88% 0.3s\u001b[0K\u001b[1G153.1 Mb [] 89% 0.2s\u001b[0K\u001b[1G153.1 Mb [] 90% 0.2s\u001b[0K\u001b[1G153.1 Mb [] 91% 0.2s\u001b[0K\u001b[1G153.1 Mb [] 92% 0.2s\u001b[0K\u001b[1G153.1 Mb [] 93% 0.1s\u001b[0K\u001b[1G153.1 Mb [] 94% 0.1s\u001b[0K\u001b[1G153.1 Mb [] 96% 0.1s\u001b[0K\u001b[1G153.1 Mb [] 97% 0.1s\u001b[0K\u001b[1G153.1 Mb [] 98% 0.0s\u001b[0K\u001b[1G153.1 Mb [] 99% 0.0s\u001b[0K\u001b[1G153.1 Mb [] 100% 0.0s\u001b[0K\n", "Chromium 117.0.5938.62 (playwright build v1080) downloaded to /root/.cache/ms-playwright/chromium-1080\n", "Downloading FFMPEG playwright build v1009\u001b[2m from https://playwright.azureedge.net/builds/ffmpeg/1009/ffmpeg-linux.zip\u001b[22m\n", "\u001b[1G2.6 Mb [] 0% 0.0s\u001b[0K\u001b[1G2.6 Mb [] 8% 0.2s\u001b[0K\u001b[1G2.6 Mb [] 30% 0.1s\u001b[0K\u001b[1G2.6 Mb [] 43% 0.1s\u001b[0K\u001b[1G2.6 Mb [] 65% 0.0s\u001b[0K\u001b[1G2.6 Mb [] 85% 0.0s\u001b[0K\u001b[1G2.6 Mb [] 100% 0.0s\u001b[0K\n", "FFMPEG playwright build v1009 downloaded to /root/.cache/ms-playwright/ffmpeg-1009\n", "\u001b[34m\u001b[39m\n", "\u001b[34mOpening twitter search page...\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[90mScrolling more...\u001b[39m\n", "\u001b[33m\u001b[39m\n", "\u001b[33mFilling in keywords: masyarakat ikn until:2023-09-23 since:2023-05-01\u001b[39m\n", "\u001b[33m\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 18\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 35\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 45\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 54\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 55\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[90mScrolling more...\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 72\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 81\u001b[39m\n", "\u001b[90mScrolling more...\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 92\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 112\u001b[39m\n", "\u001b[90m\u001b[39m\n", "\u001b[90m--Taking a break, waiting for 10 seconds...\u001b[39m\n", "\u001b[90mScrolling more...\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 124\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 139\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 149\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 161\u001b[39m\n", "\u001b[90mScrolling more...\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 171\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 181\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 182\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 192\u001b[39m\n", "\u001b[34m\u001b[39m\n", "\u001b[34mGot some tweets, saving to file...\u001b[39m\n", "\u001b[34mYour tweets saved to: /content/tweets-data/ikn-masyarakat.csv\u001b[39m\n", "\u001b[33mTotal tweets saved: 200\u001b[39m\n", "Already got 200 tweets, done scrolling...\n" ] } ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": true, "id": "HvAG3hPvQDqk", "colab": { "base_uri": "https://localhost:8080/", "height": 999 }, "outputId": "ccb0d6f4-b59e-4c36-c2b4-a5ad8ac6e29d" }, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ " created_at id_str \\\n", "0 Fri Sep 22 23:33:59 +0000 2023 1705364853005902019 \n", "1 Fri Sep 22 22:46:33 +0000 2023 1705352915320549774 \n", "2 Fri Sep 22 20:47:06 +0000 2023 1705322852483043820 \n", "3 Fri Sep 22 20:05:35 +0000 2023 1705312405465833775 \n", "4 Fri Sep 22 18:01:58 +0000 2023 1705281298695332182 \n", ".. ... ... \n", "195 Wed Sep 13 03:24:04 +0000 2023 1701798874417946974 \n", "196 Wed Sep 13 03:23:03 +0000 2023 1701798621765648406 \n", "197 Wed Sep 13 03:20:06 +0000 2023 1701797879201800315 \n", "198 Wed Sep 13 02:42:58 +0000 2023 1701788533290303786 \n", "199 Wed Sep 13 02:15:34 +0000 2023 1701781637913247878 \n", "\n", " full_text quote_count \\\n", "0 Keseruan Bapak @erickthohir di IKN bersama Bap... 0 \n", "1 Presiden turut berharap kehadiran RS Abdi Walu... 0 \n", "2 @KompasTV Merdu kan bu? Nah, rumahnya yg di p... 0 \n", "3 @KompasTV Kalau yang ngomong dari tahun 2012 s... 0 \n", "4 Hadiri Malam Apresiasi Nusantara, Presiden: Te... 0 \n", ".. ... ... \n", "195 IKN wujud Semangat masyarakat indonesia untuk ... 0 \n", "196 Masyarakat Sambut Pembangunan IKN Nusantara #K... 0 \n", "197 Masyarakat Kaltim Dukung Pembangunan IKN Nusan... 0 \n", "198 @KotaNusantara @erzavindaf @IgoMagaz @Hansunri... 0 \n", "199 @KotaNusantara @erzavindaf @IgoMagaz @Hansunri... 0 \n", "\n", " reply_count retweet_count favorite_count lang user_id_str \\\n", "0 0 0 0 in 713562482 \n", "1 0 0 0 in 256888577 \n", "2 0 0 0 in 1538272718323232768 \n", "3 0 0 0 in 1338292963810557954 \n", "4 0 0 0 in 1510857676435374085 \n", ".. ... ... ... ... ... \n", "195 0 0 0 in 1564445082866323456 \n", "196 0 0 0 in 1564445082866323456 \n", "197 0 0 0 in 1564445082866323456 \n", "198 0 0 0 in 1574240273554558976 \n", "199 0 0 0 in 1590891231894437889 \n", "\n", " conversation_id_str username \\\n", "0 1705364853005902019 cecengmuslih \n", "1 1705352915320549774 yuliakhmada \n", "2 1705225759013621941 bakso_kanji \n", "3 1704859638511133005 Andra89996910 \n", "4 1705281298695332182 Liputan861 \n", ".. ... ... \n", "195 1701798874417946974 BertaniKodok \n", "196 1701798621765648406 BertaniKodok \n", "197 1701797879201800315 BertaniKodok \n", "198 1701726784541352275 jimbe94127701 \n", "199 1701726784541352275 CakraBaylor17 \n", "\n", " tweet_url \n", "0 https://twitter.com/cecengmuslih/status/170536... \n", "1 https://twitter.com/yuliakhmada/status/1705352... \n", "2 https://twitter.com/bakso_kanji/status/1705322... \n", "3 https://twitter.com/Andra89996910/status/17053... \n", "4 https://twitter.com/Liputan861/status/17052812... \n", ".. ... \n", "195 https://twitter.com/BertaniKodok/status/170179... \n", "196 https://twitter.com/BertaniKodok/status/170179... \n", "197 https://twitter.com/BertaniKodok/status/170179... \n", "198 https://twitter.com/jimbe94127701/status/17017... \n", "199 https://twitter.com/CakraBaylor17/status/17017... \n", "\n", "[200 rows x 12 columns]" ], "text/html": [ "\n", "
| \n", " | created_at | \n", "id_str | \n", "full_text | \n", "quote_count | \n", "reply_count | \n", "retweet_count | \n", "favorite_count | \n", "lang | \n", "user_id_str | \n", "conversation_id_str | \n", "username | \n", "tweet_url | \n", "
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", "Fri Sep 22 23:33:59 +0000 2023 | \n", "1705364853005902019 | \n", "Keseruan Bapak @erickthohir di IKN bersama Bap... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "713562482 | \n", "1705364853005902019 | \n", "cecengmuslih | \n", "https://twitter.com/cecengmuslih/status/170536... | \n", "
| 1 | \n", "Fri Sep 22 22:46:33 +0000 2023 | \n", "1705352915320549774 | \n", "Presiden turut berharap kehadiran RS Abdi Walu... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "256888577 | \n", "1705352915320549774 | \n", "yuliakhmada | \n", "https://twitter.com/yuliakhmada/status/1705352... | \n", "
| 2 | \n", "Fri Sep 22 20:47:06 +0000 2023 | \n", "1705322852483043820 | \n", "@KompasTV Merdu kan bu? Nah, rumahnya yg di p... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1538272718323232768 | \n", "1705225759013621941 | \n", "bakso_kanji | \n", "https://twitter.com/bakso_kanji/status/1705322... | \n", "
| 3 | \n", "Fri Sep 22 20:05:35 +0000 2023 | \n", "1705312405465833775 | \n", "@KompasTV Kalau yang ngomong dari tahun 2012 s... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1338292963810557954 | \n", "1704859638511133005 | \n", "Andra89996910 | \n", "https://twitter.com/Andra89996910/status/17053... | \n", "
| 4 | \n", "Fri Sep 22 18:01:58 +0000 2023 | \n", "1705281298695332182 | \n", "Hadiri Malam Apresiasi Nusantara, Presiden: Te... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1510857676435374085 | \n", "1705281298695332182 | \n", "Liputan861 | \n", "https://twitter.com/Liputan861/status/17052812... | \n", "
| ... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
| 195 | \n", "Wed Sep 13 03:24:04 +0000 2023 | \n", "1701798874417946974 | \n", "IKN wujud Semangat masyarakat indonesia untuk ... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1564445082866323456 | \n", "1701798874417946974 | \n", "BertaniKodok | \n", "https://twitter.com/BertaniKodok/status/170179... | \n", "
| 196 | \n", "Wed Sep 13 03:23:03 +0000 2023 | \n", "1701798621765648406 | \n", "Masyarakat Sambut Pembangunan IKN Nusantara #K... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1564445082866323456 | \n", "1701798621765648406 | \n", "BertaniKodok | \n", "https://twitter.com/BertaniKodok/status/170179... | \n", "
| 197 | \n", "Wed Sep 13 03:20:06 +0000 2023 | \n", "1701797879201800315 | \n", "Masyarakat Kaltim Dukung Pembangunan IKN Nusan... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1564445082866323456 | \n", "1701797879201800315 | \n", "BertaniKodok | \n", "https://twitter.com/BertaniKodok/status/170179... | \n", "
| 198 | \n", "Wed Sep 13 02:42:58 +0000 2023 | \n", "1701788533290303786 | \n", "@KotaNusantara @erzavindaf @IgoMagaz @Hansunri... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1574240273554558976 | \n", "1701726784541352275 | \n", "jimbe94127701 | \n", "https://twitter.com/jimbe94127701/status/17017... | \n", "
| 199 | \n", "Wed Sep 13 02:15:34 +0000 2023 | \n", "1701781637913247878 | \n", "@KotaNusantara @erzavindaf @IgoMagaz @Hansunri... | \n", "0 | \n", "0 | \n", "0 | \n", "0 | \n", "in | \n", "1590891231894437889 | \n", "1701726784541352275 | \n", "CakraBaylor17 | \n", "https://twitter.com/CakraBaylor17/status/17017... | \n", "
200 rows × 12 columns
\n", "