msladecek
msladecek
## Issue see #54 ### Summary Cardinality labels on relationships labels are drawn in a different order compared to common ER schemes, which causes confusion when interpreting the diagram. ###...
Example model: ```python from sqlalchemy import Column, Integer, String, ForeignKey from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import relationship from eralchemy import render_er Base = declarative_base() class Person(Base): __tablename__ = 'person'...
There have been a couple of removals of deprecated parameters/methods in python 3.10 so aiochan would no longer work. In this MR, I fixed the deprecated loop parameter on `Event`...
## Issue In bar charts available at https://metosin.github.io/reitit/performance.html, it is not obvious at first glance which metric is being compared across different frameworks. In the current version, it is not...
An array without specified `items:` passes validation. From [swagger.io](https://swagger.io/docs/specification/data-models/data-types/#array): > the items keyword is required in arrays ### Example (correct version) ```yaml definitions: Pet: required: - id - name properties:...
### Summary `aiocron` relies on [croniter](https://github.com/kiorky/croniter) to interpret the scheduling spec by constructing a `croniter` instance internally on the `Cron` object. `croniter` supports some additional features such as [hashed expressions](https://github.com/kiorky/croniter#hashed-expressions)...
## Description of changes Adding [jsonld-cli](https://github.com/digitalbazaar/jsonld-cli) a command line tool for manipulating objects represented in the json-ld format. ## Things done - Built on platform(s) - [x] x86_64-linux - [...