Chatbot

2019-10-15 Thread Ram mohan
Hi, How to integrate with front end using for chatbot.if anybody having idea please share the information. Thanks&Regards, RamamohanReddy. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving email

Re: Should there be separate django app for every user type in a django project?

2019-10-15 Thread vineet daniel
There aren't any mandatory rules but standards to make code maintainable, following standards you shouldn't do it but depends upon how much work you need to do for each user type and how much closely they are linked to each other. if there is no or minimal link and a lot of switching will be needed

Re: django+rasperrypi_sensor

2019-10-15 Thread Mohan Goud
Follow the case studies in the text book - Internet of things by Vijay madisetty text book On Tue, 15 Oct 2019, 23:21 佟博, <247687...@qq.com> wrote: > I need to build a website with django and pass the sensor data on > rasperrypi to the webpage in real time. What should I do? > I am a django begin

Re: django+rasperrypi_sensor

2019-10-15 Thread Roger Gammans
Can you define what you mean by real-time? There are many way to achieve this depending on your other needs, for instance if you need the server (the raspberrypi) to push the data, it's suddenly not really a beginners task as you have to think about whether to use websockets , or long polling. (or

Re: Templates rendering problem

2019-10-15 Thread Boris Romero
Any help or ideas? Thanks! On Thursday, October 10, 2019 at 12:15:42 PM UTC-3, Boris Romero wrote: > > Hi! Yes, it's reproducing when I run it locally, but with DEBUG=FALSE and > with nginx and uwsgi. And no, it's not a database encoding problem, it just > involves the templates, because the sam

django+rasperrypi_sensor

2019-10-15 Thread 佟博
I need to build a website with django and pass the sensor data on rasperrypi to the webpage in real time. What should I do? I am a django beginner。 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receivin

Re: Keyring with Django

2019-10-15 Thread Tumbelo
https://pypi.org/project/keyring/ lauantai 12. lokakuuta 2019 10.05.07 UTC+3 Tumbelo kirjoitti: > > Hi, > > I need to store some third party server passwords in Django, in views.py > to be more specific. Those are used for Paramiko SFTP (machine-to-machine > communication) and it's not possible

Re: Keyring with Django

2019-10-15 Thread Mohammad yunus
What is this keyring? On Sat, 12 Oct 2019, 12:35 pm Tumbelo, wrote: > Hi, > > I need to store some third party server passwords in Django, in views.py > to be more specific. Those are used for Paramiko SFTP (machine-to-machine > communication) and it's not possible to use keys instead of passwor

Re: Keyring with Django

2019-10-15 Thread Tumbelo
Hi, Thanks for answer! It may be overkill, but it seems so easy/useful from plain Python (test I did). I will probably head to env variants as it seems to be popular way to achieve what I'm trying. lauantai 12. lokakuuta 2019 10.05.07 UTC+3 Tumbelo kirjoitti: > > Hi, > > I need to store some t

Re: Should there be separate django app for every user type in a django project?

2019-10-15 Thread Andréas Kühne
Hi, That is for you to decide - that's a project specific decision. However I wouldn't do that - I would filter the html templates and only display the items that should be displayed to each user type. Then I would add checks to the views so that the user is the correct type to display the view.

Re: running python management command ( process_tasks ) in th e background

2019-10-15 Thread Andréas Kühne
Hi, You can't really do that in that fashion. There are however other ways to achieve this. 1. You can add crontab task and run the tasks on the cron schedule. 2. You can add django celery to add scheduled tasks within a celery queue. Also, so you know - there are many major sites running django

Re: Django Rest Framework and Django allauth

2019-10-15 Thread Joseph Emeka
Yea i will be using OAuth2 cause the app will be more accessed by mobile app and i will still maintain a web version for non mobile user incase a user misplace mobile device. Allauth authentication is good but my concern is the API which Rest framework is better for that but Allauth does not. On

Re: Django Rest Framework and Django allauth

2019-10-15 Thread Nick Sarbicki
There is https://django-rest-auth.readthedocs.io/en/latest/introduction.html which goes some way to integrating the two. Depending on how your authenticating - e.g. if you are using OAuth2, I generally found allauth and rest auth got in the way more often then they were helpful and building some c

Django Rest Framework and Django allauth

2019-10-15 Thread Joseph Emeka
Can i use Django rest framework and Django allauth in the same project or either of then at a time. Am building a project that will have a mobile app and a website version. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from th

running python management command ( process_tasks ) in th e background

2019-10-15 Thread Sampath Reddy
Hi All, Follow up doubt on django server readiness check, Current django production application runs continuously in the background as we have daemonized the runserver command from uwsgi module. Now after staring the django server , now want to run python manage.py process_tasks in the backgroun

Re: Docker

2019-10-15 Thread balogun tobi
been away for a while that's why i havent replied. i have built the app already i really just need Docker for deployment On Mon, 14 Oct 2019 at 10:51, Nick Sarbicki wrote: > K8S has a very different system of volumes which is separate from Docker. > > Docs are here: https://kubernetes.io/docs/co