npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

livesey-data-parser

v1.0.3

Published

A financial data parser designed for scraping and extracting key metrics and information from various financial websites. Optimized for handling large datasets and multiple requests with proxy support, rotating proxies, and task queue management.

Downloads

216

Readme

livesey-data-parser

version license Node

Overview

livesey-data-parser is a powerful financial data parser designed for web scraping and data extraction from various financial websites. This module is optimized for large datasets, supports proxies (with rotating proxies), and manages request rates through task queues.

Features

  • 🌐 Web scraping: Scrape financial data from multiple sources.
  • 📊 Data extraction: Extract key metrics from raw HTML using customizable regular expressions.
  • 🚀 High performance: Optimized for multiple concurrent requests with rate limiting.
  • 🔁 Proxy support: Rotate proxies for distributed and anonymous scraping.
  • 🎯 Queue management: Manage scraping tasks with built-in task queue functionality.

Installation

npm install livesey-data-parser

Usage

Basic Example

Here is how to use the Parser class to scrape a financial website and extract data:

import { Parser } from 'livesey-data-parser';

const url = 'https://example.com';
const parser = Parser.parser(url, 10, 3); // 10 requests per hour, 3 concurrent tasks

const dataConfig = {
  title: '<title>(.*?)</title>',
  content: '<div id="content">(.*?)</div>',
};

(async () => {
  await parser.fetchHTML();  // Fetch the HTML content
  parser.parseData(dataConfig);  // Parse data based on provided regex
  parser.printData();  // Output parsed data
})();

Proxy Rotation Example

If you're scraping large datasets, proxy rotation is essential to avoid getting blocked. Here's an example of using proxy rotation:

import { ProxyRotation } from 'livesey-data-parser';

const proxies = ['http://proxy1:8080', 'http://proxy2:8080'];

const proxyManager = new ProxyRotation(proxies, { method: 'roundRobin', timeout: 5000 });

(async () => {
  const proxy = await proxyManager.rotate();  // Fetch the next proxy in round-robin
  console.log(`Using proxy: ${proxy}`);
})();

Queue Management Example

For large-scale scraping operations, the task queue can manage concurrent requests. Here's an example of how to queue and process multiple URLs:

import { Parser } from 'livesey-data-parser';

const parser = Parser.parser('https://example.com', 5, 2);  // 5 requests per hour, 2 concurrent tasks

const urls = [
  'https://example.com/page1',
  'https://example.com/page2',
  'https://example.com/page3'
];

let processedUrls = 0;

const taskProcessor = async (task) => {
  try {
    parser.setUrl(task.url);   // Update the parser URL
    await parser.fetchHTML();  // Fetch the HTML
    const data = parser.extractValue(/<h1>(.*?)<\/h1>/);  // Extract data from the page
    console.log(`Processed: ${data}`);
    processedUrls++;
  } catch (error) {
    console.error('Error processing task:', error.message);
  }
};

// Add URLs to the queue
urls.forEach(url => {
  parser.queue.add(() => taskProcessor({ url }));
});

// Wait for all tasks to finish
parser.queue.drain(() => {
  if (processedUrls === urls.length) {
    console.log('All URLs processed successfully');
  } else {
    console.error('Some URLs failed to process');
  }
});

API Reference

Parser

  • Constructor: new Parser(url, maxRequestsPerHour = 4, concurrency = 1, wait = 5000, timeout = 10000, httpClient = null)
  • Methods:
    • fetchHTML(): Fetch the HTML content of the target URL.
    • parseData(object): Parse the HTML based on the provided regular expressions.
    • queueFetch(urls): Add multiple URLs to the task queue for scraping.
    • printData(): Print the parsed data in a readable format.
    • setUrl(url): Set or update the URL to be scraped.

ProxyRotation

  • Constructor: new ProxyRotation(proxies = [], options = {})
  • Methods:
    • rotate(): Rotate proxies in round-robin fashion.
    • randomRotate(): Select a random proxy from the list.
    • rotateWithExclusion(): Rotate proxies, ensuring proxies are not reused before all have been rotated.
    • addProxy(proxy): Add a new proxy to the list.
    • removeProxy(proxy): Remove a proxy from the list.

Queue

  • Constructor: new Queue(concurrency)
    • concurrency: Maximum number of tasks to run in parallel.
  • Methods:
    • add(task): Add a task to the queue. The task should be a function that returns a promise.
    • drain(listener): Register a listener to be called when all tasks are processed.

In this updated queue system, the tasks are added using the add() method, and the processing is handled inside the provided task function. The drain() method ensures the code waits for all tasks to finish before proceeding.

Running Tests

To run the tests, use the following command:

npm run test

Contributing

We welcome contributions! Please follow these steps:

  1. Fork the repository.
  2. Create a new feature branch (git checkout -b feature/my-new-feature).
  3. Commit your changes (git commit -m 'Add some feature').
  4. Push to the branch (git push origin feature/my-new-feature).
  5. Open a pull request.

License

This project is licensed under the ISC License. See the LICENSE file for details.


This `README.md` provides a concise and structured overview of your `livesey-data-parser` module with instructions for installation, usage examples, API reference, and contribution guidelines. Let me know if you'd like to adjust anything! 😊