The bidirectional mapping library for Python.
Go to file
Joshua Bronson 83865f2bed Minor refactor. 2022-03-09 22:09:36 -05:00
.devcontainer DRY devcontainer.json, accepting default ARG values from Dockerfile. 2022-03-03 11:40:07 -05:00
.github Minor refactor. 2022-03-09 22:09:36 -05:00
.vscode add vscode task to host docs 2022-03-02 21:39:23 -05:00
bidict Minor refactor. 2022-03-09 22:09:36 -05:00
docs Minor docs improvements. 2022-03-09 19:14:40 -05:00
requirements Upgrade dev dependencies. 2022-03-07 14:05:22 -05:00
tests OrderedBidict pickling + minor code improvements 2022-02-16 10:38:37 -05:00
.coveragerc Enable dynamic context measurement in coverage 2020-09-25 08:43:44 -04:00
.editorconfig Minor code and docs improvements. 2022-01-03 17:18:24 -05:00
.flake8 Compute inverse lazily, automatically add or remove __reversed__ implementations for BidictBase subclasses based on whether their backing mappings are reversible, improve mechanism for automatic dynamic generation of inverse bidict classes and use this for namedbidict, improve pickling. 2022-02-06 12:28:12 -05:00
.gitignore Add devcontainer setup 2022-03-02 21:39:23 -05:00
.gitpod.yml rm workaround for gitpod-io/workspace-images#664 now that it's fixed 2022-03-07 14:13:13 -05:00
.lgtm.yml improve hypothesis tests and .travis.yml, add compat.collections_abc and namedbidict.{_keyname,_valname} 2018-12-29 13:13:06 -05:00
.pre-commit-config.yaml Compute inverse lazily, automatically add or remove __reversed__ implementations for BidictBase subclasses based on whether their backing mappings are reversible, improve mechanism for automatic dynamic generation of inverse bidict classes and use this for namedbidict, improve pickling. 2022-02-06 12:28:12 -05:00
.pydocstyle.ini Compute inverse lazily, automatically add or remove __reversed__ implementations for BidictBase subclasses based on whether their backing mappings are reversible, improve mechanism for automatic dynamic generation of inverse bidict classes and use this for namedbidict, improve pickling. 2022-02-06 12:28:12 -05:00
.pylintrc Minor refactor. 2022-03-09 22:09:36 -05:00
.readthedocs.yml Various minor improvements 2022-02-14 18:34:20 -05:00
CHANGELOG.rst Minor docs improvements. 2022-02-27 19:21:03 -05:00
CODE_OF_CONDUCT.md Add CODE_OF_CONDUCT.md 2022-03-01 14:58:35 -05:00
CODE_OF_CONDUCT.rst Misc. minor improvements to CI, coverage, docs 2020-09-07 10:06:49 -04:00
CONTRIBUTING.rst Add devcontainer setup 2022-03-02 21:39:23 -05:00
LICENSE (c) 2022-02-15 15:37:25 -05:00
MANIFEST.in rm defunct .LICENSE_HEADER 2022-01-14 11:12:24 -05:00
PYPI_DOWNLOAD_STATS.rst OrderedBidict MappingViews belong in OrderedBidict, not OrderedBidictBase. 2022-02-03 10:41:19 -05:00
README.rst Minor docs improvements. 2022-02-27 19:21:03 -05:00
SECURITY.rst add SECURITY.rst 2019-11-17 20:49:17 -05:00
codecov.yml Move CI to GitHub Actions, fix version typo in metadata.py 2020-12-20 10:50:41 -05:00
mypy.ini Redesign OrderedBidict for better performance and code reuse. 2022-01-31 16:45:46 -05:00
pyproject.toml Drop setuptools_scm. 2021-09-02 10:16:54 -04:00
pytest.ini Benchmarks, etc. 2022-02-09 11:56:57 -05:00
run_tests.py (c) 2022-02-15 15:37:25 -05:00
setup.cfg (c) 2022-02-15 15:37:25 -05:00
setup.py (c) 2022-02-15 15:37:25 -05:00
tox.ini Various minor improvements 2022-02-14 18:34:20 -05:00

README.rst

.. Forward declarations for all the custom interpreted text roles that
   Sphinx defines and that are used below. This helps Sphinx-unaware tools
   (e.g. rst2html, PyPI's and GitHub's renderers, etc.).
.. role:: doc

.. Use :doc: rather than :ref: references below for better interop as well.


bidict
======

The bidirectional mapping library for Python.


Status
------

.. image:: https://img.shields.io/pypi/v/bidict.svg
   :target: https://pypi.org/project/bidict
   :alt: Latest release

.. image:: https://img.shields.io/readthedocs/bidict/main.svg
   :target: https://bidict.readthedocs.io/en/main/
   :alt: Documentation

.. image:: https://github.com/jab/bidict/workflows/Tests/badge.svg
   :target: https://github.com/jab/bidict/actions
   :alt: GitHub Actions CI status

.. image:: https://img.shields.io/pypi/l/bidict.svg
   :target: https://raw.githubusercontent.com/jab/bidict/main/LICENSE
   :alt: License

.. image:: https://static.pepy.tech/badge/bidict
   :target: https://pepy.tech/project/bidict
   :alt: PyPI Downloads

.. image:: https://img.shields.io/github/sponsors/jab
   :target: https://github.com/sponsors/jab
   :alt: Sponsors on GitHub

.. image:: https://img.shields.io/badge/GitHub-sponsor-ff69b4
   :target: https://github.com/sponsors/jab
   :alt: Sponsor on GitHub


