class WhatsOn::PyCon

Public Class Methods

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

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