Results 39 issues of Mantas Zimnickas

It would be great if django-environ could initialize `.env` file with secret key automatically generated. I imagine, this could look like this: ``` python import environ environ.init(SECRET_KEY=environ.genpass()) ``` `environ.init` would...

enhancement

Some times it is hard to understand which example of all available languages to follow. Having a canonical language, where all other examples should be based on would help. So...

enhancement
question

Here is a code example:: ``` # models.py from couchdbkit.ext.django import schema LICENCE_CHOICES = ( ('gpl', _('GPL')), ('lgpl', _('LGPL')), ('bsd', _('BSD')), ) class Work(schema.Document): licence = schema.StringProperty(_('Licence'), required=True, default='gpl', choices=LICENCE_CHOICES)...

I have implemented some sort of foreign keys automatic fetching. For this I just created custom Property, that automatically returns related document from database when such property is __get__. But...

Here is patch to tests, that demonstrates, how to reprodice this bug: ``` diff --git a/tests/test_schema.py b/tests/test_schema.py index d141ebf..f7c8058 100644 --- a/tests/test_schema.py +++ b/tests/test_schema.py @@ -1353,6 +1353,10 @@ class PropertyTestCase(unittest.TestCase):...

In my project I have one Couchdb database that is used by all my Django applications. Using couchdbkit.ext.django settings, I have repeat database across all my applications: ``` COUCHDB_DATABASES =...

**Suggestion** Lark really makes creating parsers easy, but unfortunately generated parser is very slow. I recently had to debug why things are so slow and found that most of the...

enhancement

Buildout is really awesome tool, but it starting to become outdated. To fix buildout here is a list of things, that needs to be fixed: # Clean project directory ```...

I just finished cleaning up spam users. It looks, that Spirit does not have any protection against Spam, because I had to clean about 6000 spam users, with random user...

Thanks for the Spirit I really like it and started to migrate ubuntu.lt forum, here is the demo: https://demo.ubuntu.lt What do you think about adding possibility to sort topic comments...