├── .gitignore ├── README ├── ipmerge └── README.rst ├── jsonformat ├── .gitignore ├── MANIFEST.in ├── README.rst ├── jsonf │ ├── __init__.py │ └── cli.py └── setup.py ├── pydu ├── README └── pydu.py ├── retaindate ├── LICENSE.txt ├── README.rst ├── retaindate │ └── __init__.py └── setup.py ├── timesense └── README.rst └── wpclassifier ├── MANIFEST.in ├── README.rst ├── setup.py └── wpclassifier ├── __init__.py └── cli.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/README -------------------------------------------------------------------------------- /ipmerge/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/ipmerge/README.rst -------------------------------------------------------------------------------- /jsonformat/.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | dist 3 | -------------------------------------------------------------------------------- /jsonformat/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /jsonformat/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/jsonformat/README.rst -------------------------------------------------------------------------------- /jsonformat/jsonf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonformat/jsonf/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/jsonformat/jsonf/cli.py -------------------------------------------------------------------------------- /jsonformat/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/jsonformat/setup.py -------------------------------------------------------------------------------- /pydu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/pydu/README -------------------------------------------------------------------------------- /pydu/pydu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/pydu/pydu.py -------------------------------------------------------------------------------- /retaindate/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/retaindate/LICENSE.txt -------------------------------------------------------------------------------- /retaindate/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/retaindate/README.rst -------------------------------------------------------------------------------- /retaindate/retaindate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/retaindate/retaindate/__init__.py -------------------------------------------------------------------------------- /retaindate/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/retaindate/setup.py -------------------------------------------------------------------------------- /timesense/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/timesense/README.rst -------------------------------------------------------------------------------- /wpclassifier/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /wpclassifier/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/wpclassifier/README.rst -------------------------------------------------------------------------------- /wpclassifier/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/wpclassifier/setup.py -------------------------------------------------------------------------------- /wpclassifier/wpclassifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/wpclassifier/wpclassifier/__init__.py -------------------------------------------------------------------------------- /wpclassifier/wpclassifier/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exhuma/braindump/HEAD/wpclassifier/wpclassifier/cli.py --------------------------------------------------------------------------------