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

race_partner_registrations

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

race_partner_registrations

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Race Partner Registrations

Race Partner is a platform for registration, volunteer management, and marketing for road races and other endurance events.

racepartner.com enables users to browse the registrations for a given event.

Race Partner Entrance List Screen Shot

race_partner_registrations enables you to extract these registration lists.

Usage

The name and location are extracted from the entrance list.

Examples

$ gem install race_partner_registrations
$ irb
irb> require 'race_partner_registrations'
irb> url = "https://register.racepartner.com/falmouthroadrace/entrants"
irb> event = RacePartnerRegistrations::Event.new(url)

An event can be converted to a CSV.

irb> puts event.to_csv
name,location
Sean Devine,"Suffield, CT"

You can also download the registrations and iterate through them directly.

irb> event.download_registrations!
irb> registration = event.registrations.first
irb> registration.name
=> "Sean Devine"
irb> registration.location
=> "Suffield, CT"

FAQs

Package last updated on 13 Aug 2014

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