Index of /nzz/downloads

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[SND]moving_the_line.mp32022-04-23 17:03 3.8M 
[   ]notiznetz-0.1.1.tar.gz2021-04-11 22:37 214K 
[   ]notiznetz-0.1.0.tar.gz2021-04-05 19:56 115K 
[   ]notiznetz-0.0.3.tar.gz2017-03-12 19:50 39K 
[   ]notiznetz-0.0.2p1.tar.gz2017-03-09 19:46 36K 
[TXT]README.html2021-04-11 22:43 14K 
[TXT]README.rst2021-04-11 22:43 5.0K 

notiznetz

notiznetz

A GUI application to keep your notes in a directed graph.

A note has a short title/keyword and a text content (text means ascii-like). Notes can be related to other notes via links (which are edges of the graph).

Notiznetz is useful for

Package Dependencies

PyQt5

unfortunately that is currently not installable by pip in python2.7. So you need to install it via OS-mechanisms or compile it yourself. On Debian8 (jessie) installation of PyQt5 is done with:

apt-get install python-pyqt5

The install-process of notiznetz will check for availability of PyQt5 and aborts before installing when PyQT5 is not available.

jsonpickle

for serializing your notes into a file:

apt-get install python-jsonpickle
python-setuptools and pip

tools for installing python-packages:

apt-get install python-setuptools python-pip
on FreeBSD 12.0

the relevant ports are:

devel/qt5
devel/py-qt5
devel/py-jsonpickle
devel/py-pip
devel/py-setuptools

Installation

if you downloaded the distribution-tar extract the archive and:

sudo python setup.py install

on archlinux you will need the command:

sudo python2 setup.py install

on FreeBSD 12 you will need the command:

python2.7 ./setup.py install

they should check for dependencies, install them automatically if needed and install a python-package named notiznetz

Usage

Quickstart:

$ nzz

open "Help-Menu -> User-documentation", open the content of the card "key-shortcuts" by doubleclicking in its headline and read it.

The command named nzz is a short python-script, you can have a look at it.

Commandline-Usage:

$ nzz [your-filename.nzz]

where your-filename is the name of a notes-file. If your-filename is ommitted the Program opens with an empty card-space and gives the option to save into a file.

To use in python:

>>> import sys
>>> from notiznetz import NotizNetzApplication

>>> nzz = NotizNetzApplication()
>>> if len(sys.argv) == 2:
>>>     nzz.loadfile(sys.argv[1])
>>> nzz()

This will run a Qt5 GUI-Application where you can create, link and arrange your notes.

Documentation

The primary documentation-format is in notes-files (*.nzz). The files are located in <installation-dir>/doc/*.nzz

to access the documentation start from the commandline:

$ nzz

and use "User-Documentation" from the Help-Menu.

Doubleclick on a cards headline/title opens the text-content of the card.

User-Documentation contains a card named "key-shortcuts" whose contents tell you how to use the application. The text is arranged in a somehow tutorial-like way. If you read and try out the shortcuts sequentially it will give you all the operational information you need to use the application.

New in Version 0.1.1

New in Version 0.1.0

New in Version 0.0.3

New in Version 0.0.2

License

The software is published under the GNU General Public License version 3 as published by the Free Software Foundation. The full text of the license is availabe