Get Hypnotized While Logging
HypnoLog allows you to fast and easily visualize your application data/objects while debugging. From any environment, in any language. Forget about those black text-based console debug-printing back from the 70's.
See HypnoLog main repo.
What it looks like, visualizing your data in the browser:
Logging using HypnoLog means sending you data as JSON HTTP request to HypnoLog server. This library wraps all of those into simple easy to use functions.
The easiest way to get HypnoLog is via PyPi with pip
command
pip install hypnolog
If you haven't use HypnoLog before, setup HypnoLog server on your machine:
npm install -g hypnolog-server
Note: you will need Node.js installed on your machine first.
- Start HypnoLog server:
hypnolog-server
- View output: open
http://127.0.0.1:7000/client.html
in your browser. - Import HypnoLog into your script:
import hypnolog as HL
- Log:
// Log a string HL.log('Hello HypnoLog from Pyhton!'); // log list of numbers as a graph (plot) HL.log([1,2,3], 'plot');
For more examples, see Basic Example and Advanced Example code files.
Read how to view the log and more about HypnoLog in HypnoLog main repo page.