mirror of
https://github.com/kennethreitz-archive/python-convore.git
synced 2026-06-05 23:40:18 +00:00
Merge branch 'adi' into async
Conflicts: convore/api.py
This commit is contained in:
@@ -10,4 +10,5 @@ Patches and Suggestions
|
||||
```````````````````````
|
||||
|
||||
- The Convore Peeps
|
||||
- Adi J. Sieker <adi@sieker.info>
|
||||
- Adi J. Sieker <adi@sieker.io>
|
||||
- Cole Kowalski <colekowalski@gmail.com>
|
||||
|
||||
+1
-1
@@ -61,7 +61,7 @@ Hmm.. ::
|
||||
Installation
|
||||
------------
|
||||
|
||||
To install tablib, simply: ::
|
||||
To install convore, simply: ::
|
||||
|
||||
$ pip install convore
|
||||
|
||||
|
||||
@@ -479,3 +479,4 @@ class Endpoints(object):
|
||||
|
||||
def call(self, endpoint, **params):
|
||||
return endpoint.call(auth=self.auth, **params)
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ setup(
|
||||
author='Kenneth Reitz',
|
||||
author_email='me@kennethreitz.com',
|
||||
url='https://github.com/kennethreitz/python-convore',
|
||||
packages= ['convore'],
|
||||
packages= ['convore', 'convore.packages', 'convore.packages.anyjson'],
|
||||
install_requires=required,
|
||||
license='ISC',
|
||||
classifiers=(
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
from convore import Convore
|
||||
|
||||
|
||||
CONVORE_NAME = os.environ.get('CONVORE_NAME', 'requeststest')
|
||||
CONVORE_PASS = os.environ.get('CONVORE_PASS', 'requeststest')
|
||||
|
||||
convore = Convore(CONVORE_NAME, CONVORE_PASS)
|
||||
|
||||
#print convore.groups.discover.category
|
||||
convore.groups.discover.search('github')
|
||||
Reference in New Issue
Block a user