https://github.com/christianmurphy/problem-space-py
Takes a question template, creates questions in the problems space
https://github.com/christianmurphy/problem-space-py
python questions sparql wikidata z3
Last synced: about 1 year ago
JSON representation
Takes a question template, creates questions in the problems space
- Host: GitHub
- URL: https://github.com/christianmurphy/problem-space-py
- Owner: ChristianMurphy
- License: apache-2.0
- Created: 2018-10-27T23:58:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T22:34:25.000Z (over 7 years ago)
- Last Synced: 2025-02-02T01:12:09.630Z (over 1 year ago)
- Topics: python, questions, sparql, wikidata, z3
- Language: Python
- Size: 45.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# problem-space
[](https://travis-ci.com/ChristianMurphy/problem-space-py)
for Python
> Takes a question template, creates questions in the problems space
## Usage
### CLI
```sh
problem-space --input example/addition.md
# alternatively
poetry run problem-space --input example/addition.md
```
## Local Development
### Setup
1. _Optional_ [install pyenv](https://github.com/pyenv/pyenv) (`curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash` then `pyenv update`)
2. [Install Python 3.6+](https://www.python.org/downloads) (`pyenv install 3.7.1`)
3. [Install Poetry](https://poetry.eustace.io/docs/) (`curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python`)
4. `poetry install`
### Test
```sh
poetry run pytest
```
### Format Code
```sh
poetry run black .
```