Skip to content

dbolson/metal-archives

Repository files navigation

metal-archives

metal-archives provides an interface to search for album releases for a specific year, defaulting to the current one if none is provided.

Here is a quick and dirty example:

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift "./metal-archives/lib"
require 'mechanize'
require 'metal-archives'

agent = MetalArchives::Agent.new
urls = []

agent.paginated_result_urls.each do |search_result|
  url = agent.album_urls(search_result)
  if url.nil?
    puts "\nThrew an exception so exit"
    break
  else
    print '.'
    urls << url
  end
end
urls.flatten!
puts "DONE: #{urls.size}"

if urls.size >= 1
  puts "album information for the first result: #{agent.album_from_url(urls.first).inspect}"
  puts "album information for the first result: #{agent.album_from_url(urls.last).inspect}"
end

Contributing to metal-archives

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it

  • Fork the project

  • Start a feature/bugfix branch

  • Commit and push until you are happy with your contribution

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright © 2011 Danny Olson. See LICENSE.txt for further details.

About

metal-archives provides a way to search http://metal-archives.org/ for album release information.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages