The bidirectional mapping library for Python.
Go to file
jab 1a8e11f163 strengthen too-weak assume(..) in test_eq_ne_hash, use "max_examples=5000" for nightly CI jobs, add .readthedocs.yml
The `assume(init_items != init_unequal)` was not sufficient
because it would allow cases like:

    bi_cls=bidict, other_cls=bidict, init_items=[(1, 0), (0, 1)], init_unequal=[(0, 1), (1, 0)]

causing the resulting bidicts' item sets to still be equal,
so assertions like

    assert items_match(some_bidict, other_unequal, relation=ne)

would fail.

Changing the assume to

    assume(set(init_items) != set(init_unequal))

fixes the issue.

Surprisingly, hypothesis only just found a failing example for this
for the first time (in https://travis-ci.org/jab/bidict/jobs/363962257)
despite having numerous opportunities to find it before.
Using a new max_examples=5000 hypothesis profile, only on nightly CI,
should help surface any remaining issues that hypothesis hasn't found yet,
without slowing commit-triggered tests with too much example generation.

Also improve Travis config:
- ditch ALLOW_FAIL=1, for some reason it didn't work
- comment out python 3.7-dev job while Travis is stuck on an old 3.7 alpha
- don't use "- |" command block where we want to see output after each command
- prefix more network-dependent commands with travis_retry

Finally, improve docs building setup:
- Factor out sphinx from "dev" extras_require to its own "docs" extras_require.
- Add a .readthedocs.yml to customize the readthedocs build.
  Use pip and the "docs" extras_require to get an up-to-date Sphinx version.
  Fixes some broken :ref:`addendum:...`  autosectionlabel links in learning-from-bidict.
2018-04-10 11:31:29 +07:00
_static docs tweaks and fixes 2018-03-28 09:20:12 +07:00
bidict bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
docs bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
tests strengthen too-weak assume(..) in test_eq_ne_hash, use "max_examples=5000" for nightly CI jobs, add .readthedocs.yml 2018-04-10 11:31:29 +07:00
.LICENSE_HEADER update pre-commit hooks, enable pylint 2018-04-07 12:22:36 +07:00
.coveragerc switch to codecov for automatic combining of coverage reports 2017-11-20 13:28:38 -05:00
.editorconfig refactor, tests + docs improvements 2015-04-27 11:08:27 -04:00
.gitignore bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
.pre-commit-config.yaml update pre-commit hooks, enable pylint 2018-04-07 12:22:36 +07:00
.pylintrc improve hypothesis tests, use of setuptools_scm and linting 2018-02-26 10:44:21 +11:00
.readthedocs.yml strengthen too-weak assume(..) in test_eq_ne_hash, use "max_examples=5000" for nightly CI jobs, add .readthedocs.yml 2018-04-10 11:31:29 +07:00
.travis.yml strengthen too-weak assume(..) in test_eq_ne_hash, use "max_examples=5000" for nightly CI jobs, add .readthedocs.yml 2018-04-10 11:31:29 +07:00
CHANGELOG.rst prepare for v0.16.0 release 2018-04-06 11:32:00 +07:00
CODE_OF_CONDUCT.rst bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
CONTRIBUTING.rst bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
LICENSE change license to MPLv2 2017-03-15 16:43:05 -04:00
MANIFEST.in alphabetize MANIFEST.in 2018-01-15 20:39:20 -05:00
PYPI_DOWNLOAD_STATS.rst bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
README.rst bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
appveyor.yml test python 2.7 on appveyor instead of 3.5 2018-02-19 13:57:41 +11:00
build-docs.sh bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
pytest.ini bidict.pairs -> _iteritems_args_kw, docs + other small improvements 2018-04-06 11:28:44 +07:00
setup.cfg update pre-commit hooks, enable pylint 2018-04-07 12:22:36 +07:00
setup.py strengthen too-weak assume(..) in test_eq_ne_hash, use "max_examples=5000" for nightly CI jobs, add .readthedocs.yml 2018-04-10 11:31:29 +07:00
tox.ini various code and CI improvements + dependency updates (#42) 2017-11-16 15:44:51 -05:00

README.rst

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

bidict
======

Efficient, Pythonic bidirectional map implementation and related functionality.

.. image:: ./_static/logo.png
   :target: https://bidict.readthedocs.io/
   :alt: bidict logo


Status
------

.. Hide until https://github.com/badges/shields/issues/716 is fixed
   .. image:: https://img.shields.io/pypi/dm/bidict.svg
      :target: https://pypi.python.org/pypi/bidict
      :alt: Downloads per month

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

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

.. image:: https://api.travis-ci.org/jab/bidict.svg?branch=master
   :target: https://travis-ci.org/jab/bidict
   :alt: Travis-CI build status

.. image:: https://ci.appveyor.com/api/projects/status/gk133415udncwto3/branch/master?svg=true
   :target: https://ci.appveyor.com/project/jab/bidict
   :alt: AppVeyor (Windows) build status

.. image:: https://codecov.io/gh/jab/bidict/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/jab/bidict
   :alt: Test coverage

.. image:: https://api.codacy.com/project/badge/Grade/6628756a73254cd895656348236833b8
   :target: https://www.codacy.com/app/jab/bidict
   :alt: Codacy grade

.. Hide to reduce clutter
   .. image:: https://img.shields.io/pypi/pyversions/bidict.svg
      :target: https://pypi.python.org/pypi/bidict
      :alt: Supported Python versions
   .. image:: https://img.shields.io/pypi/implementation/bidict.svg
      :target: https://pypi.python.org/pypi/bidict
      :alt: Supported Python implementations
   .. image:: https://img.shields.io/badge/lgtm-👍-blue.svg
      :target: https://lgtm.com/projects/g/jab/bidict/
      :alt: LGTM

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


Bidict:
^^^^^^^

- is in use by several teams at Google, Venmo, CERN, Bank of America Merrill Lynch,
  Two Sigma, and many others,
- has carefully designed APIs for
  safety, simplicity, flexibility, and ergonomics,
- is CPython-, PyPy-, Python 2-, and Python 3-compatible,
- has extensive `test coverage <https://codecov.io/gh/jab/bidict>`__,
  including property-based tests and benchmarks,
  which are run continuously on all supported Python versions and OSes,
- integrates with Pythons collections interfaces and abstract base classes,
- has mature, well-factored, well-documented code.


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.inv['hydrogen']
   'H'


For more usage documentation,
head to the :doc:`intro` [#fn-intro]_
and proceed from there.


Community and Support
---------------------

.. image:: https://img.shields.io/badge/chat-on%20gitter-5AB999.svg?logo=gitter-white
   :target: https://gitter.im/jab/bidict
   :alt: 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 <https://gitter.im/jab/bidict>`__
or to open a new issue on GitHub.
You can search through
`existing issues <https://github.com/jab/bidict/issues>`__
before creating a new one
in case your questions or concerns have been adressed there already.


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:

- quickly +1 `this issue <https://github.com/jab/bidict/issues/62>`__
- create your own `dedicated issue <https://github.com/jab/bidict/issues/new?title=Notice+of+Usage&body=I+am+using+bidict+for...>`__
- leave a message in the `chat room <https://gitter.im/jab/bidict>`__
- `email me <mailto:jab@math.brown.edu?subject=bidict&body=I%20am%20using%20bidict%20for...>`__


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)

.. image:: https://img.shields.io/badge/libraries.io-subscribe-5BC0DF.svg
   :target: https://libraries.io/pypi/bidict
   :alt: Follow on libraries.io

Tip: `Subscribe to bidict releases <https://libraries.io/pypi/bidict>`__
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 :doc:`learning-from-bidict` [#fn-learning]_
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 :doc:`explore some advanced Python <learning-from-bidict>`
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 <https://github.com/jab/bidict/issues/new?title=Review+results>`__
issue both work well.)

You can also
+1 `this issue <https://github.com/jab/bidict/issues/63>`__
to sign up to give feedback on future proposed changes
that are in need of a reviewer.


Funding
^^^^^^^

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

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.
Any amount contributed is gratefully received.

.. image:: https://raw.githubusercontent.com/jab/bidict/master/_static/support-on-gumroad.png
   :target: https://gumroad.com/l/bidict
   :alt: 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:

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

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

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


----

Next: :doc:`intro`