Skip to main content

Utilities for parsing Japanese numeric ranges.

Project description

jp-range

jp-range is a small library for parsing Japanese numeric range expressions. It returns an Interval object implemented with Pydantic or None when parsing fails.

Installation

pip install jp-range
# or install from GitHub
pip install git+https://github.com/first-automation/jp-range.git

Python 3.12 or later is required.

Features

  • Normalizes full width numbers and common punctuation
  • Supports inclusive and exclusive bounds (以上, 未満, etc.)
  • Parses connectors such as , - and から
  • Handles single-sided bounds, approximate expressions (90前後) and A±d notation
  • Integrates with pandas via apply_parse for Series and DataFrame

Usage

Basic parsing

from jp_range import parse

interval = parse("40以上50未満")
print(interval)               # [40, 50)
print(interval.contains(45))  # True

Pandas integration

from pandas import Series
from jp_range import apply_parse

# Convert Series of textual ranges to pandas.Interval
s = Series(["20~30", "50超", "未満100"])
result = apply_parse(s)
# result is a Series of pandas.Interval objects

# Expand columns into numeric min/max
df = apply_parse(s.to_frame(name="range"), split_numeric=True)
# df has columns "range_max" and "range_min"

Supported expressions

  • "20から30" – inclusive 20 to 30
  • "20〜30" – inclusive 20 to 30 using a tilde connector
  • "30以上40以下" – inclusive 30 to 40
  • "40以上50未満" – 40 to under 50
  • "70超90以下" – greater than 70 and up to 90
  • "50より上" – greater than 50
  • "60より下" – less than 60
  • "90前後" – roughly around 90 (5% margin)
  • "(2,3]" – standard interval notation

parse_jp_range returns None if the expression cannot be parsed.

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

jp_range-0.3.0.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

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

jp_range-0.3.0-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file jp_range-0.3.0.tar.gz.

File metadata

  • Download URL: jp_range-0.3.0.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.13

File hashes

Hashes for jp_range-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f5680e337f6593fe9ed9770fd16a2a9c6eda97b2902703e3c137cb2e980fa06b
MD5 246c787b5ca8b62ad9d5edf4fa8a16e3
BLAKE2b-256 6bae7545f644ebfee568eae9290206993b4f078d9bb98a0b8c13ad53416391e3

See more details on using hashes here.

File details

Details for the file jp_range-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: jp_range-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.13

File hashes

Hashes for jp_range-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9df3f410a848697fa655415abab312667a3dbc2846e5788d9452fab2e2a04cb4
MD5 c1cd3714e95790abd4d9d0c56b891eb6
BLAKE2b-256 527305d5a26683f207672e565c4ff395feaa0d57f244322a57ecd9e0a9972db4

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