Eero af Heurlin
Eero af Heurlin
It would be nice that the "public api" in __init__.py would explicitly re-export via __all__ everything that should be accessible on that level.
The proposal of using ENV/config variable sounds reasonable to maintain backwards compatibility while allowing integration of libraries that use the python standard logging systems correctly
I also plan to completely modernize this library but that will be a separate package called awsgi2, I'll be posting links when it's time.
https://gitlab.com/advian-oss/python-awsgi2 for the fork for people still stuck with non async WSGI apps.
I have no idea where that attempt to pass --permissions to setup.py in those failing recipe tests, nothing I've touched IMO
Bumping this. It's super-important to specify the license explicitly somewhere. if having trouble choosing, MIT or BSD are always good choices.
I guess https://github.com/benfred/py-spy/issues/216 is relevant as well. I'm seeing same issue as https://github.com/benfred/py-spy/issues/216#issuecomment-1722555568 on python 3.11.9 in virtualenv.
Root cause might be on the client side, I will update tests to demonstrate later but when I moved the server to a subprocess in the project where I originally...
Also one mixin for using UUID as the primary key. ``` class UUIDPrimaryMixin(models.Model): uuid = UUIDField(auto=True, primary_key=True) class Meta: abstract = True ```
And one more mixin I made for myself: ``` class UUIDLoaderMixin(object): def get_object(self): return get_object_or_404(self.model, uuid=self.kwargs['uuid']) ``` Used: ``` class FooDetailView(UUIDLoaderMixin, DetailView): model = Foo ```