A testing library for Speckle models
Project description
Maple
Automate your model Quality Check with Speckle and Maple
About
Maple is a library designed to write simple code that can check different attributes of a Model in Speckle.
Using Maple you can write test specs
that check any parameter
or quantity inside the project model.
Maple can be integrated into Speckle Automate to run the quality check tests on a continuous integration and ensure project standards. See Maple-Automate-CI to check the full implementation of maple in Speckle Automate.
Get started
For a more detailed guide check out Getting started
Install the library from PyPi
pip install maple-spec
Then, create your main.py
to test your specs locally
# main.py
import maple as mp
def spec_a():
mp.it("checks window height is greater than 2600 mm")
mp.get('category', 'Windows')\
.where('speckle_type',
'Objects.Other.Instance:Objects.Other.Revit.RevitInstance')\
.its('Height')\
.should('be.greater', 2600)
# Use the project and model id of one of your projects
mp.init_model(project_id="24fa0ed1c3", model_id="2696b4a381")
mp.run(spec_a)
For this to work out of the box, you should have the Speckle Manager
installed and your account set-up, so Maple can fetch the data from your stream
.
If not, alternatively you can set an environment variable called SPECKLE_TOKEN
with a Speckle token that can read from streams, for example:
SPECKLE_TOKEN="your-secret-token"
Finally run the file with python like so:
python main.py
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 maple_spec-0.0.9.tar.gz
.
File metadata
- Download URL: maple_spec-0.0.9.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f59d875e50faab799ee668cd29230bc8a3f04cc2941a2d30aadfabb522f3e2c |
|
MD5 | d85b72afa4bc71e50b5eb330a3dffdac |
|
BLAKE2b-256 | 15e21c64c7bd7f21f88548132c41f657afbb22241f5f70fc9010e46b35a1eec1 |
File details
Details for the file maple_spec-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: maple_spec-0.0.9-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c62d563245e27a87e6024ee28404256f743317a992844800276686583c71589c |
|
MD5 | 96dd0ab1d02fad67ab51b5ed643e4d2f |
|
BLAKE2b-256 | 0de6936e795a74974e5c9d70c62035e09bcfb64acda4b9668bf0729c72ef8fc2 |