https://github.com/gunthercox/chatterbot-weather
A ChatterBot logic adapter that returns information about the current weather
https://github.com/gunthercox/chatterbot-weather
chatterbot
Last synced: 7 months ago
JSON representation
A ChatterBot logic adapter that returns information about the current weather
- Host: GitHub
- URL: https://github.com/gunthercox/chatterbot-weather
- Owner: gunthercox
- License: mit
- Created: 2016-05-12T12:33:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-01-05T15:09:33.000Z (almost 6 years ago)
- Last Synced: 2025-03-18T08:22:24.116Z (7 months ago)
- Topics: chatterbot
- Language: Python
- Homepage: http://chatterbot-weather.readthedocs.io/
- Size: 24.4 KB
- Stars: 29
- Watchers: 5
- Forks: 17
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
===============================
chatterbot-weather
===============================.. image:: https://img.shields.io/pypi/v/chatterbot-weather.svg
:target: https://pypi.python.org/pypi/chatterbot-weather.. image:: https://img.shields.io/travis/gunthercox/chatterbot-weather.svg
:target: https://travis-ci.org/gunthercox/chatterbot-weather.. image:: https://readthedocs.org/projects/chatterbot-weather/badge/?version=latest
:target: http://chatterbot-weather.readthedocs.io/en/latest/?badge=latest
:alt: Documentation StatusA ChatterBot logic adapter that returns information about the weather.
For more information about ChatterBot see https://github.com/gunthercox/ChatterBot* Documentation: https://chatterbot-weather.readthedocs.org.
Installation
------------.. code-block:: bash
pip install chatterbot-weather
Example
-------.. code-block:: python
from chatterbot import ChatBot
chatbot = ChatBot(
'My Weather Bot',
logic_adapters=[
'chatterbot_weather.WeatherLogicAdapter'
]
)Contributors Welcomed!
----------------------This package was originally created as a contribution to the main ChatterBot package.
It was converted to a optional module in order to preserve the code quality of the
main project. This weather adapter for ChatterBot works, but could benefit from
improvements in several areas.- Improved documentation with descriptions and information about the functions and structure of the adapter
- Additional support for other weather APIs
- Support for a wider range of questions about the weather (current, future, specific dates, etc.)