Add a short description here!
Project description
Qase TMS Python Api Client
Installation
TBD
Usage
Qase.io uses API tokens to authenticate requests. You can view an manage your API keys in API tokens pages.
You must replace api_token with your personal API key.
from qaseio import QaseApi
qase = QaseApi("api_token")
Projects
Get All Projects
This method allows to retrieve all projects available for your account. You can you limit and offset params to paginate.
projects = qase.projects.get_all()
Get All Projects
This method allows to retrieve a specific project.
projects = qase.projects.get("PRJCODE")
Create a new project
This method is used to create a new project through API.
from qaseio.models import ProjectCreate
projectCreated = qase.projects.create(
ProjectCreate("Test project", "PRJCODE")
)
Test cases
Get all test cases
This method allows to retrieve all test cases stored in selected project. You can you limit and offset params to paginate.
test_cases = qase.test_cases.get_all("PRJCODE")
Get a specific test case
This method allows to retrieve a specific test case.
test_cases = qase.test_cases.get("PRJCODE", 4)
Delete test case
This method completely deletes a test case from repository.
result = qase.test_cases.delete("PRJCODE", 4)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file qaseio-1.0.0a1.tar.gz
.
File metadata
- Download URL: qaseio-1.0.0a1.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84e7035edbc845e3884741569a7921805397353f187da2c495db4b18dc9f349f |
|
MD5 | 0d901eda0f1b4559c01cfec60bfadb8a |
|
BLAKE2b-256 | 19cbec6206fdc9234a77f9ba50238c117b6413e9d04a41cd0e0c78e451ceff02 |
File details
Details for the file qaseio-1.0.0a1-py2.py3-none-any.whl
.
File metadata
- Download URL: qaseio-1.0.0a1-py2.py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 208932ad89d2cd97140a75c9465a6ca94de89bf65facf2f107bfdd0599db77ae |
|
MD5 | afcd44f8df8bf642f201a77c41780d0d |
|
BLAKE2b-256 | aa725c500a9ea80fb56da73928df287d939342a099e771c54de268b4af917c18 |