0.0.3 ā€¢ Published 4 years ago

reuters-dataset v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

reuters-dataset

šŸ—žļø A tool for downloading and parsing Reuters-21578. These are a collection of documents that appeared on Reuters newswire back in 1987.

code style: prettier

šŸ”„ Features

  • Asynchronously caches the full dataset to your temporary directory.
    • This reduces your project size.
  • Prettifies the results.
    • Uses proper JSON naming conventions and common-sense values.

šŸš€ Getting Started

Using npm:

npm install --save reuters-dataset

Using yarn:

yarn add reuters-dataset

āœļø Usage

import getReutersDataset from 'reuters-dataset';

(
  async () => {
    const { exchanges, orgs, people, places, topics, articles } = await getReutersDataset();
  }
)();

šŸ“Œ Example

{
  "$": {
    "topics": true,
    "lewissplit": "TRAIN",
    "cgisplit": "TRAINING-SET",
    "oldid": "5544",
    "newid": "1"
  },
  "topics": ["cocoa"],
  "places": ["el-salvador", "usa", "uruguay"],
  "people": [],
  "orgs": [],
  "exchanges": [],
  "companies": [],
  "text": {
    "title": "BAHIA COCOA REVIEW",
    "dateline": "SALVADOR, Feb 26 -",
    "body": "Showers continued throughout [...]"
  },
  "date": "1987-02-26T15:01:01.790Z"
}

āœŒļø License

MIT

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago