Re: I AM getting this error plss help me

2020-03-14 Thread Jorge Gimeno
Can you try closing the powershell, running the Powershell as an admin, then trying again? Another option would be to try from the command terminal instead of Powershell. Let us know how it goes. -Jorge On Sat, Mar 14, 2020 at 5:25 AM surendra ediga wrote: > Traceback (most recent call last):

Effecient Text Search

2020-03-14 Thread Will Meyers
Hi all, Just a quick question. I'm working on a general search function for my application and just wanted your opinions before I do any sort of benchmarking. Right now I have a PostgreSQL database with a table (model) which includes a title column and summary column (both charfields). Would

Re: ACESS FOREIGN KEY TABLE

2020-03-14 Thread Sunday Iyanu Ajayi
How are you querying it? Is it from python script or database query? If it is a SQL database like postgres, you can join the two tables using the "JOIN" syntax . You join the two tables using their ids *SELECT ** *FROM profile p* *JOIN skill s ON s.user_profile = p.id * NB: You can c

Re: Django and AWS backend MENTOR NEEDED

2020-03-14 Thread Integr@te System
Hi Tibrewal, You can use eb, it host your code on it platform and choose many service around that host you need. You only take care your app code. Just review aws eb doc again. On Sat, Mar 14, 2020, 22:37 Harsh Tibrewal wrote: > Do you know AWS Elastic Beanstalk with Django > I have doubts in

Re: Django and AWS backend MENTOR NEEDED

2020-03-14 Thread Harsh Tibrewal
Do you know AWS Elastic Beanstalk with Django I have doubts in it On Sat, Mar 14, 2020 at 5:37 PM Ousseynou Diop wrote: > Hello how i can help you ? > You can reach out to me here @xarala221 https://ousseynoudiop.com >

Re: Thanks

2020-03-14 Thread KONE GOMPOU LOUA ALASSANE
How can we work togother. Give us a sheem Thanks Le sam. 14 mars 2020 à 12:26, MUGOYA DIHFAHSIH a écrit : > Hello Team my Name is Mugoya Dihfahsih form Uganda, am advance in Django > though software development is not so much prioritized here in Uganda. > Thank You for your contributions towards

Re: Django and AWS backend MENTOR NEEDED

2020-03-14 Thread Makori Breens.
Hey bro,can you help in customizing open source app? On Saturday, March 14, 2020, Ousseynou Diop wrote: > Hello how i can help you ? > You can reach out to me here @xarala221 https://ousseynoudiop.com >

Thanks

2020-03-14 Thread MUGOYA DIHFAHSIH
Hello Team my Name is Mugoya Dihfahsih form Uganda, am advance in Django though software development is not so much prioritized here in Uganda. Thank You for your contributions towards open source threading of python. -- You received this message because you are subscribed to the Google Groups "

Re: How To Send Json data To Django

2020-03-14 Thread jitendra yadav
hi deepak Read your json file from local storage or from api in python view and save in model using ORM in django On Sat, Mar 14, 2020 at 8:53 AM Desh Deepak wrote: > Hi, > > Go to the below link: > https://youtu.be/9N6a-VLBa2I > > > Thanks & regards > Desh Deepak > +91 7011101001 > > On Fri,

I AM getting this error plss help me

2020-03-14 Thread surendra ediga
Traceback (most recent call last): File "C:\Users\Asus\projects\manage.py", line 21, in main() File "C:\Users\Asus\projects\manage.py", line 17, in main execute_from_command_line(sys.argv) File "C:\Users\Asus\AppData\Local\Programs\Python\Python39\lib\site-packages\django\core\manag

Unable to receive Ajax GET data in views.py

2020-03-14 Thread Sundaresan R
Hi, In a template I have two ajax calls (one POST, one GET) corresponding to "Save" button and a "Go Back" button which are on two different forms. While the POST data on clicking "Save" gets passed to url1, GET data on clicking "Go Back" is being received in url2 simply as False instead of valid

UpdateView deletes a row in the table

2020-03-14 Thread Harald Fauland
i complete remade a script, because i thought, an additional component is deleting a row in my database, which it doesn't. My script somehow manages to do it: Here are the facts: The Model is called "Settings", which is implemented as a Singleton: class Setting(SingletonModel): page = models.

Re: Django and AWS backend MENTOR NEEDED

2020-03-14 Thread Ousseynou Diop
Hello how i can help you ? You can reach out to me here @xarala221 https://ousseynoudiop.com Le vendredi 13 mars 2020 20:48:59 UTC, Harsh Tibrewal a écrit : > > Hi, I have been trying

Good stand alone blog app for django 3.0 >

2020-03-14 Thread Danny Blaker
Hi! I've been testing a few good blog apps (Pinax, Pupet/Wagtail - https://github.com/APSL/puput) etc - how ever they are currently only available for django 2. Does any one know a similar blog app that is django 3 compatible? I have been looking to no avail. Many Thanks! -- You received this

Re: Cumulative Sum per month

2020-03-14 Thread Mario Bisiani
Hi, I resoleved with : https://stackoverflow.com/questions/43517901/cumulative-running-sum-with-django-orm-and-postgresql import numpy as np import datettime today = datetime.datetime.date() raw_data = MyModel.objects.filter('date'=today).values_list('a_number', flat=True) > cumsum = np.cums