Network analysis tool

2018-10-25 Thread daniel main
Hello. I want to create a network troubleshooting tool that runs on a web interface. How efficient is Django channels. Are there alternatives? Thank you -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rece

Experienced django developer is needed.

2018-10-25 Thread BBG
I have one project on django1.0 and python 2.7. If anyone is interested than contact me... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubsc

Re: How to check if I installed Django well?

2018-10-25 Thread Rakhi Vysyaraju
You can use pip install Django if you have already downloaded the tar package. and then go to python via your shell using the python command and then say import Django you will see the next command line without any errors. On Tuesday, March 16, 2010 at 4:49:19 PM UTC+7, Archidjango wrote: > > H

Re: I Suck

2018-10-25 Thread Motaz Hejaze
Edson my Bro , all you need is to make simple thing , make just a traditional Home/About/Contact website , i can walk you through it if you want .. On Thu, Oct 25, 2018 at 12:10 AM Gerardo Palazuelos Guerrero < gerardo.palazue...@gmail.com> wrote: > Dude, > We are all like you, at some point. I'

Re: Can't install mysqlclient

2018-10-25 Thread lemme smash
you sure you have mysql server installed? also, if you plan to start development, i recommend you to seriously think about learning linux. it's a way more fit developers needs On Thursday, October 25, 2018 at 2:27:43 PM UTC+3, Rabil Abdullahi wrote: > > > > I received error message while trying

Re: Django auto-deletes field related to MySQL Transactions

2018-10-25 Thread C. Kirby
The delete method in your views, yes, but also how you build the button. You should use a form with a hidden field (the id to delete), and the button ("Delete") should be the form submit. Then on the view side you should use a standard form handler (if request.POSTetc) to handle things. Wha

Re: Experienced django developer is needed.

2018-10-25 Thread Peter Mudoko
I am peter experienced Django and odoo developer . Can i get the requirements and budget. On Thu, 25 Oct 2018, 14:27 BBG, wrote: > I have one project on django1.0 and python 2.7. If anyone is interested > than contact me... > > -- > You received this message because you are subscribed to the Goo

Re: Experienced django developer is needed.

2018-10-25 Thread Sanjeev Singh
Hello, I'm Sanjeev Singh, a college student. I have done several projects on django. I'm ready to do this project. Can I get the details regarding this project. On Thursday, October 25, 2018 at 4:56:38 PM UTC+5:30, BBG wrote: > > I have one project on django1.0 and python 2.7. If anyone is inte

Re: Experienced django developer is needed.

2018-10-25 Thread Darrell Hall
> On Oct 25, 2018, at 10:56 AM, Sanjeev Singh > wrote: > > Hello, > > I'm Sanjeev Singh, a college student. I have done several projects on django. > I'm ready to do this project. Can I get the details regarding this project. > > On Thursday, October 25, 2018 at 4:56:38 PM UTC+5:30, BBG wrot

Re: Experienced django developer is needed.

2018-10-25 Thread Darrell Hall
Hello, my name is Darrell Hall. I’m an experienced Django developer and would like more information, i.e. type of project, schedule timelines, budget (if it applies). I’m ready to work on this project as soon as you are. Contact me at halldarrell...@gmail.com or dah...@me.com. Thanks > On O

Re: Experienced django developer is needed.

2018-10-25 Thread Holger Otto ANDRE
Hello Can you give me more detials? regards *Holger André* Skype: hjoab1 Mobile/Whatsapp/Telegram : +(506) 8883-9645 Website: https://www.linkedin.com/in/hjoab/ San José, Costa Rica, Central America. The information contained in this e-mail is pr

Is assertIs being misused in Tutorial Part 5?

2018-10-25 Thread John Meyer
tests.py in the tutorial gives this example: self.assertIs(future_question.was_published_recently(), False) This implies that assertIs tests equality of two booleans. The code works, but not for the right reason, as per the language do

Re: Is assertIs being misused in Tutorial Part 5?

2018-10-25 Thread Andréas Kühne
I think it actually is correct, because False is always False - so technically they are correct. However, that being said, I agree with you fully, as long as we change it to self.assertFalse(), which I think is the correct thing to do here.d Regards, Andréas Den tors 25 okt. 2018 kl 21:42 skrev

Re: Is assertIs being misused in Tutorial Part 5?

2018-10-25 Thread Simon Charette
The reason why assertIs is used instead of assertFalse is that the latter actually tests for falsy values and can sometimes hide bugs. For example, assertFalse(0) and assertFalse(None) will pass and assertTrue(42) will as well. If you're testing a method that is supposed to return a boolean val

New entry tries to use an existing unique id

2018-10-25 Thread Michel Lavoie
Hi, I migrated my previous sqlite3 installation to postgresql, following this discussion: https://groups.google.com/forum/#!msg/django-users/VGG8GTAX4l0/tQUW20HcAwAJ I'm not facing another weird issue: Whenever I try to create a new item (finance.models.Debtor, see https://github.com/miek770/

Should I use Django-Rest-Framework for performance reasons, despite not needing an externally-consumable API?

2018-10-25 Thread Tyler Lynch
I have no need for an externally consumable API, but I am interested in using Django-Rest-Framework simply for performance reasons. I'm led to believe that by decoupling my front and back end and then simply consuming the DRF api within views, that I can setup a better caching system? Does thi