twilight

Twitter Streaming API tools and data transformations for Node.js

https://github.com/chbrown/twilight

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.4%) to scientific vocabulary
Last synced: 11 months ago · JSON representation

Repository

Twitter Streaming API tools and data transformations for Node.js

Basic Info
  • Host: GitHub
  • Owner: chbrown
  • Language: TypeScript
  • Default Branch: master
  • Homepage:
  • Size: 195 KB
Statistics
  • Stars: 13
  • Watchers: 1
  • Forks: 0
  • Open Issues: 1
  • Releases: 0
Created over 13 years ago · Last pushed almost 2 years ago
Metadata Files
Readme

README.md

twilight

Tools for accessing the Twitter API v1.1 with paranoid timeouts and de-pagination.

Node.js

  • twitter-curl for querying the streaming API (/sample.json and /filter.json).
  • rtcount for pulling out the retweets from a stream of JSON tweets, and counting them.

Python

  • json2ttv2 converts directories full of Twitter .json files into .ttv2 files, bzip2'ing them, and ensuring that the result is within a reasonable size of the source (greater than 2%, but less than 6%) before deleting the original json.
  • twitter-user pulls down the ~3,200 (max) tweets that are accessible for a given user (also depends on the ~/.twitter auth file).

Crawling quickstart

Install from npm:

npm install -g twilight

