Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

austin-showlist-scraper

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

austin-showlist-scraper

Scrape austinshowlist.com for upcoming shows

  • 0.1.0
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

Austin Showlist Scraper

Scrape austinshowlist.com for upcoming shows in Austin, TX.

Installation

$ npm install --save austin-showlist-scraper

Usage

The method AustinShowlistScraper#upcoming() returns a Promise<Iterable<Show>>:

import AustinShowlistScraper from 'austin-showlist-scraper';

async function go()
{
  let scraper = new AustinShowlistScraper();
  let shows = await scraper.upcoming();

  for (let show of shows) {
    console.log(show);
  }
}

go();

The Show model can be found at src/models/Show.js.

Example of a Show model (eg, JSON.stringify(show)):

{
  name: "Goodbye Blue Monday",
  url: null,
  date: "2015-03-24T02:00:00.000Z",
  artists: [
    {
      artist: { name: "White Kyle" },
      info: ""
    }
  ],
  info: "9pm",
  venue: {
    name: "Hotel Vegas",
    address: "1500 E. 6th St.",
    url: "http://www.hotelvegasaustin.com/"
  }
}

Testing

$ npm test

License

MIT

FAQs

Package last updated on 25 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc