-
Python 3.11 offers some performance improvements that are good to have: https://docs.python.org/3/whatsnew/3.11.html#faster-runtime.
Python 3.11 also is a must-have for all Apple Silicone owners if…
-
I just ran into this lightweight ORM:
http://docs.peewee-orm.com/en/latest/
May be worth it supporting it along the lines of more.transaction, or maybe even with more.transaction if we can get Peewe…
-
Have you considered merging these changes directly to PonyORM?
-
Hello,
I'm not sure if this is the place to put this question. If there is a better place please let me know.
Is there a DB migration tool for pony orm? Something like alembic for sqlalchemy..
-
I find Pony to be a nice orm to use for small projects. However, when your project grows past a certain point placing `@db_session` in your functions becomes almost compulsory for every function that…
-
[Pony](https://github.com/ponyorm/pony) does not yet support Python 3.10. Therefore Arrnounced does not support Python 3.10.
Either wait until the [pony 3.10 branch](https://github.com/ponyorm/pony/c…
-
TortoiseORM, PonyORM, etc
-
Hi,
Here a small matter I have with ponyorm. In ponyorm you can make query to database with lambda or generator expressions.
those 2 thing are equivalent :
```python
return Praticien.select(lambd…
-
I have next entity:
```
class SchemaEntity(db.Entity):
id = orm.PrimaryKey(uuid.UUID, default=uuid.uuid4())
source_name = orm.Required(str)
target_name = orm.Required(str)
```
I…
-
ponyorm has a pattern for encapsulating the database binding, which is incredibly obvious in hindsight: https://github.com/ponyorm/pony/issues/330#issuecomment-470153594
tl;dr: encapsulate `model`'…