Re: add item to list

2018-07-05 Thread Oladipupo Elegbede
First, you need to know how to add items to an existing list. x = ['egg'] s = 'spam' x.append(s) x = ['egg', 'spam'] This is basic python. Back to Django, how are you accessing the item you want to add to the list? What logic do you have already for the list. If you throw a little more light,

Re: Please help me

2018-07-05 Thread Oladipupo Elegbede
You'll have to read it all and get your hands dirty first. Start something Start a Django protect, an app, put something together. Outline your road map to a solution as Kasper earlier suggested. Make your mistakes and come back here for guidance. That's how you learn... On Thu, Jul 5,

Re: Please help me

2018-07-04 Thread Oladipupo Elegbede
What have you done? To get a python script to import data from csv isn't big of a deal. There numerous libraries you can take advantage of. Just Google reading a cab file with python. To put those data in an html page is also not a big deal. However, you need to be more explicit to greet any form

Re: A Web Developer is currently needed for a contract job in Lagos,Nigeria

2018-05-31 Thread Oladipupo Elegbede
You may want to talk to Tim Akinbo. taki...@gmail.com +2348033797801 He's highly highly recommended if he's available. Regards. On Thu, May 31, 2018, 06:11 Adefioye Temidayo wrote: > > URGENT A Web Developer is currently needed for a contract job in > Lagos,Nigeria Location: 70% remote Pay:

Re: I can't install easy install

2017-12-14 Thread Oladipupo Elegbede
Open a command prompt window and navigate to the folder containing get-*pip*.py . Then run python get-*pip*.py . This will *install pip* . Verify a successful *installation* by opening a command prompt window and navigating to your Python *installation's* script directory (default is

Re: I can't install easy install

2017-12-14 Thread Oladipupo Elegbede
Did you try pip install? On Dec 14, 2017 8:09 PM, "Henry Ogunkomaya" wrote: > Hello guys! am new to Django. i have been trying to install downloaded > (pack)"easy install" for days now without any result. i try all the methods > from video tutorials, but nothing still.

Re: Hello All - Wordpress to Django Python Web Developer

2017-10-06 Thread Oladipupo Elegbede
In my opinion, The tutorial starting out wouldn't answer all your questions but put you in the know of what happens in the django world. Armed with that, you can begin to test things out as your needs dictate and then you are able to ask direct questions. What the kind of tutorial you're looking

Re: need help in django application

2017-10-02 Thread Oladipupo Elegbede
Have you checked any of the tutorials before you started this project? I know djangogirls.com did a good job on this need. You may want to check that tutorial, get something done and come back with what you think isn't right. This gets help quicker than waiting for someone to help you generate

Re: Am a new Django User and am finding difficulties making a query to my database

2017-09-13 Thread Oladipupo Elegbede
Did you include your app in the installed apps list in your settings.py file? Did you do the makemigration and migration after creating the model? Check these two steps and then try again. That's what I'm suspecting given the error trace. On Sep 13, 2017 7:13 AM, "Abdul-Waris Dawuda"

Re: Django select filter

2017-09-12 Thread Oladipupo Elegbede
I think the filtering should be done in your view. You pass the value of the selected month to the view as a post item. Then do a query based on the view. On Sep 12, 2017 7:43 PM, "sum abiut" wrote: > Hi, > I am working on an app which has a dropdown/select option which

Re: I can't import views

2017-08-04 Thread Oladipupo Elegbede
Have you tried from . import view Note the space between . and import On Aug 4, 2017 6:14 PM, "Body Abdo" wrote: > I'm trying to import view in my url in base project but i can't > > > File "/var/www/project/venvs/lib64/python3.6/importlib/__init__.py", line > 126,

Re: Django beginner

2017-07-13 Thread Oladipupo Elegbede
Hi Amir, You seem to know what you need to do. Try harder, be positive and pay attention to those little things you think Python has taken care of for you. Get yourself through the Django tutorial and you would be good to go. On Jul 13, 2017 6:51 PM, "Amir Pirmoradian"

