Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-analytics-data-api-client
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
edx-analytics-data-api-client
Commits
5f86255c
Commit
5f86255c
authored
Jun 27, 2014
by
Carlos Andrés Rocha
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1 from rocha/rename-package
Rename package to be consistent with the service
parents
7fc47722
41c8bd98
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
12 deletions
+12
-12
Makefile
+1
-1
analyticsclient/__init__.py
+0
-0
analyticsclient/client.py
+0
-0
analyticsclient/course.py
+1
-1
analyticsclient/status.py
+3
-3
analyticsclient/tests/__init__.py
+1
-1
analyticsclient/tests/test_client.py
+1
-1
analyticsclient/tests/test_course.py
+2
-2
analyticsclient/tests/test_status.py
+2
-2
setup.py
+1
-1
No files found.
Makefile
View file @
5f86255c
ROOT
=
$(
shell
echo
"
$$
PWD"
)
ROOT
=
$(
shell
echo
"
$$
PWD"
)
COVERAGE
=
$(ROOT)
/build/coverage
COVERAGE
=
$(ROOT)
/build/coverage
PACKAGE
=
edx_analytics_api_
client
PACKAGE
=
analytics
client
DATABASES
=
default analytics
DATABASES
=
default analytics
validate
:
test.requirements test quality
validate
:
test.requirements test quality
...
...
edx_analytics_api_
client/__init__.py
→
analytics
client/__init__.py
View file @
5f86255c
File moved
edx_analytics_api_
client/client.py
→
analytics
client/client.py
View file @
5f86255c
File moved
edx_analytics_api_
client/course.py
→
analytics
client/course.py
View file @
5f86255c
...
@@ -13,7 +13,7 @@ class Course(object):
...
@@ -13,7 +13,7 @@ class Course(object):
Arguments:
Arguments:
client (
edx_analytics_api_
client.client.Client): The client to use to access remote resources.
client (
analytics
client.client.Client): The client to use to access remote resources.
course_key (mixed): An object that when passed to unicode() returns the unique identifier for the course as
course_key (mixed): An object that when passed to unicode() returns the unique identifier for the course as
it is represented in the data pipeline results.
it is represented in the data pipeline results.
...
...
edx_analytics_api_
client/status.py
→
analytics
client/status.py
View file @
5f86255c
from
edx_analytics_api_
client.client
import
ClientError
from
analytics
client.client
import
ClientError
class
Status
(
object
):
class
Status
(
object
):
...
@@ -8,7 +8,7 @@ class Status(object):
...
@@ -8,7 +8,7 @@ class Status(object):
Arguments:
Arguments:
client (
edx_analytics_api_
client.client.Client): The client to use to access remote resources.
client (
analytics
client.client.Client): The client to use to access remote resources.
"""
"""
...
@@ -18,7 +18,7 @@ class Status(object):
...
@@ -18,7 +18,7 @@ class Status(object):
Arguments:
Arguments:
client (
edx_analytics_api_
client.client.Client): The client to use to access remote resources.
client (
analytics
client.client.Client): The client to use to access remote resources.
"""
"""
self
.
client
=
client
self
.
client
=
client
...
...
edx_analytics_api_
client/tests/__init__.py
→
analytics
client/tests/__init__.py
View file @
5f86255c
from
edx_analytics_api_
client.client
import
Client
,
ClientError
from
analytics
client.client
import
Client
,
ClientError
class
InMemoryClient
(
Client
):
class
InMemoryClient
(
Client
):
...
...
edx_analytics_api_
client/tests/test_client.py
→
analytics
client/tests/test_client.py
View file @
5f86255c
...
@@ -3,7 +3,7 @@ from unittest import TestCase
...
@@ -3,7 +3,7 @@ from unittest import TestCase
import
httpretty
import
httpretty
from
edx_analytics_api_
client.client
import
RestClient
,
ClientError
from
analytics
client.client
import
RestClient
,
ClientError
class
RestClientTest
(
TestCase
):
class
RestClientTest
(
TestCase
):
...
...
edx_analytics_api_
client/tests/test_course.py
→
analytics
client/tests/test_course.py
View file @
5f86255c
from
unittest
import
TestCase
from
unittest
import
TestCase
from
edx_analytics_api_
client.course
import
Course
from
analytics
client.course
import
Course
from
edx_analytics_api_
client.tests
import
InMemoryClient
from
analytics
client.tests
import
InMemoryClient
class
CourseTest
(
TestCase
):
class
CourseTest
(
TestCase
):
...
...
edx_analytics_api_
client/tests/test_status.py
→
analytics
client/tests/test_status.py
View file @
5f86255c
from
unittest
import
TestCase
from
unittest
import
TestCase
from
edx_analytics_api_
client.status
import
Status
from
analytics
client.status
import
Status
from
edx_analytics_api_
client.tests
import
InMemoryClient
from
analytics
client.tests
import
InMemoryClient
class
StatusTest
(
TestCase
):
class
StatusTest
(
TestCase
):
...
...
setup.py
View file @
5f86255c
...
@@ -3,7 +3,7 @@ from distutils.core import setup
...
@@ -3,7 +3,7 @@ from distutils.core import setup
setup
(
setup
(
name
=
'edx-analytics-api-client'
,
name
=
'edx-analytics-api-client'
,
version
=
'0.1.0'
,
version
=
'0.1.0'
,
packages
=
[
'
edx_analytics_api_
client'
],
packages
=
[
'
analytics
client'
],
url
=
'https://github.com/edx/edx-analytics-api-client'
,
url
=
'https://github.com/edx/edx-analytics-api-client'
,
description
=
'Client used to access edX analytics data warehouse'
,
description
=
'Client used to access edX analytics data warehouse'
,
long_description
=
open
(
'README.rst'
)
.
read
(),
long_description
=
open
(
'README.rst'
)
.
read
(),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment