Re: Extend FAQ with "How do I get Django and my JS framework to work together?"

2019-02-07 Thread Jamesie Pic
Well, there's also Graphene. It's at least REST or GraphQL. Le mar. 5 févr. 2019 à 03:09, Cristiano Coelho a écrit : > Pointing to Django Rest Framework should be more than enough. Anyone > starting a project with Django and a SPA/JS architecture, will pretty much > end up with DRF. Correct me i

Re: Automating the process of creating models from the data file provided

2019-02-07 Thread Collin Anderson
Hi Abhilasha, This is ringing a bell. I almost started working on an "inspectfile" feature many years ago as a Google Summer of Code project. https://groups.google.com/d/topic/django-developers/z88grOaxEHU/discussion https://groups.google.com/d/topic/django-gsoc/V9FdRVZ7gMg/discussion I ended u

Re: Automating the process of creating models from the data file provided

2019-02-07 Thread Carlton Gibson
Hi Abhilasha, There's any number of ways you could go... 🙂 But... Have a look at Simon Willison's Datasette project. http://datasette.readthedocs.io/ In particular see the various ...-to-sqlite tools listed here: https://datasette.readthedocs.io/en/latest/ecosystem.html If you can get that

Automating the process of creating models from the data file provided

2019-02-07 Thread Abhilasha Jha
Hi all, I was thinking if a feature could be added to Django models, such that when the CSV/ text or any other commonly used data file is added to the project and the models are automatically created and populated. I have not tried to go through nitty-gritty of the feature, but am thinking of do

django logging - `ServerFormatter.uses_server_time()` forces users to use `{` logging style

2019-02-07 Thread Łukasz Skarżyński
Hello, I encountered some troubles with django logging configuration during the update from Django 1.11 to 2.1. This issue was related to this commit and generally `ServerFormatter.uses_server_time()` method. T