Skip to main content

General purpose utility library

Project description

haggis

This is a library of general purpose utility functions and classes written in Python. Much of this code is intended to support the imprint project https://github.com/madphysicist/imprint. The modules of this library are more-or-less standalone utilities, organized by category.

This library contains plenty of code that relies on external programs and less common Pyhon libraries. The code is considered to be "extras", in the setuptools sense. Extras can be omitted without any modification to the python code. The following extras are supported:

  • [docx]: Support for docx file utilities requires python-docx to be installed.
  • [latex]: Supporting LaTeX requires a host of external programs to work properly, so this feature is optional. See the dependency page in the main documentation for more information.
  • [pdf]: Requires the poppler library to be installed.
  • [ps]: Requires GhostScript to be installed.
  • [plot]: Plotting tools require matplotlib, which is a heavy dependency, and unnecessary for many purposes.
  • [term]: Terminal colors work out of the box on Linux, but require the colorama library to work on Windows.
  • [scio]: Science I/O depends on the scipy and astropy libraries to deliver IDL and FITS file support, respectively.
  • [xlsx]: Support for xlsx file utilities requires openpyxl to be installed.

To install extras such as latex and pdf, do::

pip install haggis[latex,pdf]

See the documentation at https://haggis.readthedocs.io/en/latest for more information, including the API documentation.

This library in licensed under the AGPLv3, and compatible with later versions. You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Changelog

0.10.1 (2023-08-21)

  • Fixes to test and documentation warnings

0.10.0 (2023-08-20)

  • New modules:
    • args
  • New functions and classes:
    • args.SmartHelpFormatter
  • New unit tests:
    • test_args

0.9.2 (2023-08-20)

  • Switched to trunk-based development

0.9.1 (2023-03-26)

  • Migrated to GitLab hosting

0.9.0 (2023-03-15)

  • New functions and classes:
    • logs.add_detail_level
  • Bugfixes:
    • Added missing default kwargs to monkeypatched version of logging.LogAdapter method in logs.add_log_level
    • Updated bondary handling in npy_util.prune_mask
  • logs.add_logging_level verifies exception info settings if prior calls are found

0.8.0 (2022-11-04)

  • New functions and classes:
    • recipes.chained_getter
  • New unit tests:
    • tests.test_logs.TestAddLoggingLevel
    • tests.test_logs.TestResetHandlers
    • tests.test_logs.TestLogMaxFilter
    • tests.test_logs.TestMetaLoggableType
    • tests.test_recipes.TestChainedGetter
  • Bugfixes:
    • Fixed sense of inclusive in logs.LogMaxFilter
  • logs.add_logging_level updates logging.LoggerAdapter

0.7.1 (2022-10-24)

  • New functions and classes:
    • npy_util.prune_mask

0.7.0 (2022-10-17)

  • New functions and classes:
    • npy_util.masked_index
    • npy_util.unmasked_index
    • npy_util.find_peaks
  • New unit tests:
    • tests.test_npy_util.TestMaskedIndex
    • tests.test_npy_util.TestUnmaskedIndex
    • tests.test_npy_util.TestFindPeaks

0.6.0 (2022-10-11)

  • API changes:
    • Parameter stop in recipes.RangeBuilder.update is now optional
    • Property span in recipes.RangeBuilder
  • Bugfixes:
    • Fixed handling of bulleted list styles in files.docx.list_number

0.5.0 (2022-06-17)

  • New functions and classes:
    • multiline_repr in string_util
    • RangeBuilder in recipes

0.4.0 (2022-06-02)

  • New functions and classes:
    • npy_util.replace_field
  • New unit tests:
    • tests.test_npy_util.TestReplaceField

0.3.0 (2022-03-29)

  • New functions and classes:
    • load.load_module no longer nested in load.module_as_dict
    • npy_util.iterate_dtype
  • Bugfixes:
    • files.PreOpenedFile object is now properly iterable
  • New unit tests:
    • tests.test_load.TestLoadModule
    • tests.test_load.TestModuleAsDict

