Official access isn't denied - and python 2 will probably be available. The
problem is that you don't get any security fixes or any updates at all.
That in itself is a major problem. If someone is saying that you need to
use python 2, I would strongly recommend them to not even think about it.
All
Thanks Deep, i will raise on stackoverflow...
On Tue, Sep 24, 2019 at 9:39 AM Deep Sukhwani
wrote:
> The right place for this would be "requests" community -
> https://2.python-requests.org/en/master/community/support/#e-mail
>
> The best immediate course of action would be to post a question o
On Tue, Sep 24, 2019 at 4:15 AM Andréas Kühne
wrote:
>
> Official access isn't denied - and python 2 will probably be available. The
> problem is that you don't get any security fixes or any updates at all. That
> in itself is a major problem. If someone is saying that you need to use
> python
Wow, TIL there are companies selling support for Python 2? Never heard of
it. So basically we are saying these companies will maintain there own
version of Python programming language which will continue to be maintained
as long as they have paid users for Python 2? I seriously doubt that. Or
may b
Anaconda, Enthought, ActiveState, Red Hat and maybe others as well.
Also large companies can do their own support.
On Tue, Sep 24, 2019 at 8:11 AM Deep Sukhwani wrote:
>
> Wow, TIL there are companies selling support for Python 2? Never heard of it.
> So basically we are saying these companies w
Thanks for the prompt reply. Did a quick cursory check with Anaconda, I
don't think Anaconda does it. In fact Anaconda has posted a few months ago
about Python 2's EOL (End of Life) -
https://www.anaconda.com/end-of-life-eol-for-python-2-7-is-coming-are-you-ready/
Also, just did a quick look at th
You can get anyone to do anything for enough money.
On Tue, Sep 24, 2019 at 8:30 AM Deep Sukhwani wrote:
>
> Thanks for the prompt reply. Did a quick cursory check with Anaconda, I don't
> think Anaconda does it. In fact Anaconda has posted a few months ago about
> Python 2's EOL (End of Life)
I'm not convinced anyone could pay me enough to go back to Python 1...
On Tue, Sep 24, 2019 at 1:32 PM Larry Martell
wrote:
> You can get anyone to do anything for enough money.
>
> On Tue, Sep 24, 2019 at 8:30 AM Deep Sukhwani
> wrote:
> >
> > Thanks for the prompt reply. Did a quick cursory
Ha! How about perl? ;-)
On Tue, Sep 24, 2019 at 8:33 AM Nick Sarbicki wrote:
>
> I'm not convinced anyone could pay me enough to go back to Python 1...
>
>
> On Tue, Sep 24, 2019 at 1:32 PM Larry Martell wrote:
>>
>> You can get anyone to do anything for enough money.
>>
>> On Tue, Sep 24, 2019
Yes of course - I think RedHat will be continuing to support a python 2
environment because they haven't updated their own internal infrastructure
and also their distributions to python 3.
However - using one of those is still not very smart. The problem is that
all plugins have moved on. So Djang
On Sat, Sep 21, 2019 at 8:32 PM Ankita Gupta
wrote:
> Not related to Django...
>
Then write to python-l...@python.org
--
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 em
Yo put in admin.py
Django.models import users
But
You put apptwo.models inport users
This way ...
On Tue, 24 Sep 2019 at 9:43 AM, Deep Sukhwani
wrote:
> Are you supposed to be using a virtualenv and you don't have that
> activated?
>
> Can you run *pip freeze | grep -i django* and share the out
Hello,
Everytime i try to access a url, the Django developer server auto quit
without any log about what happens.
After debugging a little bit, i find out if i remove this block of code in
the template file, i can access the web page normally:
{% for d in departments %}
{{ d.name }
i have a question how to create school year with start date and end date
all transaction must under this year. Thanks..
--
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 em
Hello,
I am a bit confused about the relation and separation of
responsibilities between `AuthenticationForm.confirm_login_allowed` and
`ModelBackend.user_can_authenticate`.
When `AuthenticationForm` is used together with `ModelBackend`, we will
never call `AuthenticationForm.confirm_login_allowe
Possible to push the whole code to a Github repo so someone could check out
and try locally - Couldn't really figure out anything that might be going
wrong by looking at this much mode?
Also, just out of curiosity, why are you using *Department.objects.filter()*
instead of *Department.objects.all(
Hi.
again i change and run but same problem coming
*Regards*
Meganathan G
On Tue, Sep 24, 2019 at 10:32 AM Abu Yusuf
wrote:
> Error in admin.py. So same here in admin.py.
>
> Before starting a django project, try to understand the architecture of it
> and the working flow of it.
> Oth
Hi awesome django users
i want to list model records of App1 in a detail view of App2
any ideas?
Regards
--
*Perceval Maturure*
*083 303 9423*
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving
I now how to use django pagination with ORM django after filtering the
required data and put in into *pagination div*
*queryset_list = employee.objects.all()*
*query=request.GET.get("q")*
*if query:*
*queryset_list=queryset_list.filter(*
* Q(name__icontains=query)
Hi.
Just import models and use them?
ti 24. syysk. 2019 klo 22.10 Perceval Maturure
kirjoitti:
>
> Hi awesome django users
> i want to list model records of App1 in a detail view of App2
> any ideas?
> Regards
>
> --
> *Perceval Maturure*
>
> *083 303 9423*
>
> --
> You received this message b
I think the original question was around backwards conversion of 3.x
code to 2.7.
I don't know of course because all my efforts have been forwards but I
believe the six module would be the easiest way backwards.
And I imagine you would simply run your unit tests in 2.7 and use the
six utilit
Have you tried using the *.query* on Django's QuerySet (documentation: [1])
For example, if my QuerySet is:
*User.objects.filter(username__contains='alpha')*
I can obtain the underlying raw SQL Query using:
*print(User.objects.filter(username__contains='alpha').query)*
*>>> *print(User.objects.fi
Dear All,
Actually i forget my virtual environment name. So when i run -- python
manage.py runserver command its showing error like this .
ImportError: Couldn't import Django. Are you sure it's installed and
available on your PYTHONPATH environment variable? Did you forget to
acti
I was actually thinking of doing the same thing
On Tuesday, September 24, 2019 at 3:10:46 PM UTC-4, Perceval Maturure wrote:
>
>
> Hi awesome django users
> i want to list model records of App1 in a detail view of App2
> any ideas?
> Regards
>
> --
> *Perceval Maturure*
>
> *083 303 9423*
>
--
i am trying to reply to people question but for some reason it won't go
through so i am going to see if this post actually goes through
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails fro
try using aws... go to aws.com and sign-up for a free account and used the
Amazon Personalize service... or your can google it and it will take you
right there
On Monday, September 23, 2019 at 11:48:12 PM UTC-4, Gabriel Araya Garcia
wrote:
>
> Hi, What is an recommendation system ? I live in C
aws offers a good solution google Amazon Personalize... that will help you
solve your problem...
On Monday, September 23, 2019 at 11:36:32 PM UTC-4, Mahir Shah wrote:
>
> Hello , I am trying to build an recommendation system on books using
> django framework but am not been able do it . Please h
share your full project here.
On Tue, Sep 24, 2019 at 10:43 PM MEGA NATHAN
wrote:
>
>
> Hi.
> again i change and run but same problem coming
>
>
>
> *Regards*
> Meganathan G
>
>
>
> On Tue, Sep 24, 2019 at 10:32 AM Abu Yusuf
> wrote:
>
>> Error in admin.py. So same here in admin.py.
>>
>>
Create template folder inside testapp.
Like this:
testapp>template>base.html
On Wed, 25 Sep 2019, 10:47 yerri swamy, wrote:
>
>
> On Mon, Sep 23, 2019 at 6:53 PM Desh Deepak
> wrote:
>
>> Show me your views.py file.
>>
>> On Mon, 23 Sep 2019, 18:48 Abu Yusuf, wrote:
>>
>>> 1. ensure you hav
Depending on how you installed *virtualenv* package and what you are using
to create and activate virtualenv you can determine the currently present
virtualenvs on your computer.
- If you used *virtualenvwrapper* - use *lsvirtualenv*
- Additionally, you can look in your Home Directory and s
30 matches
Mail list logo