-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updating to 0.1.4 Changes: - default create_on{ha,junk} fixed according to API - added licence type to the create method of sources - added old_password argument to password chagnge method * Fixing tests * Removed deprecated entries module * Removed tests of entries * Updated changelogˆ * Doing version the right way * Bump version: 0.1.3 → 0.1.4 * Removed Python 3.4 support * Added licence choices Changes: - kinda enum class that encapsulates all available licences * Fixing licences types * Removing entries from examples and client * Removing entries from docs * Revert "Removing entries from examples and client" This reverts commit 87f98a1 * Revert "Removed deprecated entries module" This reverts commit 43b8795 * Removed records * Returning entries docs * Bump version: 0.1.4 → 0.1.5 * Returning entries in client * Revert "Removed deprecated entries module" This reverts commit 43b8795 * Removed docs for records * Revert "Removing entries from docs" This reverts commit 5fe7db5
- Loading branch information
Showing
14 changed files
with
55 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
docs/identixone.api.records.rst → docs/identixone.api.entries.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
identixone.api.records package | ||
identixone.api.entries package | ||
============================== | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
|
||
identixone.api.records.v1 | ||
identixone.api.entries.v1 | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: identixone.api.records | ||
.. automodule:: identixone.api.entries | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = """Identix One""" | ||
__email__ = 'dev@identix.one' | ||
__version__ = '0.1.4' | ||
__version__ = '0.1.5' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from identixone.api.entries.v1.entries import Entries | ||
|
||
__all__ = [Entries] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class Entries(object): | ||
|
||
def __init__(self, http_client): | ||
self.http_client = http_client | ||
|
||
def list(self, **kwargs): | ||
return self.http_client.get('v1/entries/', params=kwargs) | ||
|
||
def delete(self, id): | ||
return self.http_client.delete('v1/entries/{}/'.format(id)) | ||
|
||
def stats_idxid(self, idxid): | ||
return self.http_client.get('v1/entries/stats/idxid/{}/'.format(idxid)) | ||
|
||
def stats_sources(self, **kwargs): | ||
return self.http_client.get('v1/entries/stats/sources/', params=kwargs) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.1.4 | ||
current_version = 0.1.5 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters