Re: Regarding internship opportunity in Bangalore

2019-03-29 Thread Nanjuki Saidat
Hi all I would also like to apply for the internship.Thanks On Thu, 28 Mar 2019 at 22:11, Akash Purandare wrote: > Hey Sachin > > If you might be interested in Full Stack Development of a Website, please > do send me your CV. > > We work in a startup called Oversight. > > Regards > Akash

Re: how to find out if instagram accept the username and password of the bot?

2019-03-29 Thread Saeed Pooladzadeh
I know what you mean but if the user inserts a wrong user and password what happens? در جمعه 29 مارس 2019، ساعت 23:48:26 (UTC+4:30)، Gourav Sardana نوشته: > > You have to make a form.py and define your form there. > In the views you have to make a validation for the username and the >

Re: how to find out if instagram accept the username and password of the bot?

2019-03-29 Thread Gourav Sardana
You have to make a form.py and define your form there. In the views you have to make a validation for the username and the password. On Sat, 30 Mar 2019, 12:44 am Saeed Pooladzadeh, wrote: > Hello, > > I'm a beginner at Django and Python and now plan to make a simple bot site > for Instagram

how to find out if instagram accept the username and password of the bot?

2019-03-29 Thread Saeed Pooladzadeh
Hello, I'm a beginner at Django and Python and now plan to make a simple bot site for Instagram with instabot: https://github.com/instabot-py/instabot.py My problem is how can I find out if Instagram accept the username and password of the user or the username and password is wrong. How can

Re: I am on a e-commerce website on a video from youtube and I am having problems with stripe

2019-03-29 Thread Chetan Ganji
I am not sure about this. But the issue seems to be that the user in question has a stripe account and that stripe account does not have any cards associated with the account. Maybe try adding a card to the account, if it does not have any. If it has, delete it and create a new one. See if it

Re: Need some sample project coding in Django t

2019-03-29 Thread Aayush Bhattarai
Hey you can see my Django blog on GitHub. https://github.com/coder-Aayush/django_blog -- 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

Re: Nosql database for Django

2019-03-29 Thread Nikos Anapliotis
you could check out the djongo engine. On Fri, Mar 29, 2019 at 1:36 PM Balkesh Choudhary wrote: > I want to use a Nosql database for Django, and it is officially not > supported by Django, is there any way? > > -- > You received this message because you are subscribed to the Google Groups >

I am on a e-commerce website on a video from youtube and I am having problems with stripe

2019-03-29 Thread Patrice Chaula
I am using Stripe to process payments from my website. Yesterday it was working ok. That was before I changed code my code so It can process payments using a customer_id. I am using test keys My code below. Help I'm still a beginner in django. I'm sorry my English is bad. from

Re: Newbie question : running the makemigrations command in the terminal

2019-03-29 Thread Krishna Tulsyan
Hi, can you provide the folder structure of your app, and apps.py file ensure that the name of the app is 'munichlivin_app' and name of the class in apps.py is 'MunichLivingConfig' On Thursday, March 28, 2019 at 9:05:46 PM UTC+5:30, kamiba...@gmail.com wrote: > > Hello, > > (Newbie here): I am

Re: Upgrading Django from 1.11 to 2.2

2019-03-29 Thread Balkesh Choudhary
you can upgrade directly from 1.11 to 2.2, but some of third party packages may not support Django 2.2 ‪On Fri, Mar 29, 2019 at 2:22 PM ‫אורי‬‎ wrote:‬ > Hi, > > I want to upgrade Django from 1.11 to 2.2. Do I have to upgrade first to > 2.0 and then to 2.1, or can I upgrade directly from 1.11

Re: What's the difference between using mariadb as database and using mysql?

2019-03-29 Thread swisstech08
Hi K Porter, Thank you for the info. The application that stores that in the MySql DB has a requirement it to b MySql and I was told MariaDB will not be supported. I assume I can also build a MariaDB test instance and verify the application can read/write to the database. On Monday, March 4,

Help in connecting django to NoSql

2019-03-29 Thread dilip jain
Hi, My name is Dilip. I want to use no sql database for my django website can anyone help me in this and guide me for best suited Nosql Database. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Need some sample project coding in Django t

2019-03-29 Thread Krishna Tulsyan
Hi, mozilla also has a very good django tutorial that includes a project that they gradually work on. https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django On Thursday, March 28, 2019 at 7:29:12 PM UTC+5:30, Anbarasi Ayyannan wrote: > > Hi, > I am Django learner need some help for

Re: Regarding internship opportunity in Bangalore

2019-03-29 Thread aditya singh
Hi Akash I would also like to apply for the summer internship programme On Fri, Mar 29, 2019, 13:20 sachin thakur wrote: > Hi Akash > Yes I have sent you my resume I would request you to give me a call I have > mentioned the reason in resume email > > On Fri 29 Mar, 2019, 12:41 AM Akash

Nosql database for Django

2019-03-29 Thread Balkesh Choudhary
I want to use a Nosql database for Django, and it is officially not supported by Django, is there any way? -- 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

Re: There's any django app for calendar?

2019-03-29 Thread Fellipe Henrique
Thanks Guys.. I'll take a look... T.·.F.·.A.·. S+F *Fellipe Henrique P. Soares* e-mail: > echo "lkrrovknFmsgor4ius" | perl -pe \ 's/(.)/chr(ord($1)-2*3)/ge' *Fedora Ambassador: https://fedoraproject.org/wiki/User:Fellipeh * *Blog:

Re: Upgrading Django from 1.11 to 2.2

2019-03-29 Thread Ahmed Ishtiaque
I'd suggest not worrying too much about upgrading to 2.2 right away. Since it's going to be an LTS release, the projects your project depends on will probably consider adding 2.2 support fairly fast. But if you want to give it a shot anyway, I'd suggest taking a look at what changed from 1.11 to

Re: Upgrading Django from 1.11 to 2.2

2019-03-29 Thread Anirudh Jain
First use 'pip freeze' in your virtual env to see all the packages installed. Then checkout their official, latest documentation to see whether they support django2.1 or not. Even if all them do, you might need to make a lot of changes in your code after upgrade. And no, you dont need to

Nameless FileField

2019-03-29 Thread guettli
I think the current FileField is nice for some use cases, but for other use cases it is too complicated. Example: class MyProfile(models.Model): picture = models.FileField() If profile of user "foo" uses "foo.jpg" as picture, and user "bar" uses "foo.jpg", too. Then the profile picture of

Upgrading Django from 1.11 to 2.2

2019-03-29 Thread אורי
Hi, I want to upgrade Django from 1.11 to 2.2. Do I have to upgrade first to 2.0 and then to 2.1, or can I upgrade directly from 1.11 to 2.2? By the way, we use many third-party packages and I'm not sure which version of Django they support. Maybe not all of them already support Django 2.2.

Re: Installation Question

2019-03-29 Thread Aldian Fazrihady
Starting from Python 3.6, we don't need 3rd party virtualenv library. We can just do this: python3.7 -m venv /path/to/env/ https://docs.python.org/3/library/venv.html Regards, Aldian Fazrihady On Thu, 28 Mar 2019, 23:32 Michael Achterberg, wrote: > I've installed Python 3.7 which comes

Re: Installation Question

2019-03-29 Thread Anirudh Jain
that's because you want to use python 3.7 but by default it is using python 2.7 Try this to install virutal env: pip install -p python3 virtualenv On Fri, 29 Mar 2019, 13:15 Michael Achterberg, wrote: > When I run > > Pip install virtualenv > > I still get the SyntaxError: invalid syntax > > >

Re: Regarding internship opportunity in Bangalore

2019-03-29 Thread sachin thakur
Hi Akash Yes I have sent you my resume I would request you to give me a call I have mentioned the reason in resume email On Fri 29 Mar, 2019, 12:41 AM Akash Purandare, wrote: > Hey Sachin > > If you might be interested in Full Stack Development of a Website, please > do send me your CV. > > We

Re: Installation Question

2019-03-29 Thread Michael Achterberg
When I run Pip install virtualenv I still get the SyntaxError: invalid syntax Regards, Michael Achterberg E-mail: mich...@achterberg.org.za Original message From: KONE GOMPOU LOUA ALASSANE Date: 28/03/2019 18:57 (GMT+02:00) To: django-users@googlegroups.com Subject: