Skip to main content

Object -> unicode mapper

Project description

obj2uni
=======

This packages defines the single function, `obj2uni`, which returns
Unicode strings for sequences of any objects. Each string
has the length equal to the length of the corresponding sequence.
Multiple sequences share the same character mapping.
This function can be useful for other packages which operate on strings faster,
e.g. for computing Levenshtein distance.

```Python
>>> from obj2uni import obj2uni
>>> obj2uni((1, 2, 3, None), ('test', 'ham', 'spam', 3.14159))

(('\x01\x02\x03\x00', '\x07\x05\x06\x04'),
{'\x00': None,
'\x01': 1,
'\x02': 2,
'\x03': 3,
'\x04': 3.14159,
'\x05': 'ham',
'\x06': 'spam',
'\x07': 'test'})
```

Released under MIT license. Copyright © 2016 Mail.Ru Group LLC.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

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

Source Distribution

obj2uni-1.0.tar.gz (2.9 kB view hashes)

Uploaded Source

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