-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from jaredhobbs/master
Synchronize repo with PyPI package v2.1
- Loading branch information
Showing
14 changed files
with
254 additions
and
200 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
tags | ||
*.py[co] | ||
.* | ||
MANIFEST | ||
dist/* | ||
agithub.egg-info/ | ||
agithub.egg-info/ | ||
build/ | ||
|
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
# Copyright 2012-2016 Jonathan Paugh and contributors | ||
# See COPYING for license details | ||
from agithub.base import * | ||
from agithub.base import API, Client, ConnectionProperties | ||
|
||
|
||
class Maven(API): | ||
''' | ||
""" | ||
Maven Search API | ||
''' | ||
""" | ||
def __init__(self, *args, **kwargs): | ||
props = ConnectionProperties( | ||
api_url = 'search.maven.org' | ||
, url_prefix = '/solrsearch' | ||
, secure_http = True | ||
) | ||
api_url='search.maven.org', | ||
url_prefix='/solrsearch', | ||
secure_http=True, | ||
) | ||
self.setClient(Client(*args, **kwargs)) | ||
self.setConnectionProperties(props) |
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Copyright 2012-2016 Jonathan Paugh and contributors | ||
# See COPYING for license details | ||
from functools import partial, update_wrapper | ||
from agithub.base import VERSION, STR_VERSION | ||
|
||
__all__ = [ "VERSION", "STR_VERSION" ] | ||
__all__ = ["VERSION", "STR_VERSION"] |
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
Oops, something went wrong.