``ADDED:``
- Option to include object count in your request.
- If you are trying to get all of your orders, for example, you can set ``include_count=True`` in your request to return the total number of orders. Assists with pagination.
- e.g.:
.. code-block:: python
The perfect number of requests to get all orders
orders, order_count = client.get_orders(include_count=True)
for i in range(order_count//100 + 1):
orders.extend(client.get_orders(start=i)
- verbosity feature to get rid of print statements
``FIXED:``
- Typo in Entry docs
- Better self-documentation by renaming some variables within functions. Will not affect return values.
- Fixed key problem in NHL entity