https://github.com/vb64/pipeline.material
Pipeline material class for static integrity calculation
https://github.com/vb64/pipeline.material
integrity material pipeline
Last synced: 6 months ago
JSON representation
Pipeline material class for static integrity calculation
- Host: GitHub
- URL: https://github.com/vb64/pipeline.material
- Owner: vb64
- License: mit
- Created: 2023-12-10T14:39:57.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-12T11:14:27.000Z (almost 2 years ago)
- Last Synced: 2025-03-05T06:14:14.255Z (7 months ago)
- Topics: integrity, material, pipeline
- Language: Makefile
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: history.txt
- License: LICENSE
Awesome Lists containing this project
README
# Pipeline material class for static integrity calculation
[](https://github.com/vb64/pipeline.material/actions?query=workflow%3Apep257)
[](https://github.com/vb64/pipeline.material/actions?query=workflow%3Apy2)
[](https://github.com/vb64/pipeline.material/actions?query=workflow%3Apy3)
[](https://app.codacy.com/gh/vb64/pipeline.material/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[](https://app.codacy.com/gh/vb64/pipeline.material/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)## Installation
```bash
pip install pipeline-material
```## Usage
```python
from pipeline_material import PipelineMaterialmaterial = PipeMaterial("Steel", 20000)
assert material.smys == 20000
assert "smys 20000" in str(material)
```## Development
```bash
git clone git@github.com:vb64/pipeline.material.git
cd pipeline.material
```With Python 3:
```bash
make setup PYTHON_BIN=/path/to/python3
make tests
```With Python 2:
```bash
make setup2 PYTHON_BIN=/path/to/python2
make tests2
```