Situation Modeling Language is an ontology for describing social situations.
Project description
situation is a Python package that provides the Situation Modeling Language (SML) - an ontology for describing social situations.
Overview
The following is a full Situation in which Alice and Bob are members of a Sports Club. When this code is executed, a situation will be created within the database and will then be printed to the screen.
from situation import dump, Person, Group from situation.debug_app import quick with quick().app_context(): bob = Person.create(name="Bob") alice = Person.create(name="Alice") club = Group.create(name="Sports Club") club.members.extend([bob, alice]) print(dump())
A situation is specified using Situation Modeling Language (SML). SML is like a Domain Specific Language for Situations built on top of Python.
A Situation is actually a full database-driven Flask-Diamond application. As an application, this can be an extremely flexible data platform.
Installation
Install situation using Python pip.
pip install situation
Documentation
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
File details
Details for the file situation-0.1.0rc2.tar.gz
.
File metadata
- Download URL: situation-0.1.0rc2.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 968e1595df02fa9170205d60f7548930f3d5a8a20a3c2406434e006d3d9bb310 |
|
MD5 | 040eb056f6381990765747dd95449413 |
|
BLAKE2b-256 | 1efb0150cc6bd41ff7aec8f1f5cded088d43e02c369ef93903b44e05e3f21599 |