Or github (to make sure you're getting the most up-to-date version):

npm install -g git://github.com/chbrown/twilight

Authenticate

This app uses only OAuth 1.0A, which is mandatory. As of June 11, 2013, basic HTTP authentication is disabled in the Twitter Streaming API. So get some OAuth credentials together real quick and make a csv file that looks like this:

| consumerkey | consumersecret | accesstoken | accesstoken_secret | |--------------|-----------------|--------------|---------------------| | ziurk0An7... | VKmTsGrk2JjH... | 91505165... | VcLOIzA0mkiCSbU... | | 63Yp9EG4t... | DhrlIQBMUaoL... | 91401882... | XJa4HQKMgqfd7ee... | | ... | ... | ... | ... |

There must be a header line with exactly the following values:

  • consumer_key
  • consumer_secret
  • access_token
  • accesstokensecret

Tab / space seperated is fine, and any other columns will simply be ignored, e.g., if you want to record the screen_name of each account. Also, order doesn't matter -- your headers just have to line up with their values.

The twitter-curl script expects to find this file at ~/.twitter, but you can specify a different path with the --accounts command line argument.

From my /etc/supervisor/conf.d/*

(See http://supervisord.org/ to get that all set up.)

bash [program:justinnnnnn] user=chbrown command=twitter-curl --filter "track=loveyabiebs,belieber,bietastrophe" --file /data/twitter/justin_TIMESTAMP.json --timeout 86400 --interval 3600 --ttv2

twitter-curl options

  • --accounts should point to a file with OAuth Twitter account credentials. Currently, the script will simply use a random row from this file.
  • --filter can be any track=whatever or locations=-18,14,68,44 etc. A querystring-parsable string. If no filter is specified, it will use the spritzer at /sample.json
  • --file shouldn't require creating any directions, and the TIMESTAMP bit will be replaced by a filesystem-friendly iso representation of whenever the program is started.

javascript // Specifically: var stamp = new Date().toISOString().replace(/:/g, '-').replace(/\..+/, ''); // stamp == '2013-06-07T15-47-49'

  • --timeout (seconds) the program will die with error code 1 after this amount of time. Don't specify a timeout if you don't want this.
  • --interval (seconds) the amount of time to allow for silence from Twitter before dying. Also exits with code 1. Defaults to 600 (10 minutes).
  • --ttv2 (boolean) output TTV2 normalized flat tweets instead of full JSON.

Because in most cases of error the script simply dies, this approach only really makes sense if you're putting it behind some process monitor. (By the way, I've tried most of them: monitd, daemontools's svc, god, bluepill, node-forever---and supervisord is by far the best.)

The script does not abide by any Twitter backoff requirement, but I've never had any trouble with backoff being enforced by Twitter. It's more than curl, though, because it checks that it's receiving data. Often, with curl and PycURL, my connection would be dropped by Twitter, but no end signal would be sent. My crawler would simply hang, expecting data, but would not try to reconnect.

But beyond that, without --ttv2, it doesn't provide anything more than curl.

TTV2

TTV2 is the Tweet tab-separated format version 2, the specification is below. Fields are 1-indexed for easy AWKing (see Markdown source for 0-indexing).

  1. tweet_id
  2. created_at parsed into YYYYMMDDTHHMMSS, implicitly UTC
  3. text, newlines and tabs converted to spaces, html entities replaced, t.co urls resolved
  4. lon,lat
  5. place_id
  6. place_str
  7. inreplytostatusid
  8. inreplytoscreenname
  9. retweet_id id of the original tweet
  10. retweet_count
  11. user.screen_name
  12. user.id
  13. user.created_at parsed into YYYYMMDDTHHMMSS
  14. user.name
  15. user.description
  16. user.location
  17. user.url
  18. user.statuses_count
  19. user.followers_count
  20. user.friends_count
  21. user.favourites_count
  22. user.geo_enabled
  23. user.default_profile
  24. user.time_zone
  25. user.lang
  26. user.utc_offset

This format is not the default, and will be the output only when you use the --ttv2 option.

Examples

Install json first: npm install json. It's awesome.

twilight stream --filter 'track=bootstrap' | jq -r -c .text
twilight stream --filter 'track=bootstrap' | jq -c '{user.screen_name, text}'
twilight stream --filter 'track=انتخابات' | jq -r -c .text
twilight stream --filter 'track=sarcmark,%F0%9F%91%8F' | jq -r -c .text

It supports unicode: انتخابات is Arabic for "elections," and decodeURIComponent('%F0%9F%91%8F') is the "CLAPPING HANDS" (U+1F44F) character.

If you use a filter with url-escaped characters in supervisord, note that supervisord Python-interpolates strings, so you'll need to escape the percent signs, e.g.:

[program:slowclap]
command=twitter-curl --filter "track=%%F0%%9F%%91%%8F" --file /tmp/slowclap.json

TTV2 Example

Instead of JSON, you can use AWK to look at the TTV2:

twitter-curl --filter 'track=data,science' --ttv2 | awk 'BEGIN{FS="\t"}{print $4,$3}'

Stats

  • RSS usage per-process is between 20-40MB.
  • VSZ on a machine running six of these crawlers is 80-90MB.

License

Copyright 2011-2015 Christopher Brown. MIT Licensed.

Owner

  • Name: Christopher Brown
  • Login: chbrown
  • Kind: user
  • Location: New York, NY

GitHub Events

Total
Last Year

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 148
  • Total Committers: 1
  • Avg Commits per committer: 148.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 2
  • Committers: 1
  • Avg Commits per committer: 2.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Christopher Brown io@h****m 148
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 1
  • Total pull requests: 2
  • Average time to close issues: 10 days
  • Average time to close pull requests: 9 months
  • Total issue authors: 1
  • Total pull request authors: 1
  • Average comments per issue: 1.0
  • Average comments per pull request: 0.5
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 2
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • Shaboo (1)
Pull Request Authors
  • dependabot[bot] (2)
Top Labels
Issue Labels
Pull Request Labels
dependencies (2)

Packages

  • Total packages: 2
  • Total downloads:
    • npm 43 last-month
    • pypi 40 last-month
  • Total dependent packages: 1
    (may contain duplicates)
  • Total dependent repositories: 5
    (may contain duplicates)
  • Total versions: 38
  • Total maintainers: 1
npmjs.org: twilight

Twitter API tools

  • Versions: 34
  • Dependent Packages: 1
  • Dependent Repositories: 3
  • Downloads: 43 Last month
Rankings
Dependent repos count: 6.4%
Stargazers count: 8.8%
Average: 14.6%
Forks count: 15.5%
Dependent packages count: 21.1%
Downloads: 21.2%
Maintainers (1)
Last synced: 11 months ago
pypi.org: twilight

Twitter (crawling) tools.

  • Homepage: http://github.com/chbrown/twilight
  • Documentation: https://twilight.readthedocs.io/
  • License: Copyright (c) 2011-2013 Christopher Brown Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  • Latest release: 0.3.10
    published about 12 years ago
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 40 Last month
Rankings
Dependent packages count: 10.0%
Dependent repos count: 11.6%
Stargazers count: 15.6%
Average: 19.1%
Downloads: 28.5%
Forks count: 29.8%
Maintainers (1)
Last synced: 11 months ago

Dependencies

package.json npm
  • babel-core ^5.0.0 development
  • declarations * development
  • istanbul * development
  • mocha * development
  • typescript * development
  • lodash ^3.10.1
  • loge ^1.0.4
  • request ^2.67.0
  • streaming 1.0.3
  • sv 0.3.9
  • yargs ^3.31.0