├── .github └── workflows │ └── scala.yml ├── .gitignore ├── .scala-steward.conf ├── README.md ├── _config.yml ├── build.sbt ├── ipl-tweet.csv ├── project ├── build.properties └── plugins.sbt └── src ├── main └── scala │ └── com │ └── techmonad │ └── pipeline │ ├── DataPipeline.scala │ ├── RunDataPipeline.scala │ ├── models.scala │ ├── persist │ └── ESPersistence.scala │ ├── reader │ └── CSVReader.scala │ ├── transformation │ ├── Transformation.scala │ ├── Transformations.scala │ └── sentiment │ │ └── NLPSentimentAnalyzer.scala │ ├── util │ ├── CSVParser.scala │ ├── JsonHelper.scala │ ├── SparkContextProvider.scala │ ├── TryHelper.scala │ └── enumeration.scala │ ├── validation │ ├── Validation.scala │ ├── Validations.scala │ ├── schema │ │ ├── Schema.scala │ │ └── SchemaValidation.scala │ └── source │ │ └── MandatoryColumnValidation.scala │ └── workflow │ └── WorkFlows.scala └── test ├── resources ├── csv │ └── tweet.csv └── workflow.json └── scala └── com └── techmonad └── pipeline ├── SparkSupport.scala └── reader └── ReaderSpec.scala /.github/workflows/scala.yml: -------------------------------------------------------------------------------- 1 | name: Scala CI 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - uses: actions/checkout@v2 16 | - name: Set up JDK 11 17 | uses: actions/setup-java@v2 18 | with: 19 | java-version: '11' 20 | distribution: 'adopt' 21 | - name: Run tests 22 | run: sbt clean compile test 23 | 24 | merge: 25 | name: Merge dependency update 26 | if: github.actor == 'anand-singh' 27 | needs: 28 | - build 29 | runs-on: ubuntu-latest 30 | steps: 31 | - name: merge PR 32 | uses: desbo/merge-pr-action@v0 33 | with: 34 | GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} 35 | ALLOWED_UPDATE: major 36 | MERGE_METHOD: squash 37 | 38 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | project/boot/ 3 | project/plugins/project/ 4 | project/plugins/target/ 5 | project/target/ 6 | target/ 7 | project/boot/* 8 | project/plugins/project/* 9 | project/plugins/target/* 10 | project/target/* 11 | target/* 12 | .idea 13 | .idea/* 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .classpath 18 | .project 19 | .target/ 20 | .cache 21 | logs/* 22 | .settings/ -------------------------------------------------------------------------------- /.scala-steward.conf: -------------------------------------------------------------------------------- 1 | # pullRequests.frequency allows to control how often or when Scala Steward 2 | # is allowed to create pull requests. 3 | # 4 | # Possible values: 5 | # @asap 6 | # PRs are created without delay. 7 | # 8 | # 9 | # PRs are created only again after the given timespan since the last PR 10 | # has passed. Example values are "36 hours", "1 day", or "14 days". 11 | 12 | # 13 | # PRs are created roughly according to the given CRON expression. 14 | # 15 | # CRON expressions consist of five fields: 16 | # minutes, hour of day, day of month, month, and day of week. 17 | # 18 | # See https://www.alonsodomin.me/cron4s/userguide/index.html#parsing for 19 | # more information about the CRON expressions that are supported. 20 | # 21 | # Note that the date parts of the CRON expression are matched exactly 22 | # while the time parts are only used to abide to the frequency of 23 | # the given expression. 24 | # 25 | # Default: @asap 26 | # 27 | #pullRequests.frequency = "0 0 ? * 3" # every thursday on midnight 28 | #pullRequests.frequency = "7 days" 29 | 30 | # Only these dependencies which match the given patterns are updated. 31 | # 32 | # Each pattern must have `groupId`, and may have `artifactId` and `version`. 33 | # Defaults to empty `[]` which mean Scala Steward will update all dependencies. 34 | #updates.allow = [ { groupId = "com.example" } ] 35 | 36 | # The dependencies which match the given version pattern are updated. 37 | # Dependencies that are not listed will be updated. 38 | # 39 | # Each pattern must have `groupId`, `version` and optional `artifactId`. 40 | # Defaults to empty `[]` which mean Scala Steward will update all dependencies. 41 | # the following example will allow to update foo when version is 1.1.x 42 | #updates.pin = [ { groupId = "com.example", artifactId="foo", version = "1.1." } ] 43 | 44 | # The dependencies which match the given pattern are NOT updated. 45 | # 46 | # Each pattern must have `groupId`, and may have `artifactId` and `version`. 47 | # Defaults to empty `[]` which mean Scala Steward will not ignore dependencies. 48 | #updates.ignore = [ { groupId = "org.acme", artifactId="foo", version = "1.0" } ] 49 | 50 | # If set, Scala Steward will only create or update `n` PRs each time it runs (see `pullRequests.frequency` above). 51 | # Useful if running frequently and/or CI build are costly 52 | # Default: None 53 | #updates.limit = 5 54 | 55 | # If set to "yes", Scala Steward will create PR for scala updates 56 | # If set to "draft", Scala Steward will create draft PR for scala updates 57 | # If set to "no", Scala Steward will not create PR for scala updates 58 | # The default is set to "draft" since updating scala version is tricky and error-prone 59 | # and is left upto the repo maintainer to mark it ready for review and merge when satisfactory 60 | # Default: draft 61 | updates.includeScala = "yes" 62 | 63 | # The extensions of files that should be updated. 64 | # Default: [".scala", ".sbt", ".sbt.shared", ".sc", ".yml", "pom.xml"] 65 | updates.fileExtensions = [".scala", ".sbt", ".sbt.shared", ".sc", ".yml", ".md", ".markdown", ".txt"] 66 | 67 | # If "on-conflicts", Scala Steward will update the PR it created to resolve conflicts as 68 | # long as you don't change it yourself. 69 | # If "always", Scala Steward will always update the PR it created as long as 70 | # you don't change it yourself. 71 | # If "never", Scala Steward will never update the PR 72 | # Default: "on-conflicts" 73 | #updatePullRequests = "always" | "on-conflicts" | "never" 74 | 75 | # If set, Scala Steward will use this message template for the commit messages and PR titles. 76 | # Supported variables: ${artifactName}, ${currentVersion}, ${nextVersion} and ${default} 77 | # Default: "${default}" which is equivalent to "Update ${artifactName} to ${nextVersion}" 78 | commits.message = "Update ${artifactName} from ${currentVersion} to ${nextVersion}" 79 | 80 | # If true and when upgrading version in .scalafmt.conf, Scala Steward will perform scalafmt 81 | # and add a separate commit when format changed. So you don't need reformat manually and can merge PR. 82 | # If false, Scala Steward will not perform scalafmt, so your CI may abort when reformat needed. 83 | # Default: true 84 | scalafmt.runAfterUpgrading = true 85 | 86 | # It is possible to have multiple scala projects in a single repository. In that case the folders containing the projects (build.sbt folders) 87 | # are specified using the buildRoots property. Note that the paths used there are relative and if the repo directory itself also contains a build.sbt the dot can be used to specify it. 88 | # Default: ["."] 89 | #buildRoots = [ ".", "subfolder/projectA" ] 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # spark-data-pipeline 2 | 3 | #### Elasticsearch Setup 4 | i) [Download](https://www.elastic.co/downloads/elasticsearch) the Elasticsearch 6.3.0 or latest version and unzip it. 5 | 6 | ii) Run the following command. 7 | 8 | $ bin/elasticsearch 9 | 10 | 11 | 12 | #### Getting Started: 13 | 14 | Clone and run in local mode: 15 | 16 | $ git clone git@github.com:techmonad/spark-data-pipeline.git 17 | $ cd spark-data-pipeline 18 | $ sbt run 19 | 20 | 21 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /build.sbt: -------------------------------------------------------------------------------- 1 | name := "spark-data-pipeline" 2 | 3 | version := "1.0" 4 | 5 | scalaVersion := "2.11.12" 6 | 7 | 8 | libraryDependencies ++= Seq( 9 | "org.apache.spark" %% "spark-core" % "2.4.0", 10 | "com.univocity" % "univocity-parsers" % "2.6.4", 11 | "org.elasticsearch" %% "elasticsearch-spark-20" % "6.6.0", 12 | "edu.stanford.nlp" % "stanford-corenlp" % "3.6.0" artifacts(Artifact("stanford-corenlp", "models"), Artifact("stanford-corenlp")), 13 | "ch.qos.logback" % "logback-classic" % "1.2.3", 14 | "org.json4s" %% "json4s-native" % "3.5.4", 15 | "org.scalatest" %% "scalatest" % "3.0.1" 16 | ) 17 | -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.15 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- 1 | logLevel := Level.Warn -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/DataPipeline.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline 2 | 3 | import com.techmonad.pipeline.persist.ESPersistenceRDD 4 | import com.techmonad.pipeline.reader.CSVReader 5 | import com.techmonad.pipeline.transformation.Transformations 6 | import com.techmonad.pipeline.validation.Validations 7 | import com.techmonad.pipeline.workflow.{Sink, Source, WorkFlow} 8 | import org.apache.spark.SparkContext 9 | import org.apache.spark.rdd.RDD 10 | 11 | import scala.util.{Failure, Success, Try} 12 | 13 | trait DataPipeline { 14 | 15 | def run(): Unit 16 | } 17 | 18 | 19 | object DataPipeline { 20 | 21 | def apply(workFlow: WorkFlow)(implicit sc: SparkContext): DataPipeline = { 22 | Try { 23 | val sourceRDD = applySource(workFlow.source) 24 | val validatedRDD = applyValidation(sourceRDD, workFlow.validations) 25 | val transformedRDD = applyTransformation(validatedRDD, workFlow.transformations) 26 | val schemaValidatedRDD = applySchemaValidation(transformedRDD, workFlow.schemaValidations) 27 | applySink(schemaValidatedRDD, workFlow.sink) 28 | } match { 29 | case Success(sink) => 30 | new DataPipeline { 31 | override def run(): Unit = sink.run() 32 | } 33 | case Failure(th) => 34 | println("Error: Invalid workflow " + workFlow) //TODO: use logger 35 | throw th 36 | } 37 | } 38 | 39 | private def applySource(source: Source)(implicit sc: SparkContext): RDD[Record] = { 40 | CSVReader.read(source.path) 41 | } 42 | 43 | private def applyValidation(rdd: RDD[Record], validations: List[String]): RDD[Record] = 44 | validations match { 45 | case Nil => rdd 46 | case head :: tail => 47 | applyValidation( 48 | Validations.get(head).map { v => rdd.map(v.validate) }.getOrElse(rdd) 49 | , tail) 50 | } 51 | 52 | 53 | private def applyTransformation(rdd: RDD[Record], transformations: List[String]): RDD[Record] = 54 | transformations match { 55 | case Nil => rdd 56 | case head :: tail => 57 | applyTransformation(Transformations.get(head).map { v => rdd.map(v.transform) }.getOrElse(rdd), tail) 58 | } 59 | 60 | private def applySchemaValidation(rdd: RDD[Record], validations: List[String]): RDD[Record] = { 61 | applyValidation(rdd, validations) 62 | } 63 | 64 | private def applySink(rdd: RDD[Record], sink: Sink): ESPersistenceRDD = 65 | sink.`type` match { 66 | case "ES" => new ESPersistenceRDD(rdd) 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/RunDataPipeline.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline 2 | 3 | 4 | import com.techmonad.pipeline.util.{JsonHelper, SparkContextProvider} 5 | import com.techmonad.pipeline.workflow.WorkFlow 6 | 7 | object RunDataPipeline extends App with SparkContextProvider with JsonHelper { 8 | 9 | val workFlowJson = 10 | """ 11 | |{ 12 | | "source": { 13 | | "type": "CSV", 14 | | "path": "ipl-tweet.csv", 15 | | "meta":{"text_field":"text","date_field": "date","author_field":"author_name" } 16 | | }, 17 | | 18 | | "validations": [ "COLUMN_VALIDATION", "FIELD_VALIDATION" ], 19 | | 20 | | "transformations": ["SENTIMENT_ANALYSIS" ], 21 | | 22 | | "schemaValidations": [ ], 23 | | 24 | | "sink": { 25 | | "type": "ES", 26 | | "meta":{ "index": "data_index","type": "twitter" } 27 | | } 28 | |} 29 | """.stripMargin 30 | 31 | 32 | /* if (args.length < 1) 33 | throw new IllegalArgumentException("Data directory and workflow json are required") 34 | else 35 | args(0)*/ 36 | 37 | val workFlow = parse(workFlowJson).extract[WorkFlow] 38 | 39 | DataPipeline(workFlow).run 40 | 41 | sc.stop() 42 | 43 | } 44 | 45 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/models.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline 2 | 3 | import com.techmonad.pipeline.util.Status 4 | 5 | 6 | case class Record(data: Map[String, Any], status: Status.Value = Status.OK, reason: Option[String] = None) 7 | 8 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/persist/ESPersistence.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.persist 2 | 3 | import com.techmonad.pipeline.Record 4 | import com.techmonad.pipeline.util.Status 5 | import org.apache.spark.rdd.RDD 6 | import org.elasticsearch.spark._ 7 | 8 | trait PersistenceRDD { 9 | 10 | protected val rdd: RDD[Record] 11 | 12 | def run(): Unit 13 | 14 | } 15 | 16 | class ESPersistenceRDD(protected val rdd: RDD[Record]) extends PersistenceRDD { 17 | 18 | def run(): Unit = { 19 | val validRecords = rdd.collect { case record if (record.status != Status.ERROR) => record.data } 20 | if (!validRecords.isEmpty()) 21 | validRecords.saveToEs("data_index/twitter") 22 | val invalidRecords = rdd.collect { case record if (record.status == Status.ERROR) => record.data + ("reason" -> record.reason.getOrElse("")) } 23 | if (!invalidRecords.isEmpty()) 24 | invalidRecords.saveToEs("invalid_data_index/twitter") 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/reader/CSVReader.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.reader 2 | 3 | import com.techmonad.pipeline.Record 4 | import com.techmonad.pipeline.util.{CSVParser, Status, TryHelper} 5 | import org.apache.spark.SparkContext 6 | import org.apache.spark.rdd.RDD 7 | 8 | 9 | object CSVReader extends TryHelper { 10 | 11 | def read(url: String, delimiter: Char = ',')(implicit sc: SparkContext): RDD[Record] = { 12 | val headers = sc.textFile(url).first() 13 | sc.textFile(url) 14 | .mapPartitionsWithIndex { 15 | case (index, itr) => 16 | if (index == 0) 17 | readFile(itr.drop(1), headers) 18 | else 19 | readFile(itr, headers) 20 | } 21 | } 22 | 23 | 24 | private def readFile(itr: Iterator[String], firstLine: String): Iterator[Record] = { 25 | val parser = new CSVParser() 26 | val headers = parser.parse(firstLine) 27 | itr.map { line => 28 | withTry(parser.parse(line)) match { 29 | case Some(row) => 30 | if (row.length == headers.length) 31 | Record(headers.zip(row).toMap) 32 | else 33 | Record(Map("record" -> line), Status.ERROR, Some(s"Headers mismatch, actual length is [${headers.length}] but found: {${row.length}]")) 34 | case None => 35 | Record(Map("record" -> line), Status.ERROR, Some("Invalid record")) 36 | } 37 | } 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/transformation/Transformation.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.transformation 2 | 3 | import com.techmonad.pipeline.Record 4 | 5 | 6 | trait Transformation { 7 | 8 | val name:String 9 | 10 | def transform(record: Record): Record 11 | } 12 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/transformation/Transformations.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.transformation 2 | 3 | import com.techmonad.pipeline.transformation.sentiment.SentimentAnalyzer 4 | 5 | object Transformations { 6 | 7 | private val transformations: Map[String, Transformation] = Map( 8 | SentimentAnalyzer.name -> SentimentAnalyzer 9 | ) 10 | 11 | def get(name: String): Option[Transformation] = transformations.get(name) 12 | } 13 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/transformation/sentiment/NLPSentimentAnalyzer.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.transformation.sentiment 2 | 3 | import java.util.Properties 4 | 5 | import com.techmonad.pipeline.Record 6 | import com.techmonad.pipeline.transformation.Transformation 7 | import com.techmonad.pipeline.util.Status 8 | import edu.stanford.nlp.ling.CoreAnnotations 9 | import edu.stanford.nlp.neural.rnn.RNNCoreAnnotations 10 | import edu.stanford.nlp.pipeline.{Annotation, StanfordCoreNLP} 11 | import edu.stanford.nlp.sentiment.SentimentCoreAnnotations 12 | 13 | import scala.collection.convert.wrapAll._ 14 | 15 | 16 | object SentimentAnalyzer extends Transformation with Serializable{ 17 | 18 | override def transform(record: Record): Record = 19 | if (record.status != Status.ERROR) { 20 | val sentiment: String = NLPSentimentAnalyzer.getSentiment(record.data("text").toString) 21 | println("Analyzing Sentiment........... " + sentiment) 22 | record.copy(data = record.data + ("sentiment" -> sentiment)) 23 | } else { 24 | record 25 | } 26 | 27 | override val name = "SENTIMENT_ANALYSIS" 28 | } 29 | 30 | object NLPSentimentAnalyzer { 31 | 32 | private val props = new Properties() 33 | props.setProperty("annotators", "tokenize, ssplit, parse, sentiment") 34 | private val pipeline: StanfordCoreNLP = new StanfordCoreNLP(props) 35 | 36 | def getSentiment(input: String): String = { 37 | val annotation: Annotation = pipeline.process(input) 38 | val (_, sentiment) = 39 | annotation.get(classOf[CoreAnnotations.SentencesAnnotation]) 40 | .map { sentence => (sentence, sentence.get(classOf[SentimentCoreAnnotations.SentimentAnnotatedTree])) } 41 | .map { case (sentence, tree) => (sentence.toString, getSentimentType(RNNCoreAnnotations.getPredictedClass(tree))) } 42 | .maxBy { case (sentence, _) => sentence.length } 43 | sentiment 44 | } 45 | 46 | 47 | private def getSentimentType(sentiment: Int): String = sentiment match { 48 | case x if x == 3 || x == 4 => "positive" 49 | case x if x == 0 || x == 1 => "negative" 50 | case 2 => "neutral" 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/util/CSVParser.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.util 2 | 3 | import com.univocity.parsers.csv.{CsvParser, CsvParserSettings} 4 | 5 | 6 | class CSVParser(delimiter: Char = ',') { 7 | 8 | private val settings = new CsvParserSettings 9 | private val format = settings.getFormat 10 | format.setDelimiter(delimiter) 11 | format.setComment('\0') 12 | settings.setIgnoreLeadingWhitespaces(true) 13 | settings.setIgnoreTrailingWhitespaces(true) 14 | settings.setNullValue("") 15 | settings.setMaxCharsPerColumn(-1) 16 | settings.setMaxColumns(20000) 17 | 18 | private val parser = new CsvParser(settings) 19 | 20 | def parse(line: String): Array[String] = 21 | parser.parseLine(line) 22 | 23 | } 24 | 25 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/util/JsonHelper.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.util 2 | 3 | 4 | import org.json4s._ 5 | import org.json4s.native.JsonMethods.{parse => jParser} 6 | import org.json4s.native.Serialization.{write => jWrite} 7 | 8 | trait JsonHelper { 9 | 10 | implicit val formats = DefaultFormats 11 | 12 | protected def write[T <: AnyRef](value: T): String = jWrite(value) 13 | 14 | protected def parse(value: String): JValue = jParser(value) 15 | 16 | } -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/util/SparkContextProvider.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.util 2 | 3 | import org.apache.spark.{SparkConf, SparkContext} 4 | 5 | 6 | trait SparkContextProvider { 7 | 8 | val conf = new SparkConf().setMaster("local[*]").setAppName("DataPipeline") 9 | implicit val sc = new SparkContext(conf) 10 | sc.setLogLevel("WARN") 11 | 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/util/TryHelper.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.util 2 | 3 | import scala.util.control.NonFatal 4 | 5 | 6 | trait TryHelper { 7 | 8 | def withTry[T](t: => T): Option[T] = 9 | try 10 | Option(t) 11 | catch { 12 | case NonFatal(th) => 13 | th.printStackTrace() 14 | None 15 | } 16 | 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/util/enumeration.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.util 2 | 3 | object Status extends Enumeration { 4 | 5 | val ERROR, OK = Value 6 | 7 | } -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/validation/Validation.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.validation 2 | 3 | import com.techmonad.pipeline.Record 4 | 5 | 6 | trait Validation { 7 | 8 | def name: String 9 | 10 | def validate(record: Record): Record 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/validation/Validations.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.validation 2 | 3 | import com.techmonad.pipeline.validation.source.MandatoryColumnValidation 4 | 5 | object Validations { 6 | 7 | private val validations:Map[String, Validation]= Map( 8 | MandatoryColumnValidation.name -> MandatoryColumnValidation 9 | ) 10 | 11 | def get(name:String): Option[Validation] = validations.get(name) 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/validation/schema/Schema.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.validation.schema 2 | 3 | 4 | object Schema { 5 | 6 | val fields = List("id", "date", "text", "author_name", "retweets", "likes", "latitude", "longitude") 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/validation/schema/SchemaValidation.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.validation.schema 2 | 3 | import com.techmonad.pipeline.Record 4 | import com.techmonad.pipeline.util.Status 5 | import com.techmonad.pipeline.validation.Validation 6 | 7 | 8 | object SchemaValidation extends Validation { 9 | 10 | import Schema._ 11 | 12 | override def validate(record: Record): Record = 13 | if (record.status != Status.ERROR) { 14 | val missingFields = fields.collect { case field if !(record.data.contains(field)) => field } 15 | if (missingFields.isEmpty && record.data.size == fields.length) 16 | record 17 | else 18 | record.copy(status = Status.ERROR, reason = Some(s"Fields ${missingFields.mkString} are missing")) 19 | } else { 20 | record 21 | } 22 | 23 | override def name = "SCHEMA_VALIDATION" 24 | } 25 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/validation/source/MandatoryColumnValidation.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.validation.source 2 | 3 | import com.techmonad.pipeline.Record 4 | import com.techmonad.pipeline.util.Status 5 | import com.techmonad.pipeline.validation.Validation 6 | 7 | object MandatoryColumnValidation extends Validation with Serializable{ 8 | 9 | 10 | override def name: String = "COLUMN_VALIDATION" 11 | 12 | override def validate(record: Record): Record = 13 | record.data.get("text") match { 14 | case Some(text: String) if (text.trim.nonEmpty) => 15 | record.data.get("date") match { 16 | case Some(date: String) if (date.trim.nonEmpty) => 17 | record 18 | case None => 19 | record.copy(status = Status.ERROR, reason = Some("Date field should not be empty")) 20 | } 21 | case _ => 22 | record.copy(status = Status.ERROR, reason = Some("Text field should not be empty")) 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/scala/com/techmonad/pipeline/workflow/WorkFlows.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.workflow 2 | 3 | case class WorkFlow( 4 | source: Source, 5 | validations: List[String], 6 | transformations: List[String], 7 | schemaValidations: List[String], 8 | sink: Sink 9 | ) 10 | 11 | case class Source(`type`: String, path: String, meta: Map[String, String]) 12 | 13 | case class Sink(`type`: String, meta: Map[String, String]) 14 | 15 | 16 | /* 17 | """ 18 | |{ 19 | | "source": { 20 | | "type": "CSV", 21 | | "path": "/home/satendra/data/testing-csv", 22 | | "meta":{"text_field":"text","date_field": "date","author_field":"author_name" } 23 | | }, 24 | | 25 | | "validation": [ "COLUMN_VALIDATION", "FIELD_VALIDATION" ], 26 | | 27 | | "transformation": [ "SENTIMENT_ANALYSIS" ], 28 | | 29 | | "schemaValidation": [ "DATA_MODEL_VALIDATION" ], 30 | | 31 | | "sink": { 32 | | "type": "ES", 33 | | "meta":{ "index": "data_index","type": "twitter" } 34 | | } 35 | |} 36 | """ 37 | */ 38 | -------------------------------------------------------------------------------- /src/test/resources/csv/tweet.csv: -------------------------------------------------------------------------------- 1 | id,date,text,author_name,retweets,likes,latitude,longitude 2 | 866228066175070209,Sun May 21 15:13:59 IST 2017,"RT @ravjot27: Android Instant Apps Are Coming Your Way Soon, Google Reveals - https://t.co/zXkFBgDlRA #IPLfinal #TheBlackPrince",ravjot27,0,0,, 3 | 866228073590652929,Sun May 21 15:14:01 IST 2017,"RT @mipaltan: That extra yard, that extra run, that extra effort was all for this - the #IPLfinal! Let's make it count 🔥…",AkashMarathe_,0,0,, 4 | 866228076052697091,Sun May 21 15:14:01 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,local_pakka,0,0,, 5 | 866228088652406784,Sun May 21 15:14:04 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,gouravpandey545,0,0,, 6 | 866228089810014208,Sun May 21 15:14:05 IST 2017,"Finish it quickly,i m too #bored of it #IPLfinal",yamini109,0,0,, 7 | 866228090401370114,Sun May 21 15:14:05 IST 2017,RT @ravjot27: Scientists construct a stable one-dimensional metallic material - https://t.co/LRqtz4v54t #IPLfinal #TheBlackPrince,ravjot27,0,0,, 8 | 866228091932168192,Sun May 21 15:14:05 IST 2017,"RT @mipaltan: Focus, Paltan! We're going to go all out to win the #IPLfinal #CricketMeriJaan #BELI3VE https://t.co/Kfx7u6xNy0",khusbur7,0,0,, 9 | 866228096390660096,Sun May 21 15:14:06 IST 2017,"RT @mipaltan: MATCHDAY!!!! Paltan, the #IPLfinal is here and we're calling on your support to back the team and #BELI3VE! 💪👊…",spikeprasanth,0,0,, 10 | 866228097695219712,Sun May 21 15:14:06 IST 2017,MS Dhoni to lift another trophy today... #RPSvMI #IPLfinal,Jugni_101,0,0,, 11 | 866228108130529280,Sun May 21 15:14:09 IST 2017,RT @quickheal: Who will be the highest #RPS scorer in the #IPL finals today? Reply with your #CricketForecast to win an autographe…,sabki_nani,0,0,, 12 | 866228113126051841,Sun May 21 15:14:10 IST 2017,"RT @cricketwallah: True. Preposterous to think there would be issues between them. Smith & Dhoni are superb, proud cricketers who crav…",aravind_tyson,0,0,, 13 | 866228119660888064,Sun May 21 15:14:12 IST 2017,RT @SuperSportTV: Can the Rising Pune Supergiants match their Qualifier 1 win over the Mumbai Indians when the two sides meet again i…,janicejohannes,0,0,, 14 | 866228129999732736,Sun May 21 15:14:14 IST 2017,RT @Sangy_Sagnik: #IPLfinal Hope the same thing will be seen in this year too😍😘 https://t.co/oxbHBNNZD3,being_420,0,0,, 15 | 866228131232968704,Sun May 21 15:14:14 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,priyanthbsc,0,0,, 16 | 866228134336659456,Sun May 21 15:14:15 IST 2017,"RT @mipaltan: MATCHDAY!!!! Paltan, the #IPLfinal is here and we're calling on your support to back the team and #BELI3VE! 💪👊…",gouravpandey545,0,0,, 17 | 866228135800565761,Sun May 21 15:14:15 IST 2017,"@mipaltan All the best👍@mipaltan !ForSure,Will we became the only team to Win 3Ipl trophy in @IPL history.Gd lck… https://t.co/YT9eeIc43L",iamSRKoff_l,0,0,, 18 | 866228138577100800,Sun May 21 15:14:16 IST 2017,RT @ESPNcricinfo: #IPL final stats: 7 finals in 10 years for MS Dhoni https://t.co/TMfXyxrNfp https://t.co/pDZEWo0bCm,sakthi6078,0,0,, 19 | 866228139923574785,Sun May 21 15:14:16 IST 2017,RT @HelloPathak: #मेरा_सवाल_है Why did the UPA hire Pakistan-based lawyer Khawar Qureshi in 2004? #CongForPakLawyer #IPLfinal…,SidhuVig,0,0,, 20 | 866228189042950144,Sun May 21 15:14:28 IST 2017,@RPSupergiants Can't wait already. #dhonism #Dhoni #IPLfinal,SathiPerrrry,0,0,, 21 | 866228189080637445,Sun May 21 15:14:28 IST 2017,RT @quickheal: Today #RPS is all set to make history. You can too be winner! #CricketForecast is about to begin shortly! Gear up…,sabki_nani,0,0,, 22 | 866228193954582529,Sun May 21 15:14:29 IST 2017,@dotshotofficial Pune will definately win. #IPLfinal #IPL2017 #DotShot #Contest,laxmimittal3,0,0,, 23 | 866228209469325313,Sun May 21 15:14:33 IST 2017,RT @dotshotofficial: Predict the winner & get exciting prizes from #DotShot Say no to hangover! https://t.co/6S9leLGGMg #IPLfinal…,laxmimittal3,0,0,, 24 | 866228210127835136,Sun May 21 15:14:33 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,AvcharAnkita,0,0,, 25 | 866228213852258304,Sun May 21 15:14:34 IST 2017,RT @adrian_leroux: Obvious disappointment but nevertheless a successful #IPL campaign. The boys played with heart all season. Can't ask for…,_SRK4EVER_,0,0,, 26 | 866228219254591491,Sun May 21 15:14:35 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,advocateamit85,0,0,, 27 | 866228225965514753,Sun May 21 15:14:37 IST 2017,RT @SirJadeja: Who Are You Supporting For #IPLfinal? #MI Or #RPS? My Vote For #RPS. Reason: #MSDhoni 🙏🏾 Vote & RT #IPL #IPL10 #MIvRPS #RP…,bajpai_nandita,0,0,, 28 | 866228236023455745,Sun May 21 15:14:39 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,roopsrkian,0,0,, 29 | 866228239102087169,Sun May 21 15:14:40 IST 2017,RT @WisdenIndia: ARCHIVE: Ever wondered what bond @ajinkyarahane88 shares with his bats? @sidhpat had him speak last year: https://t.co/den…,AnilSha10764573,0,0,, 30 | 866228240825946113,Sun May 21 15:14:41 IST 2017,"RT @mipaltan: MATCHDAY!!!! Paltan, the #IPLfinal is here and we're calling on your support to back the team and #BELI3VE! 💪👊…",aditya_anand_1,0,0,, 31 | 866228244101595137,Sun May 21 15:14:41 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,SHAIKR89,0,0,, 32 | 866228252217663488,Sun May 21 15:14:43 IST 2017,Kieron Pollard has been in scintillating form in the tenth edition of the Indian Premier League (#IPL) https://t.co/zOdFwvne9G,UsmanAnwar78,0,0,, 33 | 866228257640898562,Sun May 21 15:14:45 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,HameHrish,0,0,, 34 | 866228258483908608,Sun May 21 15:14:45 IST 2017,RT @bayside_journal: Will @RPSupergiants stop @mipaltan from winning their 3rd trophy? https://t.co/0PG4YfQrL5 #BaysideJournal #IPLfinal…,JamesHumpfrey,0,0,, 35 | 866228260128030720,Sun May 21 15:14:45 IST 2017,RT @Wamiqueshahab: Who will win #vivo #ipl #10 #MIvRPS #IPLfinal,Wamiqueshahab,0,0,, 36 | 866228260606062593,Sun May 21 15:14:45 IST 2017,"RT @hvgoenka: Maha'yudh' #IPLfinal today - #MIvRPS - Rohit Sharma vs Ajinkya Rahane On different sides, one thing common. #CEAT https://t.…",BunsTin,0,0,, 37 | 866228267036139521,Sun May 21 15:14:47 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,Dr_Namita_Sinha,0,0,, 38 | 866228268013424640,Sun May 21 15:14:47 IST 2017,Who do u think will win IPL final tonight ? #IPLfinal #MumbaivsPune #IPL2017,Madhup98,0,0,, 39 | 866228280680230912,Sun May 21 15:14:50 IST 2017,RT @mipaltan: "It's been a team effort. Team work is important. Not everyone can have a good day everyday." - Rohit #BELI3VE…,gouravpandey545,0,0,, 40 | 866228292407271428,Sun May 21 15:14:53 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,rhari_89,0,0,, 41 | 866228299298594820,Sun May 21 15:14:54 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,ImSureshR,0,0,, 42 | 866228300921884672,Sun May 21 15:14:55 IST 2017,#Pav ? Go with #misal or #vada #IPLfinal #mi #ipl #RohitSharma #Dhoni #MIvRPS only #VadaPav go mumbai,ArjunAldar,0,0,, 43 | 866228304591900674,Sun May 21 15:14:56 IST 2017,#IPLfinal The stage is all set for the most awaited Ipl final... Go Mumbai Indians#Duniya hila denge hum,RBhishikar,0,0,, 44 | 866228324540010496,Sun May 21 15:15:00 IST 2017,RT @mipaltan: "We're going to be fearless and come out all guns blazing!" @ImRo45 is pumped up ahead of the big #IPLfinal 💪…,LoveAkshay5,0,0,, 45 | 866228336321802242,Sun May 21 15:15:03 IST 2017,"Win the toss and Bat first today? Well stats says so, what do you reckon giys and who you backing pre match? #ipl… https://t.co/171oOXbR0n",StatsAnalyst,0,0,, 46 | 866228338926288896,Sun May 21 15:15:04 IST 2017,I'm supporting #RPS just bcz of #msdhoni ✌✌✌ Dhoniii Dhonii ... Dhoniiii Dhoniii 💃💃💃 #MIvRPS #IPLfinal,028sachin,0,0,, 47 | 866228338750259200,Sun May 21 15:15:04 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,pranavkamnijha,0,0,, 48 | 866228361823227905,Sun May 21 15:15:09 IST 2017,RT @msdfansofficial: Ravi Shastri on #MSDhoni 's 7th #IPLfinal appearance 😍 Because he is the Ultimate King of #IPL 🙌🏻 https://t.co/QOVn5T…,Ranaraghuvi6,0,0,, 49 | 866228363387686912,Sun May 21 15:15:10 IST 2017,Kieron Pollard has been in scintillating form in the tenth edition of the Indian Premier League (#IPL) https://t.co/S0qUUfVmRV,shashankS3007,0,0,, 50 | 866228368768937984,Sun May 21 15:15:11 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,imNchakrabarty,0,0,, 51 | 866228378495369216,Sun May 21 15:15:13 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,theriilavarasan,0,0,, 52 | 866228401228611584,Sun May 21 15:15:19 IST 2017,Quite certain that the law of averages will catch up with Pune. They'll be absolutely crushed by Mumbai. #MIvRPS #RPSvMI #IPLfinal,HaoBePakaMat,0,0,, 53 | 866228404529410052,Sun May 21 15:15:20 IST 2017,"#HalfGirlfriend around 15-17% better today till 2pm ,a 12cr plus Sunday was very much possible but #IPLfinal will surely hurt it.Lets see...",teamrb_,0,0,, 54 | 866228410401640449,Sun May 21 15:15:21 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",AkashMarathe_,0,0,, 55 | 866228414247690240,Sun May 21 15:15:22 IST 2017,RT @ESPNcricinfo: 'I just kept it simple to watch the ball and hit the ball and just go with my gut feeling' https://t.co/tiTU9Mp7M8 #IPL…,Suhas007,0,0,, 56 | 866228433134792704,Sun May 21 15:15:26 IST 2017,Neither a cricket fan nor a #ipl fan ... but i feel... today #MI will win !! :p,aniketbhosale3,0,0,, 57 | 866228435609419776,Sun May 21 15:15:27 IST 2017,Who are you supporting for the #IPLfinal ? #IPL #IPL2017 #MIvRPS #CricPoll,its_tabrez_4u,0,0,, 58 | 866228435999481856,Sun May 21 15:15:27 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,HameHrish,0,0,, 59 | 866228441791811585,Sun May 21 15:15:28 IST 2017,@msdhoni7781 3rd ipl trophy coming in ur pocket....sir #dhoni #ipl #rps,subhajit_pandey,0,0,, 60 | 866228443712827392,Sun May 21 15:15:29 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,DayanithiC,0,0,, 61 | 866228447076651008,Sun May 21 15:15:30 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",RajShiva570,0,0,, 62 | 866228452080447488,Sun May 21 15:15:31 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Sumitlodhi12,0,0,, 63 | 866228452793303040,Sun May 21 15:15:31 IST 2017,RT @Sangy_Sagnik: #IPLfinal Hope the same thing will be seen in this year too😍😘 https://t.co/oxbHBNNZD3,VaibhavPuranikk,0,0,, 64 | 866228457847611393,Sun May 21 15:15:32 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Manisundar007,0,0,, 65 | 866228460603179009,Sun May 21 15:15:33 IST 2017,#ipl #IREvsNZ NZ: 0/0 (0.0 Ovs) Latham : 0/1. Ronchi : 0/1. Craig Young:0-0-0-0.,tweetcricscore,0,0,, 66 | 866228461555286017,Sun May 21 15:15:33 IST 2017,#ipl #IREvsNZ Latham and Ronchi are at the crease. Latham is on strike. Young will open the attack,tweetcricscore,0,0,, 67 | 866228462968877056,Sun May 21 15:15:33 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",Rohkpatil,0,0,, 68 | 866228464956956673,Sun May 21 15:15:34 IST 2017,RT @bayside_journal: Will @RPSupergiants stop @mipaltan from winning their 3rd trophy? https://t.co/0PG4YfQrL5 #BaysideJournal #IPLfinal…,ThomasYMCMB65,0,0,, 69 | 866228472301203456,Sun May 21 15:15:36 IST 2017,"On this Day, in 2016 #MSDhoni smashed 23 Runs of last over against KXIP and finished the game. Best finisher for a… https://t.co/Rvyh0zDjKW",AlokRajDhoni,0,0,, 70 | 866228488507883520,Sun May 21 15:15:40 IST 2017,Kieron Pollard has been in scintillating form in the tenth edition of the Indian Premier League (#IPL) https://t.co/YobRZZcknp,ishtkam,0,0,, 71 | 866228489086672897,Sun May 21 15:15:40 IST 2017,RT @IndianSportFan: #IPLfinal #PuneSupergiant 's' factor or #mipaltan's paltangiri! Who would take the 10th IPL TITLE? AAIIIIPEEEELLLLL…,rprabhu81,0,0,, 72 | 866228499518033920,Sun May 21 15:15:42 IST 2017,RT @varuninamdar: #IPLfinal @RPSupergiants ( Misal Pav) v/s @mipaltan (Vada Pav). Let the best win tonight. Cheers to a good game!…,RajshriFood,0,0,, 73 | 866228502210781184,Sun May 21 15:15:43 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,Manisundar007,0,0,, 74 | 866228503078813696,Sun May 21 15:15:43 IST 2017,RT @IPL: FAN ALERT: #IPL and @TwitterIndia have launched the emoji for the grand final - #IPLfinal. Keep tweeting and celebr…,nrjbhusal,0,0,, 75 | 866228509647286272,Sun May 21 15:15:45 IST 2017,Kieron Pollard has been in scintillating form in the tenth edition of the Indian Premier League (#IPL) https://t.co/WSoXsLrHfK,dishanksharma05,0,0,, 76 | 866228517272289281,Sun May 21 15:15:46 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,mischevous_moin,0,0,, 77 | 866228518060830720,Sun May 21 15:15:47 IST 2017,"RT @CricketNDTV: #IPL 2017: @msdhoni edges ball to keeper, walks off without waiting for umpire's decision #KKRvRPS Read:…",Suhas007,0,0,, 78 | 866228518413369344,Sun May 21 15:15:47 IST 2017,RT @quickheal: Who will be the highest #RPS scorer in the #IPL finals today? Reply with your #CricketForecast to win an autographe…,Rishabhprakash4,0,0,, 79 | 866228522624233472,Sun May 21 15:15:48 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,syedzain208,0,0,, 80 | 866228542849204225,Sun May 21 15:15:53 IST 2017,@KarvyStock @RPSupergiants will be #IPL 2017 finale Winner 🏆 #PredictTheT20Finale https://t.co/CfyvGWh59C,ramyavellanki,0,0,, 81 | 866228549564252160,Sun May 21 15:15:54 IST 2017,#IPLfinal Today is last party day #RPSvsMI #10SaalAapkeNaam @ SonyMax,Neeraj4876,0,0,, 82 | 866228551405768704,Sun May 21 15:15:55 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,iam_jaibala,0,0,, 83 | 866228558124929024,Sun May 21 15:15:56 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",sampath86105672,0,0,, 84 | 866228559672614912,Sun May 21 15:15:57 IST 2017,RT @dna: Unknown #RahulTripathi's success doesn't surprise people who know him https://t.co/3TGnhVCUke writes @GKspts…,Suhas007,0,0,, 85 | 866228563019747329,Sun May 21 15:15:57 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,ChitraChital556,0,0,, 86 | 866228580652593152,Sun May 21 15:16:02 IST 2017,RT @CMularam: #IPLfinal IPL final winner team 👇,AshishDiwan16,0,0,, 87 | 866228588781207552,Sun May 21 15:16:03 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,prithivthanga,0,0,, 88 | 866228594623733761,Sun May 21 15:16:05 IST 2017,#ipl record Rohit Sharma is the second player after Suresh Raina to score 300 runs or more in all ten edns of IPL @icct17 @icc2019,LASHARI_FM,0,0,, 89 | 866228598503604224,Sun May 21 15:16:06 IST 2017,RT @MycricketTrolls: #IPL2017 #RPSvMI #IPLFinal #MIvRPS #RPSvMI #Baahubali #MSDhoni has a great mind but #SteveSmith's is even better:…,bhavya_110,0,0,, 90 | 866228605994643456,Sun May 21 15:16:08 IST 2017,"RT @a_jiten: Breaking News: If today's #IPLfinal between Mumbai and Pune is tied, Lonavala will be declared winner of #IPL2017",skand13038175,0,0,, 91 | 866228606065721344,Sun May 21 15:16:08 IST 2017,RT @toisports: #ipl #KKRvRPS I kept things simple: #RahulTripathi #IPL2017 🏏 https://t.co/FUrWSlmBrM https://t.co/ua8vdISP1u,Suhas007,0,0,, 92 | 866228609241030657,Sun May 21 15:16:08 IST 2017,"RT @BeingSachinDg: Rohit Sharma at his best. Captaincy or Batting, hez always consistent #MIvRPS #IPLfinal #RohitSharma #MI https://t.co/lf…",KailashSam1,0,0,, 93 | 866228611388497920,Sun May 21 15:16:09 IST 2017,I am not for cricket but all for food.👅 https://t.co/Yhoweqwjlb,RajshriFood,0,0,, 94 | 866228622490824707,Sun May 21 15:16:12 IST 2017,RT @msdfansofficial: On this day last year #MSDhoni smashed 23 runs in last over against KingsXIPunjab. #IPL #IPLfinal #RPSvMI https://t.c…,Ranaraghuvi6,0,0,, 95 | 866228622444679168,Sun May 21 15:16:11 IST 2017,Not MI. https://t.co/WVXu5q4JJA,anabia20_,0,0,, 96 | 866228626055864321,Sun May 21 15:16:12 IST 2017,Dhoni is winner !!! It'll be fun to watch today's match !!! May the best team win 😌 #IPLFinal #MIvRPS,SRKsZindagi,0,0,, 97 | 866228633383219200,Sun May 21 15:16:14 IST 2017,RT @dna: WATCH | Apples or balls: #IPL umpires given bizarre choice by host https://t.co/KWmvrliIvn #IPL10 #IPL2017…,Suhas007,0,0,, 98 | 866228634817777664,Sun May 21 15:16:14 IST 2017,RT @cricketaakash: Who are you backing for today's #IPL final?,syedzain208,0,0,, 99 | 866228647790870528,Sun May 21 15:16:18 IST 2017,RT @cricbuzz: Shardul Thakur and Jaydev Unadkat have played key roles in #RPS charting a turnaround #IPLfinal. https://t.co/IXdWL52HpY,AnilSha10764573,0,0,, 100 | 866228654619074560,Sun May 21 15:16:19 IST 2017,RT @KaamSeKaamRakh: #IPLfinal last match today😭 hope we make it today! #MIvsRPS ❤😆,KarunaSpree,0,0,, 101 | 866228656087195648,Sun May 21 15:16:20 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,pandeyempire,0,0,, 102 | 866228658956095492,Sun May 21 15:16:20 IST 2017,What do u think cricket fans who will win today's final? I think #MI is favorite.#MIvsRPS #IPLfinal .,imdebabrt,0,0,, 103 | 866228682238681089,Sun May 21 15:16:26 IST 2017,RT @HTSportsNews: #IPL2017 final just another game for @mipaltan coach @MahelaJay #IPL #IPLfinal https://t.co/VGFIxBioIh https://t.co/Qjtb…,ChitraChital556,0,0,, 104 | 866228690253787136,Sun May 21 15:16:28 IST 2017,"RT @cricketaakash: This #IPL started with 4 Indian & 4 Australian captains Ind-Rohit, GG, Zaheer, Raina Aus-Warner, Smith, Maxi & Watson Fi…",syedzain208,0,0,, 105 | 866228693898866688,Sun May 21 15:16:29 IST 2017,#IPLfinal this final would be like #MI Vs #RPS and other 6 teams supporting RPS bcoz of MSD. But still Go #MI @mipaltan Win 3rd trophy,bhosale_awesome,0,0,, 106 | 866228694829989892,Sun May 21 15:16:29 IST 2017,RT @varuninamdar: #IPLfinal @RPSupergiants ( Misal Pav) v/s @mipaltan (Vada Pav). Let the best win tonight. Cheers to a good game!…,RajshriFood,0,0,, 107 | 866228704883613696,Sun May 21 15:16:31 IST 2017,So today it's battle of the titans. Vada Pav vs Misal Pav 🙊 P.S. Dhoni & IPL Final are synonyms now :p #IPLfinal #IPL2k17 #RPSvsMI,joblessmarwadi,0,0,, 108 | 866228711431049216,Sun May 21 15:16:33 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,PMAdhiyaman,0,0,, 109 | 866228728157831168,Sun May 21 15:16:37 IST 2017,RT @HTSportsNews: #IPL2017 final just another game for @mipaltan coach @MahelaJay #IPL #IPLfinal https://t.co/VGFIxBioIh https://t.co/Qjtb…,ishach17,0,0,, 110 | 866228731383361536,Sun May 21 15:16:37 IST 2017,RT @IndianCricNews: #IPLfinal Who will win #IPL2017? #RisingPuneSupergiant #RPS #MumbaiIndians #MI #RPSvMI #RPSvsMI #MIvRPS #MIvsRPS #MSDh…,KAILASH05796237,0,0,, 111 | 866228741399248896,Sun May 21 15:16:40 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,ishach17,0,0,, 112 | 866228744612044800,Sun May 21 15:16:41 IST 2017,Who will win #IPL #IPLfinal #IPL10 ?? #RPSVsMI #MIvRPS,IllHOK,0,0,, 113 | 866228761846464512,Sun May 21 15:16:45 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,I_AM_AAKASH___,0,0,, 114 | 866228768163209217,Sun May 21 15:16:46 IST 2017,RT @TrollywoodOffl: 6 finals 2 wins Vs 3 finals 3 wins #IPLFinal https://t.co/5AqeHRsC9Y,veerampraveen77,0,0,, 115 | 866228772315566080,Sun May 21 15:16:47 IST 2017,RT @CosmeticMachine: #IPL #HairRemoval & #TattooRemoval machines Find out more about our business > https://t.co/usdOwotylK…,BrumIsBrill,0,0,, 116 | 866228774156865536,Sun May 21 15:16:48 IST 2017,I wish you all the best guys show them how strong and evil you are #BELI3VE #CricketMeriJaan #IPLfinal,IamPavi69,0,0,, 117 | 866228775213727747,Sun May 21 15:16:48 IST 2017,The latest The Balakrishna Kini Daily! https://t.co/ad0H0Ugwn9 Thanks to @jagdishshetty @rajeev_mp @TheRajKundra #iplfinal #cannes2017,BalakrishnaKini,0,0,, 118 | 866228777684226048,Sun May 21 15:16:49 IST 2017,All the best @MahelaJay and @mipaltan for today's #IPL final! Looking forward to seeing you at Emirates OT later this summer!🌹🌹,MikeyP_3108,0,0,, 119 | 866228795539202049,Sun May 21 15:16:53 IST 2017,Or good to see a new winner? https://t.co/ggSCdmUvwn,Fancricket12,0,0,, 120 | 866228800589352960,Sun May 21 15:16:54 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",Athu_AtharvaN,0,0,, 121 | 866228815072182273,Sun May 21 15:16:57 IST 2017,RT @RPSupergiants: We miss having both of you around for the big day! Thank you for helping bring us to the #IPLFinal…,sampath86105672,0,0,, 122 | 866228819287580673,Sun May 21 15:16:58 IST 2017,"Keep calm and #BELI3VE, @mipaltan gonna win #IPL10 #IPLFinal  #CricketMeriJaan #MivsRps",chiragvjoshi,0,0,, 123 | 866228824249221120,Sun May 21 15:17:00 IST 2017,RT @ESPNcricinfo: #IPL final stats: 7 finals in 10 years for MS Dhoni https://t.co/TMfXyxrNfp https://t.co/pDZEWo0bCm,swth10,0,0,, 124 | 866228832944103424,Sun May 21 15:17:02 IST 2017,RT @virendra_sehwg: So whom are you supporting today... ReTweet for DHONI Like for ROHIT #IPLfinal #MIvRPS,antonypluk123,0,0,, 125 | 866228835355738112,Sun May 21 15:17:02 IST 2017,RT @cricketaakash: 198 in 17 overs...and Bumrah has given only 24 in his four overs. Wow. Best bowler in death overs this #IPL #MIvKXIP,cricketlover_18,0,0,, 126 | 866228840477200384,Sun May 21 15:17:03 IST 2017,For cricket and #IPL talks better that - let it win ! (#allsports),spacepersonalis,0,0,, 127 | 866228844893810688,Sun May 21 15:17:05 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,Vigneshwarangm1,0,0,, 128 | 866228846693146624,Sun May 21 15:17:05 IST 2017,RT @Doga_Uncle: Pic1 : #IPL Opening Ceremony Pic2: #PSL Opening Ceremony https://t.co/cXzNUrGfB0,Doga_Uncle,0,0,, 129 | 866228848546983938,Sun May 21 15:17:05 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,AnmolTi59116633,0,0,, 130 | 866228874467790848,Sun May 21 15:17:12 IST 2017,#ipl #IREvsNZ NZ: 0/0 (0.0 Ovs) Ronchi : 0/1. Latham : 0/1. Craig Young:0-0-0-0.,tweetcricscore,0,0,, 131 | 866228875025678336,Sun May 21 15:17:12 IST 2017,Which team r u supporting today? #MIvsRPS #IPLfinal #IPL2017,iabhi_hr,0,0,, 132 | 866228875369615362,Sun May 21 15:17:12 IST 2017,#ipl #IREvsNZ Ronchi and Latham are at the crease. Ronchi is on strike. Young will open the attack,tweetcricscore,0,0,, 133 | 866228879530360832,Sun May 21 15:17:13 IST 2017,RT @Sangy_Sagnik: #IPLfinal Hope the same thing will be seen in this year too😍😘 https://t.co/oxbHBNNZD3,bhavya_110,0,0,, 134 | 866228882806013953,Sun May 21 15:17:14 IST 2017,Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third most. #IPL #IPLFinal,VIVO_IPLT20,0,0,, 135 | 866228888602636289,Sun May 21 15:17:15 IST 2017,"RT @WisdenIndia: Clear communication between #Smithy & #MSDhoni is at the core of #RPS's journey to #IPLfinal, writes @RdT1969: https://t.c…",Athu_AtharvaN,0,0,, 136 | 866228892754788352,Sun May 21 15:17:16 IST 2017,Good luck guys #RPSvsMI #IPLfinal,rdchahar,0,0,, 137 | 866228897540603904,Sun May 21 15:17:17 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",ItsSiddharthaa,0,0,, 138 | 866228900346470402,Sun May 21 15:17:18 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,I_AM_AAKASH___,0,0,, 139 | 866228909033103361,Sun May 21 15:17:20 IST 2017,RT @varuninamdar: #IPLfinal @RPSupergiants ( Misal Pav) v/s @mipaltan (Vada Pav). Let the best win tonight. Cheers to a good game!…,mwoodszy,0,0,, 140 | 866228909666447360,Sun May 21 15:17:20 IST 2017,RPS will lift the trophy for sure... #IPLfinal #IPL2017 #virendersehwag #MSDhoni #cricbuzz,RaiDabburai,0,0,, 141 | 866228909884538880,Sun May 21 15:17:20 IST 2017,RT @CMularam: #IPLfinal IPL final winner team 👇,dhirajkpandey56,0,0,, 142 | 866228912413523968,Sun May 21 15:17:21 IST 2017,RT @vote_machine: Which team will win #IPL2017 ? Retweet ---> #RisingPuneSupergiant Like ---> #MumbaiIndians #MIvsRPS #RPSvsMI…,padukare,0,0,, 143 | 866228914003222529,Sun May 21 15:17:21 IST 2017,Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third most. #IPL #IPLFinal,Awan766,0,0,, 144 | 866228920760315904,Sun May 21 15:17:23 IST 2017,RT @cricfreakz: Predict the match winner: Who will be the champion of #IPL?? #MIvRPS 💜 for #MI. 🔁for #RPS. #IPLfinal #IPL,mohdsrr,0,0,, 145 | 866228931837386752,Sun May 21 15:17:25 IST 2017,Its a #mahaderby day dont know whom to support #RohitSharma vs #MSDhoni koi bhi jeeta bass game acha ho #IPLfinal,VikrantBhagwat7,0,0,, 146 | 866228936048484352,Sun May 21 15:17:26 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,Moujhurii,0,0,, 147 | 866228938481205248,Sun May 21 15:17:27 IST 2017,RT @quickheal: Today #RPS is all set to make history. You can too be winner! #CricketForecast is about to begin shortly! Gear up…,Rishabhprakash4,0,0,, 148 | 866228946601484288,Sun May 21 15:17:29 IST 2017,7th IPL final... DHOnI ka swag... 😆😆😆😆 #IPLfinal,Jugni_101,0,0,, 149 | 866228949151391744,Sun May 21 15:17:29 IST 2017,RT @eshwar1509: Looking forward for the #IPLfinal Hoping it to be be one the most memorable one. #RPSvMI,Naveenkethinedi,0,0,, 150 | 866228997641785345,Sun May 21 15:17:41 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,DaneshBhope,0,0,, 151 | 866229003358580736,Sun May 21 15:17:42 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,philipbkk,0,0,, 152 | 866229004197605385,Sun May 21 15:17:43 IST 2017,THE WORD #IPL LOOKS NOTHING IN FRONT OF THE GREAT M.S.DHONI,Aditya26435148,0,0,, 153 | 866229033859653632,Sun May 21 15:17:50 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,ShireenRohit45,0,0,, 154 | 866229036049149952,Sun May 21 15:17:50 IST 2017,#IPL Preview Final: Look @stevesmith49 will continue their journey by 3 defeat to @mipaltan or will @ImRo45 ill bre… https://t.co/1640KPwz73,CricketStatist,0,0,, 155 | 866229051526004736,Sun May 21 15:17:54 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,sinhashwetaa,0,0,, 156 | 866229053619130368,Sun May 21 15:17:54 IST 2017,#IPLfinal That's gonna be so cool😋👌,Shivang33277196,0,0,, 157 | 866229077971218432,Sun May 21 15:18:00 IST 2017,The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,ESPNcricinfo,0,0,, 158 | 866229085395050496,Sun May 21 15:18:02 IST 2017,Go Mumbai Indians @mipaltan! Go win the title! #IPL,mohdriyaz_mdr,0,0,, 159 | 866229086124900353,Sun May 21 15:18:02 IST 2017,"If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won it twice. #IPLFinal",Awan766,0,0,, 160 | 866229091292389376,Sun May 21 15:18:03 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",dipakpingale209,0,0,, 161 | 866229096165933058,Sun May 21 15:18:04 IST 2017,RT @Karthikpaiya92: How many of u wanted @RPSupergiants to win the #IPLfinal today 😊 and wanna see the Trophy 🏆 in #MSDhoni hands 👐 Retwe…,Mitch_John573,0,0,, 162 | 866229097793564672,Sun May 21 15:18:05 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,Chandru12315536,0,0,, 163 | 866229100196896768,Sun May 21 15:18:05 IST 2017,RT @JodhpurL: #संतरामपालजी_के_चमत्कार Ex Aasaram Bapu disciple shared his experience ‌https://t.co/hKq0oKaQhV https://t.co/UbYyhWmBsm #IP…,RampartapD,0,0,, 164 | 866229118093803520,Sun May 21 15:18:10 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",milind_keskar,0,0,, 165 | 866229120266629121,Sun May 21 15:18:10 IST 2017,Go #rps ! One final battle! #IPLfinal #RPSvsMI,badgirl_avi,0,0,, 166 | 866229121210138630,Sun May 21 15:18:10 IST 2017,Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,imDhoni_fc,0,0,, 167 | 866229125081513986,Sun May 21 15:18:11 IST 2017,"Tiger Shroff dancing, Amitabh Bacchhan yapping, some chick playing golf, this chutiyapa is supposed to be a ""cricket"" tournament. #IPL",NinjaChacha,0,0,, 168 | 866229125438201856,Sun May 21 15:18:11 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,Avineesh8,0,0,, 169 | 866229130160943104,Sun May 21 15:18:13 IST 2017,RT @vote_machine: Which team will win #IPL2017 ? Retweet ---> #RisingPuneSupergiant Like ---> #MumbaiIndians #MIvsRPS #RPSvsMI…,satyamg1430567,0,0,, 170 | 866229135965736961,Sun May 21 15:18:14 IST 2017,RT @IPL: #IPL: Here's how the team standings are at the end of Match 41 https://t.co/Y4rLfjxCrw,Suhas007,0,0,, 171 | 866229137333157888,Sun May 21 15:18:14 IST 2017,RT @nikhilswad: Maharashtra will win today. M for Mumbai Indians @mipaltan. M for Maharashtra. #IPL #IPL2017,26rjun,0,0,, 172 | 866229150742228992,Sun May 21 15:18:17 IST 2017,RT @mipaltan: "It's been a team effort. Team work is important. Not everyone can have a good day everyday." - Rohit #BELI3VE…,Bharathknights,0,0,, 173 | 866229156593504256,Sun May 21 15:18:19 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,ayaz_khan007,0,0,, 174 | 866229160825565184,Sun May 21 15:18:20 IST 2017,#IPLfinal 2017 Today's @mipaltan /@RPSupergiants "PALTAN" Seem 💪 be much more optimistic 2 Final Trophy 🏆 Simply b… https://t.co/qbMV1tD14Y,GaneshS99433010,0,0,, 175 | 866229175279132674,Sun May 21 15:18:23 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,Akashsi66795341,0,0,, 176 | 866229199064846336,Sun May 21 15:18:29 IST 2017,RT @mipaltan: We're ready for the #IPLfinal! Read what our skipper & coach had to say 👉 https://t.co/hZueYGWksq…,khusbur7,0,0,, 177 | 866229207571017729,Sun May 21 15:18:31 IST 2017,@RPSupergiants @ajinkyarahane88 plz do giveaway sir..need signed merch from #RPS #RangWahiJungNayi #RPSvMI #IPLfinal,0585478fd4d9492,0,0,, 178 | 866229214311096320,Sun May 21 15:18:33 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,Theborarbharat,0,0,, 179 | 866229214390894592,Sun May 21 15:18:33 IST 2017,Who do you think will win the? #IPLfinal,soni_akash1,0,0,, 180 | 866229220791418880,Sun May 21 15:18:34 IST 2017,4th time Mumbai Indians have reached #IPLfinal . 2010- Runner-up (lost to CSK) 2013- Winner (beat CSK) 2015- Winner (beat CSK),Mirza_Sports,0,0,, 181 | 866229227246370816,Sun May 21 15:18:36 IST 2017,RT @one_by_two: In light of the  Mumbai vs Pune match tonight - all Shivneri buses will be suspended from 8pm to 11.30pm  #MIvsRPS #IPLfi…,Naveinpai,0,0,, 182 | 866229227464441858,Sun May 21 15:18:36 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,Z_Killerqueen18,0,0,, 183 | 866229227556921344,Sun May 21 15:18:36 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",0585478fd4d9492,0,0,, 184 | 866229231197372416,Sun May 21 15:18:37 IST 2017,"RT @keithsequeira: My friend from Panvel, which is halfway there on the Mumbai-Pune expressway is confused about his loyalties in today's #…",_IaMrIyA,0,0,, 185 | 866229235278589952,Sun May 21 15:18:38 IST 2017,For those of you who are divided about who to support in Tonight's #IPLfinal #Dhoni plays for Puna. #dhoniforpresident,AdnanNalwala,0,0,, 186 | 866229236528492546,Sun May 21 15:18:38 IST 2017,RT @bayside_journal: Will @RPSupergiants stop @mipaltan from winning their 3rd trophy? https://t.co/0PG4YfQrL5 #BaysideJournal #IPLfinal…,MatheusRr7,0,0,, 187 | 866229240726999041,Sun May 21 15:18:39 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,imk_bell,0,0,, 188 | 866229243302170625,Sun May 21 15:18:40 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,syedzain208,0,0,, 189 | 866229244421996544,Sun May 21 15:18:40 IST 2017,RT @Madan_Chikna: #IPLfinal is between Mumbai's Vada Pav and Pune's Misal Pav. Lets see who wins and haves Hyderabadi Biryani. #MIvRPS…,Mojitowali,0,0,, 190 | 866229257999073280,Sun May 21 15:18:43 IST 2017,"RT @hvgoenka: Maha'yudh' #IPLfinal today - #MIvRPS - Rohit Sharma vs Ajinkya Rahane On different sides, one thing common. #CEAT https://t.…",Raja_HMP,0,0,, 191 | 866229264416460800,Sun May 21 15:18:45 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,tejashwi_kumar,0,0,, 192 | 866229264634478594,Sun May 21 15:18:45 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,DvyaVin,0,0,, 193 | 866229272012361728,Sun May 21 15:18:46 IST 2017,RT @cricketaakash: Who are you backing for today's #IPL final?,roshan1995singh,0,0,, 194 | 866229282326151168,Sun May 21 15:18:49 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,26rjun,0,0,, 195 | 866229286948286464,Sun May 21 15:18:50 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,Sureshb29300147,0,0,, 196 | 866229292073496576,Sun May 21 15:18:51 IST 2017,RT @iabhi_hr: Which team r u supporting today? #MIvsRPS #IPLfinal #IPL2017,BreadAurButter,0,0,, 197 | 866229296515469313,Sun May 21 15:18:52 IST 2017,RT @mltweetfreak: NO matter whatsoever is the result of #RPSvsMI #MSDhoni carried #RPS when need the most #ipl #IPLPlayoffs & Now…,NeelKasurde,0,0,, 198 | 866229296528068609,Sun May 21 15:18:52 IST 2017,RT @SirRofl_Nehra: In Pic 1 And Pic 2 :- #Dhoni Haters Right Now..... 😂😂😂😂 #MIvRPS #RPSvsMI #MSDhoni #IPL #Rahane #IP2017 #RPS https://t…,NeelKasurde,0,0,, 199 | 866229297480175617,Sun May 21 15:18:52 IST 2017,RT @_DarkHumor: You will lift IPL 2017 trophy too. #RPSvMI #RPS #RpsvsMi #IPLfinal https://t.co/hYGfdaGvM8,satyamg1430567,0,0,, 200 | 866229301183688704,Sun May 21 15:18:53 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,shivanip330,0,0,, 201 | 866229313351409667,Sun May 21 15:18:56 IST 2017,Todays #IPLfinal seems like Inter-State league between @mipaltan @RPSupergiants #2States of #Maharashtra. Finally #Maharashtra will Win.,amoljvm,0,0,, 202 | 866229317000470529,Sun May 21 15:18:57 IST 2017,RT @IPL: "It's been great to lead this side and reach an #IPLfinal. I've enjoyed working with @SPFleming7 and @msdhoni this…,srk_pankhi,0,0,, 203 | 866229319630151680,Sun May 21 15:18:58 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,mazhaithozhan,0,0,, 204 | 866229324839518213,Sun May 21 15:18:59 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,AnilSha10764573,0,0,, 205 | 866229331705593857,Sun May 21 15:19:01 IST 2017,RT @mltweetfreak: I still can't believe that #MSDhoni is not the captain of #RisingPuneSupergiant as it doesn't look lyk #ipl…,NeelKasurde,0,0,, 206 | 866229334352293888,Sun May 21 15:19:01 IST 2017,RT @CricFit: RPS Opner Ajinkya #Rahane Getting Ready For #IPLFinal #RPSvMI https://t.co/zLpYBnc5rY,sheradmehta,0,0,, 207 | 866229339422994432,Sun May 21 15:19:02 IST 2017,Whom you want to see score 50+ runs tonight? #RPSvMI #MIvRPS #IPLfinal #IPL,7Msdian,0,0,, 208 | 866229339712495616,Sun May 21 15:19:03 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,SunilJaiswal01,0,0,, 209 | 866229355910897665,Sun May 21 15:19:06 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,Prabhu909055911,0,0,, 210 | 866229362785386497,Sun May 21 15:19:08 IST 2017,RT @Sangy_Sagnik: #IPLfinal Hope the same thing will be seen in this year too😍😘 https://t.co/oxbHBNNZD3,VinamraSinha1,0,0,, 211 | 866229363443777538,Sun May 21 15:19:08 IST 2017,"RT @mipaltan: That extra yard, that extra run, that extra effort was all for this - the #IPLfinal! Let's make it count 🔥…",RakeshRR12,0,0,, 212 | 866229367210258432,Sun May 21 15:19:09 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,amiAghaAdeeb,0,0,, 213 | 866229372403036160,Sun May 21 15:19:10 IST 2017,This final my favourite team is @mipaltan ..... Who's your favorite team #mivsrps #10SaalAapkeNaam #IPLfinal #ipl #mumbaiindians #RPS,chirags47094246,0,0,, 214 | 866229379596251136,Sun May 21 15:19:12 IST 2017,RT @Shahrcasm: Retweet If You Are Supporting #MI Like If You Are Supporting #RPS #IPLfinal #RPSvMI @Madan_Chikna,SachinKaDeewana,0,0,, 215 | 866229382268035072,Sun May 21 15:19:13 IST 2017,"Tiger Shroff dancing, Amitabh Bacchhan yapping, some chick playing golf, this chutiyapa is supposed to be a ""cricket"" tournament. #IPL",giveawayfolex,0,0,, 216 | 866229391570771968,Sun May 21 15:19:15 IST 2017,Lol this team would lose to Gujrat lions though https://t.co/1xKPUj32JN,M_Saik,0,0,, 217 | 866229394087436288,Sun May 21 15:19:15 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Rajaroysaha,0,0,, 218 | 866229408507547648,Sun May 21 15:19:19 IST 2017,Who will win it doesn't matters Watching @msdhoni sir playing in a Finale Match is like "Mahi Mar rha hai" #IPLfinal All the best MI & RPS,2609vish,0,0,, 219 | 866229411002990593,Sun May 21 15:19:20 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,PrrasadKhomne,0,0,, 220 | 866229410751541249,Sun May 21 15:19:19 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",PadhiyarCharmy,0,0,, 221 | 866229413536464896,Sun May 21 15:19:20 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,atosh_veer,0,0,, 222 | 866229422487097350,Sun May 21 15:19:22 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",IanBarriePaul3,0,0,, 223 | 866229429458001920,Sun May 21 15:19:24 IST 2017,Itz RPS # MSD #RPSvsMI #IPLfinal,UttamJais,0,0,, 224 | 866229433379770368,Sun May 21 15:19:25 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,razzPa1,0,0,, 225 | 866229436227608576,Sun May 21 15:19:26 IST 2017,"""It's been a team effort. Team work is important. Not everyone can have a good day everyday."" - Rohit #IPLfinal",Bharathknights,0,0,, 226 | 866229451729883136,Sun May 21 15:19:29 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,hashtagkp16,0,0,, 227 | 866229458507894784,Sun May 21 15:19:31 IST 2017,RT @SirJadeja: Who Are You Supporting For #IPLfinal? #MI Or #RPS? My Vote For #RPS. Reason: #MSDhoni 🙏🏾 Vote & RT #IPL #IPL10 #MIvRPS #RP…,iambhushanu7,0,0,, 228 | 866229467181498369,Sun May 21 15:19:33 IST 2017,Who will win the #IPLFinal ? @mipaltan or @RPSupergiants !!!,SRKsZindagi,0,0,, 229 | 866229467986964480,Sun May 21 15:19:33 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,yusuff_ansari,0,0,, 230 | 866229482667081728,Sun May 21 15:19:37 IST 2017,RT @RPSupergiants: Which Supergiant did the best amongst our boys who were put through a Marathi speaking skill test? YOU DECIDE!😉…,SabaSabir003,0,0,, 231 | 866229491416285190,Sun May 21 15:19:39 IST 2017,RT @UpdatezSports: #2days vote poll of #IPLfinal the big team of clashes @RPSupergiants and @mipaltan #MIvRPS Who wil the #IPLfinal ?,RajiniRFC,0,0,, 232 | 866229495514243072,Sun May 21 15:19:40 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,nilaavan,0,0,, 233 | 866229503202406400,Sun May 21 15:19:41 IST 2017,RT @statanalyst: Incredible to see several Twitter pollers choosing @RPSupergiants as the team they want to win the #IPLFinal. Magic of @ms…,iBunny07,0,0,, 234 | 866229512253526017,Sun May 21 15:19:44 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,pisaasu,0,0,, 235 | 866229513755164676,Sun May 21 15:19:44 IST 2017,7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS - @msdhoni,Sureshb29300147,0,0,, 236 | 866229521485369344,Sun May 21 15:19:46 IST 2017,#IPLfinal Rohit sharma won the final match,VikasYa39778305,0,0,, 237 | 866229533686550529,Sun May 21 15:19:49 IST 2017,@Moto_IND I'm witting #IPLfinal #MIvRPS,Tushars84322717,0,0,, 238 | 866229537415118849,Sun May 21 15:19:50 IST 2017,RT @IPL: Take your pick - who will lift the #IPL trophy tomorrow night at Hyderabad in the grand #IPLfinal https://t.co/UwNp6aNtCn,NJK57_,0,0,, 239 | 866229542913851392,Sun May 21 15:19:51 IST 2017,the top notch XI is this we cant change what a team https://t.co/xjeSLdwZ4w,Avh102,0,0,, 240 | 866229550363152385,Sun May 21 15:19:53 IST 2017,RT @MachindraDivate: #MI have played #RPS thrice and lost all 3. Can they change that on the final night? Who do you think will the champi…,SamyGioia,0,0,, 241 | 866229550849470464,Sun May 21 15:19:53 IST 2017,Can't wait..#IPLfinal ..Tonight..#BEER with @SahooBrijesh by @SahooBrijesh..Job Ki Party Hai..,ajayadav02,0,0,, 242 | 866229553072492544,Sun May 21 15:19:53 IST 2017,RT @UpdatezSports: #2days vote poll of #IPLfinal the big team of clashes @RPSupergiants and @mipaltan #MIvRPS Who wil the #IPLfinal ?,ActorRajini_FC,0,0,, 243 | 866229564116271105,Sun May 21 15:19:56 IST 2017,RT @quickheal: Are you an expert on cricket? Then tell the name of the stadium in which #RPS has not even lost one match this #IPL…,sarvesh_atalkar,0,0,, 244 | 866229572374847488,Sun May 21 15:19:58 IST 2017,Today mumbai will make rise their tally at 3 IPL wins #IPLfinal keep calm and cheer for mumbai @mipaltan,aditya_anand_1,0,0,, 245 | 866229581371637760,Sun May 21 15:20:00 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,HariRavi1407,0,0,, 246 | 866229585670586369,Sun May 21 15:20:01 IST 2017,We support RPS AND MAHI #IPLfinal,Gaganawdhal,0,0,, 247 | 866229593451245568,Sun May 21 15:20:03 IST 2017,RT @SirJadeja: 03:03 AM: RT If You're Still Awake? Comment Why? Aaj To So Jao. Pune Ko Jitwana Bhi To Hai. 😡😡😡 #IPLfinal #IPL #MIvRPS #RP…,Sureshb29300147,0,0,, 248 | 866229602921754627,Sun May 21 15:20:05 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,RakeshRR12,0,0,, 249 | 866229612702859264,Sun May 21 15:20:08 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,MachindraDivate,0,0,, 250 | 866229616217907201,Sun May 21 15:20:08 IST 2017,Wada Pav V Misal. Obviously it will be Wada Pav. I am Mumbai Kar & Mumbai Indians will be Champion today #IPLfinal,Prashantunhale,0,0,, 251 | 866229621028605952,Sun May 21 15:20:10 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,rohithsharma_45,0,0,, 252 | 866229622362562560,Sun May 21 15:20:10 IST 2017,RT @MSDsuperfan: All the best @msdhoni & @RPSupergiants for #IPLFinal #IPL2017 #RPSvMI https://t.co/ggH6RtXEIE,alokra_njan1122,0,0,, 253 | 866229630021246976,Sun May 21 15:20:12 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,RakeshRR12,0,0,, 254 | 866229640125231104,Sun May 21 15:20:14 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,Pradeep92256813,0,0,, 255 | 866229658324353025,Sun May 21 15:20:18 IST 2017,Who are you supporting tonight? Watch the #IPLFinal between @RPSupergiants & @mipaltan Wishing both teams all the… https://t.co/xvQdS6SL7L,SISE_IN,0,0,, 256 | 866229667816067073,Sun May 21 15:20:21 IST 2017,"RT @anpadh00: #myPrediction Kolkata, Hydrabad will be eliminated in semi Mumbai will go to final & defeated by Pune #IPL fixit",RajRana96,0,0,, 257 | 866229676414570496,Sun May 21 15:20:23 IST 2017,RT @Yogez444: Last match as SuperGiant ! 😋 Can't wait for #CSK to roar back👊 in Yellows 💛️ #MSDhoni #WhistlesWillBeBack…,rakesh_ghatela,0,0,, 258 | 866229678188748800,Sun May 21 15:20:23 IST 2017,RT @cricketaakash: Who are you backing for today's #IPL final?,DipakKu07102393,0,0,, 259 | 866229680843739137,Sun May 21 15:20:24 IST 2017,Jan tak god jee mi ki team ke dressing room me hy i cant think about any other team https://t.co/y4f4V5ysW9,monukumar9031,0,0,, 260 | 866229685918806016,Sun May 21 15:20:25 IST 2017,I Support Team #RPS Only for MSD @hvgoenka @cricketaakash @msdhoni #IPLfinal https://t.co/vnT0lFDdXg,iamdurgesh18,0,0,, 261 | 866229693548085248,Sun May 21 15:20:27 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,jaychidu,0,0,, 262 | 866229696039534594,Sun May 21 15:20:27 IST 2017,Pune or Mumbai Who will win #IPL #IPLfinal https://t.co/uLt4dF2GOm,BatBallStumps,0,0,, 263 | 866229698136862721,Sun May 21 15:20:28 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,saurabh_nand,0,0,, 264 | 866229700280147968,Sun May 21 15:20:28 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,masssojha,0,0,, 265 | 866229701873938432,Sun May 21 15:20:29 IST 2017,RT @dharav_18: Gone are the days when Homeground and local player and stuff mattered.. DHONI DHONI !! #Dhoni #IPL #MIvRPS…,Chandar04166768,0,0,, 266 | 866229704839188481,Sun May 21 15:20:30 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,ImRo45_FC,0,0,, 267 | 866229712602910721,Sun May 21 15:20:31 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,johnrarulraj,0,0,, 268 | 866229714733514753,Sun May 21 15:20:32 IST 2017,RT @ArunbuddyAP: Super Article but Lengthy One Took 10+ Minutes For Me To read. 😂 https://t.co/ETG6o1ySnD,ItsNanban,0,0,, 269 | 866229736866959360,Sun May 21 15:20:37 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,kunjam48,0,0,, 270 | 866229754113830914,Sun May 21 15:20:41 IST 2017,RT @Doga_Uncle: Pic1 : #IPL Opening Ceremony Pic2: #PSL Opening Ceremony https://t.co/cXzNUrGfB0,DiNu5050,0,0,, 271 | 866229763509112832,Sun May 21 15:20:44 IST 2017,RT @Huss_Master: Clash Of Top Cities Of India! Mumbai vs Pune Vada Pav vs Misal Pav 😂 #MIvRPS Bring It on 😊 #IPLfinal,Kumar563Ab,0,0,, 272 | 866229767938420736,Sun May 21 15:20:45 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,ilangovan_offl,0,0,, 273 | 866229770811449344,Sun May 21 15:20:45 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,RakeshRR12,0,0,, 274 | 866229784061198337,Sun May 21 15:20:48 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Kumar563Ab,0,0,, 275 | 866229787475529728,Sun May 21 15:20:49 IST 2017,RT @CSKFansOfficial: Last match as SuperGiant ! RT if you can't wait for Lion to roar back in Yellow ❤️ #MSDhoni #WhistlesWillBeBack…,alokra_njan1122,0,0,, 276 | 866229789186695169,Sun May 21 15:20:50 IST 2017,RT @UpdatezSports: #2days vote poll of #IPLfinal the big team of clashes @RPSupergiants and @mipaltan #MIvRPS Who wil the #IPLfinal ?,jallikatuporali,0,0,, 277 | 866229790163992580,Sun May 21 15:20:50 IST 2017,@imRnegi Double it today. Jai MahiSmithy #IPLfinal,Shiva_dev7,0,0,, 278 | 866229795906080768,Sun May 21 15:20:51 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,emrnbichu,0,0,, 279 | 866229813241147392,Sun May 21 15:20:55 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,LovelyUma3,0,0,, 280 | 866229814209982464,Sun May 21 15:20:56 IST 2017,Rinki#IPLfinal rps is win,Rinkisaha17,0,0,, 281 | 866229815669657600,Sun May 21 15:20:56 IST 2017,#RPSvsMI Who Will Won Epic Battle. #Dhoni Or #Sharma. I am with #RPS #Dhoni #MIvsRPS #IPL #IPLFinal,NeelKasurde,0,0,, 282 | 866229817250906113,Sun May 21 15:20:56 IST 2017,#ipl #ZIMWvsIREW IREW: 114/3 (29.0 Ovs) Kavanagh : 4/20. Delany : 35/42. Granger:5-0-8-1.,tweetcricscore,0,0,, 283 | 866229843830095872,Sun May 21 15:21:03 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,rkpaturi9,0,0,, 284 | 866229847760273409,Sun May 21 15:21:04 IST 2017,RT @SmileKeeper_: Pune will lift IPL10 Trophy. #IPLfinal  #RPSvMI #MIvRPS,NancyDwivedi1,0,0,, 285 | 866229848389423104,Sun May 21 15:21:04 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,harshit_vaid,0,0,, 286 | 866229848754311168,Sun May 21 15:21:04 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,aniketdas94,0,0,, 287 | 866229849408638976,Sun May 21 15:21:04 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,rkrkumar950,0,0,, 288 | 866229850721406976,Sun May 21 15:21:04 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,Rohit_4545,0,0,, 289 | 866229851052691458,Sun May 21 15:21:04 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,VjfanSuresh,0,0,, 290 | 866229855523934210,Sun May 21 15:21:05 IST 2017,"RT @fwildecricket: If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won…",emrnbichu,0,0,, 291 | 866229865531416577,Sun May 21 15:21:08 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,sairam347,0,0,, 292 | 866229870870712320,Sun May 21 15:21:09 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,ranjan_ashwini,0,0,, 293 | 866229879708233728,Sun May 21 15:21:11 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",santhutweetz,0,0,, 294 | 866229883541884928,Sun May 21 15:21:12 IST 2017,RT @CMularam: #IPLfinal IPL final winner team 👇,AnkitTamoli,0,0,, 295 | 866229883944480768,Sun May 21 15:21:12 IST 2017,RT @cricbuzz: Which team will play the big final better? Which team has the calmer head? @bhogleharsha previews #IPL final…,emrnbichu,0,0,, 296 | 866229887727742976,Sun May 21 15:21:13 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,aniketdas94,0,0,, 297 | 866229889539518465,Sun May 21 15:21:14 IST 2017,RT @cricketaakash: Openers for the all-time overseas #DreamXI #IPL,Nisarg_Ashara,0,0,, 298 | 866229891603333120,Sun May 21 15:21:14 IST 2017,RT @NeverEverGivUp_: Next RCB coach #IPL https://t.co/1n8h7qVGXP,SachinKaDeewana,0,0,, 299 | 866229894849613824,Sun May 21 15:21:15 IST 2017,Sehwag ? Gambhir/Warner more deserving. https://t.co/NDYu5P2uJ0,vishalgunner,0,0,, 300 | 866229899668881409,Sun May 21 15:21:16 IST 2017,"RT @umangkoul: If the match gets tied tonight, the #IPL trophy should be given to Lonavala.",shivammattoo33,0,0,, 301 | 866229901858308096,Sun May 21 15:21:17 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,BairavaaSuresh,0,0,, 302 | 866229908384739328,Sun May 21 15:21:18 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,pranavkamnijha,0,0,, 303 | 866229919088594944,Sun May 21 15:21:21 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",avndec31,0,0,, 304 | 866229919088603136,Sun May 21 15:21:21 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,pkt693,0,0,, 305 | 866229924985585665,Sun May 21 15:21:22 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,thangamagan100,0,0,, 306 | 866229928697749504,Sun May 21 15:21:23 IST 2017,The openers in our all-time #IPLXI: henrygayle and virendersehwag https://t.co/Mo51QRAlhy #IPL https://t.co/WNG8lae9wy,dhaka_sports,0,0,, 307 | 866229928492232704,Sun May 21 15:21:23 IST 2017,RT @CricketopiaCom: #IPL Final Mumbai Indians v Rising Pune Supergiant Who Will Win the Final? RT for Mumbai Indians LIKE for Rising…,nikunj84601,0,0,, 308 | 866229930614562816,Sun May 21 15:21:23 IST 2017,RT @op_sandwa: Who do think will win the coveted #IPL 2017 trophy this year? #IPLFinal,op_sandwa,0,0,, 309 | 866229931428134913,Sun May 21 15:21:24 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,iambhima,0,0,, 310 | 866229934133477376,Sun May 21 15:21:24 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",Nayan18Swetha06,0,0,, 311 | 866229957097381888,Sun May 21 15:21:30 IST 2017,RT @WeAreNashik: Pune! https://t.co/InyR84oR1T,Rohkpatil,0,0,, 312 | 866229982074466304,Sun May 21 15:21:36 IST 2017,"RT @azzythejazzy: #SRH selection committee, tip for you. No team has ever made it to the finals of #IPL that has @YUVSTRONG12 in it.",247moviez,0,0,, 313 | 866229984490160128,Sun May 21 15:21:36 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,VjfanSuresh,0,0,, 314 | 866229984540491776,Sun May 21 15:21:36 IST 2017,4 CSK players 😎 https://t.co/MGCaXcoPP5,VjfanSuresh,0,0,, 315 | 866229992975290369,Sun May 21 15:21:38 IST 2017,Looking forward for #IPLFinal #RPSvsMI #IPL2017,hisaurabh,0,0,26.8867,80.9691 316 | 866229992933531649,Sun May 21 15:21:38 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,prabhuashok6,0,0,, 317 | 866230000504102912,Sun May 21 15:21:40 IST 2017,"RT @MumbaiMirror: #IPL 2017: @shantanum07​, @DheerajDhoopar ​and @Fernandes_Elena​ cheer up for their favourite @IPL teams this seaso…",i_ariiaa,0,0,, 318 | 866230002110607360,Sun May 21 15:21:40 IST 2017,@ImRo45 has been a very underrated captain. 3/5 finals is a vry big deal and to hav won twice is an achievement in itself #RPSvMI #IPLfinal,shashankeshwar,0,0,, 319 | 866230004618743808,Sun May 21 15:21:41 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,iam_sihva,0,0,, 320 | 866230006954905600,Sun May 21 15:21:42 IST 2017,RT @IPL: #IPL: @DelhiDaredevils 214/3 (17.3 ovs) beat @TheGujaratLions 208/7 by 7 wickets. Relive the game here -…,Suhas007,0,0,, 321 | 866230010805354497,Sun May 21 15:21:43 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,ChiragCKO,0,0,, 322 | 866230011455565824,Sun May 21 15:21:43 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Samkavin03,0,0,, 323 | 866230012663316480,Sun May 21 15:21:43 IST 2017,"RT @mipaltan: That extra yard, that extra run, that extra effort was all for this - the #IPLfinal! Let's make it count 🔥…",sejal_mokal,0,0,, 324 | 866230016262250496,Sun May 21 15:21:44 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,imerahul,0,0,, 325 | 866230026345172992,Sun May 21 15:21:46 IST 2017,The LastDay Of An IPL without @ChennaiIPL Happiness!! #IPLfinal    #SummerOf18,its_TANVI,0,0,, 326 | 866230027079213059,Sun May 21 15:21:46 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,adangathavan,0,0,, 327 | 866230046826131456,Sun May 21 15:21:51 IST 2017,#IPLfinal #IPLFinals #ipl #MIvRPS #mumbaiindians #dhoni Sentiments are clear. 15k votes. Excitement starts tonigh… https://t.co/obUKfEA68r,shyamiyer99,0,0,, 328 | 866230056397438977,Sun May 21 15:21:53 IST 2017,7th Final in 10 Seasons #MSD #IPL,rahmankky,0,0,, 329 | 866230072700788738,Sun May 21 15:21:57 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,vaivhavjau,0,0,, 330 | 866230076316282880,Sun May 21 15:21:58 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,LovelyUma3,0,0,, 331 | 866230078388162560,Sun May 21 15:21:59 IST 2017,RT @vj_corp: #IPLfinal does @stevesmith49 will click in right time and give Pune the maiden tiltle. @RPSupergiants @mipaltan #RPSvsMI #RPS…,vj_corp,0,0,, 332 | 866230089477959684,Sun May 21 15:22:01 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,sumit_dubey,0,0,, 333 | 866230107643326465,Sun May 21 15:22:06 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,massitvf,0,0,, 334 | 866230110965334016,Sun May 21 15:22:06 IST 2017,Will RPS Miss Ben stokes today?#IPLfinal #IPL #IPL2017 @IPL @mipaltan @mipaltan @RPSupergiants @ESPNcricinfo #msdhoni #MI #RPS #RPSvMI,Sandesh18333,0,0,, 335 | 866230111837859840,Sun May 21 15:22:07 IST 2017,The openers in our all-time #IPLXI: henrygayle and virendersehwag https://t.co/74eELdVRvp #IPL https://t.co/AYSk0HOLvt,Official_IPLT20,0,0,, 336 | 866230117747482625,Sun May 21 15:22:08 IST 2017,RT @UpdatezSports: #2days vote poll of #IPLfinal the big team of clashes @RPSupergiants and @mipaltan #MIvRPS Who wil the #IPLfinal ?,CineUp2Date,0,0,, 337 | 866230130934415361,Sun May 21 15:22:11 IST 2017,Easily contact to Book your Home #impaverealty 7852006003 info@impaverealty.com https://t.co/KjXBIkCqXC #IPLfinal https://t.co/7M8NlT4M1u,ImpaveInfo,0,0,, 338 | 866230137498595328,Sun May 21 15:22:13 IST 2017,RT @Shubham_J5: I want to see #msdhoni bowling atleast one over in the final of #IPL10❕ RT & 👍 if u want the same❕ @msdhoni Sir ple…,HariRavi1407,0,0,, 339 | 866230143634857984,Sun May 21 15:22:14 IST 2017,#BELI3VE in mumbai indians stay calm and prepare for the party tonight #IPLfinal #RohitSharma #MIvRPS,aditya_anand_1,0,0,, 340 | 866230145937539073,Sun May 21 15:22:15 IST 2017,ESPNcricinfo: The openers in our all-time #IPLXI: henrygayle and virendersehwag https://t.co/YfMCF1GiiW #IPL … https://t.co/Q9xS0lwvux,bdnews24,0,0,, 341 | 866230147778625536,Sun May 21 15:22:15 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,iamsekharsarma,0,0,, 342 | 866230147992756224,Sun May 21 15:22:15 IST 2017,I'm excited....who will win??... #IPLfinal https://t.co/GeShT6lDl3,AnshikaTommo,0,0,, 343 | 866230162198716416,Sun May 21 15:22:19 IST 2017,RT @i_mswayam: Another #Lynnsanity saw in #IPL; Unfortunately we lost the match but @KKRiders will come back strongly... #duskiDAHAAD #AmiK…,myslfRaja,0,0,, 344 | 866230171937906688,Sun May 21 15:22:21 IST 2017,RT @cricketaakash: My all-time #IPL #DreamXI Gayle Gambhir Kohli Rohit Raina Dhoni Bravo Narine Mishra Malinga Bhuvneshwar What's yours?,bavadaviya,0,0,, 345 | 866230175528308738,Sun May 21 15:22:22 IST 2017,@msdhoni the captain cool https://t.co/BGbECIHGdy,abhishek_0707,0,0,, 346 | 866230190648606720,Sun May 21 15:22:25 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,iamsekharsarma,0,0,, 347 | 866230204615847936,Sun May 21 15:22:29 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,dhanush_nanda,0,0,, 348 | 866230206314536960,Sun May 21 15:22:29 IST 2017,RT @RPSupergiants: "Finals cricket is finals cricket. It all boils down to who plays well." - @stevesmith49 #RangWahiJungNayi…,SuyogDabir,0,0,, 349 | 866230221116026881,Sun May 21 15:22:33 IST 2017,RT @IPL: VIDEO: WATCH @RishabPant777’s demolition act - 97 (43) https://t.co/Mm6yaNJCNl @DelhiDaredevils #IPL https://t.co/P0bERdYxK0,Suhas007,0,0,, 350 | 866230222147928065,Sun May 21 15:22:33 IST 2017,"Either @mipaltan r gonna win easy or this is going to b a one heck of a match, but MS DHONI so it's going to b a cracker #iplfinal #MIvRPS",RudrathAvinashi,0,0,, 351 | 866230241370546176,Sun May 21 15:22:37 IST 2017,Team Battle #IPLfinal,ViswanathAkshay,0,0,, 352 | 866230244918702080,Sun May 21 15:22:38 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,DfcDio,0,0,, 353 | 866230247867523073,Sun May 21 15:22:39 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,jitendrakhan07,0,0,, 354 | 866230252833583105,Sun May 21 15:22:40 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,SBDailySport,0,0,, 355 | 866230260592910338,Sun May 21 15:22:42 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,adangathavan,0,0,, 356 | 866230281916698626,Sun May 21 15:22:47 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Boisterous_Man,0,0,, 357 | 866230298740006916,Sun May 21 15:22:51 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,iamthehamish,0,0,, 358 | 866230310287032320,Sun May 21 15:22:54 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,meeran_mohamed,0,0,, 359 | 866230312191369216,Sun May 21 15:22:54 IST 2017,All the best for #IPLfinal @krunalpandya24,Gehana19,0,0,, 360 | 866230329568251906,Sun May 21 15:22:59 IST 2017,RT @UpdatezSports: #2days vote poll of #IPLfinal the big team of clashes @RPSupergiants and @mipaltan #MIvRPS Who wil the #IPLfinal ?,UpdatezSports,0,0,, 361 | 866230336992182272,Sun May 21 15:23:00 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,Richie827001,0,0,, 362 | 866230342876659712,Sun May 21 15:23:02 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Abhishe13184498,0,0,, 363 | 866230343895887872,Sun May 21 15:23:02 IST 2017,#IPLfinal #RPSvMI #MIvRPS - which will win the #ipl final match!? - @RPSupergiants vs @mipaltan,Dream_MSA,0,0,, 364 | 866230356025909248,Sun May 21 15:23:05 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,ZihanJiffry,0,0,, 365 | 866230358882254849,Sun May 21 15:23:05 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,Shubham_J5,0,0,, 366 | 866230362698948609,Sun May 21 15:23:06 IST 2017,RT @NeverEverGivUp_: Next RCB coach #IPL https://t.co/1n8h7qVGXP,NeverEverGivUp_,0,0,, 367 | 866230363911270402,Sun May 21 15:23:07 IST 2017,#ipl #IREvsNZ NZ: 13/0 (2.0 Ovs) Ronchi : 12/6. Latham : 0/6. Craig Young:1-0-12-0.,tweetcricscore,0,0,, 368 | 866230365647712258,Sun May 21 15:23:07 IST 2017,RT @NeverEverGivUp_: Good morning... May #MI win their 5th trophy tonight #IPL,SachinKaDeewana,0,0,, 369 | 866230370370334722,Sun May 21 15:23:08 IST 2017,RT @CSKFansOfficial: CSK and MI played #IPLfinal three times against each other. In other hand no other teams played more than One time…,Thala_raina,0,0,, 370 | 866230370999476224,Sun May 21 15:23:08 IST 2017,"RT @mipaltan: That extra yard, that extra run, that extra effort was all for this - the #IPLfinal! Let's make it count 🔥…",GYANENDER81,0,0,, 371 | 866230381787226112,Sun May 21 15:23:11 IST 2017,RT @virendra_sehwg: So whom are you supporting today... ReTweet for DHONI Like for ROHIT #IPLfinal #MIvRPS,Avanish_01,0,0,, 372 | 866230381925679104,Sun May 21 15:23:11 IST 2017,RT @Atheist_Krishna: Who will win IPL 2017? #POLL #IPLfinal,MrBrandonCole5,0,0,, 373 | 866230384781959168,Sun May 21 15:23:12 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,m_sasidharanbe,0,0,, 374 | 866230392537436160,Sun May 21 15:23:14 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",SaiY_twits,0,0,, 375 | 866230402196938752,Sun May 21 15:23:16 IST 2017,Nita Ambani's head when she comes to remember head to head matches #RPSvMI #MIvRPS #IPLfinal https://t.co/ElhOX17l27,_DarkHumor,0,0,, 376 | 866230414842757121,Sun May 21 15:23:19 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,Dhanpat1999,0,0,, 377 | 866230416235220992,Sun May 21 15:23:19 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,ihansika_Fan_Sg,0,0,, 378 | 866230426884599808,Sun May 21 15:23:22 IST 2017,#ipl #ZIMWvsIREW IREW: 122/3 (31.0 Ovs) Delany : 36/43. Kavanagh : 8/31. Granger:6-0-15-1.,tweetcricscore,0,0,, 379 | 866230427492679680,Sun May 21 15:23:22 IST 2017,#ipl #IREvsNZ NZ: 14/0 (2.0 Ovs) Latham : 1/6. Ronchi : 12/6. Craig Young:1-0-12-0.,tweetcricscore,0,0,, 380 | 866230429644275712,Sun May 21 15:23:22 IST 2017,it was not true https://t.co/XYXYzLbCTb,atharvshukla8,0,0,, 381 | 866230440096608256,Sun May 21 15:23:25 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,Sureshb29300147,0,0,, 382 | 866230440490827776,Sun May 21 15:23:25 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,Akash07VIIT,0,0,, 383 | 866230440784404480,Sun May 21 15:23:25 IST 2017,Which team will you support? #IPLfinal,Kancha_bhau,0,0,, 384 | 866230447973441536,Sun May 21 15:23:27 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,m_sasidharanbe,0,0,, 385 | 866230453769953280,Sun May 21 15:23:28 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Nasdica159,0,0,, 386 | 866230465799139329,Sun May 21 15:23:31 IST 2017,RT @one_by_two: In light of the  Mumbai vs Pune match tonight - all Shivneri buses will be suspended from 8pm to 11.30pm  #MIvsRPS #IPLfi…,MainBeardHun,0,0,, 387 | 866230468622077952,Sun May 21 15:23:32 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,ihansika_Fan_Sg,0,0,, 388 | 866230479414067200,Sun May 21 15:23:34 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,Dhanpat1999,0,0,, 389 | 866230480290537472,Sun May 21 15:23:34 IST 2017,@quickheal Join here #CricketForecast #IPL #QuickHealTrivia @Viswajith__m @Sarathkevinjoy @VHetal @Deepaadhan… https://t.co/xty9638Y5S,jaidkaaarti,0,0,, 390 | 866230484178788353,Sun May 21 15:23:35 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",extraalooks,0,0,, 391 | 866230485017559040,Sun May 21 15:23:36 IST 2017,"@msdhoni, its ur day legend,make it happen again. All the Best.✌👍 #MSDhoni #IPLfinal #RPSvsMI #RisingPuneSupergiant",PiyushRathod1,0,0,, 392 | 866230500888793088,Sun May 21 15:23:39 IST 2017,RT @mipaltan: "Mahela has done well for Sri Lanka. His experience helped us to be a successful unit." - Rohit #IPLfinal #BELI3VE…,Bossmsfff,0,0,, 393 | 866230523005358080,Sun May 21 15:23:45 IST 2017,"RT @Shahrcasm: #RPS Fans If It Wins ~ Dhoni's Team Won, Smith Naam Ka Captain Tha Sirf.. If It Loses ~ Aur Karo Sack Dhoni Ko, Acha Hua..…",PothanK,0,0,, 394 | 866230529632329729,Sun May 21 15:23:46 IST 2017,RT @IPL: #DidYouKnow @ImRaina has now scored 5059 runs in T20s on Indian soil. - joins @imVkohli to aggregate 5000 runs in a…,Suhas007,0,0,, 395 | 866230542060068866,Sun May 21 15:23:49 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,bihari_86,0,0,, 396 | 866230549152747520,Sun May 21 15:23:51 IST 2017,"Watched this so many times now, the mans not human @benstokes38 https://t.co/Vp3p3hozHf",james_page26,0,0,, 397 | 866230550758965249,Sun May 21 15:23:51 IST 2017,Watch #IPLfinal with yummy food from Chinnaswamy Biriyani! Call 8880497722 or order on https://t.co/18Ddbyirfx https://t.co/K4UkVEUOk1,CNbiriyani,0,0,, 398 | 866230557470011393,Sun May 21 15:23:53 IST 2017,@rajasthanroyals Rising pine supergiant @RPSupergiants #contest #RPSvMI #IPLfinal,leeladharsut1,0,0,, 399 | 866230559734992898,Sun May 21 15:23:53 IST 2017,Vada pav vs Misal pav in the #IPLfinal today. @mipaltan let's rock this one. #ipl #MIvRPS,Arvindkumar_91,0,0,, 400 | 866230561492262912,Sun May 21 15:23:54 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,amuthan143,0,0,, 401 | 866230561039372288,Sun May 21 15:23:54 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,iamfannkt,0,0,, 402 | 866230569331339264,Sun May 21 15:23:56 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,Kinshuk_Deb,0,0,, 403 | 866230574972891136,Sun May 21 15:23:57 IST 2017,@mipaltan Belive in your self #IPLfinal https://t.co/nEuoeiq6kA,GANAPAT18072923,0,0,, 404 | 866230598037196800,Sun May 21 15:24:03 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,Akshay_Brigade,0,0,, 405 | 866230600079998976,Sun May 21 15:24:03 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,PranuGopi458_,0,0,, 406 | 866230612075700224,Sun May 21 15:24:06 IST 2017,"RT @DailyO_: #IPLfinal : Whether he wins tonight or doesn't, #Dhoni doesn't need to prove himself | @BoredCricket |…",amit_2220,0,0,, 407 | 866230621080834050,Sun May 21 15:24:08 IST 2017,Only 1 step to victory #BELI3VE and stay cool #IPLfinal,aditya_anand_1,0,0,, 408 | 866230623639293952,Sun May 21 15:24:09 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,AthiKaruppiah,0,0,, 409 | 866230626437009408,Sun May 21 15:24:09 IST 2017,RT @Kancha_bhau: Which team will you support? #IPLfinal,ashishkalepatil,0,0,, 410 | 866230635991576577,Sun May 21 15:24:12 IST 2017,As #IPLfinal this trend is steadily going up towards first position m getting more n more excited.. High hopes from #Mahi,shivanand_tarke,0,0,, 411 | 866230652294660097,Sun May 21 15:24:15 IST 2017,All the best for RPS for win the final in #ipl #MSDhoni https://t.co/jGAnnitdut,IsakAnandh33,0,0,, 412 | 866230653733482496,Sun May 21 15:24:16 IST 2017,The openers in our all-time #IPLXI: henrygayle and virendersehwag https://t.co/kuLsVdgQZk #IPL https://t.co/IzY2vDMoq9,ICCSports_Live,0,0,, 413 | 866230657357361152,Sun May 21 15:24:17 IST 2017,RT @ASP_D2JR: And that's MSD! @msdhoni #msdhoni #IPL #SRHvKKR #KKRvSRH #MIvRPS #RPSvsMI #VIVOIPL #playoffs @RPSupergiants https://t.co/CwO1…,Sunil52064801,0,0,, 414 | 866230666794598400,Sun May 21 15:24:19 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,PRIYATOSH_SINHA,0,0,, 415 | 866230690282479616,Sun May 21 15:24:25 IST 2017,RT @rohitsharma4_5: Good luck Hitman n team #IPLfinal https://t.co/hF3vZRIRXc,ImApS45,0,0,, 416 | 866230696158908416,Sun May 21 15:24:26 IST 2017,RT @narendramobi: Who do u support & 4cast a winner 2night in #IPLfinal #RisingPuneSupergiant #MumbaivsPune #MumbaiIndians #IPL2017 #MIvR…,narendramobi,0,0,, 417 | 866230707479359488,Sun May 21 15:24:29 IST 2017,RT @CMularam: #IPLfinal IPL final winner team 👇,FcSahil,0,0,, 418 | 866230718522896385,Sun May 21 15:24:31 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,abvijaysgrk,0,0,, 419 | 866230732288647168,Sun May 21 15:24:35 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",Akash07VIIT,0,0,, 420 | 866230734868148225,Sun May 21 15:24:35 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,PatnalaRamana1,0,0,, 421 | 866230755017601028,Sun May 21 15:24:40 IST 2017,Want 2 see when #msdhoni lift #IPLfinal Would be another milestone.. Yeah cant wait to evening #MIvRPS https://t.co/0y3VXdJA2A,kumar_mahendra2,0,0,, 422 | 866230755755732992,Sun May 21 15:24:40 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,Tarunde42084931,0,0,, 423 | 866230756779020288,Sun May 21 15:24:40 IST 2017,🌟 Ganapathi 🌟: @mipaltan Belive in your self #IPLfinal: @mipaltan Belive in your self… https://t.co/bASJ3g3opD… https://t.co/muaOwExTke,chukkutweets,0,0,, 424 | 866230762353438720,Sun May 21 15:24:42 IST 2017,"Match day,wishes to my beloved team from 1-10 season #mumbaiindians #MIvRPS #IPLfinal #IPL10 https://t.co/3yU0YOMOYp",rajeshwaran1,0,0,, 425 | 866230770846887936,Sun May 21 15:24:44 IST 2017,EdenRobe|Pret Summer Collection 17| https://t.co/PZwuCtVuYo #MiskTweeps #AvariTowersKHI #IPLfinal #WBbrand https://t.co/kTRfPcWjTz,DiscountsinPak,0,0,, 426 | 866230778094473217,Sun May 21 15:24:45 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Aish315,0,0,, 427 | 866230779327782913,Sun May 21 15:24:46 IST 2017,The latest Virendra Singh Rawat! https://t.co/fAVhohSaRv Thanks to @RaisinaSeries @tjoseph0010 @sureshnakhua #iplfinal,rvirendra,0,0,, 428 | 866230789335203840,Sun May 21 15:24:48 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,UpdatezSports,0,0,, 429 | 866230797233266688,Sun May 21 15:24:50 IST 2017,"RT @ravjot27: Android Instant Apps Are Coming Your Way Soon, Google Reveals - https://t.co/zXkFBgDlRA #IPLfinal #TheBlackPrince",jayd_1992,0,0,, 430 | 866230802002186240,Sun May 21 15:24:51 IST 2017,"RT @Madan_Chikna: People are supporting 3 things in today #IPLfinal #MI , #RPS & M. S. Dhoni.",AwesomeAnurock,0,0,, 431 | 866230802794782721,Sun May 21 15:24:51 IST 2017,"RT @mipaltan: MATCHDAY!!!! Paltan, the #IPLfinal is here and we're calling on your support to back the team and #BELI3VE! 💪👊…",khusbur7,0,0,, 432 | 866230818552897536,Sun May 21 15:24:55 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,Dhanaderider,0,0,, 433 | 866230822029938689,Sun May 21 15:24:56 IST 2017,IN INDIA to give grand welcome for tv serial..only did by #vijaytv .. grand show telecast in vijay tv now🙌🙏🇮🇳👉 #VIJAYAWARD #IPLfinal,TRENDhastag,0,0,, 434 | 866230839834759168,Sun May 21 15:25:00 IST 2017,#IPLFinal No matter who wins today its gonna be treat for every cricket fan..its going to be awesome match @mipaltan @RPSupergiants,ballal_snehal,0,0,, 435 | 866230848638468096,Sun May 21 15:25:02 IST 2017,who will be Deccan Queen of the match tonight ? #mivsrps #IPLfinal,Poseidonuncle,0,0,, 436 | 866230848458248192,Sun May 21 15:25:02 IST 2017,RT @TrollywoodOffl: 6 finals 2 wins Vs 3 finals 3 wins #IPLFinal https://t.co/5AqeHRsC9Y,vellias31,0,0,, 437 | 866230849452331008,Sun May 21 15:25:02 IST 2017,Who will win it doesn't matter Watching @msdhoni Sir Playing in a Finale Match is like"Mahi Mar Rha hai" @RPSupergiants @mipaltan #IPLfinal,2609vish,0,0,, 438 | 866230855248642048,Sun May 21 15:25:04 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,Kinshuk_Deb,0,0,, 439 | 866230858616852480,Sun May 21 15:25:05 IST 2017,Bank of Baroda (BOB) Manipal PO 2017 Exam - GK Questions with Answer #bobpo2017 #gk #IPLfinal Answer is here: ►… https://t.co/Ommog5hG9e,Click_How,0,0,, 440 | 866230863775879168,Sun May 21 15:25:06 IST 2017,@msdhoni is the only reason why I will watch today's final. #MSDhoni #IPLfinal #RisingPuneSupergiant #RPSvsMI,PiyushRathod1,0,0,, 441 | 866230867898712065,Sun May 21 15:25:07 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,ajr_offl,0,0,, 442 | 866230874819485696,Sun May 21 15:25:09 IST 2017,RT @Kancha_bhau: Which team will you support? #IPLfinal,sstoo7,0,0,, 443 | 866230878866784256,Sun May 21 15:25:09 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,GYANENDER81,0,0,, 444 | 866230886769057796,Sun May 21 15:25:11 IST 2017,RT @BleedDhonism: All the best @msdhoni & @RPSupergiants for 1St Qualifier. #MIvRPS #Ipl #IPL2017 #msdhoni https://t.co/vxSZiy0Ze8,Sunil52064801,0,0,, 445 | 866230904750059520,Sun May 21 15:25:16 IST 2017,RT @SirJadeja: Who Are You Supporting For #IPLfinal? #MI Or #RPS? My Vote For #RPS. Reason: #MSDhoni 🙏🏾 Vote & RT #IPL #IPL10 #MIvRPS #RP…,Riyankj,0,0,, 446 | 866230905744101376,Sun May 21 15:25:16 IST 2017,#ipl #IREvsNZ NZ: 19/0 (2.3 Ovs) Ronchi : 16/8. Latham : 2/7. Craig Young:1.3-0-17-0.,tweetcricscore,0,0,, 447 | 866230907249799170,Sun May 21 15:25:16 IST 2017,"#ipl #IREvsNZ Young to Ronchi, FOUR, square of the wicket",tweetcricscore,0,0,, 448 | 866230912303759360,Sun May 21 15:25:17 IST 2017,The mumabikar and not the cricketer in you has written this. No one has the edge. #MI is strong on paper but #RPS h… https://t.co/BX53qYIZS8,AmeyYummar,0,0,, 449 | 866230923263692800,Sun May 21 15:25:20 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,dimpy1996,0,0,, 450 | 866230946516705284,Sun May 21 15:25:26 IST 2017,"RT @anpadh00: #myPrediction Kolkata, Hydrabad will be eliminated in semi Mumbai will go to final & defeated by Pune #IPL fixit",Muhammadmain33,0,0,, 451 | 866230952212574208,Sun May 21 15:25:27 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,sathish_theri,0,0,, 452 | 866230962367148032,Sun May 21 15:25:29 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Riya_Twitz,0,0,, 453 | 866230983909146624,Sun May 21 15:25:35 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,jatin14031995,0,0,, 454 | 866230986979368960,Sun May 21 15:25:35 IST 2017,RT @one_by_two: Whichever team loses tonight will have to see #JattuEngineer tomorrow morning first show after consuming a can of Red Bull…,VinamraSinha1,0,0,, 455 | 866230998031360001,Sun May 21 15:25:38 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,OletyAnup,0,0,, 456 | 866231000371781633,Sun May 21 15:25:38 IST 2017,"RT @rajeshwaran1: Match day,wishes to my beloved team from 1-10 season #mumbaiindians #MIvRPS #IPLfinal #IPL10 https://t.co/3yU0YOMOYp",AkibAli61909952,0,0,, 457 | 866231002322141184,Sun May 21 15:25:39 IST 2017,RT @klippdin: Get upto 15% off on pen @PrintLandIn +upto 11.25% #cashback frm https://t.co/h1RnXcIFDB #IPLfinal #SRK25MILLION…,manitej39,0,0,, 458 | 866231009569886208,Sun May 21 15:25:41 IST 2017,RT @RPSupergiants: "Finals cricket is finals cricket. It all boils down to who plays well." - @stevesmith49 #RangWahiJungNayi…,Akash07VIIT,0,0,, 459 | 866231014464430080,Sun May 21 15:25:42 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Jaymin_37,0,0,, 460 | 866231015622103044,Sun May 21 15:25:42 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,ankitsharmaeng1,0,0,, 461 | 866231026166648832,Sun May 21 15:25:45 IST 2017,RT @mipaltan: "We're going to treat it like any other game!" The coach @MahelaJay cuts a calm figure ahead of the #IPLfinal…,GYANENDER81,0,0,, 462 | 866231037478805506,Sun May 21 15:25:47 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,kishore_offl,0,0,, 463 | 866231045552824322,Sun May 21 15:25:49 IST 2017,RT @CSKFansOfficial: CSK and MI played #IPLfinal three times against each other. In other hand no other teams played more than One time…,naan_ajithian,0,0,, 464 | 866231053119352832,Sun May 21 15:25:51 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,mahesh_pankaj,0,0,, 465 | 866231061025439744,Sun May 21 15:25:53 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,ChopraLibran,0,0,, 466 | 866231079392481280,Sun May 21 15:25:57 IST 2017,please watch today's #IPLfinal kyunki fixed to aapki shaadi bhi thi,shilpakalhan1,0,0,, 467 | 866231102091939840,Sun May 21 15:26:03 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,AnjuChandel,0,0,, 468 | 866231119305363456,Sun May 21 15:26:07 IST 2017,Who will win IPL final RPS or MI Tweet with your favorite team name ! #RPSvMI #MIvRPS #IPL2017 #IPLfinal #IPL… https://t.co/s2Z3sG7req,ArreTv,0,0,, 469 | 866231130621493248,Sun May 21 15:26:09 IST 2017,RT @its_TANVI: The LastDay Of An IPL without @ChennaiIPL Happiness!! #IPLfinal    #SummerOf18,Raina_Barani,0,0,, 470 | 866231144362237952,Sun May 21 15:26:13 IST 2017,RT @CricFit: RPS Opner Ajinkya #Rahane Getting Ready For #IPLFinal #RPSvMI https://t.co/zLpYBnc5rY,smritisinha99,0,0,, 471 | 866231165316997120,Sun May 21 15:26:18 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,sanideetu,0,0,, 472 | 866231174124904450,Sun May 21 15:26:20 IST 2017,Mumbai Indians face the Rising Pune jinx in #IPLfinal #MIvRPS preview: https://t.co/Qu0Dxwd5w9 https://t.co/gHIWdMhcgQ,ESPNIndia,0,0,, 473 | 866231197831135233,Sun May 21 15:26:26 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,varakalashashi,0,0,, 474 | 866231202591764480,Sun May 21 15:26:27 IST 2017,Who is going to win the #IPLfinal today? Get your votes in @mipaltan @RPSupergiants #ipl,Arvindkumar_91,0,0,, 475 | 866231206811226113,Sun May 21 15:26:28 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",Remokarthi5,0,0,, 476 | 866231238662569985,Sun May 21 15:26:35 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,PRANATBANSAL,0,0,, 477 | 866231240357142528,Sun May 21 15:26:36 IST 2017,RT @IPL_2017: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third most. #I…,AnilMan76749868,0,0,, 478 | 866231257234944000,Sun May 21 15:26:40 IST 2017,RT @IPL: #IPL Universe Boss - @henrygayle https://t.co/617ofh1beU,Suhas007,0,0,, 479 | 866231264046706689,Sun May 21 15:26:41 IST 2017,RT @ravishrimali33: Who will win the final of IPL-2017?? #IPL #IPL2017,W7uyJason,0,0,, 480 | 866231266462625792,Sun May 21 15:26:42 IST 2017,It seemed good but I didn't understood anything😂😂😂 @RPSupergiants https://t.co/YAl58huv6w,imk_bell,0,0,, 481 | 866231272221188096,Sun May 21 15:26:43 IST 2017,He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,CricketNDTV,0,0,, 482 | 866231285559250945,Sun May 21 15:26:46 IST 2017,RT @kushalp06: Kudos to #msdhoni for not letting ego get in the way despite the captaincy troubles. He remained professional throughout. #I…,iBunny07,0,0,, 483 | 866231295264919552,Sun May 21 15:26:49 IST 2017,@mipaltan #Beli3ve #IPLfinal #CricketMeriJaan all the best can't wait to see third title 🤗😍,aravindslm,0,0,, 484 | 866231299060756480,Sun May 21 15:26:50 IST 2017,RT @2609vish: Who will win it doesn't matter Watching @msdhoni Sir Playing in a Finale Match is like"Mahi Mar Rha hai" @RPSupergiants @mip…,ImPradeepBelwal,0,0,, 485 | 866231309659766785,Sun May 21 15:26:52 IST 2017,RT @Arvindkumar_91: Who is going to win the #IPLfinal today? Get your votes in @mipaltan @RPSupergiants #ipl,Sunil52064801,0,0,, 486 | 866231313648320517,Sun May 21 15:26:53 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,ndtv,0,0,, 487 | 866231313707094016,Sun May 21 15:26:53 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,Sports_NDTV,0,0,, 488 | 866231320732606464,Sun May 21 15:26:55 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",MachindraDivate,0,0,, 489 | 866231333282033664,Sun May 21 15:26:58 IST 2017,RT @cricketwallah: Final between 2 teams. Obviously @msdhoni key figure but why should he be under more scrutiny than others? Anything…,suyash3010,0,0,, 490 | 866231335681007616,Sun May 21 15:26:58 IST 2017,"RT @hvgoenka: Maha'yudh' #IPLfinal today - #MIvRPS - Rohit Sharma vs Ajinkya Rahane On different sides, one thing common. #CEAT https://t.…",AnilMan76749868,0,0,, 491 | 866231343797202945,Sun May 21 15:27:00 IST 2017,"In the age of volume and excitement, here are 5 brilliant, insightful #commentators, by @ravivenkat007 at: https://t.co/dSL2rYoBI5 #IPL",holdingwilley,0,0,, 492 | 866231348234559488,Sun May 21 15:27:01 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,karthiboss7777,0,0,, 493 | 866231359790088193,Sun May 21 15:27:04 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,yusuff_ansari,0,0,, 494 | 866231367646031873,Sun May 21 15:27:06 IST 2017,"RT @Madan_Chikna: People are supporting 3 things in today #IPLfinal #MI , #RPS & M. S. Dhoni.",amrutmhatre90,0,0,, 495 | 866231376420323328,Sun May 21 15:27:08 IST 2017,No chance for Mahendra only for bahubali hitman lift https://t.co/I14n2aLhAD,krm9144,0,0,, 496 | 866231376919580672,Sun May 21 15:27:08 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,JSanto47,0,0,, 497 | 866231391255646208,Sun May 21 15:27:12 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,IPL,0,0,, 498 | 866231437095297024,Sun May 21 15:27:23 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Michaelrj_10,0,0,, 499 | 866231445404217344,Sun May 21 15:27:25 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Aarushs777,0,0,, 500 | 866231448386383872,Sun May 21 15:27:25 IST 2017,"If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won it twice #YarJaN_J",Only_Pak_Team,0,0,, 501 | 866231456305172480,Sun May 21 15:27:27 IST 2017,#ipl #IREvsNZ NZ: 22/0 (3.0 Ovs) Ronchi : 19/10. Latham : 2/8. Chase:1-0-2-0.,tweetcricscore,0,0,, 502 | 866231466048573440,Sun May 21 15:27:29 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,SweetieSayz,0,0,, 503 | 866231471630991360,Sun May 21 15:27:31 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",akhil_janasena,0,0,, 504 | 866231476949405697,Sun May 21 15:27:32 IST 2017,You are supporting which team today I will support RPS https://t.co/fPAVtnhbYv,Singh12102000,0,0,, 505 | 866231485686104065,Sun May 21 15:27:34 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,AnilMan76749868,0,0,, 506 | 866231486508171264,Sun May 21 15:27:34 IST 2017,Are you ready for the #IPLfinal ? https://t.co/daM10RZyDQ,ShastaSharma,0,0,, 507 | 866231486973915136,Sun May 21 15:27:34 IST 2017,RT @vote_machine: Which team will win #IPL2017 ? Retweet ---> #RisingPuneSupergiant Like ---> #MumbaiIndians #MIvsRPS #RPSvsMI…,DeepakDehree,0,0,, 508 | 866231503189008384,Sun May 21 15:27:38 IST 2017,RT @Kancha_bhau: Which team will you support? #IPLfinal,AjayKushwaha_,0,0,, 509 | 866231511917395969,Sun May 21 15:27:40 IST 2017,RT @CricketAus: Smith's heartfelt farewell to India: https://t.co/rce7NJCHyy #IPLFinal https://t.co/boau2MaqU2,Maxi5Abhinav,0,0,, 510 | 866231514215792640,Sun May 21 15:27:41 IST 2017,@arindM11 @sanjaymusicc Ha ha ha haaaa ! I knew it ! Keep Your fingers crossed ! #MSDhoni #IPLfinal #RisingPuneSupergiant,manjumathur1,0,0,, 511 | 866231515100975104,Sun May 21 15:27:41 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,revengerthala,0,0,, 512 | 866231517571293184,Sun May 21 15:27:42 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,gokulsy,0,0,, 513 | 866231519865688065,Sun May 21 15:27:42 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,PardeepDas6,0,0,, 514 | 866231526425604096,Sun May 21 15:27:44 IST 2017,A Person who doesn't love PK and also have no feelings 4 kashmiries must watch the final of IPL. #IPL😝😝😝 https://t.co/85MbSKFjE0,chill_ayesha,0,0,, 515 | 866231540803543041,Sun May 21 15:27:47 IST 2017,"RT @Madan_Chikna: People are supporting 3 things in today #IPLfinal #MI , #RPS & M. S. Dhoni.",snehu19020,0,0,, 516 | 866231542426685440,Sun May 21 15:27:48 IST 2017,RT @ESPNcricinfo: How good was Delhi Daredevils' chase against Gujarat Lions on Thursday? https://t.co/NHvu9VE8AG #DDvGL #IPL https://t.c…,Suhas007,0,0,, 517 | 866231551431811072,Sun May 21 15:27:50 IST 2017,RT @ChennaiIPL: Like a boss! 😎 #whistlepodu https://t.co/1JSkjhMrZi,m_sasidharanbe,0,0,, 518 | 866231552014864384,Sun May 21 15:27:50 IST 2017,Anybody want the @IPL finals tickets...do contact this person his name is Mohammed.. Contact nUmber +91 86867 40557 #Hyderabad #IPLfinal,Iamcezane,0,0,, 519 | 866231551390097412,Sun May 21 15:27:50 IST 2017,No plans!! Just go out and fire all the guns blazing #BELI3VE in @mipaltan #IPLfinal https://t.co/GNHT1hdccf,aditya_anand_1,0,0,, 520 | 866231553902338048,Sun May 21 15:27:50 IST 2017,RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,imWrong45,0,0,, 521 | 866231556473589760,Sun May 21 15:27:51 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,shanku98,0,0,, 522 | 866231557861908481,Sun May 21 15:27:51 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,imAayush1802,0,0,, 523 | 866231572214628353,Sun May 21 15:27:55 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,harshareddy_,0,0,, 524 | 866231579835854854,Sun May 21 15:27:57 IST 2017,RT @DrDanDiaper: I did warn you about a shaven Warner in April #sketch @guerillacricket #ipl #SRHvKKR @Sofa_Katie @abdulhayemehta…,aliroot06,0,0,, 525 | 866231583446933504,Sun May 21 15:27:57 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,Raina_Barani,0,0,, 526 | 866231583899926528,Sun May 21 15:27:58 IST 2017,Bakwaas. He is overrated and no where close to Kohli or Kane Williamson. https://t.co/HaHYV7M6RV,ash7k,0,0,, 527 | 866231587721162752,Sun May 21 15:27:58 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,ItzRowdy_,0,0,, 528 | 866231587767189504,Sun May 21 15:27:58 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,saurav_Loves,0,0,, 529 | 866231599389700098,Sun May 21 15:28:01 IST 2017,RT @csethi329: #IPLfinal who did this 😂 https://t.co/Vo5GfAd6i8,Bhavessshh,0,0,, 530 | 866231603722432512,Sun May 21 15:28:02 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",RahulKo12442579,0,0,, 531 | 866231607178534912,Sun May 21 15:28:03 IST 2017,#ipl #INDWvsRSAW RSAW: 131/5 (32.0 Ovs) Kapp : 18/27. C Tryon : 0/3. Deepti Sharma:6-0-27-0.,tweetcricscore,0,0,, 532 | 866231607694381056,Sun May 21 15:28:03 IST 2017,RT @bayside_journal: Will @RPSupergiants stop @mipaltan from winning their 3rd trophy? https://t.co/0PG4YfQrL5 #BaysideJournal #IPLfinal…,Jean1324Jean,0,0,, 533 | 866231599389700098,Sun May 21 15:28:01 IST 2017,RT @csethi329: #IPLfinal who did this 😂 https://t.co/Vo5GfAd6i8,Bhavessshh,0,0,, 534 | 866231620507795457,Sun May 21 15:28:06 IST 2017,"#IRE v NZ, 5th Match: NZ 12/0 (1.0 Ovs), Latham 0(0), Ronchi 12(6), Partnership: 12(6).#Ipl",Icclive_Hit,0,0,, 535 | 866231630611988488,Sun May 21 15:28:09 IST 2017,"#Live Cricket Score - Ireland vs New Zealand, Tri-Series, 5th Match: Catch the live updates of Ireland vs New Zealand, Tri-Series, 5th…#Ipl",Icclive_Hit,0,0,, 536 | 866231642456805376,Sun May 21 15:28:12 IST 2017,: CHAMPIONS - 2008 #IPLfinal https://t.co/osnF0WqPJU,MALIKUSMANUTTRA,0,0,, 537 | 866231642536505344,Sun May 21 15:28:12 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,karthik42555093,0,0,, 538 | 866231644167880705,Sun May 21 15:28:12 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,SirAshokeDinda,0,0,, 539 | 866231645665345536,Sun May 21 15:28:12 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,cherieahmed8,0,0,, 540 | 866231649977212928,Sun May 21 15:28:13 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/jKnTcItEk7,ESPN_BCCI,0,0,, 541 | 866231653491851264,Sun May 21 15:28:14 IST 2017,RT @Kancha_bhau: Which team will you support? #IPLfinal,SunoBawal,0,0,, 542 | 866231659393413120,Sun May 21 15:28:16 IST 2017,@IPL @rajasthanroyals 1st champ #IPLfinal,LahiriSupratim,0,0,, 543 | 866231659749793792,Sun May 21 15:28:16 IST 2017,#WhatsappForward "Today if the match is tied the IPL trophy will be given to Lonavala.....😜😀😉" Too good this 👌👌 #IPLfinal,Ularuvaayan,0,0,, 544 | 866231660064292865,Sun May 21 15:28:16 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,_Rajasthani,0,0,, 545 | 866231665882009600,Sun May 21 15:28:17 IST 2017,RT @VyavharAgarwal: @quickheal Rahul Tripathi will be the highest scorer for #RPS in #IPLfinal #QuickHealTrivia #CricketForecast…,anshumanjohriAJ,0,0,, 546 | 866231668222414848,Sun May 21 15:28:18 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Imvbhatia23,0,0,, 547 | 866231673230372864,Sun May 21 15:28:19 IST 2017,RT @dharav_18: Gone are the days when Homeground and local player and stuff mattered.. DHONI DHONI !! #Dhoni #IPL #MIvRPS…,DeepakDehree,0,0,, 548 | 866231672668397568,Sun May 21 15:28:19 IST 2017,Nita Ambani's head when she takes a look at records. #RPSvMI #MIvRPS #IPLfinal https://t.co/x9aSyIJHRn,_DarkHumor,0,0,, 549 | 866231684605161472,Sun May 21 15:28:22 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,AnilMan76749868,0,0,, 550 | 866231692222246913,Sun May 21 15:28:23 IST 2017,RT @dutt_sankar: @XploreeMoments Rising Pune Supergiant will win #IPLfinal & will lift trophy for the first time #XploreePlay…,anshumanjohriAJ,0,0,, 551 | 866231695757934594,Sun May 21 15:28:24 IST 2017,@mipaltan & @RPSupergiants highly dominated by Indian Players ! Great sight for Indian Cricket! #FutureSecured #MIvRPS @SonySIX #IPLfinal,ketan_puranik,0,0,, 552 | 866231699390160896,Sun May 21 15:28:25 IST 2017,@Naveenkethinedi Let's wait and watch!! Who will lift the trophy #IPLfinal #RPSvsMI,eshwar1509,0,0,, 553 | 866231701046870016,Sun May 21 15:28:25 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,adyararun01,0,0,, 554 | 866231701755772928,Sun May 21 15:28:26 IST 2017,RT @cric_nerds: Suresh Raina's Fan yesterday at Kanpur Green park stadium. #IPL #DDvGL https://t.co/zm5A3AtOqS,Suhas007,0,0,, 555 | 866231708697243650,Sun May 21 15:28:27 IST 2017,RT @ChennaiIPL: This is epic! #SuperFanPic #SummerOf18 https://t.co/3MPzd1Q3UH,m_sasidharanbe,0,0,, 556 | 866231708789739520,Sun May 21 15:28:27 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/QzSZ8IMY29,dhaka_sports,0,0,, 557 | 866231711004336128,Sun May 21 15:28:28 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,gowthamvjfan,0,0,, 558 | 866231715735449605,Sun May 21 15:28:29 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,samycute18,0,0,, 559 | 866231724765741056,Sun May 21 15:28:31 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,Aishwarysriva15,0,0,, 560 | 866231725352828933,Sun May 21 15:28:31 IST 2017,RT @ESPNcricinfo: #OnTheRoad Talking cricket and Pune with Rahul Tripathi https://t.co/0rS0ebXCwo #IPL,iam_cgk,0,0,, 561 | 866231727911522304,Sun May 21 15:28:32 IST 2017,"RT @WisdenIndia: Clear communication between #Smithy & #MSDhoni is at the core of #RPS's journey to #IPLfinal, writes @RdT1969: https://t.c…",Jitupawar2017,0,0,, 562 | 866231733896622080,Sun May 21 15:28:33 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,KyaBakchodiH,0,0,, 563 | 866231739311693824,Sun May 21 15:28:35 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,ballal_snehal,0,0,, 564 | 866231749629534209,Sun May 21 15:28:37 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,phanindranaidu9,0,0,, 565 | 866231757363789824,Sun May 21 15:28:39 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",ManeKalyani,0,0,, 566 | 866231758764687360,Sun May 21 15:28:39 IST 2017,RT @IPL: #IPL - The @RCBTweets are here at the M. Chinnaswamy Stadium #RCBvKXIP https://t.co/EDRIN46yz9,Suhas007,0,0,, 567 | 866231785687990274,Sun May 21 15:28:46 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,anvith_MB_Fan,0,0,, 568 | 866231793065705473,Sun May 21 15:28:47 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,Vihari03tweets,0,0,, 569 | 866231795213365249,Sun May 21 15:28:48 IST 2017,A super sunday w8ng.. @mipaltan vs @RPSupergiants #IPLfinal #IPL2017,faasfav,0,0,, 570 | 866231801416732672,Sun May 21 15:28:49 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,iankurbansal,0,0,, 571 | 866231803329302528,Sun May 21 15:28:50 IST 2017,RT @virendra_sehwg: So whom are you supporting today... ReTweet for DHONI Like for ROHIT #IPLfinal #MIvRPS,Dipak700,0,0,, 572 | 866231805401235459,Sun May 21 15:28:50 IST 2017,@BumbleCricket Today's All eyes on #IPLfinal battle between #Deathspecialist #JASPRITBUMRAH v/s #msdhoni #bestfinisher @nassercricket,mahesh_gulab,0,0,, 573 | 866231829837344768,Sun May 21 15:28:56 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,jaishekhawat078,0,0,, 574 | 866231830034436098,Sun May 21 15:28:56 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,shivanani404,0,0,, 575 | 866231839303671809,Sun May 21 15:28:58 IST 2017,#IPLfinal @IPL It's @PuneSuperGiant V/s @mipaltan. My Prediction says it 50-50. Go Toss Winner wise at at… https://t.co/E9F0EdkkDJ,rohitbinnani,0,0,, 576 | 866231840822243328,Sun May 21 15:28:59 IST 2017,RT @_DarkHumor: Nita Ambani's head when she takes a look at records. #RPSvMI #MIvRPS #IPLfinal https://t.co/x9aSyIJHRn,TaalthokKe,0,0,, 577 | 866231846790610949,Sun May 21 15:29:00 IST 2017,RT @champggfans: #Gambhir 's performance in #IPL 🌟Highest score by Ind. player in IPL 🌟2nd High. Run getter 🌟4 FBB stylish player of…,rajak315,0,0,, 578 | 866231853837103104,Sun May 21 15:29:02 IST 2017,RT @mltweetfreak: NO matter whatsoever is the result of #RPSvsMI #MSDhoni carried #RPS when need the most #ipl #IPLPlayoffs & Now…,DeepakDehree,0,0,, 579 | 866231868458278912,Sun May 21 15:29:05 IST 2017,RT @mipaltan: "Mahela has done well for Sri Lanka. His experience helped us to be a successful unit." - Rohit #IPLfinal #BELI3VE…,AnilMan76749868,0,0,, 580 | 866231873147617280,Sun May 21 15:29:07 IST 2017,RT @CricFit: RPS Opner Ajinkya #Rahane Getting Ready For #IPLFinal #RPSvMI https://t.co/zLpYBnc5rY,ManeKalyani,0,0,, 581 | 866231873533620224,Sun May 21 15:29:07 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/f4nJWWzoPo: IPL #ipl2017 #cricket,jdsoni7,0,0,, 582 | 866231874175332354,Sun May 21 15:29:07 IST 2017,Rajasthan Royals!!! My team is coming back next year!! https://t.co/tXAwuWOieS,Ltd10_,0,0,, 583 | 866231877815947264,Sun May 21 15:29:08 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,rubenlal65,0,0,, 584 | 866231883746729984,Sun May 21 15:29:09 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,gawli_nilesh,0,0,, 585 | 866231884040327169,Sun May 21 15:29:09 IST 2017,RT @_DarkHumor: Nita Ambani's head when she takes a look at records. #RPSvMI #MIvRPS #IPLfinal https://t.co/x9aSyIJHRn,Sarcasticlinga,0,0,, 586 | 866231884480630784,Sun May 21 15:29:09 IST 2017,#IPLfinal Who will lift the cup today ? 😎,imkingson,0,0,, 587 | 866231886653345792,Sun May 21 15:29:10 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/lHjMcKeX57,mahalakshmi3117,0,0,, 588 | 866231895410876419,Sun May 21 15:29:12 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,priyankacamp,0,0,, 589 | 866231910237863936,Sun May 21 15:29:15 IST 2017,#VivoIPL #IPL2017 CHAMPIONS - 2008 #IPLfinal https://t.co/BhzvvOqLtw,Official_IPLT20,0,0,, 590 | 866231912695713792,Sun May 21 15:29:16 IST 2017,Yes it's #IPLfinal today but don't forget to support our girls also who are also playing a final against SA.… https://t.co/3DcfzN3GJ8,gauravvarmani,0,0,, 591 | 866231928348962817,Sun May 21 15:29:20 IST 2017,"If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won it twice #YarJaN_J",VivoIPLIndia,0,0,, 592 | 866231928378150914,Sun May 21 15:29:20 IST 2017,.@mipaltan will be hoping to win their third #IPL title by beating the Rising Pune Supergiant. https://t.co/x2FQ5p1OKf,CNNnews18,0,0,, 593 | 866231928273477636,Sun May 21 15:29:20 IST 2017,RT @CMularam: #IPLfinal IPL final winner team 👇,ArunbajpaiRajan,0,0,, 594 | 866231947206553600,Sun May 21 15:29:24 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/Jfhk2s1Bmz,sethu1215,0,0,, 595 | 866231950847201280,Sun May 21 15:29:25 IST 2017,Good luck in the match tonight! #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/f2ubBNPk3H,EtihadAirways,0,0,, 596 | 866231953699119104,Sun May 21 15:29:26 IST 2017,RT @Kancha_bhau: Which team will you support? #IPLfinal,sahajyoti3,0,0,, 597 | 866231954466902016,Sun May 21 15:29:26 IST 2017,RT @kushalp06: Kudos to #msdhoni for not letting ego get in the way despite the captaincy troubles. He remained professional throughout. #I…,trupti_yadav,0,0,, 598 | 866231960233844736,Sun May 21 15:29:27 IST 2017,RT @SirJadeja: Who Are You Supporting For #IPLfinal? #MI Or #RPS? My Vote For #RPS. Reason: #MSDhoni 🙏🏾 Vote & RT #IPL #IPL10 #MIvRPS #RP…,Surendi82006130,0,0,, 599 | 866231961102274561,Sun May 21 15:29:27 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,SACHINLAMBA21,0,0,, 600 | 866231969255784448,Sun May 21 15:29:29 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,sasist54,0,0,, 601 | 866231969323118593,Sun May 21 15:29:29 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,trupti_yadav,0,0,, 602 | 866231977451503616,Sun May 21 15:29:31 IST 2017,https://t.co/nkVRohUDKQ Rahul Tripathi's quite and humble demeanour is nice to hear😇 #Humility,iam_cgk,0,0,, 603 | 866231980794433537,Sun May 21 15:29:32 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,TusharRatedR,0,0,, 604 | 866231983629778944,Sun May 21 15:29:33 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,Kalyan_Cult,0,0,, 605 | 866231987828346880,Sun May 21 15:29:34 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,vikas1999105,0,0,, 606 | 866231996254650369,Sun May 21 15:29:36 IST 2017,Nothing fails like success because we don't learn from it. We only learn from failure.🙌🔝🔝🔛💯% #success #MIVRPS #ipl #iplfinal @mammukka,imnavi_nk5,0,0,, 607 | 866231998481911809,Sun May 21 15:29:36 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,shubhamnyk9910,0,0,, 608 | 866232004798537728,Sun May 21 15:29:38 IST 2017,RT @_DarkHumor: Nita Ambani's head when she takes a look at records. #RPSvMI #MIvRPS #IPLfinal https://t.co/x9aSyIJHRn,republictweets_,0,0,, 609 | 866232007633887234,Sun May 21 15:29:39 IST 2017,"@mipaltan Whole Paltan is with you @mipaltan, we #BELI3VE in you. Our side has been dominant since the start of… https://t.co/A8CSWvaLCU",WasiyullahB,0,0,, 610 | 866232014244106241,Sun May 21 15:29:40 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,SastaLoha,0,0,, 611 | 866232023014416384,Sun May 21 15:29:42 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,SadiqWali3,0,0,, 612 | 866232033940525056,Sun May 21 15:29:45 IST 2017,@msdhoni @RPSupergiants @mipaltan @SirJadeja @IPL Who will win today???????? #RpsvsMi #IPLfinal,Soumajit1994,0,0,, 613 | 866232039913037824,Sun May 21 15:29:46 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,BashaSyed07,0,0,, 614 | 866232040177487873,Sun May 21 15:29:46 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,arpit0207,0,0,, 615 | 866232047513161729,Sun May 21 15:29:48 IST 2017,RT @EtihadAirways: Good luck in the match tonight! #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/f2ubBNPk3H,TheAccidentMan9,0,0,, 616 | 866232050206027777,Sun May 21 15:29:49 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,hrishivelumani,0,0,, 617 | 866232050210275330,Sun May 21 15:29:49 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,rajendra451997,0,0,, 618 | 866232061056733184,Sun May 21 15:29:51 IST 2017,Miss @rajasthanroyals & @ShaneWarne! https://t.co/6SXL7W55k7,AzimuddinMolla,0,0,, 619 | 866232068728135681,Sun May 21 15:29:53 IST 2017,RT @Sarcasticlinga: There is no one except Dhoni who can challenge Modi in election polls 2019.😝 #RpsvsMi #RPSvMI #IPLfinal,DeepakDehree,0,0,, 620 | 866232073526423552,Sun May 21 15:29:54 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,ak2822745,0,0,, 621 | 866232080379916288,Sun May 21 15:29:56 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,baroraca,0,0,, 622 | 866232087002664960,Sun May 21 15:29:58 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,DashingRavi76,0,0,, 623 | 866232088587943936,Sun May 21 15:29:58 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,rahultater756,0,0,, 624 | 866232098637529088,Sun May 21 15:30:00 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,Nikhil_Rathor,0,0,, 625 | 866232099165978624,Sun May 21 15:30:00 IST 2017,"RT @IPL: #DidYouKnow #IPL - @sandeep25a became the first bowler to dismiss Chris Gayle, Virat Kohli and AB de Villiers in th…",Suhas007,0,0,, 626 | 866232099921027072,Sun May 21 15:30:01 IST 2017,The 1st round was great! The 2nd round of the #HWCricketApp Contest continues tonight! Rules:… https://t.co/xqqz9LkgR5,holdingwilley,0,0,, 627 | 866232101036843008,Sun May 21 15:30:01 IST 2017,Rishabh Pant's hitting vs @TheGujaratLions set the IPL on fire! Was his innings your moment of the #IPL? https://t.co/ax6ScbDjis,theringsideview,0,0,, 628 | 866232101208600577,Sun May 21 15:30:01 IST 2017,"RT @Madan_Chikna: People are supporting 3 things in today #IPLfinal #MI , #RPS & M. S. Dhoni.",ch_tanmoy,0,0,, 629 | 866232100579667968,Sun May 21 15:30:01 IST 2017,1/2 Huge day of sport ahead. The #IPL Final 🏏 starts at 14.30 GMT. Can't wait? We've lots of cases on the topic:… https://t.co/o2vzgI3ALL,TheCaseCentre,0,0,, 630 | 866232111572762624,Sun May 21 15:30:03 IST 2017,"RT @_asif: @RPSupergiants The calm atmosphere this year. hopefully, get the win, will speak to you tomorrow pal gonna get some sleep #IPLfi…",Mitch_John573,0,0,, 631 | 866232111593734144,Sun May 21 15:30:03 IST 2017,#IPLFinal today between @RPSupergiants & @mipaltan at #Hyderabad. Are you bowled over by the #Realty performance of… https://t.co/btISpJig9f,KnightFrank_IN,0,0,, 632 | 866232114030817280,Sun May 21 15:30:04 IST 2017,RT @SuperSportTV: Can the Rising Pune Supergiants match their Qualifier 1 win over the Mumbai Indians when the two sides meet again i…,KekeMaxJr,0,0,, 633 | 866232121316196352,Sun May 21 15:30:06 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",kiranMSK7,0,0,, 634 | 866232122733989889,Sun May 21 15:30:06 IST 2017,#IPLfinal Rps will win todaymatch,bishwanath_tudu,0,0,, 635 | 866232136453545985,Sun May 21 15:30:09 IST 2017,.mipaltan will be hoping to win their third #IPL title by beating the Rising Pune Supergiant. https://t.co/IkXTvbRPZG,dishanksharma05,0,0,, 636 | 866232136285782016,Sun May 21 15:30:09 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,firkiii,0,0,, 637 | 866232152458973184,Sun May 21 15:30:13 IST 2017,"RT @IExpressSports: #IPL KKR have travelled nearly 20,000 km throughout the tournament https://t.co/Ir7ZQIfkUT",prashantarchu,0,0,, 638 | 866232170225876994,Sun May 21 15:30:17 IST 2017,Anybody want to buy d @IPL final tickets...do contact this person his name is Mohammed. Contact nUmber +91 86867 40557 #Hyderabad #IPLfinal,Iamcezane,0,0,, 639 | 866232170108428289,Sun May 21 15:30:17 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,karti91,0,0,, 640 | 866232170721017860,Sun May 21 15:30:17 IST 2017,"RT @Madan_Chikna: People are supporting 3 things in today #IPLfinal #MI , #RPS & M. S. Dhoni.",trupti_yadav,0,0,, 641 | 866232172721487876,Sun May 21 15:30:18 IST 2017,RT @mohituraina: So whom r we supporting tonight ?? #ipl #dhoni#mumbai #mega final #Hyderabad,TeamMohitMouni,0,0,, 642 | 866232198017556481,Sun May 21 15:30:24 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,bhimrao2595,0,0,, 643 | 866232205411926017,Sun May 21 15:30:26 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,rehanpawaskar,0,0,, 644 | 866232207672655873,Sun May 21 15:30:26 IST 2017,"This might be the last #IPl game for @RPSupergiants pune as a franchise, and they can create history today. #RPSvMI #IPLfinal",shady2k8,0,0,, 645 | 866232207899283456,Sun May 21 15:30:26 IST 2017,The latest The Old Down CC Daily! https://t.co/iNasYcW9cc Thanks to @realzulqarnain @WoolpitCC #ipl #iplfinal,odcc,0,0,, 646 | 866232213922119680,Sun May 21 15:30:28 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,HS_offl,0,0,, 647 | 866232216598306821,Sun May 21 15:30:28 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,KLSurya2,0,0,, 648 | 866232230296899584,Sun May 21 15:30:32 IST 2017,"RT @Cricprabhu: Amazing support for #ViratKohli in #Delhi #IPL yday. A chart reads ""I Love Kohli. Win or lose, we always love you""…",kokakatnoor,0,0,, 649 | 866232236802281473,Sun May 21 15:30:33 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/6LFgfUa9Hj,sportracksa,0,0,, 650 | 866232241248141314,Sun May 21 15:30:34 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,sukumar1706gma2,0,0,, 651 | 866232242401619968,Sun May 21 15:30:35 IST 2017,RT @CricketNDTV: Why Pune struck off 'S' from Supergiants ahead of #IPL 2017 https://t.co/Pinm19h8s5 https://t.co/0ywMpa8iQ6,DeepakChills,0,0,, 652 | 866232244142186496,Sun May 21 15:30:35 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,GuzzlersInc,0,0,, 653 | 866232251138404352,Sun May 21 15:30:37 IST 2017,Get your prediktions for Round 9 of the #IPL on @Predikta in before the match this afternoon! ➡️… https://t.co/QqNl4MNDe3,Predikta,0,0,, 654 | 866232257224232960,Sun May 21 15:30:38 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,imGunnu,0,0,, 655 | 866232260453965825,Sun May 21 15:30:39 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,avinash_shigwan,0,0,, 656 | 866232263041622016,Sun May 21 15:30:39 IST 2017,RT @IPL: #IPLFinal Preview by @statanalyst: @RPSupergiants vs @mipaltan - Match starts at 8 PM IST today…,ChiragCKO,0,0,, 657 | 866232265323429888,Sun May 21 15:30:40 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,salmanThala,0,0,, 658 | 866232267093532672,Sun May 21 15:30:40 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,VdVikasdaga,0,0,, 659 | 866232270138560512,Sun May 21 15:30:41 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,NayaganTweets,0,0,, 660 | 866232271258472448,Sun May 21 15:30:41 IST 2017,Mi will be win https://t.co/LF0CfvsZT0,bhimrao2595,0,0,, 661 | 866232284940181504,Sun May 21 15:30:45 IST 2017,RT @SirJadeja: Who Are You Supporting For #IPLfinal? #MI Or #RPS? My Vote For #RPS. Reason: #MSDhoni 🙏🏾 Vote & RT #IPL #IPL10 #MIvRPS #RP…,AtulRai52049677,0,0,, 662 | 866232288484278273,Sun May 21 15:30:46 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,pranav_bodani,0,0,, 663 | 866232307581161472,Sun May 21 15:30:50 IST 2017,RT @NeverEverGivUp_: Next RCB coach #IPL https://t.co/1n8h7qVGXP,yourpraharsh,0,0,, 664 | 866232312677224449,Sun May 21 15:30:51 IST 2017,.mipaltan will be hoping to win their third #IPL title by beating the Rising Pune Supergiant. https://t.co/haNpSGf0xd,ishtkam,0,0,, 665 | 866232314505961472,Sun May 21 15:30:52 IST 2017,RT @AngikaarC: My piece: Why @iamsrk has been the best team owner in the #IPL. #SRK https://t.co/wk0WzWtTlH,Mox1t,0,0,, 666 | 866232314799439873,Sun May 21 15:30:52 IST 2017,"RT @MumbaiMirror: #IPL 2017: @shantanum07​, @DheerajDhoopar ​and @Fernandes_Elena​ cheer up for their favourite @IPL teams this seaso…",greenaur,0,0,, 667 | 866232326858080256,Sun May 21 15:30:55 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,MianBil19382474,0,0,, 668 | 866232328468803584,Sun May 21 15:30:55 IST 2017,RT @hathayogi_: Whole story in one pic. #RpsvsMi #RPSvMI #IPLFinal https://t.co/gI2Zpci6e8,DeepakDehree,0,0,, 669 | 866232332339920896,Sun May 21 15:30:56 IST 2017,RT @CricketAus: Smith's heartfelt farewell to India: https://t.co/rce7NJCHyy #IPLFinal https://t.co/boau2MaqU2,brightonunion,0,0,, 670 | 866232336022556672,Sun May 21 15:30:57 IST 2017,All #ipl match is fixing. #mivsrps,realmdrubel,0,0,, 671 | 866232350786453505,Sun May 21 15:31:00 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,Aryan4018,0,0,, 672 | 866232354607517698,Sun May 21 15:31:01 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,pcee19,0,0,, 673 | 866232362748792832,Sun May 21 15:31:03 IST 2017,"RT @RPSupergiants: ""Any final you play, it's a huge honour"" - @danchristian54 Find out what our #Supergiants had to say about the…",ak2822745,0,0,, 674 | 866232380759134208,Sun May 21 15:31:08 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,raj_sowmi,0,0,, 675 | 866232382637998080,Sun May 21 15:31:08 IST 2017,@SteelyDan66 We're also counting on you to light up the sparks Danny!😎 Haha😉😁 I know you'll loove d atmosphere! #DannyInTheHouse #IPLFinal,iam_cgk,0,0,, 676 | 866232385230262274,Sun May 21 15:31:09 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/1hZK341IwL,ICCLivesTv,0,0,, 677 | 866232389697196032,Sun May 21 15:31:10 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,Athu_AtharvaN,0,0,, 678 | 866232390825369600,Sun May 21 15:31:10 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,News365247live,0,0,, 679 | 866232395284049920,Sun May 21 15:31:11 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,iabhi_hr,0,0,, 680 | 866232396810657792,Sun May 21 15:31:11 IST 2017,#ipl #IREvsNZ NZ: 27/0 (4.0 Ovs) Ronchi : 24/12. Latham : 2/12. Craig Young:2-0-20-0.,tweetcricscore,0,0,, 681 | 866232401462276096,Sun May 21 15:31:12 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,Ranjan15730984,0,0,, 682 | 866232405228703745,Sun May 21 15:31:13 IST 2017,.mipaltan will be hoping to win their third #IPL title by beating the Rising Pune Supergiant. https://t.co/sFy5TgMDn6,shashankS3007,0,0,, 683 | 866232406596104193,Sun May 21 15:31:14 IST 2017,RT @fwildecricket: Dhoni will be playing his 19th IPL Play Off match; equal most with Raina. Rohit will be playing his 16th - the third mos…,sscomp32,0,0,, 684 | 866232408990859264,Sun May 21 15:31:14 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,nagarajsana,0,0,, 685 | 866232424354660352,Sun May 21 15:31:18 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,srilekh12345678,0,0,, 686 | 866232426808446976,Sun May 21 15:31:19 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,RKsWarrior_,0,0,, 687 | 866232428184182784,Sun May 21 15:31:19 IST 2017,"@shubh_chintak @adlee_sharon @cricketaakash If he praise Smith instead of Dhoni or Rohit, they might throw him out… https://t.co/gP1QrYebNP",nikhilkalra_,0,0,, 688 | 866232428389687296,Sun May 21 15:31:19 IST 2017,Not one hopeful but also sure that @mipaltan will lift the trophy for the third time!! Hopeful to see @ImRo45 open and scoring runs.#IPL,imKrish1121,0,0,, 689 | 866232434026741760,Sun May 21 15:31:20 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,rubenlal65,0,0,, 690 | 866232441010143232,Sun May 21 15:31:22 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,GuzzlersInc,0,0,, 691 | 866232443254317056,Sun May 21 15:31:22 IST 2017,RT @SirJadeja: #IPL Is A Tournament Where Teams Compete To Face #MSDhoni In The Final. 🙏 #IPLfinal RT If Agree! Spread To Haters.…,KunalRajurkar1,0,0,, 692 | 866232446253019136,Sun May 21 15:31:23 IST 2017,"RT @RPSupergiants: We reached the #IPLFinal, but not without celebrating our victories on the way!😎 Which celebration did you like the…",AnilMan76749868,0,0,, 693 | 866232447989678080,Sun May 21 15:31:24 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,nisarg1999,0,0,, 694 | 866232452481781766,Sun May 21 15:31:25 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,CricCanonist,0,0,, 695 | 866232453454802945,Sun May 21 15:31:25 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,ankitti00279869,0,0,, 696 | 866232475206336512,Sun May 21 15:31:30 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,hemukj,0,0,, 697 | 866232477844729856,Sun May 21 15:31:31 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Subhash_Offl,0,0,, 698 | 866232478758981632,Sun May 21 15:31:31 IST 2017,RT @FaizanMSD: You are supporting #RPS just because of ??? #IPL #IPLfinal #MSDhoni #Smithy #RPSvMI #MIvRPS,FaizanMSD,0,0,, 699 | 866232494219173893,Sun May 21 15:31:35 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,WithRitesh,0,0,, 700 | 866232500301033472,Sun May 21 15:31:36 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",23a804c2cd7e46b,0,0,, 701 | 866232503539052544,Sun May 21 15:31:37 IST 2017,IPL 2017: Pandya brothers live their Mumbai Indians’ dream https://t.co/aJwmA92UY3 #MI #IPL https://t.co/92QtzIQ5vb,_DCSports,0,0,, 702 | 866232503862013952,Sun May 21 15:31:37 IST 2017,IPL 2017: Pandya brothers live their Mumbai Indians’ dream https://t.co/qGAgEmemrE #MI #IPL https://t.co/S4N0Aa9uKM,DeccanChronicle,0,0,, 703 | 866232504893812736,Sun May 21 15:31:37 IST 2017,#MI came top but are 0-3 overall in their games with #RPS in #IPL. Here's how they reached Sunday's final 2.45pm SS… https://t.co/cKG7XyHiy3,SkyCricket,0,0,, 704 | 866232507297124352,Sun May 21 15:31:38 IST 2017,RT @cricketaakash: Gambhir's captaincy makes every #KKR game worthy of observing closely...bowling changes/field placements. Top class. #IPL,wagmita_joshi,0,0,, 705 | 866232515241144320,Sun May 21 15:31:40 IST 2017,RT CricketNDTV: He once stood outside msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/LvAxUNDX61,banerjeerahul,0,0,, 706 | 866232515970957312,Sun May 21 15:31:40 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,nisarg1999,0,0,, 707 | 866232519322218496,Sun May 21 15:31:41 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,BaralSuvrajit,0,0,, 708 | 866232530348920833,Sun May 21 15:31:43 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,rdd_127,0,0,, 709 | 866232535159910401,Sun May 21 15:31:44 IST 2017,#ImRo45 all are with mumbai indians .its my favourite team since first season .Best of luck all guys .#Beli3ve… https://t.co/EZR0NehkkV,PRITAMPAN10,0,0,, 710 | 866232550401875969,Sun May 21 15:31:48 IST 2017,#IPLfinal Supporting RPS Only because of MSD & Confident enough he is going to carry the IPL Trophy for the 3rd time ✌#WithMahiAlways,adityadharbjp,0,0,, 711 | 866232550846590977,Sun May 21 15:31:48 IST 2017,A must win final match for @RPSupergiants and @realmadrid today in order to win their respective titles #IPLfinal #LaLiga 🏆⚽🏏 #BigFan,shashank1889,0,0,, 712 | 866232551593066496,Sun May 21 15:31:48 IST 2017,"@mipaltan Win, lose or tie, Mumbai Indians till I die! 💙 Just give your best and play good Cricket! 😇 #MIForever… https://t.co/b1314zp2PO",sejal_mokal,0,0,, 713 | 866232553182711808,Sun May 21 15:31:49 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,VdVikasdaga,0,0,, 714 | 866232556605321216,Sun May 21 15:31:49 IST 2017,RT @imDhoni_fc: Its time for #IPLFinal how many fans are excited to see #MSDhoni live in #IPL this evening.,Thalapathyian,0,0,, 715 | 866232557888708608,Sun May 21 15:31:50 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,sejal_mokal,0,0,, 716 | 866232581045444608,Sun May 21 15:31:55 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,AshwinReddy91,0,0,, 717 | 866232584899932161,Sun May 21 15:31:56 IST 2017,"RT @mipaltan: Focus, Paltan! We're going to go all out to win the #IPLfinal #CricketMeriJaan #BELI3VE https://t.co/Kfx7u6xNy0",todankar_rj,0,0,, 718 | 866232600247111680,Sun May 21 15:32:00 IST 2017,Win Pune #IPLfinal,GoutamNarottam,0,0,, 719 | 866232610426638338,Sun May 21 15:32:02 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",bhushan_deshkar,0,0,, 720 | 866232616827187204,Sun May 21 15:32:04 IST 2017,The latest The Introspect! https://t.co/IDHtAJF4FY Thanks to @KanchanGupta @SauravDatta29 @mishra_abhi #ipl #iplfinal,PratikR2811,0,0,, 721 | 866232617653481472,Sun May 21 15:32:04 IST 2017,#csk💪 #IPLFinal 😎 #MIvKKR agree if this #ipl got more TRP rating its made by one man #msdhoni turn the show wit fire more than last year👇😎,kiki_Artstew66,0,0,, 722 | 866232621163921408,Sun May 21 15:32:05 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,ndaga21,0,0,, 723 | 866232624372740096,Sun May 21 15:32:06 IST 2017,"#ipl #IREvsNZ George Dockrell, left-arm orthodox, comes into the attack",tweetcricscore,0,0,, 724 | 866232629107998721,Sun May 21 15:32:07 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,ItsBarnali,0,0,, 725 | 866232631071035394,Sun May 21 15:32:07 IST 2017,RT @Atheist_Krishna: Who will win IPL 2017? #POLL #IPLfinal,ItsMlchelleeeeK,0,0,, 726 | 866232632908107777,Sun May 21 15:32:08 IST 2017,RT @Sangy_Sagnik: #IPLfinal Hope the same thing will be seen in this year too😍😘 https://t.co/oxbHBNNZD3,tatebala,0,0,, 727 | 866232638151032833,Sun May 21 15:32:09 IST 2017,CHAMPIONS - 2008 #IPLfinal https://t.co/v6MQiIqWVh,VivoIPL_Info,0,0,, 728 | 866232651711000578,Sun May 21 15:32:12 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,GuzzlersInc,0,0,, 729 | 866232660271783936,Sun May 21 15:32:14 IST 2017,"If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won it twice #YarJaN_J",PCBCoverage,0,0,, 730 | 866232667217461248,Sun May 21 15:32:16 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,ravirajb21,0,0,, 731 | 866232681834479616,Sun May 21 15:32:19 IST 2017,RT @EtihadAirways: Good luck in the match tonight! #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/f2ubBNPk3H,Arif_Budimanto,0,0,, 732 | 866232686142271492,Sun May 21 15:32:20 IST 2017,Starting Of Real Game.... #cupidcondoms #playsafe #IPL #gamewinner #cricket https://t.co/ms1W2c1z3G via @GIPHY https://t.co/5tDxiInBqM,cupidcondoms,0,0,, 733 | 866232687622844416,Sun May 21 15:32:21 IST 2017,"RT @Madan_Chikna: People are supporting 3 things in today #IPLfinal #MI , #RPS & M. S. Dhoni.",Sidsayzz,0,0,, 734 | 866232719340183554,Sun May 21 15:32:28 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",gsivaramaraju,0,0,, 735 | 866232725765636097,Sun May 21 15:32:30 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,chhichhaledar,0,0,, 736 | 866232727187603456,Sun May 21 15:32:30 IST 2017,RT @ImRTripathi: Big game! Massive pressure! Little nervous bt will try 2 rise above all #IPLfinal #RangWahiJungNayi @RPSupergiants keep su…,AnilMan76749868,0,0,, 737 | 866232727921598464,Sun May 21 15:32:30 IST 2017,"RT @RPSupergiants: #Rahane is ready, #Supergiants are you? #RangWahiJungNayi #RPSvMI #IPLFinal https://t.co/WpBTIRbefE",iam_cgk,0,0,, 738 | 866232734275874817,Sun May 21 15:32:32 IST 2017,RT @IPL: FAN ALERT: #IPL and @TwitterIndia have launched the emoji for the grand final - #IPLfinal. Keep tweeting and celebr…,todankar_rj,0,0,, 739 | 866232755201245184,Sun May 21 15:32:37 IST 2017,"#IPLfinal whoever wins, there will be celebration in Deccan Queen Express!",DPrasanthNair,0,0,, 740 | 866232755721347074,Sun May 21 15:32:37 IST 2017,RT @IPL: In focus: Pandya Jr (@hardikpandya7 ) interviews Pandya Sr. @krunalpandya24 - by @28anand https://t.co/9zyFsPx3HA…,ItsBarnali,0,0,, 741 | 866232773371101184,Sun May 21 15:32:41 IST 2017,Sunday...The most awaited day of the week for me #IPLfinal #MIvsRPS,Twitty_Arpna,0,0,, 742 | 866232779192848384,Sun May 21 15:32:43 IST 2017,RT @SkyCricket: #MI came top but are 0-3 overall in their games with #RPS in #IPL. Here's how they reached Sunday's final 2.45pm SS…,Amrenderkang,0,0,, 743 | 866232782443339778,Sun May 21 15:32:43 IST 2017,RT @iamgarimasharma: Who will win this #IPLfinal??? Vote now. @mipaltan @IPL #IPL,iamgarimasharma,0,0,, 744 | 866232783403929600,Sun May 21 15:32:44 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,Aayushishaarmaa,0,0,, 745 | 866232794778918913,Sun May 21 15:32:46 IST 2017,RT @Madan_Chikna: Which team you are supporting today? #MIvRPS #RPSvMI #IPLfinal,DaMadHooker,0,0,, 746 | 866232801313472512,Sun May 21 15:32:48 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,hellommk,0,0,, 747 | 866232801405747201,Sun May 21 15:32:48 IST 2017,RT @ESPNcricinfo: Report - Kings XI lift playoff hopes with win over RCB https://t.co/SgvaihMcBk #RCBvKXIP #IPL,Suhas007,0,0,, 748 | 866232815133708288,Sun May 21 15:32:51 IST 2017,The countdown begins! The Fun and Excitement awaits! See you in Q-La at 4:00 PM! #COF17 #Topya #activefunacademy #ISL #IPLFinal,activefuna,0,0,, 749 | 866232833689387008,Sun May 21 15:32:56 IST 2017,#IPLfinal Support #mumbai,iam_Tharani,0,0,, 750 | 866232835652202496,Sun May 21 15:32:56 IST 2017,"RT @cricbuzz: Controlled ambition and discipline helped #KXIP stay afloat, writes @kaushik_cb #IPL #RCBvKXIP https://t.co/Qrn0zLkgEl",Suhas007,0,0,, 751 | 866232837720096768,Sun May 21 15:32:56 IST 2017,@mipaltan All the best #mi no matter you win or lose bcoz mumbai indians is team of happiness #eit20 #CricketMeriJaan #MIvRPS #IPLfinal,MaitreyaShinde,0,0,, 752 | 866232840144506880,Sun May 21 15:32:57 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,RahulNair8,0,0,, 753 | 866232860163710976,Sun May 21 15:33:02 IST 2017,RT @SkyCricket: #MI came top but are 0-3 overall in their games with #RPS in #IPL. Here's how they reached Sunday's final 2.45pm SS…,prashantbme,0,0,, 754 | 866232860683927552,Sun May 21 15:33:02 IST 2017,RT @ASBpod: *New* cricket #IPL2017 betting podcast @meatmansoccer + @kevshat preview Sunday's final #RPSvMI #IPL #India https://t.co/Ms4hnC…,kevshat,0,0,, 755 | 866232873690439680,Sun May 21 15:33:05 IST 2017,The day Last game for @RPSupergiants #IPL Will they beat @mipaltan 4th time in single season?I doubt. #BELI3VE #CricketMeriJaan #IPLfinal,miakshayk,0,0,, 756 | 866232879487082498,Sun May 21 15:33:06 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,kmdan2,0,0,, 757 | 866232880430813184,Sun May 21 15:33:07 IST 2017,#RPSvsMI The Big Final Pune #RangWahiJungNayi @RPsupergiantsFC Against Mumbai @mipaltan #Smithy vs #RohitSharma Who Will Win #ipl Title,thalapathyvjnk,0,0,, 758 | 866232891633696769,Sun May 21 15:33:09 IST 2017,"RT @cricketaakash: This #IPL started with 4 Indian & 4 Australian captains Ind-Rohit, GG, Zaheer, Raina Aus-Warner, Smith, Maxi & Watson Fi…",Amrenderkang,0,0,, 759 | 866232900177600512,Sun May 21 15:33:11 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,Shivani07300888,0,0,, 760 | 866232903088451584,Sun May 21 15:33:12 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,Amrenderkang,0,0,, 761 | 866232907412627456,Sun May 21 15:33:13 IST 2017,RT @HTSportsNews: #IPL2017 final just another game for @mipaltan coach @MahelaJay #IPL #IPLfinal https://t.co/VGFIxBioIh https://t.co/Qjtb…,pressexpress,0,0,, 762 | 866232908679217153,Sun May 21 15:33:13 IST 2017,"RT @IExpressSports: #IPL #RCBvKXIP Star-studded RCB crash to ninth defeat, fail to chase 138 against Punjab @shamik100 writes https://t…",Suhas007,0,0,, 763 | 866232922549792770,Sun May 21 15:33:17 IST 2017,RT @ani_digital: #IPLfinal : #RisingPuneSupergiant to take on #mumbaiindians in clash of the titans today Read @ANI_news story ->…,namo_namah23,0,0,, 764 | 866232935535476736,Sun May 21 15:33:20 IST 2017,RT @imkingson: #IPLfinal Who will lift the cup today ? 😎,aravinthdhoni26,0,0,, 765 | 866232938806992897,Sun May 21 15:33:21 IST 2017,RT @toisports: #IPL #IPL2017 #RCBvKXIP Haven't seen so many batting collapses in single season: @imVkohli https://t.co/ByBxLhp6jN https:/…,Suhas007,0,0,, 766 | 866232940065415169,Sun May 21 15:33:21 IST 2017,#IPLfinal | Which bowler will make the biggest impact in today's title clash? https://t.co/n4SNHMMwUE https://t.co/hWD65lujWg,HTSportsNews,0,0,, 767 | 866232941453729792,Sun May 21 15:33:21 IST 2017,"If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won it twice #YarJaN_J",PCBLiveUrdu,0,0,, 768 | 866232944599474177,Sun May 21 15:33:22 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,hemantjaiswal24,0,0,, 769 | 866232950144331776,Sun May 21 15:33:23 IST 2017,"If MI win v RPS they will become the first team to win the #IPL three times, moving clear of CSK & KKR who have both won it twice #YarJaN_J",Official_kohli,0,0,, 770 | 866232952551645184,Sun May 21 15:33:24 IST 2017,Good Luck to both teams for the Final match of @IPL #iplfinal2017 #RPSvsMI #ipl,cricwinners1786,0,0,, 771 | 866232960260882433,Sun May 21 15:33:26 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,Sreyas09000224,0,0,, 772 | 866232968582508544,Sun May 21 15:33:28 IST 2017,RT @IPL: CHAMPIONS - 2008 #IPLfinal https://t.co/B60ok2HPXg,MahendraR1408,0,0,, 773 | 866232970314563584,Sun May 21 15:33:28 IST 2017,RT @ZeeNewsSports: WATCH: KXIP's @amlahash walks off despite no appeal from RCB bowler or wicket-keeper #RCBvKXIP #IPL…,Suhas007,0,0,, 774 | 866232977709297664,Sun May 21 15:33:30 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,Raj7890Gupta,0,0,, 775 | 866232984072065025,Sun May 21 15:33:31 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,iam_Tharani,0,0,, 776 | 866232986534125568,Sun May 21 15:33:32 IST 2017,RT @bayside_journal: Will @RPSupergiants stop @mipaltan from winning their 3rd trophy? https://t.co/0PG4YfQrL5 #BaysideJournal #IPLfinal…,Helloadele4Mane,0,0,, 777 | 866232987964252160,Sun May 21 15:33:32 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,sasist54,0,0,, 778 | 866232991122563072,Sun May 21 15:33:33 IST 2017,RT @cricbuzz: Can @RPSupergiants cash in on their psychological head-to-head advantage over @mipaltan? Preview by @kaushik_cb #IPL https://…,farukh_genius,0,0,, 779 | 866232992347193344,Sun May 21 15:33:33 IST 2017,RT @fwildecricket: MI have played in 13 Play Off matches in the IPL and 17 in the IPL and CLT20 combined. RPS have played in one. #IPL #IPL…,GuzzlersInc,0,0,, 780 | 866232994545229824,Sun May 21 15:33:34 IST 2017,I want @RPSupergiants to win this #IPLfinal just for this one man @msdhoni #MSDhoni,PiyushRathod1,0,0,, 781 | 866232994587185152,Sun May 21 15:33:34 IST 2017,RT @imkingson: #IPLfinal Who will lift the cup today ? 😎,gowthamvjfan,0,0,, 782 | 866232998982811648,Sun May 21 15:33:35 IST 2017,RT @ESPNcricinfo: The openers in our all-time #IPLXI: @henrygayle and @virendersehwag https://t.co/14r1xbOEEw #IPL https://t.co/FTBzAckoei,abdullasnr,0,0,, 783 | 866233008809889793,Sun May 21 15:33:37 IST 2017,RT @toisports: #IPL #IPL2017 #RCBvKXIP WATCH: @sandeep25a scalps big three to keep @lionsdenkxip in the mix ▶️…,Suhas007,0,0,, 784 | 866233013922807808,Sun May 21 15:33:39 IST 2017,RT @mipaltan: 1⃣ final hurdle! Send your wishes for the players using #BELI3VE! #CricketMeriJaan #IPLfinal https://t.co/vIW4azszjE,ranjishks,0,0,, 785 | 866233033485058049,Sun May 21 15:33:43 IST 2017,RT @chiku_ravi: @Rushi99abhang @Kohlii_Kohli @NiranjanRaina @meru8753 @ImP_Swaroop @ImAditya_MSD @ps_peepspays @I_prithvi…,gitanjali_18,0,0,, 786 | 866233056780206081,Sun May 21 15:33:49 IST 2017,"RT @dna: WATCH: 'Haven't seen so many batting collapses in single season, it really hurts,' says #Viratkohli…",Suhas007,0,0,, 787 | 866233068566319104,Sun May 21 15:33:52 IST 2017,RT @mipaltan: Ready to do this? 💪 #CricketMeriJaan #BELI3VE #IPLfinal https://t.co/RvNYyQqfxO,9685759464arvi1,0,0,, 788 | 866233082046808064,Sun May 21 15:33:55 IST 2017,RT @cricketaakash: Who are you backing for today's #IPL final?,Amrenderkang,0,0,, 789 | 866233082717851648,Sun May 21 15:33:55 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",UrstruelyAsif,0,0,, 790 | 866233085515382784,Sun May 21 15:33:56 IST 2017,RT @HTSportsNews: #IPLfinal | Which bowler will make the biggest impact in today's title clash? https://t.co/n4SNHMMwUE https://t.co/hWD65l…,htTweets,0,0,, 791 | 866233090666106881,Sun May 21 15:33:57 IST 2017,Match day #IPLfinal #IPL2017 #RPSvMI @msdhoni @stevesmith49.,nawaB_PArthu,0,0,, 792 | 866233107732496384,Sun May 21 15:34:01 IST 2017,#DangalOnZeeTV #IPLfinal #SNLFinale #HappySunday What a sunday :) https://t.co/U6HdQIrbcs,sumitjain24,0,0,, 793 | 866233114565259264,Sun May 21 15:34:03 IST 2017,So whom are you supporting today... ReTweet for DHONI Like for ROHIT 💙 #IPLfinal  #MIvRPS #IPL2017Final #IPL10 #MI #RPS #,visholic,0,0,, 794 | 866233131107483648,Sun May 21 15:34:06 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,mukeshpitwas,0,0,, 795 | 866233136274735104,Sun May 21 15:34:08 IST 2017,RT @shayamalv: my heart is hoping for #MI my head is saying #RPS #IPLFinal #IPL10,Samvit13,0,0,, 796 | 866233139508768768,Sun May 21 15:34:08 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,SHUBH_AD,0,0,, 797 | 866233142360760321,Sun May 21 15:34:09 IST 2017,RT @imWrong45: RT if you want #IPLfinal to end like this. https://t.co/jZ8NwlaZMX,BeingRohiit,0,0,, 798 | 866233144332005376,Sun May 21 15:34:10 IST 2017,RT @SirJadeja: Just Waiting For #MSDhoni To Lift The #IPL Trophy Today. RT If You're Supporting #Dhoni's Team.🙏🏾 #IPL #IPL10…,doc_nationalist,0,0,, 799 | 866233156000653312,Sun May 21 15:34:12 IST 2017,My all-time #IPL  Dream XI Gayle Sehwag Kohli Rohit Raina Dhoni (C & WK) Bravo Narine Mishra Malinga Bhuvneshwar,Cricrajeshpk,0,0,, 800 | 866233161650405376,Sun May 21 15:34:14 IST 2017,RT @msdfansofficial: Because RPS(Pune) means Team #MSDhoni  for us 🚁#IPLFINAL  #RPSvMI https://t.co/s5WM8iYlqZ,RoneyRao,0,0,, 801 | 866233163302842368,Sun May 21 15:34:14 IST 2017,Hindustan Times app download https://t.co/pMI2La7DKI #LetsTalkAboutRacism #IPLfinal https://t.co/N6s19vEF5m,googleplay_wow,0,0,, 802 | 866233172937195520,Sun May 21 15:34:16 IST 2017,Young man has shown courage. Cool. And. Hits well. Good luck today https://t.co/oT8zNkV3Zu,ambrishgupta11,0,0,, 803 | 866233174375923713,Sun May 21 15:34:17 IST 2017,RT @gauravkapur: Enough reasons to support and cheer for both teams this evening. So I'll just hope that it's a high adrenalin #IPLFinal #M…,Amrenderkang,0,0,, 804 | 866233178654167040,Sun May 21 15:34:18 IST 2017,RT @iam_K_A: #Thala Mania Everywhere!! During Yesterday's #MIvKKR #IPL Qualifier 2. #Vivegamteaser - NEVER EVER GIVE UP…,Ajithkumar8870,0,0,, 805 | 866233180906336256,Sun May 21 15:34:18 IST 2017,"RT @Shahrcasm: #RPS Fans If It Wins ~ Dhoni's Team Won, Smith Naam Ka Captain Tha Sirf.. If It Loses ~ Aur Karo Sack Dhoni Ko, Acha Hua..…",lankesh_7,0,0,, 806 | 866233188246487040,Sun May 21 15:34:20 IST 2017,@mipaltan If @ImRo45 scores a fifty I will not be able to express my feeling and happiness Hopeful to see a run feast by him😀😉#IPL,imKrish1121,0,0,, 807 | 866233193476767745,Sun May 21 15:34:21 IST 2017,RT @CricketNDTV: He once stood outside @msdhoni's house as a fan. Now they are teammates #ipl #RPSvsMI https://t.co/aCiiBx1RSI,ambrishgupta11,0,0,, 808 | 866233198946209792,Sun May 21 15:34:23 IST 2017,"Rohit at 5 is waste either have Raina or Rohit, put Warner in place of Gayle and Yusuf at 5 Rohit at 4 drop Raina https://t.co/DZAgaWgM4a",glassofdecaf,0,0,, 809 | 866233213420810240,Sun May 21 15:34:26 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,senthilk77,0,0,, 810 | 866233213743620096,Sun May 21 15:34:26 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",layeraccount,0,0,, 811 | 866233217669406720,Sun May 21 15:34:27 IST 2017,Can the boys do it again tonight? #ipl #rps #india #final https://t.co/AeaFtIqvXY,Uz_Khawaja,0,0,, 812 | 866233226179694592,Sun May 21 15:34:29 IST 2017,"Guys, anyone watching the #IPLfinal tonight ? Whom are you supporting ??? #IPL",ItsBarnali,0,0,, 813 | 866233232546684930,Sun May 21 15:34:31 IST 2017,RT @RaviShastriOfc: 7 #IPL finals in a decade of the IPL. Baap Re Baap. That's finishing off in style. The ultimate IPL BOSS -…,MohsinsngSaifi,0,0,, 814 | 866233245091774464,Sun May 21 15:34:34 IST 2017,RT @HTSportsNews: #IPLfinal | Which bowler will make the biggest impact in today's title clash? https://t.co/n4SNHMMwUE https://t.co/hWD65l…,jwa_09,0,0,, 815 | 866233245448327168,Sun May 21 15:34:34 IST 2017,"RT @Fap_Daily_IN: #IPLfinal:If #RPS Wins Today's Final, I'll DM #Kajal's Hottest Pics Ever Who Retweets This Tweet !! #IPL2017…",ashok561,0,0,, 816 | 866233258849091584,Sun May 21 15:34:37 IST 2017,"It all comes down to whether MI manage to evade Sachin's special screening of his film to them, and instead get to focus on the match. #IPL",playstraight,0,0,, 817 | 866233263441952770,Sun May 21 15:34:38 IST 2017,"RT @HaramiParindey: #IPL will be over tonight. So, Heera Thakur has made it loud and clear. https://t.co/cFUqa405ni",iamnadzz,0,0,, 818 | 866233270937243649,Sun May 21 15:34:40 IST 2017,RT @SirJadeja: RT If You're Supporting Rising Pune Supergiant Just Because Of #MSDhoni 🙏🏾 #IPLfinal #IPL #MIvRPS #RPSvMI…,GarryJi9,0,0,, 819 | 866233271511769088,Sun May 21 15:34:40 IST 2017,RT @HTSportsNews: #IPLfinal | Which bowler will make the biggest impact in today's title clash? https://t.co/n4SNHMMwUE https://t.co/hWD65l…,linlanee_luli,0,0,, 820 | 866233276603695104,Sun May 21 15:34:41 IST 2017,#ipl #LANCSvsYORKS YORKS: 423/8 (139.5 Ovs) : /. J Brooks : 95/138. T Bailey:31.5-5-108-4. Day 3: 1st Session,tweetcricscore,0,0,, 821 | 866233277379751936,Sun May 21 15:34:41 IST 2017,"#ipl #LANCSvsYORKS Bailey to Jack Leaning, out Caught by McLaren!! Jack Leaning c McLaren b Bailey 118(290) [4s-7 6s-2]",tweetcricscore,0,0,, 822 | 866233293427036160,Sun May 21 15:34:45 IST 2017,RT @mipaltan: "We're going to treat it like any other game!" The coach @MahelaJay cuts a calm figure ahead of the #IPLfinal…,khusbur7,0,0,, 823 | 866233302067290114,Sun May 21 15:34:47 IST 2017,RT @RPSupergiants: Sunday will indeed be another Maharashtra Derby as we face @mipaltan for the 4th & last time this #IPL season! #IPLFinal…,BeingSalluFan_,0,0,, 824 | 866233302532866048,Sun May 21 15:34:47 IST 2017,"RT @IExpressSports: #IPL #RCBvKXIP WATCH: Hashim Amla shows true sportsmanship, walks despite no appeal https://t.co/hqda9Xjgui",Suhas007,0,0,, 825 | 866233302793039872,Sun May 21 15:34:47 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,priyamudan_vj,0,0,, 826 | 866233317066145792,Sun May 21 15:34:51 IST 2017,Catch the sensational #LIVEScreening of #IPL #FINAL on BIG SCREEN only at #MamaLoca ! Come prior and set the mood... https://t.co/hIyD3XqTer,MamaLocaInd,0,0,, 827 | 866233317854728192,Sun May 21 15:34:51 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,MouMukherjee13,0,0,, 828 | 866233331926654976,Sun May 21 15:34:54 IST 2017,RT @Uz_Khawaja: Can the boys do it again tonight? #ipl #rps #india #final https://t.co/AeaFtIqvXY,Nihalhaider7,0,0,, 829 | 866233338893410304,Sun May 21 15:34:56 IST 2017,RT @vote_machine: Which team will win #IPL2017 ? Retweet ---> #RisingPuneSupergiant Like ---> #MumbaiIndians #MIvsRPS #RPSvsMI…,imk_bell,0,0,, 830 | 866233350968807424,Sun May 21 15:34:59 IST 2017,@manjumathur1 want @RPSupergiants to win but also want them to lose because of Goenka...only MSD matters 😊 hope he does well #IPLfinal ✌,arindM11,0,0,, 831 | 866233355074973696,Sun May 21 15:35:00 IST 2017,RT @YESBANK: Who do think will win the coveted #IPL 2017 trophy this year? #INDIAboleYES to #IPLFinal,rajeshrharma,0,0,, 832 | 866233357314662400,Sun May 21 15:35:00 IST 2017,RT @igtamil: Who will be winner today ? #IPLfinal #Dhoni,chandru0117,0,0,, 833 | 866233366672179200,Sun May 21 15:35:03 IST 2017,RT @Cricrajeshpk: My all-time #IPL  Dream XI Gayle Sehwag Kohli Rohit Raina Dhoni (C & WK) Bravo Narine Mishra Malinga Bhuvneshwar,CricketLuvInd,0,0,, -------------------------------------------------------------------------------- /src/test/resources/workflow.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": { 3 | "source_type": "CSV", 4 | "dir": "s3://data/tweet", 5 | "meta_info": { 6 | "schema": "mentioned below>>", 7 | "text_field": "text", 8 | "date_field": "date", 9 | "author_field": "author_name" 10 | } 11 | }, 12 | "validation": [ 13 | "COLUMN_VALIDATION", 14 | "FIELD_VALIDATION" 15 | ], 16 | "transformation": [ 17 | "SENTIMENT_ANALYSIS" 18 | ], 19 | "schemaValidation": [ 20 | "DATA_MODEL_VALIDATION" 21 | ], 22 | "saveTo": { 23 | "storage": "ES", 24 | "meta_info": { 25 | "index": "data_index", 26 | "type": "twitter", 27 | "anomaly_data_index": "anomaly_data_index" 28 | } 29 | }, 30 | "postProcessing": [ 31 | "SEND_EMAIL_NOTIFICATION" 32 | ] 33 | } 34 | 35 | /* 36 | {"schema":{"fields":[{"name":"id","dataType":"StringType","nullable":false}, 37 | {"name":"date","dataType":"DateType","nullable":false}, 38 | {"name":"text","dataType":"StringType","nullable":false}, 39 | {"name":"author_name","dataType":"StringType","nullable":false}, 40 | {"name":"retweets","dataType":"IntType","nullable":false}, 41 | {"name":"likes","dataType":"IntType","nullable":false} 42 | ] 43 | }*/ 44 | -------------------------------------------------------------------------------- /src/test/scala/com/techmonad/pipeline/SparkSupport.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline 2 | 3 | import org.apache.commons.lang.RandomStringUtils 4 | import org.apache.spark.{SparkConf, SparkContext} 5 | 6 | import scala.util.control.NonFatal 7 | 8 | 9 | trait SparkSupport { 10 | 11 | def withSparkContext(spec: (SparkContext => Unit)) = { 12 | val conf = new SparkConf().setAppName("SparkSupport- " + RandomStringUtils.random(20)) 13 | .setMaster("local[4]") 14 | .set("spark.default.parallelism", "1") 15 | val sc: SparkContext = new SparkContext(conf) 16 | try 17 | spec(sc) 18 | catch { 19 | case NonFatal(th) => 20 | sc.stop() 21 | throw th 22 | 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/test/scala/com/techmonad/pipeline/reader/ReaderSpec.scala: -------------------------------------------------------------------------------- 1 | package com.techmonad.pipeline.reader 2 | 3 | import com.techmonad.pipeline.util.Status 4 | import com.techmonad.pipeline.{Record, SparkSupport} 5 | import org.scalatest.{Matchers, WordSpec} 6 | 7 | 8 | class ReaderSpec extends WordSpec with Matchers with SparkSupport { 9 | 10 | 11 | "Reader " should { 12 | "read csv " in withSparkContext { implicit spark => 13 | val csvData: Array[Record] = CSVReader.read("""src/test/resources/csv/tweet.csv""", ',').collect() 14 | csvData.length shouldBe 832 15 | csvData.filter(_.status != Status.ERROR).length shouldBe 832 16 | csvData.filter(_.status == Status.OK).foreach(println) 17 | 18 | 19 | } 20 | 21 | } 22 | } 23 | --------------------------------------------------------------------------------