Skip to main content

Keeping track of aliases

Project description

A very small Python package for keeping track of aliases.

Installation

$ pip install aliases

Getting Started

Keeping track of aliases in your data can be annoying. This small packages provides three small classes than can help you in the bookkeeping associated with the occurrences of aliases in your data.

The AliasSpace objects keeps track of existing aliases. As input is accepts a dictionary where a string (the “preferred” form) points to a list of all its aliases. Using the str method on the space, we can transform regular strings into AliasAwareString objects.

>>> from aliases import AliasSpace
>>>
>>> s = AliasSpace(
>>>     {"The Netherlands": ["NL", "Netherlands", "Holland"]},
>>>     case_sensitive=False
>>> )
>>>
>>> s.str("nl")
<'nl' in AliasSpace>

The preferred form of an AliasAwareString is called its representative (because it represents the equivalance class of the string under the equivalance relation of being aliases).

>>> s.str("nl").representative
'The Netherlands'

AliasAwareString objects with the same representative are considered equal and have the same hash.

>>> s.str("holland") == s.str("NL")
True
>>>
>>> data = {s.str("holland"): 12345}
>>> data[s.str("nl")]
12345

The example above already shows how alias aware strings can be used to store data without worrying too much about the different aliases around. However, it is still annoying to cast to an AliasAwareString every time manually. To solve this you can use the AliasAwareDict. This object can be created using the dict method on the space.

>>> data = s.dict(holland=12345)
>>> data['nl']
12345

Finally, the AliasAwareSpace object has a map method which can be used to find the representatives of a list of strings easily. The following example was the original motivation for building this package:

>>> import pandas as pd
>>> df = pd.DataFrame(
>>>    {"Country": ["NL", "Netherlands", "Belgium"], "SomeData": [10, 11, 12]}
>>> )
>>> df
           Country  SomeData
0               NL        10
1      Netherlands        11
2          Belgium        12
>>>
>>> df.assign(Country=s.map(df.Country, return_list=True))
          Country  SomeData
0  The Netherlands        10
1  The Netherlands        11
2          Belgium        12
>>>
>>> df.assign(Country=s.map(df.Country, return_list=True, missing=pd.NA))
           Country  SomeData
0  The Netherlands        10
1  The Netherlands        11
2             <NA>        12

Documentation

Coming soon…

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

aliases-0.2.0.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

aliases-0.2.0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file aliases-0.2.0.tar.gz.

File metadata

  • Download URL: aliases-0.2.0.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for aliases-0.2.0.tar.gz
Algorithm Hash digest
SHA256 bed57df9ad5d1bf9e1345fce9c911128eda88a60653e816c16d9eae29430753d
MD5 8ac85405524c76d23de4f7d5ef682495
BLAKE2b-256 6ca56abb46ef96c650c5910d7deb5359185b76d2c51cc2dc896214412b25533e

See more details on using hashes here.

File details

Details for the file aliases-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: aliases-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for aliases-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 35d3b31ad3b045f5e8bf8c187194592c212107920f0e0e4604bdaeec2bccbfb8
MD5 b11857d145717649b1fa7e5cf9cb8dee
BLAKE2b-256 6e6addf6b6d7cd8ed2bbb91d187b5ed33cf7018bd3bcfb988be29018107b658c

See more details on using hashes here.

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