-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
12 changed files
with
115 additions
and
13 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 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 |
---|---|---|
|
@@ -8,7 +8,9 @@ | |
from __future__ import print_function | ||
from ._version import get_versions | ||
|
||
|
||
from coast_search import query_generator | ||
from coast_search import search | ||
from coast_search import utils | ||
|
||
__author__ = 'Ashley Williams' | ||
__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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ Modules | |
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
|
||
query_generator | ||
search | ||
utils |
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,34 @@ | ||
Query Generator | ||
=========== | ||
|
||
.. _query_generator: | ||
|
||
Introduction | ||
------------ | ||
The query generator module contains functions that can be used to generate a set of queries that follow the heuristics proposed by Rainer and Williams in `IST'18`_ | ||
|
||
.. _IST'18: https://www.sciencedirect.com/science/article/abs/pii/S0950584918302192 | ||
|
||
Usage | ||
----- | ||
|
||
To use the query_generator module: | ||
|
||
.. code-block:: console | ||
>>> import coast_search | ||
>>> coast_search.query_generator.function(to_use) | ||
or: | ||
.. code-block:: console | ||
>>> from coast_search import query_generator | ||
>>> query_generator.function(to_use) | ||
Functions | ||
--------- | ||
|
||
.. automodule:: coast_search.query_generator | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Search | ||
=========== | ||
|
||
.. _search: | ||
|
||
Introduction | ||
------------ | ||
The search module contains functions for conducting searches against the Google Custom Search API, and then for parsing the results. | ||
|
||
Usage | ||
----- | ||
|
||
To use the utils module: | ||
|
||
.. code-block:: console | ||
>>> import coast_search | ||
>>> coast_search.search.function(to_use) | ||
or: | ||
.. code-block:: console | ||
>>> from coast_search import search | ||
>>> search.function(to_use) | ||
Functions | ||
--------- | ||
|
||
.. automodule:: coast_search.search | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Utils | ||
=========== | ||
|
||
.. _utils: | ||
|
||
Introduction | ||
------------ | ||
The utils module contains some helper functions that are used by other modules. However, they are open to be utilised as you wish. | ||
|
||
Usage | ||
----- | ||
|
||
To use the utils module: | ||
|
||
.. code-block:: console | ||
>>> import coast_search | ||
>>> coast_search.utils.function(to_use) | ||
or: | ||
.. code-block:: console | ||
>>> from coast_search import utils | ||
>>> utils.function(to_use) | ||
Functions | ||
--------- | ||
|
||
.. automodule:: coast_search.utils | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
author="Ashley Williams", | ||
author_email='[email protected]', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
|
@@ -50,7 +50,7 @@ | |
test_suite='tests', | ||
tests_require=test_requirements, | ||
url='https://github.com/zedrem/coast_search', | ||
version='0.0.1', | ||
version='1.0.0', | ||
zip_safe=False, | ||
dependency_links=dependency_links | ||
) |