-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed #76 : renamed endpoints to retrievers for clarity
- Loading branch information
1 parent
e5fe59d
commit 150861d
Showing
15 changed files
with
49 additions
and
45 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
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
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,9 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
.. module:: MyCapytain.retrievers | ||
:synopsis: Implementation and abstraction of CTS related retrievers | ||
.. moduleauthor:: Thibault Clérice <[email protected]> | ||
""" |
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,13 +1,13 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
.. module:: MyCapytain.endpoints.ahab | ||
.. module:: MyCapytain.retrievers.ahab | ||
:synopsis: Ahab endpoint implementation | ||
.. moduleauthor:: Thibault Clérice <[email protected]> | ||
""" | ||
import MyCapytain.endpoints.proto | ||
import MyCapytain.retrievers.proto | ||
import requests | ||
|
||
|
||
|
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,20 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
.. module:: MyCapytain.endpoints.cts5 | ||
.. module:: MyCapytain.retrievers.cts5 | ||
:synopsis: CTS5 endpoint implementation | ||
.. moduleauthor:: Thibault Clérice <[email protected]> | ||
""" | ||
import MyCapytain.endpoints.proto | ||
import MyCapytain.retrievers.proto | ||
import requests | ||
|
||
|
||
class CTS(MyCapytain.endpoints.proto.CTS): | ||
class CTS(MyCapytain.retrievers.proto.CTS): | ||
|
||
""" | ||
Basic integration of the MyCapytain.endpoints.proto.CTS abstraction | ||
Basic integration of the MyCapytain.retrievers.proto.CTS abstraction | ||
""" | ||
|
||
def __init__(self, endpoint, inventory=None): | ||
|
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,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
.. module:: MyCapytain.endpoints.proto | ||
.. module:: MyCapytain.retrievers.proto | ||
:synopsis: Prototypes of APIs endpoint | ||
.. moduleauthor:: Thibault Clérice <[email protected]> | ||
|
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
setup( | ||
name='MyCapytain', | ||
version=MyCapytain.__version__, | ||
description='Abstraction of CTS API for Python', | ||
description='Library for CTS APIs and CapiTainS guidelines in Python', | ||
url='http://github.com/Capitains/MyCapytain', | ||
author='Thibault Clerice', | ||
author_email='[email protected]', | ||
|
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