Re: How can create multiple Model objects at the same time from the same form?

2017-07-10 Thread Oladipupo Elegbede
Do you mean creating 1-10 authors at once? If that is the case, so you have the input for the three fields somewhere say an excel file, or a list of lists, etc? If you do, I'd say loop through the document with the input venue and let it fill the parameter spaces dynamically. Call a .save on it

Re: Error even after following the django documentation

2017-06-15 Thread Oladipupo Elegbede
TypeError: 'choice_text' is an invalid keyword argument for this function That above, is where the problem is where the problem is so I am going to guess you need to check your model if you wrote everything correctly. If I can see what your model looks like, I can probe in. On Thu, Jun 15, 2017

Re: Failed building wheels for twisted

2017-06-15 Thread Oladipupo Elegbede
Do you want to share what you did to resolve it? That may help someone else. Thanks. On Jun 14, 2017 5:07 PM, "yingi keme" wrote: I have solved the problem. Thanks anyways..! Yingi Kem > On 14 Jun 2017, at 6:43 PM, yingi keme wrote: > > Hello > > I

Re: Django Virtual Environment

2017-06-12 Thread Oladipupo Elegbede
Be sure, just double check you're inside the virtual environment. You should see something like (your_env)c/path/to/your/project: On Jun 12, 2017 8:50 AM, "Antonis Christofides" < anto...@djangodeployment.com> wrote: > If you have created the virtualenv with --system-site-packages, you need >

Re: new to django

2017-06-12 Thread Oladipupo Elegbede
Take the Django tutorial on the official Django website. Take the Django tutorial on the Django girls website. Do something with what you've learnt. Come back with questions.. Welcome to Django. On Jun 12, 2017 6:05 AM, "jlew921" wrote: > hi guys new to django...and

Re: Installing Django in Window 10

2017-06-05 Thread Oladipupo Elegbede
Are you sure you don't already have Django installed? Try to import Django from your Python prompt and see what happens. If it doesn't throw any error, you have it. If it does, you can do pip install Django That should install it. On Jun 5, 2017 9:11 PM, "Nandan Priyadarshi"

Re: Installing Django

2017-06-05 Thread Oladipupo Elegbede
For the Python prompt from CMD and do the following >>>import Django >>>Django.VERSION This should tell you what version of Django you have. On Jun 5, 2017 7:21 AM, "Daniel Roseman" wrote: > On Monday, 5 June 2017 12:33:28 UTC+1, Richard Mungai wrote: >> >> Hi.. >>

Re: Please help me

2017-05-29 Thread Oladipupo Elegbede
Have you tried the Django tutorial? Start with that and then try scaling up. There are couple of free tutorials out there and resources to find answers to your problems. Stackoverflow as mentioned above is one of them. If you still have problems, try your hands on Django documentation and then

Any opening for Django Entry Level in Dallas area

2015-10-20 Thread Oladipupo Elegbede
Hello all, My name is Muhammed Elegbede. I have been in and out of programming for about 6 years now owing to different job openings. Right now, I am fully set to return to programming. I would love to take up any entry level django position if there's any available. I have limited myself to

Re: New to Django & Programming - Trying to work with the tutorial. How to edit mysite/settings.py

2013-03-04 Thread Oladipupo Elegbede
On 3/5/13, Ugorji Nnanna wrote: > Hello, I'm new to Django and programming. I'm going through the tutorial > here: https://docs.djangoproject.com/en/1.5/intro/tutorial01/ to start > learning. I'm at the Database setup part and it says: Now, edit > mysite/settings.py. I'm

I need something to help with.

2012-06-20 Thread Oladipupo Elegbede
Hello everyone, I have been away from the group for sometime now. This is due to the nature of my current job sadly. My first love is programming and it is in Python and by extension, django. While it is true that my current engagement takes almost all of my time, I have a strong feeling that