File: rtweet-package.R

package info (click to toggle)
r-cran-rtweet 2.0.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,068 kB
  • sloc: sh: 13; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#' rtweet: Collect Twitter data from R
#'
#' @description 
#' rtweet provides users a range of functions designed to extract data
#' from Twitter's REST and streaming APIs. It has three main goals:
#'
#' * Formulate and send requests to Twitter's REST and stream APIs.
#' * Retrieve and iterate over returned data.
#' * Wrangling data into tidy structures.
#' 
#' Get started by reading `vignette("rtweet")`.
#' 
#' @keywords internal
"_PACKAGE"

#' @import rlang
NULL

# The internal environment where state of the app is stored.
.state <- new.env(parent = emptyenv())