Metadata-Version: 2.0
Name: notizen
Version: 1.0.0
Summary: Indexing and searching of personal notes.
Home-page: https://github.com/pfigue/notizen
Author: Pablo Figue
Author-email: pfigue posteo de
License: MIT
Keywords: notes,index,search,documentation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Artistic Software
Classifier: Topic :: Documentation
Classifier: Topic :: Utilities

=======
notizen
=======

I take notes in some plain text files (Markdown/rST format, usually). After a while, I've already a few files and I need to find easily those files I need.

That's why I developed this tool: to index those notes and to traverse the index and locate the needed notes.

At the moment it is pretty limited: only search by tag, not by title, nor date, nor content.

.. image:: https://img.shields.io/pypi/dw/notizen.svg
   :target: https://pypi.python.org/pypi/notizen/
   :alt: PyPI Downloads

.. image:: https://img.shields.io/pypi/v/notizen.svg
   :target: https://pypi.python.org/pypi/notizen/
   :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/l/notizen.svg
   :target: https://pypi.python.org/pypi/notizen/
   :alt: License

Installation
============

.. code-block:: bash

	$ sudo pip3 install --upgrade notizen

Usage
=====

First index some notes:

.. code-block:: bash

	$ notizen updatedb my-notes/

Then you can search for all files with tag python:

.. code-block:: bash

	$ notizen locate python
	2 matching files under tag "python":
        /foo/bar/my-notes/python_annotations.md
        /foo/bar/my-notes/async-python.md



