class WhatsOn::PyCon

Public Class Methods

main() click to toggle source
# File lib/whatson/pycon.rb, line 7
def self.main()   new( ARGV ).list;   end
new( args=ARGV ) click to toggle source
Calls superclass method
# File lib/whatson/pycon.rb, line 10
def initialize( args=ARGV )
  args = ['https://github.com/python-organizers/conferences/raw/master/2020.csv']  if args.empty?

  super( args,
         title:     'Upcoming Python Conferences',
         more_link: 'github.com/python-organizers/conferences'
       )
end