Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
[flake8]
exclude=.git,.pytest_cache,venv
exclude =
.git,
__pycache__,
.pytest_cache,
venv,
docs/conf.py,
old,
build,
dist,
.py27,
.py38,
.py37,
.py36,
venv,
.venv
count = true
max-complexity = 10
max-line-length = 127
statistics = true
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ venv/
ENV/
env.bak/
venv.bak/
.py27
.py36
.py37
.py38

# Spyder project settings
.spyderproject
Expand Down
34 changes: 34 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
-----------

Release 0.1.3 (released January 23, 2020)
============================================

* Refactored get methodology in ``CmixAPIClient`` for use by ``CMixProject`` functions
* Created delete method in ``CmixAPIClient`` for use by ``CMixProject`` functions
* Added functions to ``CmixAPIClient``:

.. code-block:: python

get_projects()
get_survey_data_layouts(survey_id)
get_survey_locales(survey_id)
get_survey_sections(survey_id)
get_survey_simulations(survey_id)
get_survey_termination_codes(survey_id)
get_survey_sources(survey_id)

* Created a ``CMixProject`` class and added functions:

.. code-block:: python

CmixProject.delete_group(group_id)
CmixProject.delete_project()
CmixProject.get_full_links()
CmixProject.get_groups()
CmixProject.get_links()
CmixProject.get_locales()
CmixProject.get_markup_files()
CmixProject.get_project()
CmixProject.get_respondent_links()
CmixProject.get_sources()
CmixProject.get_surveys()
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is an InnerSource python project. It is the work of someone who thought it

This repository is maintained by

1. [Bradley Wogsland](@wogsland)
1. Ridley Larsen [@RidleyLarsen](@RidleyLarsen) / [@DynataRidley](@DynataRidley)

### Community Guidelines

Expand Down
2 changes: 2 additions & 0 deletions CmixAPIClient/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.1.4'
Loading