Skip to main content

Lightweight utility functions for working with strings, lists, and tuples.

Project description

sequencekit

A lightweight, deterministic utility library for working with strings, lists, and tuples.

sequencekit provides clean and efficient helpers for common sequence operations such as frequency analysis, duplicate detection, and order-preserving transformations. It eliminates repetitive boilerplate while maintaining predictable and explicit behavior.


What is this project?

sequencekit is a focused utility toolkit built to simplify everyday sequence manipulation tasks in Python.

While Python offers powerful built-ins, operations like:

  • Extracting elements that appear only once
  • Finding duplicates
  • Removing duplicates while preserving order
  • Determining the most or least frequent element

often require verbose or repetitive patterns.

This library provides:

  • Deterministic results
  • O(n) implementations
  • Explicit error handling
  • Configurable output formats
  • Clean, test-driven design

Features

  • Frequency counting (frequency)
  • Duplicate detection (contains_duplicates)
  • Extract elements appearing exactly once (uniqueonly)
  • Extract elements appearing more than once (duplicates)
  • Remove duplicates while preserving order (remove_duplicates)
  • Find most frequent element (most_frequent)
  • Find least frequent element (least_frequent)
  • Configurable output format (list, tuple, str)
  • Comprehensive test coverage
  • No third-party dependencies

Installation

From PyPI

pip install sequencekit

PyPI page: https://pypi.org/project/sequencekit/


Development Installation

git clone https://github.com/IHac-er/sequencekit.git
cd sequencekit
pip install -e .

Usage

from sequencekit import (
    frequency,
    contains_duplicates,
    uniqueonly,
    duplicates,
    most_frequent,
    least_frequent,
    remove_duplicates,
)

# ---------------------------------------------------
# Frequency Analysis
# ---------------------------------------------------

frequency("banana")
# {'b': 1, 'a': 3, 'n': 2}

frequency(["a", "b", "c", "a"])
# {'a': 2, 'b': 1, 'c': 1}

frequency((1, 2, 2, 3))
# {1: 1, 2: 2, 3: 1}


# ---------------------------------------------------
# Duplicate Detection
# ---------------------------------------------------

contains_duplicates("banana")
# True

contains_duplicates("abc")
# False

contains_duplicates([1, 2, 3, 4])
# False


# ---------------------------------------------------
# Elements Appearing Exactly Once
# ---------------------------------------------------

uniqueonly("banana")
# ['b']

uniqueonly("banana", out="tuple")
# ('b',)

uniqueonly("banana", out="str")
# 'b'


# ---------------------------------------------------
# Elements Appearing More Than Once
# ---------------------------------------------------

duplicates("banana")
# ['a', 'n']

duplicates([1, 2, 2, 3, 3])
# [2, 3]


# ---------------------------------------------------
# Remove Duplicates (Preserve Order)
# ---------------------------------------------------

remove_duplicates("banana")
# ['b', 'a', 'n']

remove_duplicates("banana", out="str")
# 'ban'

remove_duplicates((1, 2, 1, 3))
# [1, 2, 3]


# ---------------------------------------------------
# Most / Least Frequent
# ---------------------------------------------------

most_frequent("banana")
# 'a'
most_frequent([1, 2, 3, 1, 1, 4])
# 1

least_frequent("banana")
# 'b'
least_frequent([1, 2, 3, 1, 1, 4, 4, 1, 4, 3])
# 2

# Tie-breaking is deterministic (first occurrence wins)
most_frequent("aabb")
# 'a'

least_frequent("aabbcc")
# 'a' 

Output Format Control

Functions returning sequences support:

  • "list" (default)
  • "tuple"
  • "str"

Example:

uniqueonly("banana", out="tuple")
# ('b',)

remove_duplicates("banana", out="str")
# 'ban'

Invalid output types raise ValueError.


Running Tests

pytest

All functionality and edge cases are covered by tests.


Project Structure

sequencekit/
├── sequencekit/
│   ├── __init__.py
│   ├── core.py
│   ├── _internals.py
├── tests/
│   └── test_core.py
├── pyproject.toml
└── README.md

License

Copyright 2026 THARUN R

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Contributions

Contributions are welcome.

  1. Fork the repository
  2. Create a feature branch
  3. Write tests for new functionality
  4. Ensure all tests pass
  5. Submit a pull request

Bug reports and suggestions are appreciated.


Version

Current version: 0.1.1


Author

Tharun R GitHub: https://github.com/IHac-er

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

sequencekit-0.1.1.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

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

sequencekit-0.1.1-py3-none-any.whl (6.1 kB view details)

Uploaded Python 3

File details

Details for the file sequencekit-0.1.1.tar.gz.

File metadata

  • Download URL: sequencekit-0.1.1.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for sequencekit-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a6428a17636c62620e5a0d272b8f2fd7752641a03186a6f80ab0ea6f2d14be61
MD5 c75e1f47f6399eb4fcc4e0e5543f82c0
BLAKE2b-256 5b1aac69cb82b478ff49d173bfc4e905744d8f6007c42cfdfafe06308f35bccd

See more details on using hashes here.

File details

Details for the file sequencekit-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: sequencekit-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 6.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for sequencekit-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a48b2d5c5458a674b7ef2acc833146ef8b1030284da0efa54369d2ea1b0a530e
MD5 944a0cb0c195dec2b985fab95978a7f0
BLAKE2b-256 7d6849c8b3f5eeec3b138637b43eb5a7f4bf83280c17a1d8af1051b1fb9f333d

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