Start Your Project with Us

Whatever your project size is, we will handle it well with all the standards fulfilled! We are here to give 100% satisfaction.

  • Any feature, you ask, we develop
  • 24x7 support worldwide
  • Real-time performance dashboard
  • Complete transparency
  • Dedicated account manager
  • Customized solutions to fulfill data scraping goals
How-to-Extract-Tweets-Without-Utilizing-Twitter's-API-Using-TWINT

This blog provides a practical walkthrough for scraping tweets from any user, bypassing the need for Twitter's API by utilizing the Twitter Intelligence Tool known as TWINT.

What is TWINT?

TWINT is an advanced tool designed for Twitter scraping. With this tool, it's possible to extract a range of information from any user's followers, followers, tweets, and more, all without the need for Twitter's API.

Here are some of its advantages:

  • Anonymity: It can be employed anonymously, requiring no Twitter sign-up.
  • Cost-Free: The tool is free to use, with no limitations tied to pricing.
  • Extensive Tweet Retrieval: Unlike Twitter's API, limited to the last 3200 tweets, TWINT can retrieve nearly all.
  • Flexible Data Storage: TWINT provides user-friendly options to store scraped tweets in various formats, including JSON, CSV, Elasticsearch, and SQLite.
  • Swift Setup: TWINT offers a quick and hassle-free setup process, eliminating the complexities of configuring the Twitter API.

Installation

Use Pip

!pip3 install twint

Straight from Git

Straight-from-Git

Setting up

Before delving into more advanced functionalities, let's examine the fundamental syntax for employing the TWINT tool.

To begin, we initiate a Twitter configuration object named 'c,' to which various parameters are assigned. These parameters will shape the approach we take for tweet scraping. In the example, we provide two parameters called 'Username' & 'Limit.' 'Username' represents user’s Twitter ID, while 'Limit' determines the number of tweets to get extracted. Notably, the 'Limit' operates in increments of 100; hence, a 'Limit' of 1 corresponds to 100 tweets. Ultimately, the command 'twint.run.Search' is executed to initiate the tweet scraping process and retrieve the tweets.

Setting-up

Should you encounter the error "RuntimeError: This event loop is already running" while attempting this on a notebook, you can address it by following these steps:

Should-you-encounter-the-error

Let's explore a few examples below.

Examples

1. Extracting Tweets from a Specific Date

Extracting-Tweets-from-a-Specific-Date

2. Gathering Tweets with Specific Search Strings

Gathering-Tweets-with-Specific-Search-Strings

3. Tweets Containing Videos, Images, or Media (Videos/Images)

Tweets-Containing-Videos

4. Top Tweets from a User

Top-Tweets-from-a-User

5. Tweets Filtered by Minimum Likes, Retweets, and Replies

Tweets-Filtered-by-Minimum-Likes

6. Followers

Followers

7. Storing Tweets as a Pandas DataFrame

Storing-Tweets-as-a-Pandas-DataFrame

Twint offers a multitude of such configurations, and the complete list of these configurations is available on the official page here. Combine options to refine and extract tweets for analysis needs. Streamline social media data gathering with our specialized Social Media Data Scraping Services. With our expertise, efficiently extract insights from social platforms to comprehend user sentiments, trends, and engagement, aiding informed decisions and strategic planning.

Whole Code