0.2.0 (2022-01-27)

  • New modules:
    • npy_util
    • tests.test_numbers
    • tests.test_objects
  • New functions and classes:
    • getsizeof, size_type_mapping in objects
    • ndarray_handler added to size_type_mapping in objects
    • isolate_dtype in npy_util
    • as_base, digit_count in numbers
  • New unit tests:
    • tests.test_objects.TestGetsizeof
    • tests.test_numbers.TestAsBase
    • tests.test_numbers.TestDigitCount
  • Added docs to sdist
  • Moved map_array, mask2runs, runs2mask from math to npy_util

0.1.1 (2022-01-16)

Minor updates to first release.

  • New functions and classes:
    • segment_distance in math
  • Bugfixes:
    • math.read_divide correctly handles scalar inputs
  • Created pytest configuration, added first set of unit tests
    • files.tests.test_csv
    • tests.test_math.TestSegmentDistance
  • Improved documentation with autosummary
  • Added this CHANGELOG to installed data

0.1 (2022-01-10)

First release.

  • New modules
    • time
    • files.ui
  • New functions and classes:
    • json_registry made public in configuration
    • semilogx_base, semilogy_base, loglog_base in mpl_util
    • map_array, rms in math
    • split_extension in files
  • API changes:
    • string_util.timestamp moved to time
    • Added mask2runs and runs2mask to math
    • Improvements to NumpyObject in configuration
    • Improvements to copy_func in objects
    • Added n argument to insert_suffix in files
  • Bufixes:
    • mpl_util.show_extents axis confusion
    • Broken imports in submodules
  • Officially supporting Python versions up to 3.10
  • README -> README.md so GitHub can pick it up

0.1a2 (2021-01-09)

Second alpha release.

  • Major additions to API
  • New modules:
    • threads
    • configuration
    • structures
    • mapping
    • ctypes_util
  • New functions and classes:
    • CloseableMixin in recipes
    • to_hex, camel2snake, snake2camel, timestamp in string_util
    • set_labels in mpl_utils
    • real_divide, threshold, ang_diff_* in math
  • API changes:
    • Moved half of recipes to mapping
    • Updated Namespace, (in mapping), added setdefaults

0.1a1 (2021-04-03)

First alpha release.

  • API changes:
    • SentinelType made public in root package
    • ensure_extension.modes renamed to ensure_exntension.policies in files

0.1a1.dev2 (2019-03-31)

Second development pre-release.

  • Major overhaul of documentation

0.1a1.dev1 (2019-03-20)

First development pre-release.

  • First release on PyPI.
  • Created Read the Docs pages.
  • Only code required for imprint present initially.
  • Documentation 90% complete.
  • No tests worth speaking of.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

haggis-0.10.1.tar.gz (168.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

haggis-0.10.1-py3-none-any.whl (207.5 kB view details)

Uploaded Python 3

File details

Details for the file haggis-0.10.1.tar.gz.

File metadata

  • Download URL: haggis-0.10.1.tar.gz
  • Upload date:
  • Size: 168.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for haggis-0.10.1.tar.gz
Algorithm Hash digest
SHA256 0e8b9e8c9bd9af6063636ecab10e000e2c885e57152a53c4738c46a881a8e72c
MD5 522adade624934d1d42b6ce155448254
BLAKE2b-256 3a71e1ef1b239bd1c9531500142b36216ed4966e5b99f94846c5e1038b8f44fa

See more details on using hashes here.

File details

Details for the file haggis-0.10.1-py3-none-any.whl.

File metadata

  • Download URL: haggis-0.10.1-py3-none-any.whl
  • Upload date:
  • Size: 207.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for haggis-0.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 73af3ddac50bd19f10b7fa1bd63c3a44ecb4e31d40e55c432c5c5f7e8f653f1f
MD5 5c4314ac8123f0b70f0e0ec301b9b6fd
BLAKE2b-256 b76efa51211f8f1a289d6f6bc3f3d9607a218dd9880183fd49cb7c5d922362d1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page