• Stars
    star
    232
  • Rank 166,426 (Top 4 %)
  • Language
    Python
  • Created about 11 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python library for logging variables to Google Chrome console

Overview

Chromelogger is a Python library for logging variables to the Google Chrome console using the Chrome Logger extension.

For more information about Chrome Logger check out http://chromelogger.com.

This module is designed to be used during development and not in production. It is not thread safe, and you do not want to risk leaking sensitive data to users!

Getting Started

  1. Install Chrome Logger from the Chrome Web Store

  2. Click the extension icon to enable on the current tab's domain

    toggling

  3. Install the Python library

    pip install chromelogger
  4. Start logging

    import chromelogger as console
    console.log('Hello console!')
    console.get_header()

Sending Headers

Since every framework deals with setting headers slightly differently the library stores the header information and it is up to you to send it at the end of your request.

Using with Django

The library includes a middleware for using with Django. All you have to do is in your settings.py file make sure to update your list of middleware and add

MIDDLEWARE_CLASSES = (
    'chromelogger.DjangoMiddleware'
)

After that you can import the chromelogger class from any file in your application and add logs.

Using with Tornado

Using with tornado is slightly more complicated. You have to make sure you are using your own custom request handler and that all your requests you want logged inherit from that. Here is an example of how you could implement it

import tornado
import chromelogger

class CustomRequestHandler(tornado.web.RequestHandler):
    def finish(self, chunk=None):
        header = chromelogger.get_header()

        if header is not None:

            # in Tornado RequestHandler.set_header() function limits
            # header length to 1000 bytes, so set directly for this case
            self._headers[header[0]] = header[1]

        return super(CustomRequestHandler, self).finish(chunk=chunk)

Using with Flask

For using chromelogger with Flask, you can use a custom response-handler like this:

# put this somewhere in your application setup

if app.debug:
    import chromelogger as console
 
    @app.after_request
    def chromelogger(response):
        header = console.get_header()
        if header is not None:
            response.headers.add(*header)
        return response

This ensures that chromelogger is only active, if the apllication runs in debug-mode.

API Documentation

The chromelogger module exposes some of the chrome logger methods. The others will be coming in a future release.

chromelogger.log(*args)

chromelogger.warn(*args)

chromelogger.error(*args)

chromelogger.info(*args)

chromelogger.group(*args)

chromelogger.group_end(*args)

chromelogger.group_collapsed(*args)

chromelogger.table(*args)

Logs data to the console. You can pass any number of arguments just as you would in the browser.

chromelogger.log('width', width, 'height', height)

chromelogger.version

Outputs a string of the current version of this module

chromelogger.get_header(flush=True)

Returns a tuple with the header name and value to set in order to transmit your logs.

If flush argument is True all the data stored during this request will be flushed.

This is the preferred way to use this module. At the end of each request you should call this method and add this header to the response.

import chromelogger
chromelogger.log(123)
chromelogger.get_header()
# ('X-ChromeLogger-Data', 'eyJyb3dzIjogW1tbMTIzXSwgIjxzdGRpbj4gOiAxIiwgWyJsb2ciXV1dLCAidmVyc2lvbiI6ICIwLjIuMiIsICJjb2x1bW5zIjogWyJsb2ciLCAiYmFja3RyYWNlIiwgInR5cGUiXX0=')

chromelogger.get_header() will return None if there is no data to log.

chromelogger.set_header = None

As an alternative to get_header you can specify a function that can be used to set a header. The function should accept two parameters (header name and value). Usage would look something like:

def set_header(name, value):
    # do stuff here to set header
    pass

chromelogger.set_header = set_header

When chromelogger.set_header is not equal to None it will be called each time data is logged to set the header. The class is a singleton so it will just keep overwriting the same header with more data as more data is added.

If you are going to use this you have to make sure to call chromelogger.reset() at the beginning of each request or at the end of each request in order to ensure the same data does not carry over into future requests.

chromelogger.reset()

Clears out any data that has been set during this request.

More Repositories

1

mousetrap

Simple library for handling keyboard shortcuts in Javascript
JavaScript
11,569
star
2

rainbow

Simple syntax highlighting library written in javascript
JavaScript
3,294
star
3

chromephp

class for logging PHP variables to Google Chrome console
PHP
1,376
star
4

chromelogger

chrome extension for server side console logging
JavaScript
897
star
5

gator

Event delegation in Javascript
JavaScript
492
star
6

html-muncher

renames classes and ids in your css, javascript, and html to save bytes and obfuscate your code
Python
175
star
7

luna-testing

Simple, modern, opinionated JavaScript unit testing
JavaScript
151
star
8

mmlx

NES chiptune programming language
Python
85
star
9

sonic

fast, lightweight PHP 5.3 MVC framework
PHP
62
star
10

xtab

Chrome extension for limiting the total number of tabs you can have open at the same time
JavaScript
58
star
11

sublime-goto-window

Sublime Text plugin to quickly switch to any open window using a keyboard command
Python
41
star
12

nijikodo

Code syntax highlighting library written in PHP.
PHP
29
star
13

sublime-jsx

Simple Sublime Text 3 JSX implementation
25
star
14

sublime-smart-match

Sublime Text package to make parenthesis, bracket, and square bracket completions smarter
Python
17
star
15

aftershave

Compiled javascript templates
JavaScript
15
star
16

cloud-storage

Simple node js module for uploading and removing files from Google Cloud Storage
JavaScript
12
star
17

storm

Simple ORM for Tornado
Python
8
star
18

octopus

Simple asynchronous helpers
JavaScript
7
star
19

sonic-extensions

repository of official extensions for sonic framework
PHP
5
star
20

clapp

Command line app builder for go
Go
4
star
21

shift-voter-analysis

Script to analyze shift voting algorithms
JavaScript
1
star
22

show-missing-revs

Shows subversion revisions that have not been merged from one branch to another.
Shell
1
star