A simple wrapper for the Notehub.org API.
Project description
notehub
=======
Installation
------------
To install with pip run:
pip install notehub
Or you can download the source and run:
python setup.py install
*Running these commands may require administrator privledges.*
Getting Started
---------------
A basic python wrapper for the Notehub.org API that simplifies much of the work
needed to make a call. The wrapper handles the work of adding necessary
parameters, hashing passwords, generating signatures, encoding the data and
checking response codes.
**You will need a PID and PSK from http://notehub.org/api**
**in order to use the create\_note and update\_note methods.**
Example use:
from notehub import Notehub
from notehub import NotehubError
PID = 'example_pid' # Replace with your PID
PSK = 'example_psk' # Replace with your PSK
nh = Notehub(PID, PSK)
# get_note
try:
note = nh.get_note('2014/1/26/test')
print(note)
except NotehubError as e:
print(e)
# create_note
note_text = 'Test note 123.'
try:
note = nh.create_note(note_text)
print(note)
except NotehubError as e:
print(e)
# create_note with password
note_text = 'Test note 123.'
password = 'abc123'
try:
note = nh.create_note(note_text, password=password)
print(note)
except NotehubError as e:
print(e)
# create_note with specific theme and fonts
note_text = 'Test note 123.'
theme = 'solarized-light'
text_font = 'Alegreya Sans SC'
header_font = 'Chau Philomene One'
try:
note = nh.create_note(note_text, theme=theme, text_font=text_font,
header_font=header_font)
print(note)
except NotehubError as e:
print(e)
# update_note
note_id = '2014/1/26/test-note-123-1'
new_note_text = 'Test note 123.'
password = 'abc123'
try:
note = nh.update_note(note_id, new_note_text, password)
print(note)
except NotehubError as e:
print(e)
License
-------
The MIT License (MIT)
Copyright (c) 2014 Sean Watson
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=======
Installation
------------
To install with pip run:
pip install notehub
Or you can download the source and run:
python setup.py install
*Running these commands may require administrator privledges.*
Getting Started
---------------
A basic python wrapper for the Notehub.org API that simplifies much of the work
needed to make a call. The wrapper handles the work of adding necessary
parameters, hashing passwords, generating signatures, encoding the data and
checking response codes.
**You will need a PID and PSK from http://notehub.org/api**
**in order to use the create\_note and update\_note methods.**
Example use:
from notehub import Notehub
from notehub import NotehubError
PID = 'example_pid' # Replace with your PID
PSK = 'example_psk' # Replace with your PSK
nh = Notehub(PID, PSK)
# get_note
try:
note = nh.get_note('2014/1/26/test')
print(note)
except NotehubError as e:
print(e)
# create_note
note_text = 'Test note 123.'
try:
note = nh.create_note(note_text)
print(note)
except NotehubError as e:
print(e)
# create_note with password
note_text = 'Test note 123.'
password = 'abc123'
try:
note = nh.create_note(note_text, password=password)
print(note)
except NotehubError as e:
print(e)
# create_note with specific theme and fonts
note_text = 'Test note 123.'
theme = 'solarized-light'
text_font = 'Alegreya Sans SC'
header_font = 'Chau Philomene One'
try:
note = nh.create_note(note_text, theme=theme, text_font=text_font,
header_font=header_font)
print(note)
except NotehubError as e:
print(e)
# update_note
note_id = '2014/1/26/test-note-123-1'
new_note_text = 'Test note 123.'
password = 'abc123'
try:
note = nh.update_note(note_id, new_note_text, password)
print(note)
except NotehubError as e:
print(e)
License
-------
The MIT License (MIT)
Copyright (c) 2014 Sean Watson
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
notehub-0.4.tar.gz
(4.6 kB
view details)
File details
Details for the file notehub-0.4.tar.gz
.
File metadata
- Download URL: notehub-0.4.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3dcac4eddb7dbd48f0a2cdd5879adea09b3a98710428592728076329510d66dd |
|
MD5 | 0db0a36a52ef2e8cfe066ef8aa266004 |
|
BLAKE2b-256 | e9c7d96df9b323ee24ca149b41ef39637b7c73df648c07a81634f86612fd8f2a |