├── .gitignore ├── .travis.yml ├── CONDUCT.md ├── LICENSE.md ├── README.md ├── factoid.plug ├── factoid.py └── test_factoid.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .cache 3 | .coverage 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/README.md -------------------------------------------------------------------------------- /factoid.plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/factoid.plug -------------------------------------------------------------------------------- /factoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/factoid.py -------------------------------------------------------------------------------- /test_factoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimac/err-factoid/HEAD/test_factoid.py --------------------------------------------------------------------------------