Skip to content

Version 3 docs #132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,14 @@ Patches and Suggestions
- `Grant McConnaughey <https://github.com/grantmcconnaughey>`_
- `Robert Elliott <https://github.com/greenafrican>`_
- `Jared Morse <https://github.com/jarcoal>`_
- `neocortex <https://github.com/neocortex>`_
- `Rafael <https://github.com/neocortex>`_
- `jacoor <https://github.com/jacoor>`_
- `maiiku <https://github.com/maiiku>`_
- `Piotr Kilczuk <https://github.com/centralniak>`_
- `Forrest Scofield <https://github.com/fscofield>`_
- `Jordan Feldstein <https://github.com/jfeldstein>`_
- `François Voron <https://github.com/frankie567>`_
- `Gertjan Oude Lohuis <https://github.com/gertjanol>`_

Intercom
~~~~~~~~
Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
=========

* 3.0b3
* Added UTC datetime everywhere. (`#130 <https://github.com/jkeyes/python-intercom/pull/130>`_)
* Fixed connection error when paginating. (`#125 <https://github.com/jkeyes/python-intercom/pull/125>`_)
* Added Personal Access Token support. (`#123 <https://github.com/jkeyes/python-intercom/pull/123>`_)
* Fixed links to Intercom API documentation. (`#115 <https://github.com/jkeyes/python-intercom/pull/115>`_)
* 3.0b2
* Added support for Leads. (`#113 <https://github.com/jkeyes/python-intercom/pull/113>`_)
* Added support for Bulk API. (`#112 <https://github.com/jkeyes/python-intercom/pull/112>`_)
* 3.0b1
* Moved to new client based approach. (`#108 <https://github.com/jkeyes/python-intercom/pull/108>`_)
* 2.1.1
* No runtime changes.
* 2.1.0
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Users
intercom.users.save(user)
# Perform incrementing
user.increment('karma')
intercom.users.save()
intercom.users.save(user)
# Iterate over all users
for user in intercom.users.all():
...
Expand Down Expand Up @@ -468,7 +468,7 @@ Counts
.. code:: python

# App-wide counts
intercom.counts.for_app
intercom.counts.for_app()

# Users in segment counts
intercom.counts.for_type(type='user', count='segment')
Expand Down
3 changes: 2 additions & 1 deletion docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Runtime Dependencies
* `inflection <http://inflection.readthedocs.org/en/latest/>`_ – Inflection is a string transformation library. It singularizes and pluralizes English words, and transforms strings from CamelCase to underscored string.
* `six <https://bitbucket.org/gutworth/six>`_ – Six is a Python 2 and 3 compatibility library. It provides utility functions for smoothing over the differences between the Python versions with the goal of writing Python code that is compatible on both Python versions.
* `certifi <http://certifi.io/>`_ – Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts.
* `pytz <http://pythonhosted.org/pytz/>`_ – pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations. It also solves the issue of ambiguous times at the end of daylight saving time.

Development Dependencies
------------------------
Expand All @@ -50,7 +51,7 @@ Development Dependencies
* `coverage <http://nedbatchelder.com/code/coverage/>`_ – code coverage.
* `mock <http://www.voidspace.org.uk/python/mock/>`_ – patching methods for unit testing.
* `Sphinx <http://sphinx.pocoo.org/>`_ – documentation decorator.

* `Sphinx theme for readthedocs.org <https://github.com/snide/sphinx_rtd_theme>`_ – theme for the documentation.

Authors
-------
Expand Down
4 changes: 2 additions & 2 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ How do I start a session?

::

user = User.create(email='bingo@example.com')
user = intercom.users.create(email='bingo@example.com')
# register a new session
user.new_session = True
user.save()
intercom.users.save(user)
Loading