Skip to main content

Python Utilities

Project description

downloads build status codecov contributor-friendly documentation

Documentation: utilspie.readthedocs.org

What is utilspie?

Utilspie is a Python library that offers a sensible, human-friendly utilities which do not come along with Python installation. Utilspie is categorized into 5 modules:

  • asyncutils : utilities for asynchronous call/threads

  • fileutils : utilities related to file operations/manipulations

  • iterutils : utilities for iterators. Inspired by itertools package

  • collectionsutils : provides data objects not present in collections package

  • importutils : utilities related to importing the modules

Installation

utilspie is available on pypi. To install, run:

$ pip install utilspie

Source code for utilspie is available on github

Quick Start

For using the utilspie, you have to import the package utilspie and call it’s function as:

from utilspie import iterutils
# OR, from utilspie.iterutils import get_chunks

iterutils.get_chunks([1, 2, 3, 4, 5, 6], 2)
<generator object <genexpr> at 0x1018fab40>
# returns generator object

list(iterutils.get_chunks([1, 2, 3, 4, 5, 6], 2))
[[1, 2], [3, 4], [5, 6]]

How to Contribute

  1. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.

  2. Fork the repository on GitHub to start making your changes to the master branch (or branch off of it).

  3. Write a test which shows that the bug was fixed or that the feature works as expected.

  4. Send a pull request and bug the maintainer until it gets merged and published. :) Make sure to add yourself to AUTHORS.

Project details


Download files

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

Source Distribution

utilspie-0.0.10.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

utilspie-0.0.10-py2.py3-none-any.whl (8.5 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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