Metadata-Version: 2.1
Name: randfacts
Version: 0.2.1
Summary: Package to generate random facts
Home-page: https://github.com/TabulateJarl8/randfacts
Author: Tabulate
Author-email: tabulatejarl8@gmail.com
License: UNKNOWN
Description: [![PyPI version](https://badge.fury.io/py/randfacts.svg)](https://badge.fury.io/py/randfacts)
        [![Downloads](https://pepy.tech/badge/randfacts)](https://pepy.tech/project/randfacts)
        [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/)
        [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/TabulateJarl8/randfacts/graphs/commit-activity)
        [![GitHub issues](https://img.shields.io/github/issues/TabulateJarl8/randfacts.svg)](https://GitHub.com/TabulateJarl8/randfacts/issues/)
        
        
        Randfacts is a python library that generates random facts. You can use ```randfacts.getFact()``` to return a random fun fact.
        
        Example:
        ```python
        import randfacts
        x = randfacts.getFact()
        print(x)
        ```
        will print a random fact like:
        ```Penguins can't taste sweet or savory flavors, only sour and salty ones```
        
        This package has a filter option to filter out potentially inappropriate facts. It is set to not filter by default. To enable the filter, you can just set the `filter` parameter to `True`.
        ```python
        from randfacts import getFact
        print(getFact(True))
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
