Simple HipChat client library
Project description
hipchatpy is HipChat client library for specific logging.
Install
pip install hipchatpy
Dependencies
requests
Sample Code
import hipchatpy
AUTH_TOKEN = 'hogehoge'
ROOM_ID = 10000
# Create a new instance.
logging = hipchatpy.HipChatLogger(AUTH_TOKEN, ROOM_ID)
# LogLevel: INFO
logging.info(message='INFO Message')
# LogLevel: WARN
logging.warn(message='WARN Message')
# LogLevel: ERROR
logging.error(message='ERROR Message')
Correspondence table
Method |
LogLevel |
Notify |
Color |
---|---|---|---|
info() |
INFO (1) |
False |
green |
warn() |
WARNING (2) |
True |
yellow |
error() |
ERROR (3) |
True |
red |
Command line
export HIPCHAT_TOKEN=your_api_token
# LogLevel: INFO
hipchatpy -r 10000 -m 'INFO Message' -l 1
# LogLevel: WARN
hipchatpy -r 10000 -m 'WARN Message' -l 2
# LogLevel: ERROR
hipchatpy -r 10000 -m 'ERROR Message' -l 3
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hipchatpy-0.1.17.tar.gz
(3.2 kB
view details)
File details
Details for the file hipchatpy-0.1.17.tar.gz
.
File metadata
- Download URL: hipchatpy-0.1.17.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b9bc2235d87aa5cc7bf6b7d706d7d5aed6cc2ca159f1eb0ba11cf9a0bb421c2 |
|
MD5 | 921a6473ee604e2fce592423c63fc459 |
|
BLAKE2b-256 | 0e50d266278d2af8f9cda87a092fe00a4fa7eedb8a29686bc097e47ae6a12873 |