{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "BMbnNwjYarm5"
   },
   "source": [
    "# Install libraries"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 989
    },
    "id": "_39WY2jB-c3-",
    "outputId": "8ae689a4-8ed5-48e9-b449-9ba2b9502494"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Cloning into 'twint'...\n",
      "remote: Enumerating objects: 46, done.\u001b[K\n",
      "remote: Counting objects: 100% (46/46), done.\u001b[K\n",
      "remote: Compressing objects: 100% (43/43), done.\u001b[K\n",
      "remote: Total 46 (delta 3), reused 12 (delta 0), pack-reused 0\u001b[K\n",
      "Unpacking objects: 100% (46/46), done.\n",
      "/content/twint/twint/twint\n",
      "Processing /content/twint/twint/twint\n",
      "Requirement already satisfied: aiohttp in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 1)) (3.6.3)\n",
      "Requirement already satisfied: aiodns in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 2)) (2.0.0)\n",
      "Requirement already satisfied: beautifulsoup4 in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 3)) (4.6.3)\n",
      "Requirement already satisfied: cchardet in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 4)) (2.1.6)\n",
      "Requirement already satisfied: dataclasses in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 5)) (0.7)\n",
      "Requirement already satisfied: elasticsearch in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 6)) (7.9.1)\n",
      "Requirement already satisfied: pysocks in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 7)) (1.7.1)\n",
      "Requirement already satisfied: pandas>=0.23.0 in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 8)) (1.1.2)\n",
      "Requirement already satisfied: aiohttp_socks<=0.4.1 in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 9)) (0.4.1)\n",
      "Requirement already satisfied: schedule in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 10)) (0.6.0)\n",
      "Requirement already satisfied: geopy in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 11)) (1.17.0)\n",
      "Requirement already satisfied: fake-useragent in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 12)) (0.1.11)\n",
      "Requirement already satisfied: googletransx in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 13)) (2.4.2)\n",
      "Requirement already satisfied: idna-ssl>=1.0; python_version < \"3.7\" in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (1.1.0)\n",
      "Requirement already satisfied: typing-extensions>=3.6.5; python_version < \"3.7\" in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (3.7.4.3)\n",
      "Requirement already satisfied: multidict<5.0,>=4.5 in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (4.7.6)\n",
      "Requirement already satisfied: async-timeout<4.0,>=3.0 in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (3.0.1)\n",
      "Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (20.2.0)\n",
      "Requirement already satisfied: yarl<1.6.0,>=1.0 in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (1.5.1)\n",
      "Requirement already satisfied: chardet<4.0,>=2.0 in /usr/local/lib/python3.6/dist-packages (from aiohttp->-r requirements.txt (line 1)) (3.0.4)\n",
      "Requirement already satisfied: pycares>=3.0.0 in /usr/local/lib/python3.6/dist-packages (from aiodns->-r requirements.txt (line 2)) (3.1.1)\n",
      "Requirement already satisfied: typing; python_version < \"3.7\" in /usr/local/lib/python3.6/dist-packages (from aiodns->-r requirements.txt (line 2)) (3.7.4.3)\n",
      "Requirement already satisfied: urllib3>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from elasticsearch->-r requirements.txt (line 6)) (1.24.3)\n",
      "Requirement already satisfied: certifi in /usr/local/lib/python3.6/dist-packages (from elasticsearch->-r requirements.txt (line 6)) (2020.6.20)\n",
      "Requirement already satisfied: numpy>=1.15.4 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23.0->-r requirements.txt (line 8)) (1.18.5)\n",
      "Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23.0->-r requirements.txt (line 8)) (2.8.1)\n",
      "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.23.0->-r requirements.txt (line 8)) (2018.9)\n",
      "Requirement already satisfied: geographiclib<2,>=1.49 in /usr/local/lib/python3.6/dist-packages (from geopy->-r requirements.txt (line 11)) (1.50)\n",
      "Requirement already satisfied: requests in /usr/local/lib/python3.6/dist-packages (from googletransx->-r requirements.txt (line 13)) (2.23.0)\n",
      "Requirement already satisfied: idna>=2.0 in /usr/local/lib/python3.6/dist-packages (from idna-ssl>=1.0; python_version < \"3.7\"->aiohttp->-r requirements.txt (line 1)) (2.10)\n",
      "Requirement already satisfied: cffi>=1.5.0 in /usr/local/lib/python3.6/dist-packages (from pycares>=3.0.0->aiodns->-r requirements.txt (line 2)) (1.14.3)\n",
      "Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.6/dist-packages (from python-dateutil>=2.7.3->pandas>=0.23.0->-r requirements.txt (line 8)) (1.15.0)\n",
      "Requirement already satisfied: pycparser in /usr/local/lib/python3.6/dist-packages (from cffi>=1.5.0->pycares>=3.0.0->aiodns->-r requirements.txt (line 2)) (2.20)\n",
      "Building wheels for collected packages: twint\n",
      "  Building wheel for twint (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
      "  Created wheel for twint: filename=twint-2.1.21-cp36-none-any.whl size=39390 sha256=23fe594a584df261ae9ed2317d4066a9904b62c54890ab4261bfba067f0ce82b\n",
      "  Stored in directory: /tmp/pip-ephem-wheel-cache-chymwmq2/wheels/c4/3a/34/8850051c9dd30bd7948208ec4f79e81a1a3a42550d19b174fc\n",
      "Successfully built twint\n",
      "Installing collected packages: twint\n",
      "  Found existing installation: twint 2.1.21\n",
      "    Uninstalling twint-2.1.21:\n",
      "      Successfully uninstalled twint-2.1.21\n",
      "Successfully installed twint-2.1.21\n"
     ]
    },
    {
     "data": {
      "application/vnd.colab-display-data+json": {
       "pip_warning": {
        "packages": [
         "twint"
        ]
       }
      }
     },
     "metadata": {
      "tags": []
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "!git clone --depth=1 https://github.com/twintproject/twint.git\n",
    "%cd twint\n",
    "!pip3 install . -r requirements.txt"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "id": "vBpCbxpo-dw9"
   },
   "outputs": [],
   "source": [
    "import nest_asyncio\n",
    "nest_asyncio.apply()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "id": "Ct_J-nSQanO7"
   },
   "outputs": [],
   "source": [
    "import twint"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "DkS_sOqpbZ6n"
   },
   "source": [
    "# Scrape the tweets of user"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 1000
    },
    "id": "fpWmTGkDNQS0",
    "outputId": "34542963-ae3e-4c06-e2fe-912fe885a831"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1315915772544258049 2020-10-13 07:22:23 +0000 <narendramodi> ગુજરાતી સુગમ સંગીતનાં શિરમોર ગાયિકા કૌમુદી મુનશીના અવસાનથી દુઃખ અનુભવું છું. ગુજરાતી સુગમ સંગીતને લોકપ્રિય બનાવવામાં તેમનું યોગદાન સંગીતપ્રેમી પેઢીઓ માટે હંમેશા યાદગાર રહેશે.. શોકગ્રસ્ત પરિવાર અને એમના વિશાળ ચાહકવર્ગને સાંત્વના..ઈશ્વર તેમના આત્માને શાંતિ આપે એવી પ્રાર્થના.\n",
      "1315896260415553536 2020-10-13 06:04:51 +0000 <narendramodi> Released the autobiography of Shri Balasaheb Vikhe Patil Ji. https://t.co/ww1xsZpMS7\n",
      "1315673644090052609 2020-10-12 15:20:15 +0000 <narendramodi> At 11 AM tomorrow, will be releasing the autobiography of Shri Balasaheb Vikhe Patil Ji via video conferencing. His efforts towards strengthening agriculture and cooperatives will always be remembered. Do watch the programme.\n",
      "1315673528889348097 2020-10-12 15:19:47 +0000 <narendramodi> मी उद्या सकाळी अकरा वाजता व्हिडिओ कॉन्फरंसिंगच्या माध्यमातून श्री बाळासाहेब विखे पाटील यांचे आत्मचरित्र प्रकाशित करणार आहे. कृषी आणि सहकारक्षेत्र मजबूत करण्यासाठीचे त्यांचे प्रयत्न नेहमी स्मरणात राहतील. हा कार्यक्रम नक्की बघा.\n",
      "1315672946036232192 2020-10-12 15:17:29 +0000 <narendramodi> Today’s announcements by FM @nsitharaman Ji are timely moves which will boost consumer spending and sentiment as well as push capital expenditure. These steps will also boost demand in our economy. https://t.co/bqhJhz8iwo\n",
      "1315597762872791040 2020-10-12 10:18:43 +0000 <narendramodi> बिहार के पिछड़ा एवं अति पिछड़ा वर्ग कल्याण मंत्री विनोद कुमार सिंह जी के निधन से अत्यंत दुख पहुंचा है। वे गरीबों-वंचितों के सशक्तिकरण के लिए समर्पित रहे। उन्होंने राज्य में भाजपा को मजबूत बनाने में भी अहम भूमिका निभाई। उनके परिजनों और समर्थकों के प्रति मेरी संवेदनाएं। ओम शांति!\n",
      "1315597233442549760 2020-10-12 10:16:37 +0000 <narendramodi> समाजवाद के प्रवर्तक, विचारों को सत्ता से ऊपर और देशहित को सर्वोपरि मानने वाले लोहिया जी को उनकी पुण्यतिथि पर शत-शत नमन।\n",
      "1315597231794221056 2020-10-12 10:16:37 +0000 <narendramodi> लोकतंत्र को सशक्त करने के लिए अपना जीवन समर्पित करने वाले, विचार को व्यवहार बनाने वाले, लोकतांत्रिक मानकों का जीवनपर्यन्त निर्वाह करने वाले लोहिया जी समस्त देश के प्रेरणा पुरुष हैं।\n",
      "1315576723262509057 2020-10-12 08:55:07 +0000 <narendramodi> #RajmataScindia was a deeply religious person. But, in her Puja Mandir there always a picture of Bharat Mata.   Inspired by her vision, India has been making remarkable progress. Our strides in several areas would have made her very proud. https://t.co/GzGlBDVmeO\n",
      "1315576316184285184 2020-10-12 08:53:30 +0000 <narendramodi> #RajmataScindia was always particular about knowing Party Karyakartas by their names.   Party Karyakartas remember her as a humble and compassionate personality. https://t.co/bTLtNEOTN1\n",
      "1315576167789780992 2020-10-12 08:52:55 +0000 <narendramodi> For #RajmataScindia, public service came above everything else.  She was not tempted by power.   A few words written in a letter to her daughters give a glimpse of her greatness. https://t.co/IitcY75J0a\n",
      "1315527225215651840 2020-10-12 05:38:26 +0000 <narendramodi> Tributes to #RajmataScindia on her Jayanti. https://t.co/UnITmCofMt\n",
      "1315338257660436481 2020-10-11 17:07:33 +0000 <narendramodi> 8 of India’s serene beaches get the prestigious Blue Flag Certification. This showcases the importance India attaches to protecting such spots and furthering sustainable development.   Truly a wonderful feat!\n",
      "1315287000648302592 2020-10-11 13:43:52 +0000 <narendramodi> Tomorrow, 12th October is the Jayanti of Rajmata Vijaya Raje Scindia. On this special day, commemorative coin of Rs. 100 would be released at 11 AM. This is a part of her birth centenary celebrations and is yet another occasion to pay tributes to her great personality.\n",
      "1315226801774292994 2020-10-11 09:44:39 +0000 <narendramodi> भारत के गांवों के लिए जितना काम पिछले 6 वर्षों में किया गया है, उतना आजादी के छह दशकों में भी नहीं हुआ।   इतिहास बताता है कि गांव और गरीब को अभाव में रखना कुछ लोगों की राजनीति का आधार रहा है। हमने गरीबों को अभाव से मुक्ति का अभियान चलाया है। #SampatiSeSampanta https://t.co/tPeGSTVVBL\n",
      "1315226621394075648 2020-10-11 09:43:56 +0000 <narendramodi> भारत की आत्मा गांवों में बसती है। लेकिन सच्चाई यही है कि दशकों तक गांवों को उनके नसीब पर छोड़ दिया गया।   पिछले 6 वर्षों में हमने एक के बाद एक कई कामों को शुरू किया और उन्हें गांव-गरीब तक ले गए।   अब बिना किसी भेदभाव के, पूरी पारदर्शिता के साथ सबको योजनाओं का लाभ मिल रहा है। https://t.co/rKXTBNoFtN\n",
      "1315226568973713408 2020-10-11 09:43:44 +0000 <narendramodi> जब संपत्ति का रिकॉर्ड होता है, उसका अधिकार मिलता है तो नागरिक का जीवन भी सुरक्षित रहता है और उसका आत्मविश्वास भी अनेक गुना बढ़ जाता है।   स्वामित्व योजना के तहत मिलने वाला प्रॉपर्टी कार्ड इसी दिशा में दलित, पीड़ित, शोषित और वंचित ग्रामीणों की भलाई के लिए उठाया गया एक बड़ा कदम है। https://t.co/wvSRcbeGIU\n",
      "1315226482474545153 2020-10-11 09:43:23 +0000 <narendramodi> आत्मनिर्भर भारत अभियान में आज देश ने एक और बड़ा कदम उठा दिया है।   स्वामित्व योजना गांव में रहने वाले हमारे भाई-बहनों को आत्मनिर्भर बनाने में बहुत मदद करने वाली है।   आज 6 राज्यों के लाखों परिवारों को उनके घरों के कानूनी कागज सौंपे गए हैं।    #SampatiSeSampanta https://t.co/APxBgvlRgM\n",
      "1315225933561774080 2020-10-11 09:41:12 +0000 <narendramodi> पुणे के कोंढणपुर में रहने वाले विश्‍वनाथ कृष्‍णा मुजुमले जी ने बताया कि स्वामित्व योजना के तहत किस प्रकार उनके गांव में बिना किसी अनियमितता और भ्रष्टाचार के काम हुआ और इससे लोग बहुत संतुष्ट हैं। #SampatiSeSampanta https://t.co/hX5tZ40mko\n",
      "1315225768499109888 2020-10-11 09:40:33 +0000 <narendramodi> चुनौतियों का दृढ़ता से सामना करने वाली बाराबंकी की रामरती जी को प्रॉपर्टी कार्ड से एक नया आत्मविश्वास मिला है। उन्होंने बताया कि पूर्वजों की संपत्ति का कागज मिलने के बाद अब वे न केवल खुद को हर तरह से सुरक्षित महसूस करती हैं, बल्कि अपना रोजगार भी बढ़ा सकेंगी। #SampatiSeSampanta https://t.co/7N8eVpX2TL\n",
      "1315225687846875138 2020-10-11 09:40:14 +0000 <narendramodi> हरियाणा के मुमताज अली जी जैसे लोगों का जीवन बदलने वाला है। यमुनानगर में राजमिस्त्री का काम करने वाले मुमताज जी ने बताया कि किस प्रकार प्रॉपर्टी कार्ड के आधार पर उन्हें बैंक से तीन लाख रुपये का लोन मिलने वाला है, जिससे वे अपने रोजगार को बेहतर तरीके से आगे बढ़ा सकेंगे। https://t.co/2lrkmKjKrk\n",
      "1315225627553800192 2020-10-11 09:39:59 +0000 <narendramodi> स्वामित्व योजना के तहत वितरित किए गए प्रॉपर्टी कार्ड से उत्तराखंड के पौड़ी गढ़वाल में भी खुशी की माहौल है। सुरेश चंद जी ने बताया कि स्वामित्व योजना में डिजिटल माध्यम का बेहतरीन इस्तेमाल किया गया और कहीं कोई गड़बड़ी नहीं हुई। #SampatiSeSampanta https://t.co/zyuLTxyi0A\n",
      "1315225548830859265 2020-10-11 09:39:41 +0000 <narendramodi> उत्तर प्रदेश के बाराबंकी के राममिलन जी परचून की दुकान चलाते हैं। शारीरिक चुनौतियों के बावजूद वे थोड़ा-बहुत खेती का काम भी करते हैं। उन्होंने बताया कि किस प्रकार प्रॉपर्टी कार्ड ने उनकी जिंदगी की राह आसान कर दी है। #SampatiSeSampanta https://t.co/PJBS77G5k0\n",
      "1315225440366202881 2020-10-11 09:39:15 +0000 <narendramodi> मध्यप्रदेश के डिंडोरी जिले के दर्शन सिंह जी ने बताया कि उन्होंने कभी नहीं सोचा था कि इतनी आसानी से उन्हें जमीन का पट्टा मिलेगा। स्वामित्व योजना के तहत प्रॉपर्टी कार्ड मिलने से उन्हें जो खुशी मिली है, आज वो देश के हर ग्रामीण की खुशी का प्रतीक बनी है। #SampatiSeSampanta https://t.co/l99fPaINOv\n",
      "1315167699190702083 2020-10-11 05:49:48 +0000 <narendramodi> A historic effort towards rural transformation. #SampatiSeSampanta https://t.co/VYNk6nTcg6\n",
      "1315132518153089030 2020-10-11 03:30:00 +0000 <narendramodi> A landmark day for rural development! Do join the programme at 11 AM. #SampatiSeSampanta https://t.co/uM15HqLMD3\n",
      "1315128045057929216 2020-10-11 03:12:14 +0000 <narendramodi> India is proud that legends like Loknayak JP and Nanaji Deshmukh were born in this land. Today is a day to rededicate ourselves towards fulfilling their vision for our nation. https://t.co/RAUapZmxar\n",
      "1315127730527064064 2020-10-11 03:10:59 +0000 <narendramodi> The great Nanaji Deshmukh was one of Loknayak JP’s most devout followers. He worked tirelessly to popularise JP’s thoughts and ideals. His own work towards rural development motivates us. Remembering Bharat Ratna Nanaji Deshmukh on his Jayanti.\n",
      "1315127372526411776 2020-10-11 03:09:34 +0000 <narendramodi> I bow to Loknayak JP on his Jayanti. He valiantly fought for India’s freedom and when our democratic ethos was under attack, he led a strong mass movement to protect it. For him, there was nothing above national interest and people’s welfare.\n",
      "1314879982070505472 2020-10-10 10:46:31 +0000 <narendramodi> स्वामित्व योजना के तहत चरणबद्ध तरीके से देश के लगभग 6.62 लाख गांवों के लोगों को प्रॉपर्टी कार्ड दिए जाएंगे। ग्रामीणों को अपनी संपत्ति के स्वामित्व का आधिकारिक दस्तावेज मिलेगा, जो उन्हें सशक्त बनाएगा। इसके माध्यम से वे बैंक लोन सहित कई वित्तीय सुविधाओं का लाभ ले सकेंगे।\n",
      "1314879979973353472 2020-10-10 10:46:31 +0000 <narendramodi> कल का दिन ग्रामीण भारत के लिए एक बड़ा सकारात्मक परिवर्तन लाने वाला है। सुबह 11 बजे स्वामित्व योजना के अंतर्गत संपत्ति कार्ड के वितरण का शुभारंभ किया जाएगा। यह योजना करोड़ों भारतीयों के जीवन में मील का पत्थर साबित होगी।   #SampatiSeSampanta  https://t.co/OQUEPSGCjr\n",
      "1314842849658060800 2020-10-10 08:18:58 +0000 <narendramodi> ദേവിക എന്ന കുട്ടിയെ ഓർത്ത് അഭിമാനം ! അവളുടെ ശ്രുതിമധുരമായ ആലാപനം 'ഏക ഭാരതം ശ്രേഷ്ഠഭാരതത്തിന്റെ' അന്തസത്ത ശക്തിപ്പെടുത്തുന്നു !\n",
      "1314792763100069889 2020-10-10 04:59:57 +0000 <narendramodi> #MannKiBaat presents a great opportunity to share inspiring journeys of outstanding citizens and discuss themes that power societal change. This month’s programme will take place on the 25th. Share your ideas on the NaMo App, MyGov or record your message.  https://t.co/qVG7YLhsuY https://t.co/P1IccJxV3j\n",
      "1314562542442700801 2020-10-09 13:45:08 +0000 <narendramodi> I am confident that the State of Kuwait will continue to play an important global role under their leadership, and the historic India-Kuwait friendship will be further strengthened.\n",
      "1314562539695472641 2020-10-09 13:45:07 +0000 <narendramodi> Congratulations and best wishes to His Highness Sheikh Nawaf Al-Ahmed Al-Jaber Al-Sabah for assuming charge as the Amir of the State of Kuwait.  I also congratulate His Highness Sheikh Mishaal Al-Ahmed Al-Jaber Al-Sabah on his taking charge as the Crown Prince.\n",
      "1314475166877929473 2020-10-09 07:57:56 +0000 <narendramodi> ਮਹਾਨ ਭਾਈ ਤਾਰੂ ਸਿੰਘ ਜੀ ਦੀ 300ਵੀਂ ਜਨਮ ਵਰ੍ਹੇਗੰਢ ਦੇ ਵਿਸ਼ੇਸ਼ ਮੌਕੇ ‘ਤੇ, ਮੈਂ ਉਨ੍ਹਾਂ ਨੂੰ ਪ੍ਰਣਾਮ ਕਰਦਾ ਹਾਂ। ਉਨ੍ਹਾਂ ਦਾ ਨਾਮ ਹਮੇਸ਼ਾ ਸਾਹਸ ਅਤੇ ਨਿਡਰਤਾ ਦਾ ਸਮਾਨਾਰਥੀ ਹੋਵੇਗਾ। ਆਪਣੇ ਸੱਭਿਆਚਾਰ ਦੇ ਨਾਲ-ਨਾਲ ਲੋਕਾਚਾਰ 'ਤੇ ਹਮੇਸ਼ਾ ਮਾਣ ਕਰਨ ਵਾਲੇ, ਉਹ ਕਦੇ ਵੀ ਅਨਿਆਂ ਅੱਗੇ ਨਹੀਂ ਝੁਕੇ। ਉਹ ਲੱਖਾਂ ਲੋਕਾਂ ਨੂੰ ਪ੍ਰੇਰਿਤ ਕਰਦੇ ਹਨ।\n",
      "1314475087001600001 2020-10-09 07:57:37 +0000 <narendramodi> On the special occasion of his 300th birth anniversary, I bow to the great Bhai Taru Singh Ji. His name will always be synonymous with courage and fearlessness. Always proud of his culture as well as ethos, he never bowed to injustice. He continues to inspire millions.\n",
      "1314472421672452096 2020-10-09 07:47:01 +0000 <narendramodi> We are extremely proud of the @IndiaPostOffice Team for their efforts to connect India. They bring happiness to countless lives. On #WorldPostDay, greetings to them and their families. Best wishes for all future endeavours.\n",
      "1314449520474824705 2020-10-09 06:16:01 +0000 <narendramodi> Paid respects to late Shri Ram Vilas Paswan Ji. His unwavering commitment to social justice will always be remembered. https://t.co/QaklVGclx5\n",
      "1314408498789195777 2020-10-09 03:33:01 +0000 <narendramodi> On IFS day, greetings to all #IndianForeignService officers. Their work towards #ServingTheNation, furthering national interests globally are commendable. Their efforts during Vande Bharat Mission and other COVID related help to our citizens and other nations is noteworthy.\n",
      "1314231242817040384 2020-10-08 15:48:40 +0000 <narendramodi> Working together, shoulder to shoulder with Paswan Ji has been an incredible experience. His interventions during Cabinet Meetings were insightful. From political wisdom, statesmanship to governance issues, he was brilliant. Condolences to his family and supporters. Om Shanti.\n",
      "1314230480653352961 2020-10-08 15:45:38 +0000 <narendramodi> Shri Ram Vilas Paswan Ji rose in politics through hardwork and determination. As a young leader, he resisted tyranny and the assault on our democracy during the Emergency. He was an outstanding Parliamentarian and Minister, making lasting contributions in several policy areas. https://t.co/naqx27xBoj\n",
      "1314229862148661248 2020-10-08 15:43:11 +0000 <narendramodi> I am saddened beyond words. There is a void in our nation that will perhaps never be filled. Shri Ram Vilas Paswan Ji’s demise is a personal loss. I have lost a friend, valued colleague and someone who was extremely passionate to ensure every poor person leads a life of dignity. https://t.co/2UUuPBjBrj\n",
      "1314221326136090624 2020-10-08 15:09:15 +0000 <narendramodi> Happy to have met you my friend, @DrabdullahCE. We had productive talks on various aspects of the strong India-Afghanistan friendship. India will always support our Afghan sisters and brothers in their quest for peace and in meeting their developmental aspirations.\n",
      "1314191301252837376 2020-10-08 13:09:57 +0000 <narendramodi> Addressing the Annual Invest India Conference. Watch. https://t.co/WJEgrCt6jB\n",
      "1314098034125365248 2020-10-08 06:59:20 +0000 <narendramodi> At around 6:30 PM today, would be delivering the keynote address at the Annual Invest India Conference. This is organised with a special focus on further strengthening business ties between India and Canada. Will speak on aspects relating to the economy. https://t.co/JcPJ9j1p3G\n",
      "1314030957477810176 2020-10-08 02:32:48 +0000 <narendramodi> आइए, कोरोना से लड़ने के लिए एकजुट हों!   हमेशा याद रखें:   मास्क जरूर पहनें।   हाथ साफ करते रहें।   सोशल डिस्टेंसिंग का पालन करें।   ‘दो गज की दूरी’ रखें।   #Unite2FightCorona https://t.co/L3wfaqlhDn\n",
      "1314030641218904064 2020-10-08 02:31:33 +0000 <narendramodi> Let us #Unite2FightCorona!   Let us always remember:  Wear a mask.   Wash hands.  Follow social distancing.  Practice ‘Do Gaj Ki Doori.’    Together, we will succeed.   Together, we will win against COVID-19. https://t.co/x5bymQpqjx\n",
      "1314030435136016385 2020-10-08 02:30:43 +0000 <narendramodi> India’s COVID-19 fight is people driven and gets great strength from our COVID warriors. Our collective efforts have helped saved many lives. We have to continue the momentum and protect our citizens from the virus. #Unite2FightCorona https://t.co/GrYUZPZc2m\n",
      "1314029762608721920 2020-10-08 02:28:03 +0000 <narendramodi> एयर फोर्स डे पर भारतीय वायुसेना के सभी वीर योद्धाओं को बहुत-बहुत बधाई। आप न सिर्फ देश के आसमान को सुरक्षित रखते हैं, बल्कि आपदा के समय मानवता की सेवा में भी अग्रणी भूमिका निभाते हैं। मां भारती की रक्षा के लिए आपका साहस, शौर्य और समर्पण हर किसी को प्रेरित करने वाला है।  #AFDay2020 https://t.co/0DYlI7zpe6\n",
      "1313892961688580097 2020-10-07 17:24:27 +0000 <narendramodi> मैं अपने-आपको, आपके आशीर्वाद के योग्य, आपके प्रेम के योग्य बनाने के लिए निरंतर प्रयासरत रहूंगा।   देशवासियों को एक बार फिर से विश्वास दिलाता हूं कि देशहित और गरीबों का कल्याण, यही मेरे लिए सर्वोपरि है और हमेशा सर्वोपरि रहेगा।\n",
      "1313892867585187840 2020-10-07 17:24:05 +0000 <narendramodi> कोई व्यक्ति कभी यह दावा नहीं कर सकता कि मुझमें कोई कमी नहीं है। इतने महत्वपूर्ण और जिम्मेदारी भरे पदों पर एक लंबा कालखंड… एक मनुष्य होने के नाते मुझसे भी गलतियां हो सकती हैं।   यह मेरा सौभाग्य है कि मेरी इन सीमाओं और मर्यादाओं के बावजूद आप सबका प्रेम उत्तरोत्तर बढ़ रहा है।\n",
      "1313892740627787776 2020-10-07 17:23:34 +0000 <narendramodi> आज जिस प्रकार देश के कोने-कोने से आप सबने आशीर्वाद और प्रेम बरसाए हैं, उसका आभार प्रकट करने के लिए आज मेरे शब्दों की शक्ति कम पड़ रही है!   देश सेवा, गरीबों के कल्याण और भारत को नई ऊंचाइयों पर ले जाने का हम सबका जो संकल्प है, उसे आपका आशीर्वाद, आपका प्रेम और मजबूत करेगा।\n",
      "1313892667005169664 2020-10-07 17:23:17 +0000 <narendramodi> बचपन से मेरे मन में एक बात संस्कारित हुई कि जनता-जनार्दन ईश्वर का रूप होती है और लोकतंत्र में ईश्वर की तरह ही शक्तिमान होती है।   इतने लंबे कालखंड तक देशवासियों ने मुझे जो जिम्मेदारियां सौंपी हैं, उन्हें निभाने के लिए मैंने पूरी तरह से प्रामाणिक और समर्पित प्रयास किए हैं।\n",
      "1313851809027432448 2020-10-07 14:40:56 +0000 <narendramodi> আজকের কেন্দ্রীয় ক্যাবিনেটের সিদ্ধান্ত আমার কলকাতাবাসী ভাই বোনেদের \" ঈজ অব লিভিং\" (জীবন যাপনের সুবিধা) আরো বাড়াবে। স্থানীয় পরিকাঠামোর উন্নতি ঘটিয়ে, ব্যবসা ও পর্যটনেও সাহায্য করবে। https://t.co/ozHmwwMNQu\n",
      "1313851605939154944 2020-10-07 14:40:07 +0000 <narendramodi> Today’s Cabinet decision will further ‘Ease of Living’ for my sisters and brothers of Kolkata. It will also give an impetus to local infrastructure and help commerce as well as tourism in the city. https://t.co/ozHmwwMNQu\n",
      "1313847097330819072 2020-10-07 14:22:12 +0000 <narendramodi> India is moving ahead on the path of futuristic reforms.   Today’s Cabinet decision on ‘Natural Gas Marketing Reforms’ add strength to the efforts of making India a gas based economy. https://t.co/q9JpXwUP9G\n",
      "1313774314651443202 2020-10-07 09:33:00 +0000 <narendramodi> Spoke to my friend President Vladimir Putin @KremlinRussia_E to greet him on his birthday today. Appreciated his immense personal contribution to strengthening the Special &amp; Privileged Strategic Partnership between India and Russia.\n",
      "1313478597458489348 2020-10-06 13:57:55 +0000 <narendramodi> Commendable effort, which places emphasis on building immunity, remaining healthy and making the fight against COVID-19 stronger.\n",
      "1313413850276872192 2020-10-06 09:40:38 +0000 <narendramodi> Had an insightful interaction with Mr. Henrik Andersen, President and CEO, @Vestas. We discussed a series of issues relating to the wind energy sector. Highlighted some of India’s efforts to harness renewable energy in order to build a cleaner future for the coming generations.\n",
      "1313168895784611841 2020-10-05 17:27:16 +0000 <narendramodi> It remains our collective responsibility to ensure trust in AI is maintained and we use AI for larger public good. #Raise2020 https://t.co/CDJspiwEPp\n",
      "1313168792655024129 2020-10-05 17:26:52 +0000 <narendramodi> Elaborated on some of India’s efforts to encourage AI. #Raise2020 https://t.co/UzlzP9WP9z\n",
      "1313146937332260864 2020-10-05 16:00:01 +0000 <narendramodi> Spoke to my friend @IsraeliPM @netanyahu on phone. We discussed the expanding India-Israel cooperation against COVID-19. We also reviewed our initiatives in other areas like agriculture, water and innovation.\n",
      "1313117911490334721 2020-10-05 14:04:41 +0000 <narendramodi> Addressing RAISE 2020 Virtual Summit. #Raise2020 https://t.co/evTxWOpv6f\n",
      "1313046704933883904 2020-10-05 09:21:44 +0000 <narendramodi> Anguished by the passing away of Justice AS Dave, former Judge as well as acting CJ of the Gujarat HC. He will be remembered for his contributions to the legal field. Condolences to his family and friends. Om Shanti.\n",
      "1312957286604705797 2020-10-05 03:26:25 +0000 <narendramodi> Looking forward to address The Responsible AI for Social Empowerment (RAISE 2020) Virtual Summit at 7 PM this evening. This Summit brings together tech leaders from across the world to discuss aspects relating to AI. Do watch! #Raise2020   https://t.co/7ZDqHbFZFY\n",
      "1312624055816646656 2020-10-04 05:22:16 +0000 <narendramodi> Shyamji Krishna Varma was fearless and selfless. He devoted himself towards India’s freedom and inspired many nationalists. India bows to him on his Jayanti. We shall always work hard to realise his vision for our nation. Visit this site to know about him. https://t.co/lN5TzJR7Xh https://t.co/3LlETdMEKa\n",
      "1312398101689188352 2020-10-03 14:24:25 +0000 <narendramodi> New age infrastructure for India! #AtalTunnel https://t.co/qKFDRcVyL0\n",
      "1312397856469213186 2020-10-03 14:23:26 +0000 <narendramodi> The #AtalTunnel is a game changing infrastructure project that will help several citizens. With this project comes several economic benefits, particularly for agriculture and tourism. https://t.co/6gAwK5QR4Y\n",
      "1312388614156767232 2020-10-03 13:46:43 +0000 <narendramodi> देश में आज जो रिफॉर्म्स किए जा रहे हैं, उसने ऐसे लोगों को परेशान कर दिया है, जिन्होंने हमेशा अपने राजनीतिक हितों के लिए काम किया।   आज जब ऐसे लोगों द्वारा बनाए बिचौलियों और दलालों के तंत्र पर प्रहार हो रहा है, तो वे बौखला गए हैं।   लेकिन देश आज परिवर्तन के लिए प्रतिबद्ध है। https://t.co/CacovmH42B\n",
      "1312388556971626497 2020-10-03 13:46:29 +0000 <narendramodi> हिमाचल प्रदेश के लोगों का जीवन आसान बनाने के लिए सड़क, बिजली जैसी मूल जरूरतों के साथ-साथ मोबाइल और इंटरनेट कनेक्टिविटी भी बहुत जरूरी है।   सरकार का निरंतर प्रयास है कि सामान्य मानवी की परेशानी कम से कम हो और उसे उसके हक का पूरा लाभ मिल सके। #AtalTunnel https://t.co/3n1VUOsvMD\n",
      "1312388459672215554 2020-10-03 13:46:06 +0000 <narendramodi> मनाली को बहुत अधिक पसंद करने वाले अटल जी की यह अटल इच्छा थी कि यहां स्थितियां बदले, यहां की कनेक्टिविटी बेहतर हो।   इसी सोच के साथ उन्होंने रोहतांग में टनल बनाने का फैसला लिया था। मुझे खुशी है कि आज अटल जी का यह संकल्प सिद्ध हो गया। #AtalTunnel https://t.co/52NarqAXjv\n",
      "1312388145548201984 2020-10-03 13:44:51 +0000 <narendramodi> Birthday greetings to @gssjodhpur Ji, our energetic Cabinet colleague who is working assiduously to ensure India is able to harness our Jal Shakti for public welfare. I pray for his long and healthy life.\n",
      "1312352680841486336 2020-10-03 11:23:56 +0000 <narendramodi> अटल टनल केंद्र सरकार के उस संकल्प का भी हिस्सा है कि देश के हर हिस्से में, हर व्यक्ति तक विकास का लाभ पहुंचना चाहिए।   अब देश में नई सोच के साथ काम हो रहा है। सबके साथ से, सबके विश्वास से, सबका विकास हो रहा है।   प्रयास इस बात का है कि कोई भारतीय छूट न जाए, पीछे न रह जाए। https://t.co/68w0LaF4l8\n",
      "1312352573492539393 2020-10-03 11:23:30 +0000 <narendramodi> अटल टनल के बन जाने से लाहौल के लोगों के लिए तो नई सुबह हुई ही है, पांगी के लोगों का जीवन भी बदलने वाला है।   लाहौल-स्पीति और पांगी के किसान हों, बागवानी से जुड़े लोग हों, पशुपालक हों, स्टूडेंट हों, नौकरीपेशा हों, व्यापारी-कारोबारी हों, सभी को इससे लाभ होने वाला है। https://t.co/xBeejfowiv\n",
      "1312319619797901313 2020-10-03 09:12:33 +0000 <narendramodi> Addressing a public meeting in Solang. Watch. https://t.co/b8sTIIon80\n",
      "1312319233653522432 2020-10-03 09:11:01 +0000 <narendramodi> जैसे-जैसे भारत की वैश्विक भूमिका बदल रही है, हमें उसी तेजी से, उसी रफ्तार से अपने इंफ्रास्ट्रक्चर को, अपने आर्थिक और सामरिक सामर्थ्य को भी बढ़ाना है।   आत्मनिर्भर भारत का आत्मविश्वास आज जनमानस की सोच का हिस्सा बन चुका है।   अटल टनल इसी आत्मविश्वास का प्रतीक है। #AtalTunnel https://t.co/ohMSWtP1Kn\n",
      "1312319065214443520 2020-10-03 09:10:21 +0000 <narendramodi> कनेक्टिविटी का देश के विकास से सीधा संबंध होता है। ज्यादा से ज्यादा कनेक्टिविटी यानि उतना ही तेज विकास।   बॉर्डर एरिया में तो कनेक्टिविटी सीधे-सीधे देश की रक्षा जरूरतों से जुड़ी होती है।   लेकिन इसे लेकर जैसी गंभीरता और राजनीतिक इच्छाशक्ति की जरूरत थी, वैसी दिखाई नहीं गई थी... https://t.co/wDB3VSpYqW\n",
      "1312318701505372160 2020-10-03 09:08:54 +0000 <narendramodi> अटल टनल भारत के बॉर्डर इंफ्रास्ट्रक्चर को नई ताकत देने वाली है।   यह विश्वस्तरीय बॉर्डर कनेक्टिविटी का जीता-जागता प्रमाण है।   यह देश की सुरक्षा और समृद्धि, दोनों के लिए बहुत बड़ा संसाधन है। #AtalTunnel https://t.co/1bfUjCv1Qq\n",
      "1312293020276981761 2020-10-03 07:26:51 +0000 <narendramodi> Speaking at Sissu in Himachal Pradesh. https://t.co/GnYaWYofZn\n",
      "1312265970874867712 2020-10-03 05:39:22 +0000 <narendramodi> Inaugurating the spectacular #AtalTunnel. https://t.co/Npiw0qSO5A\n",
      "1312078637009567744 2020-10-02 17:14:58 +0000 <narendramodi> The #AtalTunnel will solve a major problem of connectivity in the region. It has several salient features and will further ‘Ease of Living’ for local citizens. Will also join public programmes in Sissu in Lahaul Spiti and at Solang Valley.\n",
      "1312078634866278403 2020-10-02 17:14:58 +0000 <narendramodi> Fulfilling Atal Ji’s dream of top quality infrastructure.   Will be in Himachal Pradesh tomorrow to dedicate the #AtalTunnel in Rohtang to the nation. This is an iconic infrastructure project built at a height of 10,000 feet. https://t.co/oZa8RY82vk\n",
      "1312074420828037121 2020-10-02 16:58:13 +0000 <narendramodi> Earlier today, attended a prayer meet at Gandhi Smriti. https://t.co/DlTpbIWcAU\n",
      "1312074019391201280 2020-10-02 16:56:38 +0000 <narendramodi> We are fully committed to ensure more youngsters study science.   There is a major role of science in realising our dream of an Aatmanirbhar Bharat. #VaibhavSummit https://t.co/I3QgITv8eU\n",
      "1312073804126904321 2020-10-02 16:55:46 +0000 <narendramodi> During #VaibhavSummit highlighted some of India’s efforts to encourage science and harness it for socio-economic change. https://t.co/QzBNfvGKMb\n",
      "1312031688336175104 2020-10-02 14:08:25 +0000 <narendramodi> Participating in the #VaibhavSummit. https://t.co/VoNcblRulD\n",
      "1311948457666506752 2020-10-02 08:37:41 +0000 <narendramodi> विजय घाट पर लाल बहादुर शास्त्री जी को श्रद्धा-सुमन अर्पित किए। https://t.co/eIf1KrON01\n",
      "1311948150408503296 2020-10-02 08:36:28 +0000 <narendramodi> गांधी जयंती के अवसर पर राजघाट जाकर पूज्य बापू को विनम्र श्रद्धांजलि दी। https://t.co/P1J6kKo6e1\n",
      "1311905372504879105 2020-10-02 05:46:29 +0000 <narendramodi> Wishing my friend @POTUS @realDonaldTrump and @FLOTUS a quick recovery and good health.\n",
      "1311844355204808704 2020-10-02 01:44:01 +0000 <narendramodi> Lal Bahadur Shastri Ji was humble and firm.  He epitomised simplicity and lived for the welfare of our nation.  We remember him on his Jayanti with a deep sense of gratitude for everything he has done for India. https://t.co/bTV6886crz\n",
      "1311843987532050437 2020-10-02 01:42:34 +0000 <narendramodi> We bow to beloved Bapu on Gandhi Jayanti.   There is much to learn from his life and noble thoughts.  May Bapu’s ideals keep guiding us in creating a prosperous and compassionate India. https://t.co/wCe4DkU9aI\n",
      "1311695054918963201 2020-10-01 15:50:45 +0000 <narendramodi> Looking forward to tomorrow’s Vaibhav Summit, which brings together scientists as well as researchers from the Indian diaspora.   Do join at 6:30 PM on 2nd October. https://t.co/fvXxaDhT5q\n",
      "1311694768649302016 2020-10-01 15:49:37 +0000 <narendramodi> Spoke to @BharatSolankee Ji and enquired about his well-being. He has shown remarkable courage during his 100-day long battle against COVID-19.  I wish him good health in the times to come.\n",
      "1311538497312878593 2020-10-01 05:28:39 +0000 <narendramodi> MyNEP Competition is an interesting way of sharing unique aspects about the National Education Policy 2020.  Participate in the competition at https://t.co/IoxjJvaXdL.   Be a part of the educational transformation of India!   #NewNEPNewIndia https://t.co/ihV682wmVl\n",
      "1311478481113346048 2020-10-01 01:30:10 +0000 <narendramodi> Birthday wishes to Rashtrapati Ji. His rich insights and wise understanding of policy matters are great assets for our nation. He is extremely compassionate towards serving the vulnerable. I pray for his good health and long life. @rashtrapatibhvn\n",
      "1311327874100666368 2020-09-30 15:31:43 +0000 <narendramodi> Participated in the Shree Somnath Trust meeting via video conferencing. We discussed a wide range of issues pertaining to the Temple, including the exceptional community service by the Trust during these times and harnessing of technology to enable more devotees to pray.\n",
      "1311327447753936896 2020-09-30 15:30:01 +0000 <narendramodi> Brahmos Supersonic Cruise Missile has achieved yet another milestone with successful test launch showcasing enhanced operational capabilities and additional indigenous technologies. Congratulations to all the scientists and engineers. @DRDO_India @BrahMosMissile\n",
      "1310973712821256192 2020-09-29 16:04:24 +0000 <narendramodi> Today, the State of Kuwait and the Arab world has lost a beloved leader, India a close friend, and the world a great statesman. His Highness played a leading role in strengthening our bilateral relations, and always took special care of the Indian community in Kuwait.\n",
      "1310973708983566336 2020-09-29 16:04:23 +0000 <narendramodi> My heartfelt condolences on the sad demise of His Highness Sheikh Sabah Al-Ahmed Al-Jaber Al-Sabah, Amir of the State of Kuwait. In this moment of grief our thoughts are with the Al-Sabah family and the people of the State of Kuwait.\n"
     ]
    }
   ],
   "source": [
    "# Configure\n",
    "c = twint.Config()\n",
    "c.Username = \"narendramodi\"\n",
    "c.Limit = 1\n",
    "\n",
    "# Run\n",
    "twint.run.Search(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "VDGVeeV9agaT"
   },
   "source": [
    "# Scrape the tweets from specific date"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 241
    },
    "id": "dYmTf5EYoNZD",
    "outputId": "054a15c0-59e0-4e16-e957-7c1f68c34f52"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1315915772544258049 2020-10-13 07:22:23 +0000 <narendramodi> ગુજરાતી સુગમ સંગીતનાં શિરમોર ગાયિકા કૌમુદી મુનશીના અવસાનથી દુઃખ અનુભવું છું. ગુજરાતી સુગમ સંગીતને લોકપ્રિય બનાવવામાં તેમનું યોગદાન સંગીતપ્રેમી પેઢીઓ માટે હંમેશા યાદગાર રહેશે.. શોકગ્રસ્ત પરિવાર અને એમના વિશાળ ચાહકવર્ગને સાંત્વના..ઈશ્વર તેમના આત્માને શાંતિ આપે એવી પ્રાર્થના.\n",
      "1315896260415553536 2020-10-13 06:04:51 +0000 <narendramodi> Released the autobiography of Shri Balasaheb Vikhe Patil Ji. https://t.co/ww1xsZpMS7\n",
      "1315673644090052609 2020-10-12 15:20:15 +0000 <narendramodi> At 11 AM tomorrow, will be releasing the autobiography of Shri Balasaheb Vikhe Patil Ji via video conferencing. His efforts towards strengthening agriculture and cooperatives will always be remembered. Do watch the programme.\n",
      "1315673528889348097 2020-10-12 15:19:47 +0000 <narendramodi> मी उद्या सकाळी अकरा वाजता व्हिडिओ कॉन्फरंसिंगच्या माध्यमातून श्री बाळासाहेब विखे पाटील यांचे आत्मचरित्र प्रकाशित करणार आहे. कृषी आणि सहकारक्षेत्र मजबूत करण्यासाठीचे त्यांचे प्रयत्न नेहमी स्मरणात राहतील. हा कार्यक्रम नक्की बघा.\n",
      "1315672946036232192 2020-10-12 15:17:29 +0000 <narendramodi> Today’s announcements by FM @nsitharaman Ji are timely moves which will boost consumer spending and sentiment as well as push capital expenditure. These steps will also boost demand in our economy. https://t.co/bqhJhz8iwo\n",
      "1315597762872791040 2020-10-12 10:18:43 +0000 <narendramodi> बिहार के पिछड़ा एवं अति पिछड़ा वर्ग कल्याण मंत्री विनोद कुमार सिंह जी के निधन से अत्यंत दुख पहुंचा है। वे गरीबों-वंचितों के सशक्तिकरण के लिए समर्पित रहे। उन्होंने राज्य में भाजपा को मजबूत बनाने में भी अहम भूमिका निभाई। उनके परिजनों और समर्थकों के प्रति मेरी संवेदनाएं। ओम शांति!\n",
      "1315597233442549760 2020-10-12 10:16:37 +0000 <narendramodi> समाजवाद के प्रवर्तक, विचारों को सत्ता से ऊपर और देशहित को सर्वोपरि मानने वाले लोहिया जी को उनकी पुण्यतिथि पर शत-शत नमन।\n",
      "1315597231794221056 2020-10-12 10:16:37 +0000 <narendramodi> लोकतंत्र को सशक्त करने के लिए अपना जीवन समर्पित करने वाले, विचार को व्यवहार बनाने वाले, लोकतांत्रिक मानकों का जीवनपर्यन्त निर्वाह करने वाले लोहिया जी समस्त देश के प्रेरणा पुरुष हैं।\n",
      "1315576723262509057 2020-10-12 08:55:07 +0000 <narendramodi> #RajmataScindia was a deeply religious person. But, in her Puja Mandir there always a picture of Bharat Mata.   Inspired by her vision, India has been making remarkable progress. Our strides in several areas would have made her very proud. https://t.co/GzGlBDVmeO\n",
      "1315576316184285184 2020-10-12 08:53:30 +0000 <narendramodi> #RajmataScindia was always particular about knowing Party Karyakartas by their names.   Party Karyakartas remember her as a humble and compassionate personality. https://t.co/bTLtNEOTN1\n",
      "1315576167789780992 2020-10-12 08:52:55 +0000 <narendramodi> For #RajmataScindia, public service came above everything else.  She was not tempted by power.   A few words written in a letter to her daughters give a glimpse of her greatness. https://t.co/IitcY75J0a\n",
      "1315527225215651840 2020-10-12 05:38:26 +0000 <narendramodi> Tributes to #RajmataScindia on her Jayanti. https://t.co/UnITmCofMt\n"
     ]
    }
   ],
   "source": [
    "# Configure\n",
    "c = twint.Config()\n",
    "c.Username = \"narendramodi\"\n",
    "c.Limit = 1\n",
    "c.Since = '2020-10-12'\n",
    "\n",
    "# Run\n",
    "twint.run.Search(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "eySUM3wkajOi"
   },
   "source": [
    "# Scrape tweets for specific search strings"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 224
    },
    "id": "b2_TaHF1pfT1",
    "outputId": "215db41d-3cc3-48ed-9d00-18c04347300e"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1312631442698952709 2020-10-04 05:51:38 +0000 <IronManIndianDr> Warm welcome to India mr @DrabdullahCE   Hope think of United states of Tamil nadu state to integrate Afghanistan with India  Get military support from @narendramodi India  Talk about women welfare schemes  Talk about education and health care system in Afghanistan  @ashrafghani\n",
      "1303654573299638277 2020-09-09 11:20:45 +0000 <penottawa> Sickening and shocking. A rape every 15 minutes? Why the silence from @narendramodi? #india #rape\n",
      "1279024105476558848 2020-07-03 12:08:04 +0000 <rajeev_mp> Msg from @narendramodi - India is resolute. Inspired by Lord SriKrishna, we will seek peace 🙏🏻but deliver violence if provoked 🇮🇳  Msg as understood by Beijing Comrades- MOU isnt valid despite dynasty best efforts.😫😫  #UnitedAgainstChina  https://t.co/dLfwdcoJKL\n",
      "1260455481862230022 2020-05-13 06:22:59 +0000 <sanjeevchadha8> @ImranKhanPTI do you know what is the message from @narendramodi . India is ready to do a deal. Surrender Lahore Punjab and Sindh we will pay to you also.  Else very soon #POK #20lakhcrore #atmanirbharbharat\n",
      "1260081055094026240 2020-05-12 05:35:09 +0000 <mathpunter> @ImranKhanPTI Kindly ask your military @OfficialDGISPR to attack and annex Kashmir from @narendramodi India. How long would you keep the kashmiris waiting? Fight the enemy and leave the result to \"ALLAH\".\n",
      "1250280229760724993 2020-04-15 04:30:10 +0000 <ParagDr> LockDown on until May 3 Graded opening likely from April 20  Message from @narendramodi , India has done well. ✅   Detailed guide line to be issued today https://t.co/KtmIuKUf9l\n",
      "1243562184308858882 2020-03-27 15:35:03 +0000 <hitulav> @JhaSanjay @narendramodi And pray who are these competent and experienced people? Not your masters for sure. But for Pakistan in SAARC and China in UN everyone is learning from @narendramodi. India is behind PM. You didn't hear the Nation at 5 PM on 22 Mar 2020. It's over for you guys.\n",
      "1242693742064173061 2020-03-25 06:04:10 +0000 <MdSamsul_Islam> @LangaMahesh @abhisar_sharma Dear @rahulkanwal , don't think that every Indian citizens specially poor get the same package u r receiving from @narendramodi, India is the only country who didn't declare it's medical capacity, basic living food package needed specially for poor.\n",
      "1242463017054261251 2020-03-24 14:47:21 +0000 <pushpen71695248> As expected from @narendramodi india is completely lockdown for 21 days from today's midnight @manjit2007  #CurfewInIndia #StayAtHomeSaveLives\n",
      "1234503414639403009 2020-03-02 15:38:44 +0000 <TweetNitinS> Big announcement from #NarendraModi , India’s Prime Minister @BBCHindi @BBCWorld\n",
      "1206256925433901056 2019-12-15 16:57:16 +0000 <TwilightBlithe> Striking images emerges from @narendramodi India Opening all fronts once, while #Kashmir still bleeds Its not just Muslims ..  Polarization on #Hindus\n"
     ]
    }
   ],
   "source": [
    "# Configure\n",
    "c = twint.Config()\n",
    "c.Username = \"narendramodi\"\n",
    "c.Limit = 1\n",
    "c.Search = ['India']\n",
    "\n",
    "# Run\n",
    "twint.run.Search(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "OvtpMnHHbAFV"
   },
   "source": [
    "# Scrape tweets Images, Videos or Media (images or videos) "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 1000
    },
    "id": "ALF-GYBJp5Ve",
    "outputId": "27808944-6a64-4be0-8a97-01a433d8d345"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1315576723262509057 2020-10-12 08:55:07 +0000 <narendramodi> #RajmataScindia was a deeply religious person. But, in her Puja Mandir there always a picture of Bharat Mata.   Inspired by her vision, India has been making remarkable progress. Our strides in several areas would have made her very proud. https://t.co/GzGlBDVmeO\n",
      "1315576316184285184 2020-10-12 08:53:30 +0000 <narendramodi> #RajmataScindia was always particular about knowing Party Karyakartas by their names.   Party Karyakartas remember her as a humble and compassionate personality. https://t.co/bTLtNEOTN1\n",
      "1315576167789780992 2020-10-12 08:52:55 +0000 <narendramodi> For #RajmataScindia, public service came above everything else.  She was not tempted by power.   A few words written in a letter to her daughters give a glimpse of her greatness. https://t.co/IitcY75J0a\n",
      "1315226801774292994 2020-10-11 09:44:39 +0000 <narendramodi> भारत के गांवों के लिए जितना काम पिछले 6 वर्षों में किया गया है, उतना आजादी के छह दशकों में भी नहीं हुआ।   इतिहास बताता है कि गांव और गरीब को अभाव में रखना कुछ लोगों की राजनीति का आधार रहा है। हमने गरीबों को अभाव से मुक्ति का अभियान चलाया है। #SampatiSeSampanta https://t.co/tPeGSTVVBL\n",
      "1315226621394075648 2020-10-11 09:43:56 +0000 <narendramodi> भारत की आत्मा गांवों में बसती है। लेकिन सच्चाई यही है कि दशकों तक गांवों को उनके नसीब पर छोड़ दिया गया।   पिछले 6 वर्षों में हमने एक के बाद एक कई कामों को शुरू किया और उन्हें गांव-गरीब तक ले गए।   अब बिना किसी भेदभाव के, पूरी पारदर्शिता के साथ सबको योजनाओं का लाभ मिल रहा है। https://t.co/rKXTBNoFtN\n",
      "1315226568973713408 2020-10-11 09:43:44 +0000 <narendramodi> जब संपत्ति का रिकॉर्ड होता है, उसका अधिकार मिलता है तो नागरिक का जीवन भी सुरक्षित रहता है और उसका आत्मविश्वास भी अनेक गुना बढ़ जाता है।   स्वामित्व योजना के तहत मिलने वाला प्रॉपर्टी कार्ड इसी दिशा में दलित, पीड़ित, शोषित और वंचित ग्रामीणों की भलाई के लिए उठाया गया एक बड़ा कदम है। https://t.co/wvSRcbeGIU\n",
      "1315226482474545153 2020-10-11 09:43:23 +0000 <narendramodi> आत्मनिर्भर भारत अभियान में आज देश ने एक और बड़ा कदम उठा दिया है।   स्वामित्व योजना गांव में रहने वाले हमारे भाई-बहनों को आत्मनिर्भर बनाने में बहुत मदद करने वाली है।   आज 6 राज्यों के लाखों परिवारों को उनके घरों के कानूनी कागज सौंपे गए हैं।    #SampatiSeSampanta https://t.co/APxBgvlRgM\n",
      "1315225933561774080 2020-10-11 09:41:12 +0000 <narendramodi> पुणे के कोंढणपुर में रहने वाले विश्‍वनाथ कृष्‍णा मुजुमले जी ने बताया कि स्वामित्व योजना के तहत किस प्रकार उनके गांव में बिना किसी अनियमितता और भ्रष्टाचार के काम हुआ और इससे लोग बहुत संतुष्ट हैं। #SampatiSeSampanta https://t.co/hX5tZ40mko\n",
      "1315225768499109888 2020-10-11 09:40:33 +0000 <narendramodi> चुनौतियों का दृढ़ता से सामना करने वाली बाराबंकी की रामरती जी को प्रॉपर्टी कार्ड से एक नया आत्मविश्वास मिला है। उन्होंने बताया कि पूर्वजों की संपत्ति का कागज मिलने के बाद अब वे न केवल खुद को हर तरह से सुरक्षित महसूस करती हैं, बल्कि अपना रोजगार भी बढ़ा सकेंगी। #SampatiSeSampanta https://t.co/7N8eVpX2TL\n",
      "1315225687846875138 2020-10-11 09:40:14 +0000 <narendramodi> हरियाणा के मुमताज अली जी जैसे लोगों का जीवन बदलने वाला है। यमुनानगर में राजमिस्त्री का काम करने वाले मुमताज जी ने बताया कि किस प्रकार प्रॉपर्टी कार्ड के आधार पर उन्हें बैंक से तीन लाख रुपये का लोन मिलने वाला है, जिससे वे अपने रोजगार को बेहतर तरीके से आगे बढ़ा सकेंगे। https://t.co/2lrkmKjKrk\n",
      "1315225627553800192 2020-10-11 09:39:59 +0000 <narendramodi> स्वामित्व योजना के तहत वितरित किए गए प्रॉपर्टी कार्ड से उत्तराखंड के पौड़ी गढ़वाल में भी खुशी की माहौल है। सुरेश चंद जी ने बताया कि स्वामित्व योजना में डिजिटल माध्यम का बेहतरीन इस्तेमाल किया गया और कहीं कोई गड़बड़ी नहीं हुई। #SampatiSeSampanta https://t.co/zyuLTxyi0A\n",
      "1315225548830859265 2020-10-11 09:39:41 +0000 <narendramodi> उत्तर प्रदेश के बाराबंकी के राममिलन जी परचून की दुकान चलाते हैं। शारीरिक चुनौतियों के बावजूद वे थोड़ा-बहुत खेती का काम भी करते हैं। उन्होंने बताया कि किस प्रकार प्रॉपर्टी कार्ड ने उनकी जिंदगी की राह आसान कर दी है। #SampatiSeSampanta https://t.co/PJBS77G5k0\n",
      "1315225440366202881 2020-10-11 09:39:15 +0000 <narendramodi> मध्यप्रदेश के डिंडोरी जिले के दर्शन सिंह जी ने बताया कि उन्होंने कभी नहीं सोचा था कि इतनी आसानी से उन्हें जमीन का पट्टा मिलेगा। स्वामित्व योजना के तहत प्रॉपर्टी कार्ड मिलने से उन्हें जो खुशी मिली है, आज वो देश के हर ग्रामीण की खुशी का प्रतीक बनी है। #SampatiSeSampanta https://t.co/l99fPaINOv\n",
      "1315132518153089030 2020-10-11 03:30:00 +0000 <narendramodi> A landmark day for rural development! Do join the programme at 11 AM. #SampatiSeSampanta https://t.co/uM15HqLMD3\n",
      "1315128045057929216 2020-10-11 03:12:14 +0000 <narendramodi> India is proud that legends like Loknayak JP and Nanaji Deshmukh were born in this land. Today is a day to rededicate ourselves towards fulfilling their vision for our nation. https://t.co/RAUapZmxar\n",
      "1314792763100069889 2020-10-10 04:59:57 +0000 <narendramodi> #MannKiBaat presents a great opportunity to share inspiring journeys of outstanding citizens and discuss themes that power societal change. This month’s programme will take place on the 25th. Share your ideas on the NaMo App, MyGov or record your message.  https://t.co/qVG7YLhsuY https://t.co/P1IccJxV3j\n",
      "1314449520474824705 2020-10-09 06:16:01 +0000 <narendramodi> Paid respects to late Shri Ram Vilas Paswan Ji. His unwavering commitment to social justice will always be remembered. https://t.co/QaklVGclx5\n",
      "1314230480653352961 2020-10-08 15:45:38 +0000 <narendramodi> Shri Ram Vilas Paswan Ji rose in politics through hardwork and determination. As a young leader, he resisted tyranny and the assault on our democracy during the Emergency. He was an outstanding Parliamentarian and Minister, making lasting contributions in several policy areas. https://t.co/naqx27xBoj\n",
      "1314229862148661248 2020-10-08 15:43:11 +0000 <narendramodi> I am saddened beyond words. There is a void in our nation that will perhaps never be filled. Shri Ram Vilas Paswan Ji’s demise is a personal loss. I have lost a friend, valued colleague and someone who was extremely passionate to ensure every poor person leads a life of dignity. https://t.co/2UUuPBjBrj\n",
      "1314030957477810176 2020-10-08 02:32:48 +0000 <narendramodi> आइए, कोरोना से लड़ने के लिए एकजुट हों!   हमेशा याद रखें:   मास्क जरूर पहनें।   हाथ साफ करते रहें।   सोशल डिस्टेंसिंग का पालन करें।   ‘दो गज की दूरी’ रखें।   #Unite2FightCorona https://t.co/L3wfaqlhDn\n",
      "1314030641218904064 2020-10-08 02:31:33 +0000 <narendramodi> Let us #Unite2FightCorona!   Let us always remember:  Wear a mask.   Wash hands.  Follow social distancing.  Practice ‘Do Gaj Ki Doori.’    Together, we will succeed.   Together, we will win against COVID-19. https://t.co/x5bymQpqjx\n",
      "1314030435136016385 2020-10-08 02:30:43 +0000 <narendramodi> India’s COVID-19 fight is people driven and gets great strength from our COVID warriors. Our collective efforts have helped saved many lives. We have to continue the momentum and protect our citizens from the virus. #Unite2FightCorona https://t.co/GrYUZPZc2m\n",
      "1314029762608721920 2020-10-08 02:28:03 +0000 <narendramodi> एयर फोर्स डे पर भारतीय वायुसेना के सभी वीर योद्धाओं को बहुत-बहुत बधाई। आप न सिर्फ देश के आसमान को सुरक्षित रखते हैं, बल्कि आपदा के समय मानवता की सेवा में भी अग्रणी भूमिका निभाते हैं। मां भारती की रक्षा के लिए आपका साहस, शौर्य और समर्पण हर किसी को प्रेरित करने वाला है।  #AFDay2020 https://t.co/0DYlI7zpe6\n",
      "1313168895784611841 2020-10-05 17:27:16 +0000 <narendramodi> It remains our collective responsibility to ensure trust in AI is maintained and we use AI for larger public good. #Raise2020 https://t.co/CDJspiwEPp\n",
      "1313168792655024129 2020-10-05 17:26:52 +0000 <narendramodi> Elaborated on some of India’s efforts to encourage AI. #Raise2020 https://t.co/UzlzP9WP9z\n",
      "1312624055816646656 2020-10-04 05:22:16 +0000 <narendramodi> Shyamji Krishna Varma was fearless and selfless. He devoted himself towards India’s freedom and inspired many nationalists. India bows to him on his Jayanti. We shall always work hard to realise his vision for our nation. Visit this site to know about him. https://t.co/lN5TzJR7Xh https://t.co/3LlETdMEKa\n",
      "1312398101689188352 2020-10-03 14:24:25 +0000 <narendramodi> New age infrastructure for India! #AtalTunnel https://t.co/qKFDRcVyL0\n",
      "1312397856469213186 2020-10-03 14:23:26 +0000 <narendramodi> The #AtalTunnel is a game changing infrastructure project that will help several citizens. With this project comes several economic benefits, particularly for agriculture and tourism. https://t.co/6gAwK5QR4Y\n",
      "1312388614156767232 2020-10-03 13:46:43 +0000 <narendramodi> देश में आज जो रिफॉर्म्स किए जा रहे हैं, उसने ऐसे लोगों को परेशान कर दिया है, जिन्होंने हमेशा अपने राजनीतिक हितों के लिए काम किया।   आज जब ऐसे लोगों द्वारा बनाए बिचौलियों और दलालों के तंत्र पर प्रहार हो रहा है, तो वे बौखला गए हैं।   लेकिन देश आज परिवर्तन के लिए प्रतिबद्ध है। https://t.co/CacovmH42B\n",
      "1312388556971626497 2020-10-03 13:46:29 +0000 <narendramodi> हिमाचल प्रदेश के लोगों का जीवन आसान बनाने के लिए सड़क, बिजली जैसी मूल जरूरतों के साथ-साथ मोबाइल और इंटरनेट कनेक्टिविटी भी बहुत जरूरी है।   सरकार का निरंतर प्रयास है कि सामान्य मानवी की परेशानी कम से कम हो और उसे उसके हक का पूरा लाभ मिल सके। #AtalTunnel https://t.co/3n1VUOsvMD\n",
      "1312388459672215554 2020-10-03 13:46:06 +0000 <narendramodi> मनाली को बहुत अधिक पसंद करने वाले अटल जी की यह अटल इच्छा थी कि यहां स्थितियां बदले, यहां की कनेक्टिविटी बेहतर हो।   इसी सोच के साथ उन्होंने रोहतांग में टनल बनाने का फैसला लिया था। मुझे खुशी है कि आज अटल जी का यह संकल्प सिद्ध हो गया। #AtalTunnel https://t.co/52NarqAXjv\n",
      "1312352680841486336 2020-10-03 11:23:56 +0000 <narendramodi> अटल टनल केंद्र सरकार के उस संकल्प का भी हिस्सा है कि देश के हर हिस्से में, हर व्यक्ति तक विकास का लाभ पहुंचना चाहिए।   अब देश में नई सोच के साथ काम हो रहा है। सबके साथ से, सबके विश्वास से, सबका विकास हो रहा है।   प्रयास इस बात का है कि कोई भारतीय छूट न जाए, पीछे न रह जाए। https://t.co/68w0LaF4l8\n",
      "1312352573492539393 2020-10-03 11:23:30 +0000 <narendramodi> अटल टनल के बन जाने से लाहौल के लोगों के लिए तो नई सुबह हुई ही है, पांगी के लोगों का जीवन भी बदलने वाला है।   लाहौल-स्पीति और पांगी के किसान हों, बागवानी से जुड़े लोग हों, पशुपालक हों, स्टूडेंट हों, नौकरीपेशा हों, व्यापारी-कारोबारी हों, सभी को इससे लाभ होने वाला है। https://t.co/xBeejfowiv\n",
      "1312319233653522432 2020-10-03 09:11:01 +0000 <narendramodi> जैसे-जैसे भारत की वैश्विक भूमिका बदल रही है, हमें उसी तेजी से, उसी रफ्तार से अपने इंफ्रास्ट्रक्चर को, अपने आर्थिक और सामरिक सामर्थ्य को भी बढ़ाना है।   आत्मनिर्भर भारत का आत्मविश्वास आज जनमानस की सोच का हिस्सा बन चुका है।   अटल टनल इसी आत्मविश्वास का प्रतीक है। #AtalTunnel https://t.co/ohMSWtP1Kn\n",
      "1312319065214443520 2020-10-03 09:10:21 +0000 <narendramodi> कनेक्टिविटी का देश के विकास से सीधा संबंध होता है। ज्यादा से ज्यादा कनेक्टिविटी यानि उतना ही तेज विकास।   बॉर्डर एरिया में तो कनेक्टिविटी सीधे-सीधे देश की रक्षा जरूरतों से जुड़ी होती है।   लेकिन इसे लेकर जैसी गंभीरता और राजनीतिक इच्छाशक्ति की जरूरत थी, वैसी दिखाई नहीं गई थी... https://t.co/wDB3VSpYqW\n",
      "1312318701505372160 2020-10-03 09:08:54 +0000 <narendramodi> अटल टनल भारत के बॉर्डर इंफ्रास्ट्रक्चर को नई ताकत देने वाली है।   यह विश्वस्तरीय बॉर्डर कनेक्टिविटी का जीता-जागता प्रमाण है।   यह देश की सुरक्षा और समृद्धि, दोनों के लिए बहुत बड़ा संसाधन है। #AtalTunnel https://t.co/1bfUjCv1Qq\n",
      "1312074420828037121 2020-10-02 16:58:13 +0000 <narendramodi> Earlier today, attended a prayer meet at Gandhi Smriti. https://t.co/DlTpbIWcAU\n",
      "1312074019391201280 2020-10-02 16:56:38 +0000 <narendramodi> We are fully committed to ensure more youngsters study science.   There is a major role of science in realising our dream of an Aatmanirbhar Bharat. #VaibhavSummit https://t.co/I3QgITv8eU\n",
      "1312073804126904321 2020-10-02 16:55:46 +0000 <narendramodi> During #VaibhavSummit highlighted some of India’s efforts to encourage science and harness it for socio-economic change. https://t.co/QzBNfvGKMb\n",
      "1311948457666506752 2020-10-02 08:37:41 +0000 <narendramodi> विजय घाट पर लाल बहादुर शास्त्री जी को श्रद्धा-सुमन अर्पित किए। https://t.co/eIf1KrON01\n",
      "1311948150408503296 2020-10-02 08:36:28 +0000 <narendramodi> गांधी जयंती के अवसर पर राजघाट जाकर पूज्य बापू को विनम्र श्रद्धांजलि दी। https://t.co/P1J6kKo6e1\n",
      "1311844355204808704 2020-10-02 01:44:01 +0000 <narendramodi> Lal Bahadur Shastri Ji was humble and firm.  He epitomised simplicity and lived for the welfare of our nation.  We remember him on his Jayanti with a deep sense of gratitude for everything he has done for India. https://t.co/bTV6886crz\n",
      "1311843987532050437 2020-10-02 01:42:34 +0000 <narendramodi> We bow to beloved Bapu on Gandhi Jayanti.   There is much to learn from his life and noble thoughts.  May Bapu’s ideals keep guiding us in creating a prosperous and compassionate India. https://t.co/wCe4DkU9aI\n",
      "1311695054918963201 2020-10-01 15:50:45 +0000 <narendramodi> Looking forward to tomorrow’s Vaibhav Summit, which brings together scientists as well as researchers from the Indian diaspora.   Do join at 6:30 PM on 2nd October. https://t.co/fvXxaDhT5q\n",
      "1311538497312878593 2020-10-01 05:28:39 +0000 <narendramodi> MyNEP Competition is an interesting way of sharing unique aspects about the National Education Policy 2020.  Participate in the competition at https://t.co/IoxjJvaXdL.   Be a part of the educational transformation of India!   #NewNEPNewIndia https://t.co/ihV682wmVl\n",
      "1310892261102596098 2020-09-29 10:40:44 +0000 <narendramodi> देश के लिए हो रहे हर काम का विरोध करना कुछ लोगों की आदत हो गई है।   इनकी स्वार्थनीति के बीच आत्मनिर्भर भारत के लिए बड़े रिफॉर्म्स का यह सिलसिला निरंतर जारी रहेगा। #NamamiGange   https://t.co/ex1cMLIgaO\n",
      "1310891995951280131 2020-09-29 10:39:41 +0000 <narendramodi> जल जीवन मिशन गांव और गरीब के घर तक पानी पहुंचाने का तो अभियान है ही, यह ग्राम स्वराज और गांव के सशक्तिकरण को भी नई बुलंदी देने वाला अभियान है। #NamamiGange https://t.co/NZm3NG2m3t\n",
      "1310890782123896832 2020-09-29 10:34:52 +0000 <narendramodi> आज देश उस दौर से बाहर निकल चुका है, जब पानी की तरह पैसा तो बह जाता था, लेकिन नतीजे नहीं मिलते थे।   आज पैसा पानी में नहीं बहता, पानी पर लगाया जाता है।   आज जल जीवन मिशन के तहत हर दिन करीब 1 लाख परिवारों को शुद्ध पेयजल की सुविधा से जोड़ा जा रहा है। #NamamiGange https://t.co/4Gb5kRnukl\n",
      "1310890718680891392 2020-09-29 10:34:37 +0000 <narendramodi> अब नमामि गंगे अभियान को एक नए स्तर पर ले जाया जा रहा है।   गंगा जी की स्वच्छता के अलावा अब इससे सटे पूरे क्षेत्र की अर्थव्यवस्था और पर्यावरण के विकास पर भी फोकस है।   गंगा जी के दोनों ओर पेड़-पौधे लगाने के साथ ही ऑर्गेनिक फार्मिंग से जुड़ा कॉरिडोर भी विकसित किया जा रहा है। https://t.co/IdoLCXzdC6\n",
      "1310890670396026880 2020-09-29 10:34:25 +0000 <narendramodi> गंगा जल की स्वच्छता को लेकर अगर वही पुराने तौर-तरीके अपनाए जाते, तो आज भी हालत उतनी ही बुरी रहती।   लेकिन हम नई सोच, नई अप्रोच के साथ आगे बढ़े।   आज हुए लोकार्पण के साथ उत्तराखंड में नमामि गंगे कार्यक्रम के लगभग सभी बड़े प्रोजेक्ट्स पूरे हो चुके हैं। #NamamiGange https://t.co/ySAU2CC3aC\n",
      "1310797107930959872 2020-09-29 04:22:38 +0000 <narendramodi> At 11 AM, will be inaugurating a series of development works that will benefit the people of Devbhoomi Uttarakhand. #NamamiGange https://t.co/q9ohxKkGXJ\n",
      "1310583962251808769 2020-09-28 14:15:40 +0000 <narendramodi> During the India-Denmark Summit today @Statsmin Mette Frederiksen and I reviewed the full range of bilateral ties between our nations. We look forward to having a strong Green Strategic Partnership with Denmark and improving ties in sectors like trade, commerce and energy. https://t.co/19cXGG5Ikg\n",
      "1310580779756466177 2020-09-28 14:03:01 +0000 <narendramodi> During #MannKiBaat yesterday, I had shared parts of my interesting interaction with story tellers. Here is our complete interaction, where they answer some of my questions and narrate a story in addition to the one shared yesterday. Do listen. https://t.co/zVEGAJbKIS\n",
      "1310414643244879873 2020-09-28 03:02:51 +0000 <narendramodi> मां भारती के वीर सपूत अमर शहीद भगत सिंह की जयंती पर उन्हें कोटि-कोटि नमन। वीरता और पराक्रम की उनकी गाथा देशवासियों को युगों-युगों तक प्रेरित करती रहेगी। https://t.co/LMy2Mlpkol\n",
      "1310148779274719233 2020-09-27 09:26:25 +0000 <narendramodi> Her life was all about helping the poor and needy.  She was caring.   Shared an anecdote from the Ekta Yatra, which shows Rajmata Vijayaraje Scindia’s compassionate personality. #MannKiBaat https://t.co/kEmxn8Pdty\n",
      "1310148416974929922 2020-09-27 09:24:58 +0000 <narendramodi> 2 अक्टूबर हम सबके लिए मां भारती के दो सपूतों, महात्मा गांधी और लाल बहादुर शास्त्री को याद करने का दिन है।   पूज्य बापू के विचार और आदर्श आज पहले से ज्यादा प्रासंगिक हैं। उनका जो आर्थिक चिन्तन था, अगर उस Spirit को पकड़ा गया होता तो आज आत्मनिर्भर भारत अभियान की जरूरत ही नहीं पड़ती। https://t.co/NrEdl9WJzR\n",
      "1310148253288034305 2020-09-27 09:24:19 +0000 <narendramodi> आज की तारीख में खेती को हम जितना आधुनिक विकल्प देंगे, उतना ही वह आगे बढ़ेगी। उसमें नए-नए तौर-तरीके आएंगे, नए Innovations जुड़ेंगे।   गुजरात और मणिपुर से हमारे किसान भाई-बहनों से जुड़ी ऐसी कहानियां देखने को मिली हैं, जो इसके प्रत्यक्ष उदाहरण हैं। #MannKiBaat https://t.co/YU0rnHW8jM\n",
      "1310148118382477315 2020-09-27 09:23:47 +0000 <narendramodi> महाराष्ट्र में एक छोटे से बदलाव से देखते ही देखते किसानों की स्थिति भी बदल गई।   तमिलनाडु और उत्तर प्रदेश में भी किसानों ने समूह बनाकर जिस प्रकार के प्रयास किए, वह आज देशभर के किसानों के लिए एक मिसाल है। #MannKiBaat https://t.co/GQRfq7l3Bh\n",
      "1310147962052308992 2020-09-27 09:23:10 +0000 <narendramodi> देश का कृषि क्षेत्र, किसान और गांव आत्मनिर्भर भारत के आधार हैं। ये मजबूत होंगे तो आत्मनिर्भर भारत की नींव मजबूत होगी। इस दिशा में हरियाणा के किसानों का अनूठा प्रयोग देखिए... #MannKiBaat https://t.co/JxKx6VS8WB\n",
      "1310147773438672896 2020-09-27 09:22:25 +0000 <narendramodi> Meet Mali’s ‘Hindustan Ka Babu’ Mr. Seydou Dembélé.  His birthday is on 15th August.   He speaks great Hindi.  He does a weekly radio programme called Indian Frequency.  @SEYDOUD81769785 is an example of the rising popularity of Indian culture globally. #MannKiBaat https://t.co/lruPrK2qgb\n",
      "1310147194490552321 2020-09-27 09:20:07 +0000 <narendramodi> An interesting interaction with those associated with the Bangalore Storytelling Society on story telling.  They also shared a story, which you must hear.   #MannKiBaat   https://t.co/SzbBIaTtri\n",
      "1310146662036156417 2020-09-27 09:18:00 +0000 <narendramodi> Stories are as old as human civilisation.  Everyone has a fascinating story to tell. During #MannKiBaat, I highlighted India’s rich tradition of story telling and appealed that together, we make this tradition more vibrant in the times to come. https://t.co/NeTczEly0B\n",
      "1309901788930211841 2020-09-26 17:04:57 +0000 <narendramodi> Do join tomorrow, 27th September at 11 AM. #MannKiBaat https://t.co/pvilHfbrMy\n",
      "1309892244644663296 2020-09-26 16:27:02 +0000 <narendramodi> The people of India are working to build an ‘Aatmanirbhar Bharat’, which shall be a force multiplier for the global economy. https://t.co/yAFmd4J70o\n",
      "1309892110913384448 2020-09-26 16:26:30 +0000 <narendramodi> Guided by the principle of ‘Reform, Perform and Transform’, India has been empowering millions and freeing the most vulnerable from the clutches of poverty. https://t.co/4bkBzFmt97\n",
      "1309891938695274496 2020-09-26 16:25:49 +0000 <narendramodi> India will do everything possible to further global good including the battle against COVID-19 pandemic.   At the same time, India will always fight against terrorism, money laundering, narcotics and trade of illegal weapons. https://t.co/p2ILZx0PwQ\n",
      "1309891320148709376 2020-09-26 16:23:21 +0000 <narendramodi> The principles on which @UN was founded and the ethos of India are broadly similar.   Convergence can be seen when India proudly participates in peacekeeping missions, when India takes the lead to popularise Yoga, takes initiatives like International Solar Alliance and more... https://t.co/hfGuukF2on\n",
      "1309890741351505920 2020-09-26 16:21:03 +0000 <narendramodi> Reforms in @UN are the need of the hour.   130 crore Indians have great respect for the UN but they have also been waiting since long for the reform process in the UN to reach its logical end.   Till when can a nation like India be kept away from UN’s decision making structures? https://t.co/5m1fcCGflv\n",
      "1309890308453220354 2020-09-26 16:19:20 +0000 <narendramodi> It has been 75 years since the @UN was formed.   The world of 2020 is vastly different from the world of 1945. What was relevant then is not necessarily relevant now.   UN has achieved much in these years but this is also a time to think about the path ahead. https://t.co/h2x2LLUf3y\n",
      "1309865136522276864 2020-09-26 14:39:19 +0000 <narendramodi> எனது நண்பர் பிரதமர் மகிந்த ராஜபக்ஷ அவர்களுடன் உரையாடியதில் பெருமகிழ்வடைகின்றேன். அபிவிருத்தி,பொருளாதார உறவு ,சுற்றுலாத்துறை,கல்வி,கலாசாரம், பரஸ்பர நலன் அடிப்படையிலான பிராந்திய &amp; சர்வதேச விவகாரங்கள் உட்பட தனித்துவமிக்க இந்திய-இலங்கை இருதரப்பு உறவுகள் குறித்து மீளாய்வு செய்தோம். https://t.co/yoISJMcf5i\n",
      "1309864807068098561 2020-09-26 14:38:00 +0000 <narendramodi> මා මිත්‍ර  අග්‍රාමාත්‍ය මහින්ද රාජපක්ෂ මැතිතුමා සමඟ කතා කිරීමට ලැබීම සතුටකි. සංවර්ධන සහයෝගීතාවය, ආර්ථික සබඳතා, සංචාරක කර්මාන්තය, අධ්‍යාපනය, සංස්කෘතිය හා අන්‍යෝන්‍ය වශයෙන් වැදගත් කලාපීය හා ජාත්‍යන්තර කරුණු ඇතුළු ඉන්දියා-ශ්‍රී ලංකා ද්විපාර්ශවික සම්බන්ධතාවය අපි සමාලෝචනය කළෙමු. https://t.co/faPrmkZz15\n",
      "1309864089665978368 2020-09-26 14:35:09 +0000 <narendramodi> Delighted to speak to my friend, PM Mahinda Rajapaksa. We reviewed the dynamic India-Sri Lanka bilateral relationship including areas of development partnership, economic engagement, tourism, education, culture, regional &amp; international issues of mutual interest. @PresRajapaksa https://t.co/MMilkJ3LKZ\n",
      "1309526373824827392 2020-09-25 16:13:12 +0000 <narendramodi> हमारा वैचारिक तंत्र और राजनीतिक मंत्र साफ है, गोलमोल नहीं है। हमने इसे जी कर दिखाया है।    हमारे लिए राष्ट्र सर्वोपरि है। नेशन फर्स्ट- यही हमारा मंत्र है, यही हमारा कर्म है।    भारतीय जनता पार्टी के प्रत्येक कार्यकर्ता को 21वीं सदी की राजनीति में अपनी यह पहचान और सशक्त करनी है। https://t.co/qQoVytJb3i\n",
      "1309526198024900613 2020-09-25 16:12:30 +0000 <narendramodi> किसानों से हमेशा झूठ बोलने वाले कुछ लोग इन दिनों राजनीतिक स्वार्थ की वजह से किसानों के कंधे पर रखकर बंदूकें चला रहे हैं, अफवाहें फैला रहे हैं।   अन्नदाताओं को अफवाहों से बचाना और उन्हें कृषि सुधार का महत्त्व समझाना, प्रत्येक भाजपा कार्यकर्ता का दायित्व है। https://t.co/OjLW1AufAl\n",
      "1309525676416999425 2020-09-25 16:10:25 +0000 <narendramodi> किसानों, श्रमिकों और महिलाओं की तरह छोटे-छोटे स्वरोजगार से जुड़े साथियों का एक बहुत बड़ा वर्ग ऐसा था, जिसकी सुध कभी नहीं ली गई।   रेहड़ी, पटरी, फेरी वाले लाखों साथियों के लिए पहली बार एक विशेष योजना बनाई गई है।    कोशिश यह है कि आत्मनिर्भरता के व्यापक मिशन से हर कोई जुड़े। https://t.co/6YMXebBvG1\n",
      "1309525550814429184 2020-09-25 16:09:55 +0000 <narendramodi> दशकों तक देश के श्रमिकों को कानून के जाल में उलझाकर रखा गया। अब इस स्थिति को बदल दिया गया है।   Labour Codes के जरिए श्रमिक साथियों को दर्जनों कानूनों के कुचक्र से निकालने का प्रयास किया गया है।   उनके स्वास्थ्य, सुरक्षा, सुविधा और वेतन को लेकर अब कानूनों को सरल बनाया गया है। https://t.co/KqFbuG0HMh\n",
      "1309525432371499008 2020-09-25 16:09:27 +0000 <narendramodi> एक राष्ट्र के रूप में, एक समाज के रूप में भारत को बेहतर बनाने के लिए पंडित दीनदयाल उपाध्याय जी ने जो योगदान दिया है, वह पीढ़ियों को प्रेरित करने वाला है।   भारतीय जनता पार्टी के हम सभी कार्यकर्ताओं के लिए उनका दिखाया मार्ग हमेशा प्रेरणा देता है, प्रोत्साहित करता है। https://t.co/q88bPbs8C0\n",
      "1309336310763544576 2020-09-25 03:37:57 +0000 <narendramodi> सरकार ने किसानों के कल्याण के लिए निरंतर प्रयास किए, इसके बाद भी हाल ही में संसद में पारित कृषि विधेयक उनके लिए क्यों जरूरी हो गए थे। इस बारे में कृषि मंत्री @nstomar जी ने विस्तार से बताया है। इसे हर किसी को जरूर देखना और सुनना चाहिए- https://t.co/2QzutG9A3T\n",
      "1309141433203527686 2020-09-24 14:43:35 +0000 <narendramodi> Pandit Deendayal Upadhyaya Ji’s ideals inspire us to serve the poor and ensure a positive difference in their lives.   On his Jayanti tomorrow, 25th September at 11 AM, I would be addressing @BJP4India Karyakartas from all over India.   Do watch. https://t.co/7sFPFWwiXF\n",
      "1309118921216266240 2020-09-24 13:14:07 +0000 <narendramodi> Fitness is not merely physical. It is as much about mental fitness and a healthy mind.   A sound mind and a sound body are strongly linked.   Elaborated on this during the Fit India Dialogue. #NewIndiaFitIndia https://t.co/vZimvvk3xf\n",
      "1309118809626873862 2020-09-24 13:13:41 +0000 <narendramodi> फिट इंडिया मूवमेंट ने अपने प्रभाव और प्रासंगिकता को कोरोनाकाल में सिद्ध करके दिखाया है।  फिट रहना उतना मुश्किल काम नहीं है, जितना कुछ लोगों को लगता है। थोड़े से नियम और परिश्रम से आप हमेशा स्वस्थ रह सकते हैं।  ‘फिटनेस की डोज, आधा घंटा रोज’ मंत्र में सभी का स्वास्थ्य छिपा है। https://t.co/8x3pky2L8m\n",
      "1309118683122409477 2020-09-24 13:13:10 +0000 <narendramodi> You can gauge the passion of @milindrunning towards fitness from this conversation. Inspiring!   His Mother is equally passionate about fitness... #NewIndiaFitIndia   https://t.co/5Kdey3mJfr\n",
      "1309118248550567938 2020-09-24 13:11:27 +0000 <narendramodi> Interacted with @mukulkanitkar, whose passions are- the Gita and Swami Vivekananda.   He had very unique perspectives on fitness, including what the Gita teaches us about remaining healthy. #NewIndiaFitIndia https://t.co/KlN4RS0lyP\n",
      "1309117304836444160 2020-09-24 13:07:42 +0000 <narendramodi> A conversation on fitness with one of the most fit icons of today-  the phenomenal @imVkohli!  He also spoke about food, Yo-Yo Test and more... #NewIndiaFitIndia https://t.co/1HERaRKHak\n",
      "1309115968359223302 2020-09-24 13:02:23 +0000 <narendramodi> During our interaction, @RujutaDiwekar elaborated on ‘eating local, thinking global’ and why we must be proud of our local culinary traditions. She also had lots to say on eating well, remaining healthy and more... #NewIndiaFitIndia https://t.co/tLozxU3GyF\n",
      "1309115508218830851 2020-09-24 13:00:34 +0000 <narendramodi> Meet Swami Shivadhyanam Saraswati Ji, who has studied in some of the most prestigious institutions but devoted himself towards Yoga and fitness. He spoke about five points relevant to good health and well-being. #NewIndiaFitIndia  https://t.co/kWV3WTM9WL\n"
     ]
    }
   ],
   "source": [
    "# Configure\n",
    "c = twint.Config()\n",
    "c.Username = \"narendramodi\"\n",
    "c.Limit = 1\n",
    "#c.Images= True\n",
    "#c.Vidoes = True\n",
    "c.Media = True\n",
    "\n",
    "# Run\n",
    "twint.run.Search(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "1CZH0be9bE3C"
   },
   "source": [
    "# Scrape popular tweets of user"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 1000
    },
    "id": "ZBJGdCrWqglP",
    "outputId": "39f12dd8-0abf-457b-fd49-3ffa5a3a9c00"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1315915772544258049 2020-10-13 07:22:23 +0000 <narendramodi> ગુજરાતી સુગમ સંગીતનાં શિરમોર ગાયિકા કૌમુદી મુનશીના અવસાનથી દુઃખ અનુભવું છું. ગુજરાતી સુગમ સંગીતને લોકપ્રિય બનાવવામાં તેમનું યોગદાન સંગીતપ્રેમી પેઢીઓ માટે હંમેશા યાદગાર રહેશે.. શોકગ્રસ્ત પરિવાર અને એમના વિશાળ ચાહકવર્ગને સાંત્વના..ઈશ્વર તેમના આત્માને શાંતિ આપે એવી પ્રાર્થના.\n",
      "1315896260415553536 2020-10-13 06:04:51 +0000 <narendramodi> Released the autobiography of Shri Balasaheb Vikhe Patil Ji. https://t.co/ww1xsZpMS7\n",
      "1315673644090052609 2020-10-12 15:20:15 +0000 <narendramodi> At 11 AM tomorrow, will be releasing the autobiography of Shri Balasaheb Vikhe Patil Ji via video conferencing. His efforts towards strengthening agriculture and cooperatives will always be remembered. Do watch the programme.\n",
      "1315673528889348097 2020-10-12 15:19:47 +0000 <narendramodi> मी उद्या सकाळी अकरा वाजता व्हिडिओ कॉन्फरंसिंगच्या माध्यमातून श्री बाळासाहेब विखे पाटील यांचे आत्मचरित्र प्रकाशित करणार आहे. कृषी आणि सहकारक्षेत्र मजबूत करण्यासाठीचे त्यांचे प्रयत्न नेहमी स्मरणात राहतील. हा कार्यक्रम नक्की बघा.\n",
      "1315672946036232192 2020-10-12 15:17:29 +0000 <narendramodi> Today’s announcements by FM @nsitharaman Ji are timely moves which will boost consumer spending and sentiment as well as push capital expenditure. These steps will also boost demand in our economy. https://t.co/bqhJhz8iwo\n",
      "1315597762872791040 2020-10-12 10:18:43 +0000 <narendramodi> बिहार के पिछड़ा एवं अति पिछड़ा वर्ग कल्याण मंत्री विनोद कुमार सिंह जी के निधन से अत्यंत दुख पहुंचा है। वे गरीबों-वंचितों के सशक्तिकरण के लिए समर्पित रहे। उन्होंने राज्य में भाजपा को मजबूत बनाने में भी अहम भूमिका निभाई। उनके परिजनों और समर्थकों के प्रति मेरी संवेदनाएं। ओम शांति!\n",
      "1315597233442549760 2020-10-12 10:16:37 +0000 <narendramodi> समाजवाद के प्रवर्तक, विचारों को सत्ता से ऊपर और देशहित को सर्वोपरि मानने वाले लोहिया जी को उनकी पुण्यतिथि पर शत-शत नमन।\n",
      "1315597231794221056 2020-10-12 10:16:37 +0000 <narendramodi> लोकतंत्र को सशक्त करने के लिए अपना जीवन समर्पित करने वाले, विचार को व्यवहार बनाने वाले, लोकतांत्रिक मानकों का जीवनपर्यन्त निर्वाह करने वाले लोहिया जी समस्त देश के प्रेरणा पुरुष हैं।\n",
      "1315576723262509057 2020-10-12 08:55:07 +0000 <narendramodi> #RajmataScindia was a deeply religious person. But, in her Puja Mandir there always a picture of Bharat Mata.   Inspired by her vision, India has been making remarkable progress. Our strides in several areas would have made her very proud. https://t.co/GzGlBDVmeO\n",
      "1315576316184285184 2020-10-12 08:53:30 +0000 <narendramodi> #RajmataScindia was always particular about knowing Party Karyakartas by their names.   Party Karyakartas remember her as a humble and compassionate personality. https://t.co/bTLtNEOTN1\n",
      "1315576167789780992 2020-10-12 08:52:55 +0000 <narendramodi> For #RajmataScindia, public service came above everything else.  She was not tempted by power.   A few words written in a letter to her daughters give a glimpse of her greatness. https://t.co/IitcY75J0a\n",
      "1315527225215651840 2020-10-12 05:38:26 +0000 <narendramodi> Tributes to #RajmataScindia on her Jayanti. https://t.co/UnITmCofMt\n",
      "1315338257660436481 2020-10-11 17:07:33 +0000 <narendramodi> 8 of India’s serene beaches get the prestigious Blue Flag Certification. This showcases the importance India attaches to protecting such spots and furthering sustainable development.   Truly a wonderful feat!\n",
      "1315287000648302592 2020-10-11 13:43:52 +0000 <narendramodi> Tomorrow, 12th October is the Jayanti of Rajmata Vijaya Raje Scindia. On this special day, commemorative coin of Rs. 100 would be released at 11 AM. This is a part of her birth centenary celebrations and is yet another occasion to pay tributes to her great personality.\n",
      "1315226801774292994 2020-10-11 09:44:39 +0000 <narendramodi> भारत के गांवों के लिए जितना काम पिछले 6 वर्षों में किया गया है, उतना आजादी के छह दशकों में भी नहीं हुआ।   इतिहास बताता है कि गांव और गरीब को अभाव में रखना कुछ लोगों की राजनीति का आधार रहा है। हमने गरीबों को अभाव से मुक्ति का अभियान चलाया है। #SampatiSeSampanta https://t.co/tPeGSTVVBL\n",
      "1315226621394075648 2020-10-11 09:43:56 +0000 <narendramodi> भारत की आत्मा गांवों में बसती है। लेकिन सच्चाई यही है कि दशकों तक गांवों को उनके नसीब पर छोड़ दिया गया।   पिछले 6 वर्षों में हमने एक के बाद एक कई कामों को शुरू किया और उन्हें गांव-गरीब तक ले गए।   अब बिना किसी भेदभाव के, पूरी पारदर्शिता के साथ सबको योजनाओं का लाभ मिल रहा है। https://t.co/rKXTBNoFtN\n",
      "1315226568973713408 2020-10-11 09:43:44 +0000 <narendramodi> जब संपत्ति का रिकॉर्ड होता है, उसका अधिकार मिलता है तो नागरिक का जीवन भी सुरक्षित रहता है और उसका आत्मविश्वास भी अनेक गुना बढ़ जाता है।   स्वामित्व योजना के तहत मिलने वाला प्रॉपर्टी कार्ड इसी दिशा में दलित, पीड़ित, शोषित और वंचित ग्रामीणों की भलाई के लिए उठाया गया एक बड़ा कदम है। https://t.co/wvSRcbeGIU\n",
      "1315226482474545153 2020-10-11 09:43:23 +0000 <narendramodi> आत्मनिर्भर भारत अभियान में आज देश ने एक और बड़ा कदम उठा दिया है।   स्वामित्व योजना गांव में रहने वाले हमारे भाई-बहनों को आत्मनिर्भर बनाने में बहुत मदद करने वाली है।   आज 6 राज्यों के लाखों परिवारों को उनके घरों के कानूनी कागज सौंपे गए हैं।    #SampatiSeSampanta https://t.co/APxBgvlRgM\n",
      "1315225933561774080 2020-10-11 09:41:12 +0000 <narendramodi> पुणे के कोंढणपुर में रहने वाले विश्‍वनाथ कृष्‍णा मुजुमले जी ने बताया कि स्वामित्व योजना के तहत किस प्रकार उनके गांव में बिना किसी अनियमितता और भ्रष्टाचार के काम हुआ और इससे लोग बहुत संतुष्ट हैं। #SampatiSeSampanta https://t.co/hX5tZ40mko\n",
      "1315225768499109888 2020-10-11 09:40:33 +0000 <narendramodi> चुनौतियों का दृढ़ता से सामना करने वाली बाराबंकी की रामरती जी को प्रॉपर्टी कार्ड से एक नया आत्मविश्वास मिला है। उन्होंने बताया कि पूर्वजों की संपत्ति का कागज मिलने के बाद अब वे न केवल खुद को हर तरह से सुरक्षित महसूस करती हैं, बल्कि अपना रोजगार भी बढ़ा सकेंगी। #SampatiSeSampanta https://t.co/7N8eVpX2TL\n",
      "1315225687846875138 2020-10-11 09:40:14 +0000 <narendramodi> हरियाणा के मुमताज अली जी जैसे लोगों का जीवन बदलने वाला है। यमुनानगर में राजमिस्त्री का काम करने वाले मुमताज जी ने बताया कि किस प्रकार प्रॉपर्टी कार्ड के आधार पर उन्हें बैंक से तीन लाख रुपये का लोन मिलने वाला है, जिससे वे अपने रोजगार को बेहतर तरीके से आगे बढ़ा सकेंगे। https://t.co/2lrkmKjKrk\n",
      "1315225627553800192 2020-10-11 09:39:59 +0000 <narendramodi> स्वामित्व योजना के तहत वितरित किए गए प्रॉपर्टी कार्ड से उत्तराखंड के पौड़ी गढ़वाल में भी खुशी की माहौल है। सुरेश चंद जी ने बताया कि स्वामित्व योजना में डिजिटल माध्यम का बेहतरीन इस्तेमाल किया गया और कहीं कोई गड़बड़ी नहीं हुई। #SampatiSeSampanta https://t.co/zyuLTxyi0A\n",
      "1315225548830859265 2020-10-11 09:39:41 +0000 <narendramodi> उत्तर प्रदेश के बाराबंकी के राममिलन जी परचून की दुकान चलाते हैं। शारीरिक चुनौतियों के बावजूद वे थोड़ा-बहुत खेती का काम भी करते हैं। उन्होंने बताया कि किस प्रकार प्रॉपर्टी कार्ड ने उनकी जिंदगी की राह आसान कर दी है। #SampatiSeSampanta https://t.co/PJBS77G5k0\n",
      "1315225440366202881 2020-10-11 09:39:15 +0000 <narendramodi> मध्यप्रदेश के डिंडोरी जिले के दर्शन सिंह जी ने बताया कि उन्होंने कभी नहीं सोचा था कि इतनी आसानी से उन्हें जमीन का पट्टा मिलेगा। स्वामित्व योजना के तहत प्रॉपर्टी कार्ड मिलने से उन्हें जो खुशी मिली है, आज वो देश के हर ग्रामीण की खुशी का प्रतीक बनी है। #SampatiSeSampanta https://t.co/l99fPaINOv\n",
      "1315167699190702083 2020-10-11 05:49:48 +0000 <narendramodi> A historic effort towards rural transformation. #SampatiSeSampanta https://t.co/VYNk6nTcg6\n",
      "1315132518153089030 2020-10-11 03:30:00 +0000 <narendramodi> A landmark day for rural development! Do join the programme at 11 AM. #SampatiSeSampanta https://t.co/uM15HqLMD3\n",
      "1315128045057929216 2020-10-11 03:12:14 +0000 <narendramodi> India is proud that legends like Loknayak JP and Nanaji Deshmukh were born in this land. Today is a day to rededicate ourselves towards fulfilling their vision for our nation. https://t.co/RAUapZmxar\n",
      "1315127730527064064 2020-10-11 03:10:59 +0000 <narendramodi> The great Nanaji Deshmukh was one of Loknayak JP’s most devout followers. He worked tirelessly to popularise JP’s thoughts and ideals. His own work towards rural development motivates us. Remembering Bharat Ratna Nanaji Deshmukh on his Jayanti.\n",
      "1315127372526411776 2020-10-11 03:09:34 +0000 <narendramodi> I bow to Loknayak JP on his Jayanti. He valiantly fought for India’s freedom and when our democratic ethos was under attack, he led a strong mass movement to protect it. For him, there was nothing above national interest and people’s welfare.\n",
      "1314879982070505472 2020-10-10 10:46:31 +0000 <narendramodi> स्वामित्व योजना के तहत चरणबद्ध तरीके से देश के लगभग 6.62 लाख गांवों के लोगों को प्रॉपर्टी कार्ड दिए जाएंगे। ग्रामीणों को अपनी संपत्ति के स्वामित्व का आधिकारिक दस्तावेज मिलेगा, जो उन्हें सशक्त बनाएगा। इसके माध्यम से वे बैंक लोन सहित कई वित्तीय सुविधाओं का लाभ ले सकेंगे।\n",
      "1314879979973353472 2020-10-10 10:46:31 +0000 <narendramodi> कल का दिन ग्रामीण भारत के लिए एक बड़ा सकारात्मक परिवर्तन लाने वाला है। सुबह 11 बजे स्वामित्व योजना के अंतर्गत संपत्ति कार्ड के वितरण का शुभारंभ किया जाएगा। यह योजना करोड़ों भारतीयों के जीवन में मील का पत्थर साबित होगी।   #SampatiSeSampanta  https://t.co/OQUEPSGCjr\n",
      "1314842849658060800 2020-10-10 08:18:58 +0000 <narendramodi> ദേവിക എന്ന കുട്ടിയെ ഓർത്ത് അഭിമാനം ! അവളുടെ ശ്രുതിമധുരമായ ആലാപനം 'ഏക ഭാരതം ശ്രേഷ്ഠഭാരതത്തിന്റെ' അന്തസത്ത ശക്തിപ്പെടുത്തുന്നു !\n",
      "1314792763100069889 2020-10-10 04:59:57 +0000 <narendramodi> #MannKiBaat presents a great opportunity to share inspiring journeys of outstanding citizens and discuss themes that power societal change. This month’s programme will take place on the 25th. Share your ideas on the NaMo App, MyGov or record your message.  https://t.co/qVG7YLhsuY https://t.co/P1IccJxV3j\n",
      "1314562542442700801 2020-10-09 13:45:08 +0000 <narendramodi> I am confident that the State of Kuwait will continue to play an important global role under their leadership, and the historic India-Kuwait friendship will be further strengthened.\n",
      "1314562539695472641 2020-10-09 13:45:07 +0000 <narendramodi> Congratulations and best wishes to His Highness Sheikh Nawaf Al-Ahmed Al-Jaber Al-Sabah for assuming charge as the Amir of the State of Kuwait.  I also congratulate His Highness Sheikh Mishaal Al-Ahmed Al-Jaber Al-Sabah on his taking charge as the Crown Prince.\n",
      "1314475166877929473 2020-10-09 07:57:56 +0000 <narendramodi> ਮਹਾਨ ਭਾਈ ਤਾਰੂ ਸਿੰਘ ਜੀ ਦੀ 300ਵੀਂ ਜਨਮ ਵਰ੍ਹੇਗੰਢ ਦੇ ਵਿਸ਼ੇਸ਼ ਮੌਕੇ ‘ਤੇ, ਮੈਂ ਉਨ੍ਹਾਂ ਨੂੰ ਪ੍ਰਣਾਮ ਕਰਦਾ ਹਾਂ। ਉਨ੍ਹਾਂ ਦਾ ਨਾਮ ਹਮੇਸ਼ਾ ਸਾਹਸ ਅਤੇ ਨਿਡਰਤਾ ਦਾ ਸਮਾਨਾਰਥੀ ਹੋਵੇਗਾ। ਆਪਣੇ ਸੱਭਿਆਚਾਰ ਦੇ ਨਾਲ-ਨਾਲ ਲੋਕਾਚਾਰ 'ਤੇ ਹਮੇਸ਼ਾ ਮਾਣ ਕਰਨ ਵਾਲੇ, ਉਹ ਕਦੇ ਵੀ ਅਨਿਆਂ ਅੱਗੇ ਨਹੀਂ ਝੁਕੇ। ਉਹ ਲੱਖਾਂ ਲੋਕਾਂ ਨੂੰ ਪ੍ਰੇਰਿਤ ਕਰਦੇ ਹਨ।\n",
      "1314475087001600001 2020-10-09 07:57:37 +0000 <narendramodi> On the special occasion of his 300th birth anniversary, I bow to the great Bhai Taru Singh Ji. His name will always be synonymous with courage and fearlessness. Always proud of his culture as well as ethos, he never bowed to injustice. He continues to inspire millions.\n",
      "1314472421672452096 2020-10-09 07:47:01 +0000 <narendramodi> We are extremely proud of the @IndiaPostOffice Team for their efforts to connect India. They bring happiness to countless lives. On #WorldPostDay, greetings to them and their families. Best wishes for all future endeavours.\n",
      "1314449520474824705 2020-10-09 06:16:01 +0000 <narendramodi> Paid respects to late Shri Ram Vilas Paswan Ji. His unwavering commitment to social justice will always be remembered. https://t.co/QaklVGclx5\n",
      "1314408498789195777 2020-10-09 03:33:01 +0000 <narendramodi> On IFS day, greetings to all #IndianForeignService officers. Their work towards #ServingTheNation, furthering national interests globally are commendable. Their efforts during Vande Bharat Mission and other COVID related help to our citizens and other nations is noteworthy.\n",
      "1314231242817040384 2020-10-08 15:48:40 +0000 <narendramodi> Working together, shoulder to shoulder with Paswan Ji has been an incredible experience. His interventions during Cabinet Meetings were insightful. From political wisdom, statesmanship to governance issues, he was brilliant. Condolences to his family and supporters. Om Shanti.\n",
      "1314230480653352961 2020-10-08 15:45:38 +0000 <narendramodi> Shri Ram Vilas Paswan Ji rose in politics through hardwork and determination. As a young leader, he resisted tyranny and the assault on our democracy during the Emergency. He was an outstanding Parliamentarian and Minister, making lasting contributions in several policy areas. https://t.co/naqx27xBoj\n",
      "1314229862148661248 2020-10-08 15:43:11 +0000 <narendramodi> I am saddened beyond words. There is a void in our nation that will perhaps never be filled. Shri Ram Vilas Paswan Ji’s demise is a personal loss. I have lost a friend, valued colleague and someone who was extremely passionate to ensure every poor person leads a life of dignity. https://t.co/2UUuPBjBrj\n",
      "1314221326136090624 2020-10-08 15:09:15 +0000 <narendramodi> Happy to have met you my friend, @DrabdullahCE. We had productive talks on various aspects of the strong India-Afghanistan friendship. India will always support our Afghan sisters and brothers in their quest for peace and in meeting their developmental aspirations.\n",
      "1314191301252837376 2020-10-08 13:09:57 +0000 <narendramodi> Addressing the Annual Invest India Conference. Watch. https://t.co/WJEgrCt6jB\n",
      "1314098034125365248 2020-10-08 06:59:20 +0000 <narendramodi> At around 6:30 PM today, would be delivering the keynote address at the Annual Invest India Conference. This is organised with a special focus on further strengthening business ties between India and Canada. Will speak on aspects relating to the economy. https://t.co/JcPJ9j1p3G\n",
      "1314030957477810176 2020-10-08 02:32:48 +0000 <narendramodi> आइए, कोरोना से लड़ने के लिए एकजुट हों!   हमेशा याद रखें:   मास्क जरूर पहनें।   हाथ साफ करते रहें।   सोशल डिस्टेंसिंग का पालन करें।   ‘दो गज की दूरी’ रखें।   #Unite2FightCorona https://t.co/L3wfaqlhDn\n",
      "1314030641218904064 2020-10-08 02:31:33 +0000 <narendramodi> Let us #Unite2FightCorona!   Let us always remember:  Wear a mask.   Wash hands.  Follow social distancing.  Practice ‘Do Gaj Ki Doori.’    Together, we will succeed.   Together, we will win against COVID-19. https://t.co/x5bymQpqjx\n",
      "1314030435136016385 2020-10-08 02:30:43 +0000 <narendramodi> India’s COVID-19 fight is people driven and gets great strength from our COVID warriors. Our collective efforts have helped saved many lives. We have to continue the momentum and protect our citizens from the virus. #Unite2FightCorona https://t.co/GrYUZPZc2m\n",
      "1314029762608721920 2020-10-08 02:28:03 +0000 <narendramodi> एयर फोर्स डे पर भारतीय वायुसेना के सभी वीर योद्धाओं को बहुत-बहुत बधाई। आप न सिर्फ देश के आसमान को सुरक्षित रखते हैं, बल्कि आपदा के समय मानवता की सेवा में भी अग्रणी भूमिका निभाते हैं। मां भारती की रक्षा के लिए आपका साहस, शौर्य और समर्पण हर किसी को प्रेरित करने वाला है।  #AFDay2020 https://t.co/0DYlI7zpe6\n",
      "1313892961688580097 2020-10-07 17:24:27 +0000 <narendramodi> मैं अपने-आपको, आपके आशीर्वाद के योग्य, आपके प्रेम के योग्य बनाने के लिए निरंतर प्रयासरत रहूंगा।   देशवासियों को एक बार फिर से विश्वास दिलाता हूं कि देशहित और गरीबों का कल्याण, यही मेरे लिए सर्वोपरि है और हमेशा सर्वोपरि रहेगा।\n",
      "1313892867585187840 2020-10-07 17:24:05 +0000 <narendramodi> कोई व्यक्ति कभी यह दावा नहीं कर सकता कि मुझमें कोई कमी नहीं है। इतने महत्वपूर्ण और जिम्मेदारी भरे पदों पर एक लंबा कालखंड… एक मनुष्य होने के नाते मुझसे भी गलतियां हो सकती हैं।   यह मेरा सौभाग्य है कि मेरी इन सीमाओं और मर्यादाओं के बावजूद आप सबका प्रेम उत्तरोत्तर बढ़ रहा है।\n",
      "1313892740627787776 2020-10-07 17:23:34 +0000 <narendramodi> आज जिस प्रकार देश के कोने-कोने से आप सबने आशीर्वाद और प्रेम बरसाए हैं, उसका आभार प्रकट करने के लिए आज मेरे शब्दों की शक्ति कम पड़ रही है!   देश सेवा, गरीबों के कल्याण और भारत को नई ऊंचाइयों पर ले जाने का हम सबका जो संकल्प है, उसे आपका आशीर्वाद, आपका प्रेम और मजबूत करेगा।\n",
      "1313892667005169664 2020-10-07 17:23:17 +0000 <narendramodi> बचपन से मेरे मन में एक बात संस्कारित हुई कि जनता-जनार्दन ईश्वर का रूप होती है और लोकतंत्र में ईश्वर की तरह ही शक्तिमान होती है।   इतने लंबे कालखंड तक देशवासियों ने मुझे जो जिम्मेदारियां सौंपी हैं, उन्हें निभाने के लिए मैंने पूरी तरह से प्रामाणिक और समर्पित प्रयास किए हैं।\n",
      "1313851809027432448 2020-10-07 14:40:56 +0000 <narendramodi> আজকের কেন্দ্রীয় ক্যাবিনেটের সিদ্ধান্ত আমার কলকাতাবাসী ভাই বোনেদের \" ঈজ অব লিভিং\" (জীবন যাপনের সুবিধা) আরো বাড়াবে। স্থানীয় পরিকাঠামোর উন্নতি ঘটিয়ে, ব্যবসা ও পর্যটনেও সাহায্য করবে। https://t.co/ozHmwwMNQu\n",
      "1313851605939154944 2020-10-07 14:40:07 +0000 <narendramodi> Today’s Cabinet decision will further ‘Ease of Living’ for my sisters and brothers of Kolkata. It will also give an impetus to local infrastructure and help commerce as well as tourism in the city. https://t.co/ozHmwwMNQu\n",
      "1313847097330819072 2020-10-07 14:22:12 +0000 <narendramodi> India is moving ahead on the path of futuristic reforms.   Today’s Cabinet decision on ‘Natural Gas Marketing Reforms’ add strength to the efforts of making India a gas based economy. https://t.co/q9JpXwUP9G\n",
      "1313774314651443202 2020-10-07 09:33:00 +0000 <narendramodi> Spoke to my friend President Vladimir Putin @KremlinRussia_E to greet him on his birthday today. Appreciated his immense personal contribution to strengthening the Special &amp; Privileged Strategic Partnership between India and Russia.\n",
      "1313478597458489348 2020-10-06 13:57:55 +0000 <narendramodi> Commendable effort, which places emphasis on building immunity, remaining healthy and making the fight against COVID-19 stronger.\n",
      "1313413850276872192 2020-10-06 09:40:38 +0000 <narendramodi> Had an insightful interaction with Mr. Henrik Andersen, President and CEO, @Vestas. We discussed a series of issues relating to the wind energy sector. Highlighted some of India’s efforts to harness renewable energy in order to build a cleaner future for the coming generations.\n",
      "1313168895784611841 2020-10-05 17:27:16 +0000 <narendramodi> It remains our collective responsibility to ensure trust in AI is maintained and we use AI for larger public good. #Raise2020 https://t.co/CDJspiwEPp\n",
      "1313168792655024129 2020-10-05 17:26:52 +0000 <narendramodi> Elaborated on some of India’s efforts to encourage AI. #Raise2020 https://t.co/UzlzP9WP9z\n",
      "1313146937332260864 2020-10-05 16:00:01 +0000 <narendramodi> Spoke to my friend @IsraeliPM @netanyahu on phone. We discussed the expanding India-Israel cooperation against COVID-19. We also reviewed our initiatives in other areas like agriculture, water and innovation.\n",
      "1313117911490334721 2020-10-05 14:04:41 +0000 <narendramodi> Addressing RAISE 2020 Virtual Summit. #Raise2020 https://t.co/evTxWOpv6f\n",
      "1313046704933883904 2020-10-05 09:21:44 +0000 <narendramodi> Anguished by the passing away of Justice AS Dave, former Judge as well as acting CJ of the Gujarat HC. He will be remembered for his contributions to the legal field. Condolences to his family and friends. Om Shanti.\n",
      "1312957286604705797 2020-10-05 03:26:25 +0000 <narendramodi> Looking forward to address The Responsible AI for Social Empowerment (RAISE 2020) Virtual Summit at 7 PM this evening. This Summit brings together tech leaders from across the world to discuss aspects relating to AI. Do watch! #Raise2020   https://t.co/7ZDqHbFZFY\n",
      "1312624055816646656 2020-10-04 05:22:16 +0000 <narendramodi> Shyamji Krishna Varma was fearless and selfless. He devoted himself towards India’s freedom and inspired many nationalists. India bows to him on his Jayanti. We shall always work hard to realise his vision for our nation. Visit this site to know about him. https://t.co/lN5TzJR7Xh https://t.co/3LlETdMEKa\n",
      "1312398101689188352 2020-10-03 14:24:25 +0000 <narendramodi> New age infrastructure for India! #AtalTunnel https://t.co/qKFDRcVyL0\n",
      "1312397856469213186 2020-10-03 14:23:26 +0000 <narendramodi> The #AtalTunnel is a game changing infrastructure project that will help several citizens. With this project comes several economic benefits, particularly for agriculture and tourism. https://t.co/6gAwK5QR4Y\n",
      "1312388614156767232 2020-10-03 13:46:43 +0000 <narendramodi> देश में आज जो रिफॉर्म्स किए जा रहे हैं, उसने ऐसे लोगों को परेशान कर दिया है, जिन्होंने हमेशा अपने राजनीतिक हितों के लिए काम किया।   आज जब ऐसे लोगों द्वारा बनाए बिचौलियों और दलालों के तंत्र पर प्रहार हो रहा है, तो वे बौखला गए हैं।   लेकिन देश आज परिवर्तन के लिए प्रतिबद्ध है। https://t.co/CacovmH42B\n",
      "1312388556971626497 2020-10-03 13:46:29 +0000 <narendramodi> हिमाचल प्रदेश के लोगों का जीवन आसान बनाने के लिए सड़क, बिजली जैसी मूल जरूरतों के साथ-साथ मोबाइल और इंटरनेट कनेक्टिविटी भी बहुत जरूरी है।   सरकार का निरंतर प्रयास है कि सामान्य मानवी की परेशानी कम से कम हो और उसे उसके हक का पूरा लाभ मिल सके। #AtalTunnel https://t.co/3n1VUOsvMD\n",
      "1312388459672215554 2020-10-03 13:46:06 +0000 <narendramodi> मनाली को बहुत अधिक पसंद करने वाले अटल जी की यह अटल इच्छा थी कि यहां स्थितियां बदले, यहां की कनेक्टिविटी बेहतर हो।   इसी सोच के साथ उन्होंने रोहतांग में टनल बनाने का फैसला लिया था। मुझे खुशी है कि आज अटल जी का यह संकल्प सिद्ध हो गया। #AtalTunnel https://t.co/52NarqAXjv\n",
      "1312388145548201984 2020-10-03 13:44:51 +0000 <narendramodi> Birthday greetings to @gssjodhpur Ji, our energetic Cabinet colleague who is working assiduously to ensure India is able to harness our Jal Shakti for public welfare. I pray for his long and healthy life.\n",
      "1312352680841486336 2020-10-03 11:23:56 +0000 <narendramodi> अटल टनल केंद्र सरकार के उस संकल्प का भी हिस्सा है कि देश के हर हिस्से में, हर व्यक्ति तक विकास का लाभ पहुंचना चाहिए।   अब देश में नई सोच के साथ काम हो रहा है। सबके साथ से, सबके विश्वास से, सबका विकास हो रहा है।   प्रयास इस बात का है कि कोई भारतीय छूट न जाए, पीछे न रह जाए। https://t.co/68w0LaF4l8\n",
      "1312352573492539393 2020-10-03 11:23:30 +0000 <narendramodi> अटल टनल के बन जाने से लाहौल के लोगों के लिए तो नई सुबह हुई ही है, पांगी के लोगों का जीवन भी बदलने वाला है।   लाहौल-स्पीति और पांगी के किसान हों, बागवानी से जुड़े लोग हों, पशुपालक हों, स्टूडेंट हों, नौकरीपेशा हों, व्यापारी-कारोबारी हों, सभी को इससे लाभ होने वाला है। https://t.co/xBeejfowiv\n",
      "1312319619797901313 2020-10-03 09:12:33 +0000 <narendramodi> Addressing a public meeting in Solang. Watch. https://t.co/b8sTIIon80\n",
      "1312319233653522432 2020-10-03 09:11:01 +0000 <narendramodi> जैसे-जैसे भारत की वैश्विक भूमिका बदल रही है, हमें उसी तेजी से, उसी रफ्तार से अपने इंफ्रास्ट्रक्चर को, अपने आर्थिक और सामरिक सामर्थ्य को भी बढ़ाना है।   आत्मनिर्भर भारत का आत्मविश्वास आज जनमानस की सोच का हिस्सा बन चुका है।   अटल टनल इसी आत्मविश्वास का प्रतीक है। #AtalTunnel https://t.co/ohMSWtP1Kn\n",
      "1312319065214443520 2020-10-03 09:10:21 +0000 <narendramodi> कनेक्टिविटी का देश के विकास से सीधा संबंध होता है। ज्यादा से ज्यादा कनेक्टिविटी यानि उतना ही तेज विकास।   बॉर्डर एरिया में तो कनेक्टिविटी सीधे-सीधे देश की रक्षा जरूरतों से जुड़ी होती है।   लेकिन इसे लेकर जैसी गंभीरता और राजनीतिक इच्छाशक्ति की जरूरत थी, वैसी दिखाई नहीं गई थी... https://t.co/wDB3VSpYqW\n",
      "1312318701505372160 2020-10-03 09:08:54 +0000 <narendramodi> अटल टनल भारत के बॉर्डर इंफ्रास्ट्रक्चर को नई ताकत देने वाली है।   यह विश्वस्तरीय बॉर्डर कनेक्टिविटी का जीता-जागता प्रमाण है।   यह देश की सुरक्षा और समृद्धि, दोनों के लिए बहुत बड़ा संसाधन है। #AtalTunnel https://t.co/1bfUjCv1Qq\n",
      "1312293020276981761 2020-10-03 07:26:51 +0000 <narendramodi> Speaking at Sissu in Himachal Pradesh. https://t.co/GnYaWYofZn\n",
      "1312265970874867712 2020-10-03 05:39:22 +0000 <narendramodi> Inaugurating the spectacular #AtalTunnel. https://t.co/Npiw0qSO5A\n",
      "1312078637009567744 2020-10-02 17:14:58 +0000 <narendramodi> The #AtalTunnel will solve a major problem of connectivity in the region. It has several salient features and will further ‘Ease of Living’ for local citizens. Will also join public programmes in Sissu in Lahaul Spiti and at Solang Valley.\n",
      "1312078634866278403 2020-10-02 17:14:58 +0000 <narendramodi> Fulfilling Atal Ji’s dream of top quality infrastructure.   Will be in Himachal Pradesh tomorrow to dedicate the #AtalTunnel in Rohtang to the nation. This is an iconic infrastructure project built at a height of 10,000 feet. https://t.co/oZa8RY82vk\n",
      "1312074420828037121 2020-10-02 16:58:13 +0000 <narendramodi> Earlier today, attended a prayer meet at Gandhi Smriti. https://t.co/DlTpbIWcAU\n",
      "1312074019391201280 2020-10-02 16:56:38 +0000 <narendramodi> We are fully committed to ensure more youngsters study science.   There is a major role of science in realising our dream of an Aatmanirbhar Bharat. #VaibhavSummit https://t.co/I3QgITv8eU\n",
      "1312073804126904321 2020-10-02 16:55:46 +0000 <narendramodi> During #VaibhavSummit highlighted some of India’s efforts to encourage science and harness it for socio-economic change. https://t.co/QzBNfvGKMb\n",
      "1312031688336175104 2020-10-02 14:08:25 +0000 <narendramodi> Participating in the #VaibhavSummit. https://t.co/VoNcblRulD\n",
      "1311948457666506752 2020-10-02 08:37:41 +0000 <narendramodi> विजय घाट पर लाल बहादुर शास्त्री जी को श्रद्धा-सुमन अर्पित किए। https://t.co/eIf1KrON01\n",
      "1311948150408503296 2020-10-02 08:36:28 +0000 <narendramodi> गांधी जयंती के अवसर पर राजघाट जाकर पूज्य बापू को विनम्र श्रद्धांजलि दी। https://t.co/P1J6kKo6e1\n",
      "1311905372504879105 2020-10-02 05:46:29 +0000 <narendramodi> Wishing my friend @POTUS @realDonaldTrump and @FLOTUS a quick recovery and good health.\n",
      "1311844355204808704 2020-10-02 01:44:01 +0000 <narendramodi> Lal Bahadur Shastri Ji was humble and firm.  He epitomised simplicity and lived for the welfare of our nation.  We remember him on his Jayanti with a deep sense of gratitude for everything he has done for India. https://t.co/bTV6886crz\n",
      "1311843987532050437 2020-10-02 01:42:34 +0000 <narendramodi> We bow to beloved Bapu on Gandhi Jayanti.   There is much to learn from his life and noble thoughts.  May Bapu’s ideals keep guiding us in creating a prosperous and compassionate India. https://t.co/wCe4DkU9aI\n",
      "1311695054918963201 2020-10-01 15:50:45 +0000 <narendramodi> Looking forward to tomorrow’s Vaibhav Summit, which brings together scientists as well as researchers from the Indian diaspora.   Do join at 6:30 PM on 2nd October. https://t.co/fvXxaDhT5q\n",
      "1311694768649302016 2020-10-01 15:49:37 +0000 <narendramodi> Spoke to @BharatSolankee Ji and enquired about his well-being. He has shown remarkable courage during his 100-day long battle against COVID-19.  I wish him good health in the times to come.\n",
      "1311538497312878593 2020-10-01 05:28:39 +0000 <narendramodi> MyNEP Competition is an interesting way of sharing unique aspects about the National Education Policy 2020.  Participate in the competition at https://t.co/IoxjJvaXdL.   Be a part of the educational transformation of India!   #NewNEPNewIndia https://t.co/ihV682wmVl\n",
      "1311478481113346048 2020-10-01 01:30:10 +0000 <narendramodi> Birthday wishes to Rashtrapati Ji. His rich insights and wise understanding of policy matters are great assets for our nation. He is extremely compassionate towards serving the vulnerable. I pray for his good health and long life. @rashtrapatibhvn\n",
      "1311327874100666368 2020-09-30 15:31:43 +0000 <narendramodi> Participated in the Shree Somnath Trust meeting via video conferencing. We discussed a wide range of issues pertaining to the Temple, including the exceptional community service by the Trust during these times and harnessing of technology to enable more devotees to pray.\n",
      "1311327447753936896 2020-09-30 15:30:01 +0000 <narendramodi> Brahmos Supersonic Cruise Missile has achieved yet another milestone with successful test launch showcasing enhanced operational capabilities and additional indigenous technologies. Congratulations to all the scientists and engineers. @DRDO_India @BrahMosMissile\n",
      "1310973712821256192 2020-09-29 16:04:24 +0000 <narendramodi> Today, the State of Kuwait and the Arab world has lost a beloved leader, India a close friend, and the world a great statesman. His Highness played a leading role in strengthening our bilateral relations, and always took special care of the Indian community in Kuwait.\n",
      "1310973708983566336 2020-09-29 16:04:23 +0000 <narendramodi> My heartfelt condolences on the sad demise of His Highness Sheikh Sabah Al-Ahmed Al-Jaber Al-Sabah, Amir of the State of Kuwait. In this moment of grief our thoughts are with the Al-Sabah family and the people of the State of Kuwait.\n"
     ]
    }
   ],
   "source": [
    "import twint\n",
    "\n",
    "# Configure\n",
    "c = twint.Config()\n",
    "c.Username = \"narendramodi\"\n",
    "c.Limit = 1\n",
    "c.Popular_tweets = True\n",
    "\n",
    "# Run\n",
    "twint.run.Search(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "YIDhcH-NbIpc"
   },
   "source": [
    "# Filter scraped tweets based on min likes, min retweets, and min replies"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 122
    },
    "id": "285lzw2Bq2VK",
    "outputId": "8462146c-01e4-443e-a0e5-245d553323f7"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1314449520474824705 2020-10-09 06:16:01 +0000 <narendramodi> Paid respects to late Shri Ram Vilas Paswan Ji. His unwavering commitment to social justice will always be remembered. https://t.co/QaklVGclx5\n",
      "1314229862148661248 2020-10-08 15:43:11 +0000 <narendramodi> I am saddened beyond words. There is a void in our nation that will perhaps never be filled. Shri Ram Vilas Paswan Ji’s demise is a personal loss. I have lost a friend, valued colleague and someone who was extremely passionate to ensure every poor person leads a life of dignity. https://t.co/2UUuPBjBrj\n",
      "1313892667005169664 2020-10-07 17:23:17 +0000 <narendramodi> बचपन से मेरे मन में एक बात संस्कारित हुई कि जनता-जनार्दन ईश्वर का रूप होती है और लोकतंत्र में ईश्वर की तरह ही शक्तिमान होती है।   इतने लंबे कालखंड तक देशवासियों ने मुझे जो जिम्मेदारियां सौंपी हैं, उन्हें निभाने के लिए मैंने पूरी तरह से प्रामाणिक और समर्पित प्रयास किए हैं।\n",
      "1246830985288642560 2020-04-05 16:04:06 +0000 <narendramodi> शुभं करोति कल्याणमारोग्यं धनसंपदा । शत्रुबुद्धिविनाशाय दीपज्योतिर्नमोऽस्तुते ॥ https://t.co/4DeiMsCN11\n",
      "1131488026247323648 2019-05-23 09:12:22 +0000 <narendramodi> सबका साथ + सबका विकास + सबका विश्वास = विजयी भारत  Together we grow.   Together we prosper.   Together we will build a strong and inclusive India.    India wins yet again! #VijayiBharat\n"
     ]
    }
   ],
   "source": [
    "c = twint.Config()\n",
    "c.Username = \"narendramodi\"\n",
    "c.Limit = 1\n",
    "c.Min_likes = 50000\n",
    "#c.Min_replies = 1000\n",
    "#c.Min_retweets = 100\n",
    "\n",
    "twint.run.Search(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "g4eRHLdnbK8a"
   },
   "source": [
    "# Followers"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 357
    },
    "id": "J6MpJKkhUSAU",
    "outputId": "9e85f517-b67b-4850-fe44-a9a106e9684f"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "bhaktaram112\n",
      "SanikaGaikwad6\n",
      "PRADHAN09421768\n",
      "KevinRi66028421\n",
      "VyshakRn\n",
      "Rohan18176710\n",
      "Santosh72810567\n",
      "SiddhantMagar2\n",
      "MehakSankhyan\n",
      "emmanuel4luv\n",
      "RpDurgarani\n",
      "Raushan04365847\n",
      "ManishK66485706\n",
      "GotamPa11599249\n",
      "smartthoufiq1\n",
      "pr_sradha\n",
      "Jitendr92218744\n",
      "nilesh_mehesare\n",
      "SanthanamSantu\n",
      "babluku02180228\n"
     ]
    }
   ],
   "source": [
    "c = twint.Config()\n",
    "c.Limit = 1\n",
    "c.Username = \"narendramodi\"\n",
    "\n",
    "twint.run.Followers(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "id": "nIr98tK9bPtT"
   },
   "source": [
    "# Store as Pandas DataFrame"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 1000
    },
    "id": "Vcx08HIkd9a5",
    "outputId": "e0b6c360-93cd-4ecf-cc1a-cf97aa752553"
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1315915772544258049 2020-10-13 07:22:23 +0000 <narendramodi> ગુજરાતી સુગમ સંગીતનાં શિરમોર ગાયિકા કૌમુદી મુનશીના અવસાનથી દુઃખ અનુભવું છું. ગુજરાતી સુગમ સંગીતને લોકપ્રિય બનાવવામાં તેમનું યોગદાન સંગીતપ્રેમી પેઢીઓ માટે હંમેશા યાદગાર રહેશે.. શોકગ્રસ્ત પરિવાર અને એમના વિશાળ ચાહકવર્ગને સાંત્વના..ઈશ્વર તેમના આત્માને શાંતિ આપે એવી પ્રાર્થના.\n",
      "1315896260415553536 2020-10-13 06:04:51 +0000 <narendramodi> Released the autobiography of Shri Balasaheb Vikhe Patil Ji. https://t.co/ww1xsZpMS7\n",
      "1315673644090052609 2020-10-12 15:20:15 +0000 <narendramodi> At 11 AM tomorrow, will be releasing the autobiography of Shri Balasaheb Vikhe Patil Ji via video conferencing. His efforts towards strengthening agriculture and cooperatives will always be remembered. Do watch the programme.\n",
      "1315673528889348097 2020-10-12 15:19:47 +0000 <narendramodi> मी उद्या सकाळी अकरा वाजता व्हिडिओ कॉन्फरंसिंगच्या माध्यमातून श्री बाळासाहेब विखे पाटील यांचे आत्मचरित्र प्रकाशित करणार आहे. कृषी आणि सहकारक्षेत्र मजबूत करण्यासाठीचे त्यांचे प्रयत्न नेहमी स्मरणात राहतील. हा कार्यक्रम नक्की बघा.\n",
      "1315672946036232192 2020-10-12 15:17:29 +0000 <narendramodi> Today’s announcements by FM @nsitharaman Ji are timely moves which will boost consumer spending and sentiment as well as push capital expenditure. These steps will also boost demand in our economy. https://t.co/bqhJhz8iwo\n",
      "1315597762872791040 2020-10-12 10:18:43 +0000 <narendramodi> बिहार के पिछड़ा एवं अति पिछड़ा वर्ग कल्याण मंत्री विनोद कुमार सिंह जी के निधन से अत्यंत दुख पहुंचा है। वे गरीबों-वंचितों के सशक्तिकरण के लिए समर्पित रहे। उन्होंने राज्य में भाजपा को मजबूत बनाने में भी अहम भूमिका निभाई। उनके परिजनों और समर्थकों के प्रति मेरी संवेदनाएं। ओम शांति!\n",
      "1315597233442549760 2020-10-12 10:16:37 +0000 <narendramodi> समाजवाद के प्रवर्तक, विचारों को सत्ता से ऊपर और देशहित को सर्वोपरि मानने वाले लोहिया जी को उनकी पुण्यतिथि पर शत-शत नमन।\n",
      "1315597231794221056 2020-10-12 10:16:37 +0000 <narendramodi> लोकतंत्र को सशक्त करने के लिए अपना जीवन समर्पित करने वाले, विचार को व्यवहार बनाने वाले, लोकतांत्रिक मानकों का जीवनपर्यन्त निर्वाह करने वाले लोहिया जी समस्त देश के प्रेरणा पुरुष हैं।\n",
      "1315576723262509057 2020-10-12 08:55:07 +0000 <narendramodi> #RajmataScindia was a deeply religious person. But, in her Puja Mandir there always a picture of Bharat Mata.   Inspired by her vision, India has been making remarkable progress. Our strides in several areas would have made her very proud. https://t.co/GzGlBDVmeO\n",
      "1315576316184285184 2020-10-12 08:53:30 +0000 <narendramodi> #RajmataScindia was always particular about knowing Party Karyakartas by their names.   Party Karyakartas remember her as a humble and compassionate personality. https://t.co/bTLtNEOTN1\n",
      "1315576167789780992 2020-10-12 08:52:55 +0000 <narendramodi> For #RajmataScindia, public service came above everything else.  She was not tempted by power.   A few words written in a letter to her daughters give a glimpse of her greatness. https://t.co/IitcY75J0a\n",
      "1315527225215651840 2020-10-12 05:38:26 +0000 <narendramodi> Tributes to #RajmataScindia on her Jayanti. https://t.co/UnITmCofMt\n",
      "1315338257660436481 2020-10-11 17:07:33 +0000 <narendramodi> 8 of India’s serene beaches get the prestigious Blue Flag Certification. This showcases the importance India attaches to protecting such spots and furthering sustainable development.   Truly a wonderful feat!\n",
      "1315287000648302592 2020-10-11 13:43:52 +0000 <narendramodi> Tomorrow, 12th October is the Jayanti of Rajmata Vijaya Raje Scindia. On this special day, commemorative coin of Rs. 100 would be released at 11 AM. This is a part of her birth centenary celebrations and is yet another occasion to pay tributes to her great personality.\n",
      "1315226801774292994 2020-10-11 09:44:39 +0000 <narendramodi> भारत के गांवों के लिए जितना काम पिछले 6 वर्षों में किया गया है, उतना आजादी के छह दशकों में भी नहीं हुआ।   इतिहास बताता है कि गांव और गरीब को अभाव में रखना कुछ लोगों की राजनीति का आधार रहा है। हमने गरीबों को अभाव से मुक्ति का अभियान चलाया है। #SampatiSeSampanta https://t.co/tPeGSTVVBL\n",
      "1315226621394075648 2020-10-11 09:43:56 +0000 <narendramodi> भारत की आत्मा गांवों में बसती है। लेकिन सच्चाई यही है कि दशकों तक गांवों को उनके नसीब पर छोड़ दिया गया।   पिछले 6 वर्षों में हमने एक के बाद एक कई कामों को शुरू किया और उन्हें गांव-गरीब तक ले गए।   अब बिना किसी भेदभाव के, पूरी पारदर्शिता के साथ सबको योजनाओं का लाभ मिल रहा है। https://t.co/rKXTBNoFtN\n",
      "1315226568973713408 2020-10-11 09:43:44 +0000 <narendramodi> जब संपत्ति का रिकॉर्ड होता है, उसका अधिकार मिलता है तो नागरिक का जीवन भी सुरक्षित रहता है और उसका आत्मविश्वास भी अनेक गुना बढ़ जाता है।   स्वामित्व योजना के तहत मिलने वाला प्रॉपर्टी कार्ड इसी दिशा में दलित, पीड़ित, शोषित और वंचित ग्रामीणों की भलाई के लिए उठाया गया एक बड़ा कदम है। https://t.co/wvSRcbeGIU\n",
      "1315226482474545153 2020-10-11 09:43:23 +0000 <narendramodi> आत्मनिर्भर भारत अभियान में आज देश ने एक और बड़ा कदम उठा दिया है।   स्वामित्व योजना गांव में रहने वाले हमारे भाई-बहनों को आत्मनिर्भर बनाने में बहुत मदद करने वाली है।   आज 6 राज्यों के लाखों परिवारों को उनके घरों के कानूनी कागज सौंपे गए हैं।    #SampatiSeSampanta https://t.co/APxBgvlRgM\n",
      "1315225933561774080 2020-10-11 09:41:12 +0000 <narendramodi> पुणे के कोंढणपुर में रहने वाले विश्‍वनाथ कृष्‍णा मुजुमले जी ने बताया कि स्वामित्व योजना के तहत किस प्रकार उनके गांव में बिना किसी अनियमितता और भ्रष्टाचार के काम हुआ और इससे लोग बहुत संतुष्ट हैं। #SampatiSeSampanta https://t.co/hX5tZ40mko\n",
      "1315225768499109888 2020-10-11 09:40:33 +0000 <narendramodi> चुनौतियों का दृढ़ता से सामना करने वाली बाराबंकी की रामरती जी को प्रॉपर्टी कार्ड से एक नया आत्मविश्वास मिला है। उन्होंने बताया कि पूर्वजों की संपत्ति का कागज मिलने के बाद अब वे न केवल खुद को हर तरह से सुरक्षित महसूस करती हैं, बल्कि अपना रोजगार भी बढ़ा सकेंगी। #SampatiSeSampanta https://t.co/7N8eVpX2TL\n",
      "1315225687846875138 2020-10-11 09:40:14 +0000 <narendramodi> हरियाणा के मुमताज अली जी जैसे लोगों का जीवन बदलने वाला है। यमुनानगर में राजमिस्त्री का काम करने वाले मुमताज जी ने बताया कि किस प्रकार प्रॉपर्टी कार्ड के आधार पर उन्हें बैंक से तीन लाख रुपये का लोन मिलने वाला है, जिससे वे अपने रोजगार को बेहतर तरीके से आगे बढ़ा सकेंगे। https://t.co/2lrkmKjKrk\n",
      "1315225627553800192 2020-10-11 09:39:59 +0000 <narendramodi> स्वामित्व योजना के तहत वितरित किए गए प्रॉपर्टी कार्ड से उत्तराखंड के पौड़ी गढ़वाल में भी खुशी की माहौल है। सुरेश चंद जी ने बताया कि स्वामित्व योजना में डिजिटल माध्यम का बेहतरीन इस्तेमाल किया गया और कहीं कोई गड़बड़ी नहीं हुई। #SampatiSeSampanta https://t.co/zyuLTxyi0A\n",
      "1315225548830859265 2020-10-11 09:39:41 +0000 <narendramodi> उत्तर प्रदेश के बाराबंकी के राममिलन जी परचून की दुकान चलाते हैं। शारीरिक चुनौतियों के बावजूद वे थोड़ा-बहुत खेती का काम भी करते हैं। उन्होंने बताया कि किस प्रकार प्रॉपर्टी कार्ड ने उनकी जिंदगी की राह आसान कर दी है। #SampatiSeSampanta https://t.co/PJBS77G5k0\n",
      "1315225440366202881 2020-10-11 09:39:15 +0000 <narendramodi> मध्यप्रदेश के डिंडोरी जिले के दर्शन सिंह जी ने बताया कि उन्होंने कभी नहीं सोचा था कि इतनी आसानी से उन्हें जमीन का पट्टा मिलेगा। स्वामित्व योजना के तहत प्रॉपर्टी कार्ड मिलने से उन्हें जो खुशी मिली है, आज वो देश के हर ग्रामीण की खुशी का प्रतीक बनी है। #SampatiSeSampanta https://t.co/l99fPaINOv\n",
      "1315167699190702083 2020-10-11 05:49:48 +0000 <narendramodi> A historic effort towards rural transformation. #SampatiSeSampanta https://t.co/VYNk6nTcg6\n",
      "1315132518153089030 2020-10-11 03:30:00 +0000 <narendramodi> A landmark day for rural development! Do join the programme at 11 AM. #SampatiSeSampanta https://t.co/uM15HqLMD3\n",
      "1315128045057929216 2020-10-11 03:12:14 +0000 <narendramodi> India is proud that legends like Loknayak JP and Nanaji Deshmukh were born in this land. Today is a day to rededicate ourselves towards fulfilling their vision for our nation. https://t.co/RAUapZmxar\n",
      "1315127730527064064 2020-10-11 03:10:59 +0000 <narendramodi> The great Nanaji Deshmukh was one of Loknayak JP’s most devout followers. He worked tirelessly to popularise JP’s thoughts and ideals. His own work towards rural development motivates us. Remembering Bharat Ratna Nanaji Deshmukh on his Jayanti.\n",
      "1315127372526411776 2020-10-11 03:09:34 +0000 <narendramodi> I bow to Loknayak JP on his Jayanti. He valiantly fought for India’s freedom and when our democratic ethos was under attack, he led a strong mass movement to protect it. For him, there was nothing above national interest and people’s welfare.\n",
      "1314879982070505472 2020-10-10 10:46:31 +0000 <narendramodi> स्वामित्व योजना के तहत चरणबद्ध तरीके से देश के लगभग 6.62 लाख गांवों के लोगों को प्रॉपर्टी कार्ड दिए जाएंगे। ग्रामीणों को अपनी संपत्ति के स्वामित्व का आधिकारिक दस्तावेज मिलेगा, जो उन्हें सशक्त बनाएगा। इसके माध्यम से वे बैंक लोन सहित कई वित्तीय सुविधाओं का लाभ ले सकेंगे।\n",
      "1314879979973353472 2020-10-10 10:46:31 +0000 <narendramodi> कल का दिन ग्रामीण भारत के लिए एक बड़ा सकारात्मक परिवर्तन लाने वाला है। सुबह 11 बजे स्वामित्व योजना के अंतर्गत संपत्ति कार्ड के वितरण का शुभारंभ किया जाएगा। यह योजना करोड़ों भारतीयों के जीवन में मील का पत्थर साबित होगी।   #SampatiSeSampanta  https://t.co/OQUEPSGCjr\n",
      "1314842849658060800 2020-10-10 08:18:58 +0000 <narendramodi> ദേവിക എന്ന കുട്ടിയെ ഓർത്ത് അഭിമാനം ! അവളുടെ ശ്രുതിമധുരമായ ആലാപനം 'ഏക ഭാരതം ശ്രേഷ്ഠഭാരതത്തിന്റെ' അന്തസത്ത ശക്തിപ്പെടുത്തുന്നു !\n",
      "1314792763100069889 2020-10-10 04:59:57 +0000 <narendramodi> #MannKiBaat presents a great opportunity to share inspiring journeys of outstanding citizens and discuss themes that power societal change. This month’s programme will take place on the 25th. Share your ideas on the NaMo App, MyGov or record your message.  https://t.co/qVG7YLhsuY https://t.co/P1IccJxV3j\n",
      "1314562542442700801 2020-10-09 13:45:08 +0000 <narendramodi> I am confident that the State of Kuwait will continue to play an important global role under their leadership, and the historic India-Kuwait friendship will be further strengthened.\n",
      "1314562539695472641 2020-10-09 13:45:07 +0000 <narendramodi> Congratulations and best wishes to His Highness Sheikh Nawaf Al-Ahmed Al-Jaber Al-Sabah for assuming charge as the Amir of the State of Kuwait.  I also congratulate His Highness Sheikh Mishaal Al-Ahmed Al-Jaber Al-Sabah on his taking charge as the Crown Prince.\n",
      "1314475166877929473 2020-10-09 07:57:56 +0000 <narendramodi> ਮਹਾਨ ਭਾਈ ਤਾਰੂ ਸਿੰਘ ਜੀ ਦੀ 300ਵੀਂ ਜਨਮ ਵਰ੍ਹੇਗੰਢ ਦੇ ਵਿਸ਼ੇਸ਼ ਮੌਕੇ ‘ਤੇ, ਮੈਂ ਉਨ੍ਹਾਂ ਨੂੰ ਪ੍ਰਣਾਮ ਕਰਦਾ ਹਾਂ। ਉਨ੍ਹਾਂ ਦਾ ਨਾਮ ਹਮੇਸ਼ਾ ਸਾਹਸ ਅਤੇ ਨਿਡਰਤਾ ਦਾ ਸਮਾਨਾਰਥੀ ਹੋਵੇਗਾ। ਆਪਣੇ ਸੱਭਿਆਚਾਰ ਦੇ ਨਾਲ-ਨਾਲ ਲੋਕਾਚਾਰ 'ਤੇ ਹਮੇਸ਼ਾ ਮਾਣ ਕਰਨ ਵਾਲੇ, ਉਹ ਕਦੇ ਵੀ ਅਨਿਆਂ ਅੱਗੇ ਨਹੀਂ ਝੁਕੇ। ਉਹ ਲੱਖਾਂ ਲੋਕਾਂ ਨੂੰ ਪ੍ਰੇਰਿਤ ਕਰਦੇ ਹਨ।\n",
      "1314475087001600001 2020-10-09 07:57:37 +0000 <narendramodi> On the special occasion of his 300th birth anniversary, I bow to the great Bhai Taru Singh Ji. His name will always be synonymous with courage and fearlessness. Always proud of his culture as well as ethos, he never bowed to injustice. He continues to inspire millions.\n",
      "1314472421672452096 2020-10-09 07:47:01 +0000 <narendramodi> We are extremely proud of the @IndiaPostOffice Team for their efforts to connect India. They bring happiness to countless lives. On #WorldPostDay, greetings to them and their families. Best wishes for all future endeavours.\n",
      "1314449520474824705 2020-10-09 06:16:01 +0000 <narendramodi> Paid respects to late Shri Ram Vilas Paswan Ji. His unwavering commitment to social justice will always be remembered. https://t.co/QaklVGclx5\n",
      "1314408498789195777 2020-10-09 03:33:01 +0000 <narendramodi> On IFS day, greetings to all #IndianForeignService officers. Their work towards #ServingTheNation, furthering national interests globally are commendable. Their efforts during Vande Bharat Mission and other COVID related help to our citizens and other nations is noteworthy.\n",
      "1314231242817040384 2020-10-08 15:48:40 +0000 <narendramodi> Working together, shoulder to shoulder with Paswan Ji has been an incredible experience. His interventions during Cabinet Meetings were insightful. From political wisdom, statesmanship to governance issues, he was brilliant. Condolences to his family and supporters. Om Shanti.\n",
      "1314230480653352961 2020-10-08 15:45:38 +0000 <narendramodi> Shri Ram Vilas Paswan Ji rose in politics through hardwork and determination. As a young leader, he resisted tyranny and the assault on our democracy during the Emergency. He was an outstanding Parliamentarian and Minister, making lasting contributions in several policy areas. https://t.co/naqx27xBoj\n",
      "1314229862148661248 2020-10-08 15:43:11 +0000 <narendramodi> I am saddened beyond words. There is a void in our nation that will perhaps never be filled. Shri Ram Vilas Paswan Ji’s demise is a personal loss. I have lost a friend, valued colleague and someone who was extremely passionate to ensure every poor person leads a life of dignity. https://t.co/2UUuPBjBrj\n",
      "1314221326136090624 2020-10-08 15:09:15 +0000 <narendramodi> Happy to have met you my friend, @DrabdullahCE. We had productive talks on various aspects of the strong India-Afghanistan friendship. India will always support our Afghan sisters and brothers in their quest for peace and in meeting their developmental aspirations.\n",
      "1314191301252837376 2020-10-08 13:09:57 +0000 <narendramodi> Addressing the Annual Invest India Conference. Watch. https://t.co/WJEgrCt6jB\n",
      "1314098034125365248 2020-10-08 06:59:20 +0000 <narendramodi> At around 6:30 PM today, would be delivering the keynote address at the Annual Invest India Conference. This is organised with a special focus on further strengthening business ties between India and Canada. Will speak on aspects relating to the economy. https://t.co/JcPJ9j1p3G\n",
      "1314030957477810176 2020-10-08 02:32:48 +0000 <narendramodi> आइए, कोरोना से लड़ने के लिए एकजुट हों!   हमेशा याद रखें:   मास्क जरूर पहनें।   हाथ साफ करते रहें।   सोशल डिस्टेंसिंग का पालन करें।   ‘दो गज की दूरी’ रखें।   #Unite2FightCorona https://t.co/L3wfaqlhDn\n",
      "1314030641218904064 2020-10-08 02:31:33 +0000 <narendramodi> Let us #Unite2FightCorona!   Let us always remember:  Wear a mask.   Wash hands.  Follow social distancing.  Practice ‘Do Gaj Ki Doori.’    Together, we will succeed.   Together, we will win against COVID-19. https://t.co/x5bymQpqjx\n",
      "1314030435136016385 2020-10-08 02:30:43 +0000 <narendramodi> India’s COVID-19 fight is people driven and gets great strength from our COVID warriors. Our collective efforts have helped saved many lives. We have to continue the momentum and protect our citizens from the virus. #Unite2FightCorona https://t.co/GrYUZPZc2m\n",
      "1314029762608721920 2020-10-08 02:28:03 +0000 <narendramodi> एयर फोर्स डे पर भारतीय वायुसेना के सभी वीर योद्धाओं को बहुत-बहुत बधाई। आप न सिर्फ देश के आसमान को सुरक्षित रखते हैं, बल्कि आपदा के समय मानवता की सेवा में भी अग्रणी भूमिका निभाते हैं। मां भारती की रक्षा के लिए आपका साहस, शौर्य और समर्पण हर किसी को प्रेरित करने वाला है।  #AFDay2020 https://t.co/0DYlI7zpe6\n",
      "1313892961688580097 2020-10-07 17:24:27 +0000 <narendramodi> मैं अपने-आपको, आपके आशीर्वाद के योग्य, आपके प्रेम के योग्य बनाने के लिए निरंतर प्रयासरत रहूंगा।   देशवासियों को एक बार फिर से विश्वास दिलाता हूं कि देशहित और गरीबों का कल्याण, यही मेरे लिए सर्वोपरि है और हमेशा सर्वोपरि रहेगा।\n",
      "1313892867585187840 2020-10-07 17:24:05 +0000 <narendramodi> कोई व्यक्ति कभी यह दावा नहीं कर सकता कि मुझमें कोई कमी नहीं है। इतने महत्वपूर्ण और जिम्मेदारी भरे पदों पर एक लंबा कालखंड… एक मनुष्य होने के नाते मुझसे भी गलतियां हो सकती हैं।   यह मेरा सौभाग्य है कि मेरी इन सीमाओं और मर्यादाओं के बावजूद आप सबका प्रेम उत्तरोत्तर बढ़ रहा है।\n",
      "1313892740627787776 2020-10-07 17:23:34 +0000 <narendramodi> आज जिस प्रकार देश के कोने-कोने से आप सबने आशीर्वाद और प्रेम बरसाए हैं, उसका आभार प्रकट करने के लिए आज मेरे शब्दों की शक्ति कम पड़ रही है!   देश सेवा, गरीबों के कल्याण और भारत को नई ऊंचाइयों पर ले जाने का हम सबका जो संकल्प है, उसे आपका आशीर्वाद, आपका प्रेम और मजबूत करेगा।\n",
      "1313892667005169664 2020-10-07 17:23:17 +0000 <narendramodi> बचपन से मेरे मन में एक बात संस्कारित हुई कि जनता-जनार्दन ईश्वर का रूप होती है और लोकतंत्र में ईश्वर की तरह ही शक्तिमान होती है।   इतने लंबे कालखंड तक देशवासियों ने मुझे जो जिम्मेदारियां सौंपी हैं, उन्हें निभाने के लिए मैंने पूरी तरह से प्रामाणिक और समर्पित प्रयास किए हैं।\n",
      "1313851809027432448 2020-10-07 14:40:56 +0000 <narendramodi> আজকের কেন্দ্রীয় ক্যাবিনেটের সিদ্ধান্ত আমার কলকাতাবাসী ভাই বোনেদের \" ঈজ অব লিভিং\" (জীবন যাপনের সুবিধা) আরো বাড়াবে। স্থানীয় পরিকাঠামোর উন্নতি ঘটিয়ে, ব্যবসা ও পর্যটনেও সাহায্য করবে। https://t.co/ozHmwwMNQu\n",
      "1313851605939154944 2020-10-07 14:40:07 +0000 <narendramodi> Today’s Cabinet decision will further ‘Ease of Living’ for my sisters and brothers of Kolkata. It will also give an impetus to local infrastructure and help commerce as well as tourism in the city. https://t.co/ozHmwwMNQu\n",
      "1313847097330819072 2020-10-07 14:22:12 +0000 <narendramodi> India is moving ahead on the path of futuristic reforms.   Today’s Cabinet decision on ‘Natural Gas Marketing Reforms’ add strength to the efforts of making India a gas based economy. https://t.co/q9JpXwUP9G\n",
      "1313774314651443202 2020-10-07 09:33:00 +0000 <narendramodi> Spoke to my friend President Vladimir Putin @KremlinRussia_E to greet him on his birthday today. Appreciated his immense personal contribution to strengthening the Special &amp; Privileged Strategic Partnership between India and Russia.\n",
      "1313478597458489348 2020-10-06 13:57:55 +0000 <narendramodi> Commendable effort, which places emphasis on building immunity, remaining healthy and making the fight against COVID-19 stronger.\n",
      "1313413850276872192 2020-10-06 09:40:38 +0000 <narendramodi> Had an insightful interaction with Mr. Henrik Andersen, President and CEO, @Vestas. We discussed a series of issues relating to the wind energy sector. Highlighted some of India’s efforts to harness renewable energy in order to build a cleaner future for the coming generations.\n",
      "1313168895784611841 2020-10-05 17:27:16 +0000 <narendramodi> It remains our collective responsibility to ensure trust in AI is maintained and we use AI for larger public good. #Raise2020 https://t.co/CDJspiwEPp\n",
      "1313168792655024129 2020-10-05 17:26:52 +0000 <narendramodi> Elaborated on some of India’s efforts to encourage AI. #Raise2020 https://t.co/UzlzP9WP9z\n",
      "1313146937332260864 2020-10-05 16:00:01 +0000 <narendramodi> Spoke to my friend @IsraeliPM @netanyahu on phone. We discussed the expanding India-Israel cooperation against COVID-19. We also reviewed our initiatives in other areas like agriculture, water and innovation.\n",
      "1313117911490334721 2020-10-05 14:04:41 +0000 <narendramodi> Addressing RAISE 2020 Virtual Summit. #Raise2020 https://t.co/evTxWOpv6f\n",
      "1313046704933883904 2020-10-05 09:21:44 +0000 <narendramodi> Anguished by the passing away of Justice AS Dave, former Judge as well as acting CJ of the Gujarat HC. He will be remembered for his contributions to the legal field. Condolences to his family and friends. Om Shanti.\n",
      "1312957286604705797 2020-10-05 03:26:25 +0000 <narendramodi> Looking forward to address The Responsible AI for Social Empowerment (RAISE 2020) Virtual Summit at 7 PM this evening. This Summit brings together tech leaders from across the world to discuss aspects relating to AI. Do watch! #Raise2020   https://t.co/7ZDqHbFZFY\n",
      "1312624055816646656 2020-10-04 05:22:16 +0000 <narendramodi> Shyamji Krishna Varma was fearless and selfless. He devoted himself towards India’s freedom and inspired many nationalists. India bows to him on his Jayanti. We shall always work hard to realise his vision for our nation. Visit this site to know about him. https://t.co/lN5TzJR7Xh https://t.co/3LlETdMEKa\n",
      "1312398101689188352 2020-10-03 14:24:25 +0000 <narendramodi> New age infrastructure for India! #AtalTunnel https://t.co/qKFDRcVyL0\n",
      "1312397856469213186 2020-10-03 14:23:26 +0000 <narendramodi> The #AtalTunnel is a game changing infrastructure project that will help several citizens. With this project comes several economic benefits, particularly for agriculture and tourism. https://t.co/6gAwK5QR4Y\n",
      "1312388614156767232 2020-10-03 13:46:43 +0000 <narendramodi> देश में आज जो रिफॉर्म्स किए जा रहे हैं, उसने ऐसे लोगों को परेशान कर दिया है, जिन्होंने हमेशा अपने राजनीतिक हितों के लिए काम किया।   आज जब ऐसे लोगों द्वारा बनाए बिचौलियों और दलालों के तंत्र पर प्रहार हो रहा है, तो वे बौखला गए हैं।   लेकिन देश आज परिवर्तन के लिए प्रतिबद्ध है। https://t.co/CacovmH42B\n",
      "1312388556971626497 2020-10-03 13:46:29 +0000 <narendramodi> हिमाचल प्रदेश के लोगों का जीवन आसान बनाने के लिए सड़क, बिजली जैसी मूल जरूरतों के साथ-साथ मोबाइल और इंटरनेट कनेक्टिविटी भी बहुत जरूरी है।   सरकार का निरंतर प्रयास है कि सामान्य मानवी की परेशानी कम से कम हो और उसे उसके हक का पूरा लाभ मिल सके। #AtalTunnel https://t.co/3n1VUOsvMD\n",
      "1312388459672215554 2020-10-03 13:46:06 +0000 <narendramodi> मनाली को बहुत अधिक पसंद करने वाले अटल जी की यह अटल इच्छा थी कि यहां स्थितियां बदले, यहां की कनेक्टिविटी बेहतर हो।   इसी सोच के साथ उन्होंने रोहतांग में टनल बनाने का फैसला लिया था। मुझे खुशी है कि आज अटल जी का यह संकल्प सिद्ध हो गया। #AtalTunnel https://t.co/52NarqAXjv\n",
      "1312388145548201984 2020-10-03 13:44:51 +0000 <narendramodi> Birthday greetings to @gssjodhpur Ji, our energetic Cabinet colleague who is working assiduously to ensure India is able to harness our Jal Shakti for public welfare. I pray for his long and healthy life.\n",
      "1312352680841486336 2020-10-03 11:23:56 +0000 <narendramodi> अटल टनल केंद्र सरकार के उस संकल्प का भी हिस्सा है कि देश के हर हिस्से में, हर व्यक्ति तक विकास का लाभ पहुंचना चाहिए।   अब देश में नई सोच के साथ काम हो रहा है। सबके साथ से, सबके विश्वास से, सबका विकास हो रहा है।   प्रयास इस बात का है कि कोई भारतीय छूट न जाए, पीछे न रह जाए। https://t.co/68w0LaF4l8\n",
      "1312352573492539393 2020-10-03 11:23:30 +0000 <narendramodi> अटल टनल के बन जाने से लाहौल के लोगों के लिए तो नई सुबह हुई ही है, पांगी के लोगों का जीवन भी बदलने वाला है।   लाहौल-स्पीति और पांगी के किसान हों, बागवानी से जुड़े लोग हों, पशुपालक हों, स्टूडेंट हों, नौकरीपेशा हों, व्यापारी-कारोबारी हों, सभी को इससे लाभ होने वाला है। https://t.co/xBeejfowiv\n",
      "1312319619797901313 2020-10-03 09:12:33 +0000 <narendramodi> Addressing a public meeting in Solang. Watch. https://t.co/b8sTIIon80\n",
      "1312319233653522432 2020-10-03 09:11:01 +0000 <narendramodi> जैसे-जैसे भारत की वैश्विक भूमिका बदल रही है, हमें उसी तेजी से, उसी रफ्तार से अपने इंफ्रास्ट्रक्चर को, अपने आर्थिक और सामरिक सामर्थ्य को भी बढ़ाना है।   आत्मनिर्भर भारत का आत्मविश्वास आज जनमानस की सोच का हिस्सा बन चुका है।   अटल टनल इसी आत्मविश्वास का प्रतीक है। #AtalTunnel https://t.co/ohMSWtP1Kn\n",
      "1312319065214443520 2020-10-03 09:10:21 +0000 <narendramodi> कनेक्टिविटी का देश के विकास से सीधा संबंध होता है। ज्यादा से ज्यादा कनेक्टिविटी यानि उतना ही तेज विकास।   बॉर्डर एरिया में तो कनेक्टिविटी सीधे-सीधे देश की रक्षा जरूरतों से जुड़ी होती है।   लेकिन इसे लेकर जैसी गंभीरता और राजनीतिक इच्छाशक्ति की जरूरत थी, वैसी दिखाई नहीं गई थी... https://t.co/wDB3VSpYqW\n",
      "1312318701505372160 2020-10-03 09:08:54 +0000 <narendramodi> अटल टनल भारत के बॉर्डर इंफ्रास्ट्रक्चर को नई ताकत देने वाली है।   यह विश्वस्तरीय बॉर्डर कनेक्टिविटी का जीता-जागता प्रमाण है।   यह देश की सुरक्षा और समृद्धि, दोनों के लिए बहुत बड़ा संसाधन है। #AtalTunnel https://t.co/1bfUjCv1Qq\n",
      "1312293020276981761 2020-10-03 07:26:51 +0000 <narendramodi> Speaking at Sissu in Himachal Pradesh. https://t.co/GnYaWYofZn\n",
      "1312265970874867712 2020-10-03 05:39:22 +0000 <narendramodi> Inaugurating the spectacular #AtalTunnel. https://t.co/Npiw0qSO5A\n",
      "1312078637009567744 2020-10-02 17:14:58 +0000 <narendramodi> The #AtalTunnel will solve a major problem of connectivity in the region. It has several salient features and will further ‘Ease of Living’ for local citizens. Will also join public programmes in Sissu in Lahaul Spiti and at Solang Valley.\n",
      "1312078634866278403 2020-10-02 17:14:58 +0000 <narendramodi> Fulfilling Atal Ji’s dream of top quality infrastructure.   Will be in Himachal Pradesh tomorrow to dedicate the #AtalTunnel in Rohtang to the nation. This is an iconic infrastructure project built at a height of 10,000 feet. https://t.co/oZa8RY82vk\n",
      "1312074420828037121 2020-10-02 16:58:13 +0000 <narendramodi> Earlier today, attended a prayer meet at Gandhi Smriti. https://t.co/DlTpbIWcAU\n",
      "1312074019391201280 2020-10-02 16:56:38 +0000 <narendramodi> We are fully committed to ensure more youngsters study science.   There is a major role of science in realising our dream of an Aatmanirbhar Bharat. #VaibhavSummit https://t.co/I3QgITv8eU\n",
      "1312073804126904321 2020-10-02 16:55:46 +0000 <narendramodi> During #VaibhavSummit highlighted some of India’s efforts to encourage science and harness it for socio-economic change. https://t.co/QzBNfvGKMb\n",
      "1312031688336175104 2020-10-02 14:08:25 +0000 <narendramodi> Participating in the #VaibhavSummit. https://t.co/VoNcblRulD\n",
      "1311948457666506752 2020-10-02 08:37:41 +0000 <narendramodi> विजय घाट पर लाल बहादुर शास्त्री जी को श्रद्धा-सुमन अर्पित किए। https://t.co/eIf1KrON01\n",
      "1311948150408503296 2020-10-02 08:36:28 +0000 <narendramodi> गांधी जयंती के अवसर पर राजघाट जाकर पूज्य बापू को विनम्र श्रद्धांजलि दी। https://t.co/P1J6kKo6e1\n",
      "1311905372504879105 2020-10-02 05:46:29 +0000 <narendramodi> Wishing my friend @POTUS @realDonaldTrump and @FLOTUS a quick recovery and good health.\n",
      "1311844355204808704 2020-10-02 01:44:01 +0000 <narendramodi> Lal Bahadur Shastri Ji was humble and firm.  He epitomised simplicity and lived for the welfare of our nation.  We remember him on his Jayanti with a deep sense of gratitude for everything he has done for India. https://t.co/bTV6886crz\n",
      "1311843987532050437 2020-10-02 01:42:34 +0000 <narendramodi> We bow to beloved Bapu on Gandhi Jayanti.   There is much to learn from his life and noble thoughts.  May Bapu’s ideals keep guiding us in creating a prosperous and compassionate India. https://t.co/wCe4DkU9aI\n",
      "1311695054918963201 2020-10-01 15:50:45 +0000 <narendramodi> Looking forward to tomorrow’s Vaibhav Summit, which brings together scientists as well as researchers from the Indian diaspora.   Do join at 6:30 PM on 2nd October. https://t.co/fvXxaDhT5q\n",
      "1311694768649302016 2020-10-01 15:49:37 +0000 <narendramodi> Spoke to @BharatSolankee Ji and enquired about his well-being. He has shown remarkable courage during his 100-day long battle against COVID-19.  I wish him good health in the times to come.\n",
      "1311538497312878593 2020-10-01 05:28:39 +0000 <narendramodi> MyNEP Competition is an interesting way of sharing unique aspects about the National Education Policy 2020.  Participate in the competition at https://t.co/IoxjJvaXdL.   Be a part of the educational transformation of India!   #NewNEPNewIndia https://t.co/ihV682wmVl\n",
      "1311478481113346048 2020-10-01 01:30:10 +0000 <narendramodi> Birthday wishes to Rashtrapati Ji. His rich insights and wise understanding of policy matters are great assets for our nation. He is extremely compassionate towards serving the vulnerable. I pray for his good health and long life. @rashtrapatibhvn\n",
      "1311327874100666368 2020-09-30 15:31:43 +0000 <narendramodi> Participated in the Shree Somnath Trust meeting via video conferencing. We discussed a wide range of issues pertaining to the Temple, including the exceptional community service by the Trust during these times and harnessing of technology to enable more devotees to pray.\n",
      "1311327447753936896 2020-09-30 15:30:01 +0000 <narendramodi> Brahmos Supersonic Cruise Missile has achieved yet another milestone with successful test launch showcasing enhanced operational capabilities and additional indigenous technologies. Congratulations to all the scientists and engineers. @DRDO_India @BrahMosMissile\n",
      "1310973712821256192 2020-09-29 16:04:24 +0000 <narendramodi> Today, the State of Kuwait and the Arab world has lost a beloved leader, India a close friend, and the world a great statesman. His Highness played a leading role in strengthening our bilateral relations, and always took special care of the Indian community in Kuwait.\n",
      "1310973708983566336 2020-09-29 16:04:23 +0000 <narendramodi> My heartfelt condolences on the sad demise of His Highness Sheikh Sabah Al-Ahmed Al-Jaber Al-Sabah, Amir of the State of Kuwait. In this moment of grief our thoughts are with the Al-Sabah family and the people of the State of Kuwait.\n"
     ]
    }
   ],
   "source": [
    "import twint\n",
    "\n",
    "c = twint.Config()\n",
    "c.Limit = 1\n",
    "c.Username = 'narendramodi'\n",
    "c.Pandas = True\n",
    "\n",
    "twint.run.Search(c)\n",
    "\n",
    "Tweets_df = twint.storage.panda.Tweets_df"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "colab": {
     "base_uri": "https://localhost:8080/",
     "height": 267
    },
    "id": "CgZGDcxil59f",
    "outputId": "3fd1d74a-8a23-40bf-92e7-85fda8c8e3ba"
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>id</th>\n",
       "      <th>conversation_id</th>\n",
       "      <th>created_at</th>\n",
       "      <th>date</th>\n",
       "      <th>timezone</th>\n",
       "      <th>place</th>\n",
       "      <th>tweet</th>\n",
       "      <th>language</th>\n",
       "      <th>hashtags</th>\n",
       "      <th>cashtags</th>\n",
       "      <th>user_id</th>\n",
       "      <th>user_id_str</th>\n",
       "      <th>username</th>\n",
       "      <th>name</th>\n",
       "      <th>day</th>\n",
       "      <th>hour</th>\n",
       "      <th>link</th>\n",
       "      <th>urls</th>\n",
       "      <th>photos</th>\n",
       "      <th>video</th>\n",
       "      <th>thumbnail</th>\n",
       "      <th>nlikes</th>\n",
       "      <th>nreplies</th>\n",
       "      <th>nretweets</th>\n",
       "      <th>quote_url</th>\n",
       "      <th>search</th>\n",
       "      <th>near</th>\n",
       "      <th>geo</th>\n",
       "      <th>source</th>\n",
       "      <th>reply_to</th>\n",
       "      <th>translate</th>\n",
       "      <th>trans_src</th>\n",
       "      <th>trans_dest</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>1315915772544258049</td>\n",
       "      <td>1315915772544258049</td>\n",
       "      <td>1.602574e+12</td>\n",
       "      <td>2020-10-13 07:22:23</td>\n",
       "      <td>+0000</td>\n",
       "      <td></td>\n",
       "      <td>ગુજરાતી સુગમ સંગીતનાં શિરમોર ગાયિકા કૌમુદી મુન...</td>\n",
       "      <td>gu</td>\n",
       "      <td>[]</td>\n",
       "      <td>[]</td>\n",
       "      <td>18839785</td>\n",
       "      <td>18839785</td>\n",
       "      <td>narendramodi</td>\n",
       "      <td>Narendra Modi</td>\n",
       "      <td>2</td>\n",
       "      <td>07</td>\n",
       "      <td>https://twitter.com/narendramodi/status/131591...</td>\n",
       "      <td>[]</td>\n",
       "      <td>[]</td>\n",
       "      <td>0</td>\n",
       "      <td></td>\n",
       "      <td>9473</td>\n",
       "      <td>319</td>\n",
       "      <td>1323</td>\n",
       "      <td></td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "      <td>{'user_id': None, 'username': None}</td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>1315896260415553536</td>\n",
       "      <td>1315896260415553536</td>\n",
       "      <td>1.602569e+12</td>\n",
       "      <td>2020-10-13 06:04:51</td>\n",
       "      <td>+0000</td>\n",
       "      <td></td>\n",
       "      <td>Released the autobiography of Shri Balasaheb V...</td>\n",
       "      <td>en</td>\n",
       "      <td>[]</td>\n",
       "      <td>[]</td>\n",
       "      <td>18839785</td>\n",
       "      <td>18839785</td>\n",
       "      <td>narendramodi</td>\n",
       "      <td>Narendra Modi</td>\n",
       "      <td>2</td>\n",
       "      <td>06</td>\n",
       "      <td>https://twitter.com/narendramodi/status/131589...</td>\n",
       "      <td>[https://www.pscp.tv/w/clPpgzMyMjExNTJ8MU9kSnJ...</td>\n",
       "      <td>[]</td>\n",
       "      <td>0</td>\n",
       "      <td></td>\n",
       "      <td>12557</td>\n",
       "      <td>404</td>\n",
       "      <td>2531</td>\n",
       "      <td></td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "      <td>{'user_id': None, 'username': None}</td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "      <td></td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "                    id      conversation_id  ...  trans_src trans_dest\n",
       "0  1315915772544258049  1315915772544258049  ...                      \n",
       "1  1315896260415553536  1315896260415553536  ...                      \n",
       "\n",
       "[2 rows x 33 columns]"
      ]
     },
     "execution_count": 39,
     "metadata": {
      "tags": []
     },
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Tweets_df.head(2)"
   ]
  }
 ],
 "metadata": {
  "colab": {
   "name": "TWINT.ipynb",
   "provenance": [],
   "toc_visible": true
  },
  "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.7.6"
  },
  "toc": {
   "base_numbering": 1,
   "nav_menu": {},
   "number_sections": false,
   "sideBar": true,
   "skip_h1_title": false,
   "title_cell": "Table of Contents",
   "title_sidebar": "Contents",
   "toc_cell": false,
   "toc_position": {},
   "toc_section_display": true,
   "toc_window_display": true
  }
 },
 "nbformat": 4,
 "nbformat_minor": 1
}

