This is a quick script to convert notes from Tomboy to Evernote.
pip install -r requirements.txt
mkdir export/
python tomboy-export.py <tomboy-dir>
This playbook has been removed as it is now very outdated. |
import numpy as np | |
def removeOutliers(x, outlierConstant): | |
a = np.array(x) | |
upper_quartile = np.percentile(a, 75) | |
lower_quartile = np.percentile(a, 25) | |
IQR = (upper_quartile - lower_quartile) * outlierConstant | |
quartileSet = (lower_quartile - IQR, upper_quartile + IQR) | |
resultList = [] | |
for y in a.tolist(): |
Python docstrings can be written following several formats as the other posts showed. However the default Sphinx docstring format was not mentioned and is based on reStructuredText (reST). You can get some information about the main formats in that tuto.
Note that the reST is recommended by the PEP 287
There follows the main used formats for docstrings.
From here: https://ga7g08.github.io/2015/06/25/ipython-nbconvert-latex-template-to-hide-code/
hidecode.tplx
in the directory of your notebook with the following content:((*- extends 'article.tplx' -*))
((* block input_group *))
((*- if cell.metadata.get('nbconvert', {}).get('show_code', False) -*))
((( super() )))
((*- endif -*))