Welcome to FSGetter’s documentation!

FSGetter is a python package used to pull FreshService knowledge base articles to a local machine.

Installation Requirements

  • Python 3.7+

  • pip 21.3.1+

pip Installation

pip install kbgetter
>>> from KBgetter import FSGetter
>>> kb = KBGetter('my_api_key','X','https://mycompany.freshservice.com','./')
>>> builder = kb.build_kb()
>>> make_articles = kb.make_articles(current_categories)
>>> print('%s articles created'%make_articles)
>>> make_local = kb.make_local_articles()
>>> print('%s local articles created'%make_local)

User Guide