Conclusion

This blog post guided us through a selection of Twint's tweet-scraping functionalities. Additionally, Twint offers advanced capabilities like saving tweets to databases, memory (Python lists), and Elasticsearch. Armed with the insights gained here, you can efficiently scrape tweets and swiftly incorporate them into your subsequent analysis endeavors. For more details, contact Actowiz Solutions now! You can also reach us for all your mobile app scraping, instant data scraper and web scraping service requirements.

Recent Blog

View More

How to Leverage Google Earth Pool House Scraping to Get Real Estate Insights?

Harness Google Earth Pool House scraping for valuable real estate insights, optimizing property listings and investment strategies effectively.

How to Scrape Supermarket and Multi-Department Store Data from Kroger?

Unlock insights by scraping Kroger's supermarket and multi-department store data using advanced web scraping techniques.

Research And Report

View More

Scrape Zara Stores in Germany

Research report on scraping Zara store locations in Germany, detailing methods, challenges, and findings for data extraction.

Battle of the Giants: Flipkart's Big Billion Days vs. Amazon's Great Indian Festival

In this Research Report, we scrutinized the pricing dynamics and discount mechanisms of both e-commerce giants across essential product categories.

Case Studies

View More

Case Study - Empowering Price Integrity with Actowiz Solutions' MAP Monitoring Tools

This case study shows how Actowiz Solutions' tools facilitated proactive MAP violation prevention, safeguarding ABC Electronics' brand reputation and value.

Case Study - Revolutionizing Retail Competitiveness with Actowiz Solutions' Big Data Solutions

This case study exemplifies the power of leveraging advanced technology for strategic decision-making in the highly competitive retail sector.

Infographics

View More

Unleash the power of e-commerce data scraping

Leverage the power of e-commerce data scraping to access valuable insights for informed decisions and strategic growth. Maximize your competitive advantage by unlocking crucial information and staying ahead in the dynamic world of online commerce.

How do websites Thwart Scraping Attempts?

Websites thwart scraping content through various means such as implementing CAPTCHA challenges, IP address blocking, dynamic website rendering, and employing anti-scraping techniques within their code to detect and block automated bots.