Skip to main content

Introduction

Welcome to the WhatPulse Help Center. This is where you'll find articles on features of our website and software, including guides on how to get started with WhatPulse.

Use the left menu to navigate through the different topics, or use the search bar (top right) to find what you're looking for.

If you can't find what you're looking for, please don't hesitate to contact us using the Chat or email us button located at the bottom of the page. This button opens a chat session where we can help you directly. If we're away, you can leave your email address, and we'll get back to you as soon as possible.

Using the Help Center

There are a few components within this help center that we'd like to showcase, to make sure you know how to use them.

Tabs

Whenever a topic applies to multiple operating systems (Windows, macOS, Linux), there are tabs that display the relevant information. Here's an example, try clicking on the tabs:

Windows instructions.

Command & Code Blocks

For some advanced cases, the documentation may outline a command that needs to be run on your command line. If you hover over the block, there's an ability to copy the block to your clipboard. Here's an example:

./whatpulse.exe -verbose

In the case of our APIs, we'll also provide example code blocks that you can copy:

import requests

request = requests.get('http://localhost:3490/v1/account-totals').json()
keys = request['keys']
clicks = request['clicks']
rank_uptime = request['ranks']['rank_uptime']

print("Current keys: {}, current clicks: {}, rank in uptime: {}".format(keys,
clicks, rank_uptime))