Skip to content

SimonLdj/hypnolog-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HypnoLog Python Library

What is HypnoLog?

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: alt text

About HypnoLog-Python Library

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.

Installation

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.

Usage

  1. Start HypnoLog server:
    hypnolog-server
  2. View output: open http://127.0.0.1:7000/client.html in your browser.
  3. Import HypnoLog into your script:
    import hypnolog as HL
  4. 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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages