Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 408 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (13 loc) · 408 Bytes

Issues

  • If its a request to add a new source, Use the add-source label.
  • We currently do not have any Issue Templates. We will be figuring that out in future.

Source Template

src/sources/MyNewSource.py

class MyNewSource(WhatEverItExtends):
  def getName(self):
    return 'mySourceName'
    
  def getMeaning(term):
    term = doSomeConvolutedThing(term, 'stuffs')
    return term