.. newline for better vertical spacing:

|


**bidict:**

- has been used for many years at
  **Google, Venmo, CERN, Two Sigma,**
  and by many other teams
- has carefully designed, Pythonic APIs for
  **safety, simplicity, flexibility, and ergonomics**
- is **lightweight**, with no runtime dependencies
  other than Python's standard library
- provides **type hints** for all public APIs
- is implemented in **concise, well-factored, pure Python code**
- is **optimized for running efficiently**
  as well as for **reading, learning, and maintaining** [#fn-learning]_
- has **extensive docs and test coverage**
  (including property-based tests and benchmarks)
  run continuously on all supported Python versions


Installation
------------

``pip install bidict``


Quick Start
-----------

.. code:: python

   >>> 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 :doc:`intro` [#fn-intro]_
and proceed from there.


Enterprise Support
------------------

Enterprise-level support for bidict can be obtained via the
`Tidelift subscription <https://tidelift.com/subscription/pkg/pypi-bidict?utm_source=pypi-bidict&utm_medium=referral&utm_campaign=readme>`__
or by `contacting me directly <mailto:jabronson@gmail.com>`__.

I have a US-based LLC set up for invoicing,
and I have 15+ years of professional experience
delivering software and support to companies successfully.

You can also sponsor my work through platforms like GitHub Sponsors.
See the `Sponsoring <#sponsoring>`__ section below for details,
including rationale and examples of companies
supporting the open source projects they depend on.


Voluntary Community Support
---------------------------

Please search through already-asked questions and answers
in `GitHub Discussions <https://github.com/jab/bidict/discussions>`__
and the `issue tracker <https://github.com/jab/bidict/issues?q=is%3Aissue>`__
in case your question has already been addressed.

Otherwise, please feel free to
`start a new discussion <https://github.com/jab/bidict/discussions>`__
or `create a new issue <https://github.com/jab/bidict/issues/new>`__ on GitHub,
or ask in the `bidict chatroom <https://gitter.im/jab/bidict>`__
for voluntary community support.


Notice of Usage
---------------

If you use bidict,
and especially if your usage or your organization is significant in some way,
please let me know in any of the following ways:

- `star bidict on GitHub <https://github.com/jab/bidict>`__
- post in `GitHub Discussions <https://github.com/jab/bidict/discussions>`__
- leave a message in the `chat room <https://gitter.im/jab/bidict>`__
- `email me <mailto:jabronson@gmail.com>`__


Changelog
---------

See the :doc:`changelog` [#fn-changelog]_
for a history of notable changes to bidict.


Release Notifications
---------------------

.. duplicated in CHANGELOG.rst:
   (would use `.. include::` but GitHub doesn't understand it)

`Watch <https://github.blog/changelog/2018-11-27-watch-releases/>`__ releases
`on GitHub <https://github.com/jab/bidict>`__
to be notified when new versions of bidict are released.


Learning from bidict
--------------------

One of the best things about bidict
is that it touches a surprising number of
interesting Python corners,
especially given its small size and scope.

Check out :doc:`learning-from-bidict` [#fn-learning]_
if you're interested in learning more.


Contributing
------------

I have been bidict's sole maintainer
and `active contributor <https://github.com/jab/bidict/graphs/contributors>`__
since I started the project almost 15 years ago.

Your help would be most welcome!
See the :doc:`contributors-guide` [#fn-contributing]_
for more information.


Sponsoring
----------

.. duplicated in CONTRIBUTING.rst
   (would use `.. include::` but GitHub doesn't understand it)

.. image:: https://img.shields.io/badge/GitHub-sponsor-ff69b4
  :target: https://github.com/sponsors/jab
  :alt: Sponsor through GitHub

.. image:: https://img.shields.io/github/sponsors/jab
   :target: https://github.com/sponsors/jab
   :alt: Sponsors on GitHub

Bidict is the product of thousands of hours of my unpaid work
over the ~15 years that I've been the sole maintainer.

If bidict has helped you or your company accomplish your work,
please `sponsor my work through GitHub <https://github.com/sponsors/jab>`__
and/or ask your company to do the same.

Choose a tier and GitHub handles everything else.
Your GitHub sponsorship will automatically go
on the same bill you already have set up with GitHub,
so after the one-click signup, there's nothing else to do.

See the following for rationale and examples of companies
supporting the open source projects they depend on
in this manner:

- `<https://www.onepercent.dev>`__
- `<https://www.cognitect.com/blog/supporting-open-source-developers>`__
- `<https://vorpus.org/blog/the-unreasonable-effectiveness-of-investment-in-open-source-infrastructure/>`__

You can also support my work through
`Gumroad <https://gumroad.com/l/bidict>`__ or
`PayPal <https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=jabronson%40gmail%2ecom&lc=US&item_name=Sponsor%20bidict>`__,
or through a support engagement with my LLC.
See `Enterprise Support <#enterprise-support>`__
above for details.


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:

.. [#fn-learning] `<https://bidict.readthedocs.io/learning-from-bidict.html>`__ | `<docs/learning-from-bidict.rst>`__

.. [#fn-changelog] `<https://bidict.readthedocs.io/changelog.html>`__ | `<CHANGELOG.rst>`__

.. [#fn-intro] | `<https://bidict.readthedocs.io/intro.html>`__ | `<docs/intro.rst>`__

.. [#fn-contributing] `<https://bidict.readthedocs.io/contributors-guide.html>`__ | `<CONTRIBUTING.rst>`__