The Wayback Machine - https://web.archive.org/web/20190825220548/https://github.com/jab/bidict
Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Efficient, Pythonic bidirectional map data structures and related functionality.
Python Shell Other
Branch: master
Clone or download
Latest commit fe0673b Aug 19, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Create FUNDING.yml Jul 4, 2019
assets add rc scout to docs Feb 23, 2019
bidict small optimization in OrderedBidictBase.__iter__ Feb 25, 2019
docs update "learning" docs Mar 4, 2019
tests Fix `UnboundLocalError: local variable 'ref' referenced before assign… Jun 3, 2019
.LICENSE_HEADER update copyright dates in .LICENSE_HEADER Feb 18, 2019
.appveyor.yml update appveyor to "Visual Studio 2017" image Dec 28, 2018
.coveragerc switch to codecov for automatic combining of coverage reports Nov 20, 2017
.editorconfig refactor, tests + docs improvements Apr 27, 2015
.gitignore add some missing entries to .gitignore Apr 20, 2019
.lgtm.yml improve hypothesis tests and .travis.yml, add compat.collections_abc … Dec 29, 2018
.pre-commit-config.yaml setup.py + .travis.yml refactor Feb 25, 2019
.pylintrc drop Py3.4 from Travis, update to latest flake8 + pydocstyle, improve… Jan 31, 2019
.readthedocs.yml strengthen too-weak assume(..) in test_eq_ne_hash, use "max_examples=… Apr 10, 2018
.travis.yml disable Travis fast_finish Aug 18, 2019
CHANGELOG.rst mention py34 now end-of-life in changelog Mar 31, 2019
CODE_OF_CONDUCT.rst bidict.pairs -> _iteritems_args_kw, docs + other small improvements Apr 6, 2018
CONTRIBUTING.rst docs tweaks, tidelift Oct 17, 2018
LICENSE change license to MPLv2 Mar 15, 2017
MANIFEST.in add pyproject.toml to manifest, distribute wheels as well as sdists Sep 18, 2018
PYPI_DOWNLOAD_STATS.rst bidict.pairs -> _iteritems_args_kw, docs + other small improvements Apr 6, 2018
README.rst Rename .inv to .inverse and add an alias for .inv. Feb 14, 2019
build-docs.sh happy 2019 Jan 1, 2019
pyproject.toml improvements to pyproject.toml changes Sep 17, 2018
pytest.ini
run_tests.py happy 2019 Jan 1, 2019
setup.cfg drop Py3.4 from Travis, update to latest flake8 + pydocstyle, improve… Jan 31, 2019
setup.py Work around sphinx-doc/sphinx#6594. Jul 21, 2019
tox.ini update to latest pylint and pre-commit hooks, rename + improve run_te… Dec 28, 2018

README.rst

bidict

Efficient, Pythonic bidirectional map implementation and related functionality.

bidict logo

Status

Latest release Documentation Travis-CI build status Test coverage LGTM alerts Codacy grade CII best practices badge Tidelift dependency badge License Downloads past month

Bidict:

  • is in use by several teams at Google, Venmo, CERN, Bank of America Merrill Lynch, Bloomberg, Two Sigma, and others
  • has carefully designed APIs for safety, simplicity, flexibility, and ergonomics
  • is CPython-, PyPy-, Python 2-, and Python 3-compatible
  • has extensive test coverage (including property-based tests and benchmarks) run continuously on all supported Python versions and OSes
  • integrates natively with Python’s collections interfaces
  • is implemented in concise, well-factored, well-documented pure Python that leverages a number of advanced language features [3]

Installation

pip install bidict

Quick Start

>>> from bidict import bidict
>>> element_by_symbol = bidict({'H': 'hydrogen'})
>>> element_by_symbol['H']
'hydrogen'
>>> element_by_symbol.inverse['hydrogen']
'H'

For more usage documentation, head to the intro [1] and proceed from there.

Community and Voluntary Support

Chat

If you are thinking of using bidict in your work, or if you have any questions, comments, or suggestions, I'd love to know about your use case and provide as much support for it as possible.

Please feel free to leave a message in the chatroom or to open a new issue on GitHub. You can search through existing issues before creating a new one in case your questions or concerns have been adressed there already.

Paid Support via Tidelift

Support via Tidelift

If your use case requires a greater level of support, contractual support for bidict can be obtained through the Tidelift subscription.

Notice of Usage

If you use bidict, and especially if your usage or your organization is significant in some way, please let me know.

You can:

Changelog

See the changelog [2] for a history of notable changes to bidict.

Release Notifications

Follow on libraries.io

Tip: Subscribe to bidict releases on libraries.io to be notified when new versions of bidict are released.

Learning from bidict

One of the most rewarding things about bidict is the outsized amount of advanced Python it covers in light of its small codebase.

Check out learning-from-bidict [3] if you're interested in learning more.

Contributing

Bidict is currently a one-person operation maintained on a voluntary basis with no other sponsorship. Your help would be most welcome!

Reviewers Wanted!

One of the most valuable ways to contribute to bidict and to explore some advanced Python [3] while you're at it is to review bidict's relatively small codebase.

Please create an issue or pull request with any improvements you'd propose or any other results you found. (Submitting a "Nothing-to-merge" PR with feedback in inline code comments or a Review results issue both work well.)

You can also +1 this issue to sign up to give feedback on future proposed changes that are in need of a reviewer.

Giving Back

Bidict is the product of hundreds of hours of unpaid, voluntary work.

If bidict has helped you accomplish your work, especially work you've been paid for, please consider chipping in toward the costs of bidict's maintenance and development and/or ask your organization to do the same.

Support bidict

Finding Documentation

If you're viewing this on https://bidict.readthedocs.io, note that multiple versions of the documentation are available, and you can choose a different version using the popup menu at the bottom-right. Please make sure you're viewing the version of the documentation that corresponds to the version of bidict you'd like to use.

If you're viewing this on GitHub, PyPI, or some other place that can't render and link this documentation properly and are seeing broken links, try these alternate links instead:

[1](1, 2) docs/intro.rst | https://bidict.readthedocs.io/intro.html
[2]CHANGELOG.rst | https://bidict.readthedocs.io/changelog.html
[3](1, 2, 3) docs/learning-from-bidict.rst | https://bidict.readthedocs.io/learning-from-bidict.html

Next: intro [1]

You can’t perform that action at this time.