Fwd: attempt to write a readonly database

2020-12-23 Thread Parul.
Can anyone help with this?


OperationalError at /users/
Request Method: POST
Request URL: http://localhost:8000/users/
Django Version: 3.0.3
Exception Type: OperationalError
Exception Value:

attempt to write a readonly database

Exception Location:
C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
in execute, line 396
Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
Python Version: 3.8.5
Python Path:

['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']

Server time: Wed, 23 Dec 2020 16:14:46 +



->>> Also, i checked the properties in db.sqlite3, all the
permissions are checked...write permission also
can anyone help

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHjHRFquxJoTDDxHkokqtm7fHY4R6jCF_kt1Td%2BMs-PN-qw_eg%40mail.gmail.com.


Can anyone please look at this query and help me to make a model for it

2020-12-23 Thread Dhruvil Shah
https://stackoverflow.com/questions/65427344/how-to-select-multiple-person-for-same-project

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADsP_ixnN0XB3Jm2FdYG1cSS54aNjUV%2BMtYsbfs7fKJAMdjZkg%40mail.gmail.com.


Re: Implementing multiple roles user model in django

2020-12-23 Thread Anselme Gildas Tchassem Boutchouang
Absolutely

Le mer. 23 déc. 2020 à 22:55, Mike Dewhirst  a
écrit :

> On 24/12/2020 4:38 am, Aakash Verma wrote:
> > Hi , which is the best possible way to have multiple roles user  model
> > in django , I have tried OnetoOnefield with default user model , and
> > then having a charField in a user model Where in choices are provided
> > for different roles and other is trying Third party packages .
> > Can anyone suggest what is the best way used in Industry to implement
> > Multiple roles in Django , (specially if roles are more than 5). Need
> > to Implement this in Django Rest Framework .
> > Please suggest some good resource on it if possible
>
> It is built into Django already. Look at django.contrib.auth ...
>
>
> https://docs.djangoproject.com/en/2.2/ref/contrib/auth/#django.contrib.auth.models.Group
>
> If you think "role" when you see "group" you have it already.
>
> The key to success is to NEVER assign permissions to individual users.
> Roles (ie groups) need to be nicely named and given exactly the
> permissions required. You can then put different users into one or more
> groups as necessary. Next write a few utilities such as is_editor(user)
> or is_reporter(user) and so on.
>
>
> > Thanks and Regards
> > Akash verma
> > --
> > 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+unsubscr...@googlegroups.com
> > .
> > To view this discussion on the web visit
> >
> https://groups.google.com/d/msgid/django-users/d1b0ffb2-c148-49e1-885a-551d6ff12a07n%40googlegroups.com
> > <
> https://groups.google.com/d/msgid/django-users/d1b0ffb2-c148-49e1-885a-551d6ff12a07n%40googlegroups.com?utm_medium=email_source=footer
> >.
>
>
> --
> Signed email is an absolute defence against phishing. This email has
> been signed with my private key. If you import my public key you can
> automatically decrypt my signature and be sure it came from me. Just
> ask and I'll send it to you. Your email software can handle signing.
>
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/c531d0a4-1cb6-22a1-c97d-8ced458c7b1b%40dewhirst.com.au
> .
>


-- 
*Anselme Gildas TCHASSEM BOUTCHOUANG*
DevOps, Fullstack, Freelance
(+237) 696 319 191 / (+237) 698 544 992 / Email : *aansegild...@yahoo.fr
* / LinkedIN : Profil LinkedIN

/ Facebook : Profil Facebook
  / Whatsapp:
(+237) 696 319 191

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPB6eujsDcgMJuUpiYezYFoG9TvNYSDEv8d%2Bhbe6KxVHX5SvGg%40mail.gmail.com.


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread Anselme Gildas Tchassem Boutchouang
Cool, thanks

Le jeu. 24 déc. 2020 à 00:21, Mai Elshiashi  a
écrit :

> If you're looking for a tool to allow anyone to see your project running
> on localhost. There's a cool tool called Ngrok Which exposes your localhost
> to  be public with a secure tunnel.Check it out.
> https://ngrok.com/
>
>
> On Wed, Dec 23, 2020 at 11:36 PM Benny M  wrote:
>
>> I’m going to second Kasper on this. There’s enough affordable options out
>> there that self hosting to a “safe enough” degree would be the more
>> expensive route to go.
>>
>> I did this myself for a little while - had a makeshift cloud service for
>> myself right up until I had a dev-ops friend take a look. His little
>> giggles and eye-rolls were enough to convince me that I was wholly out of
>> my league.
>>
>> It’s a fun idea, but if you’re going to do it right, it’s not going to be
>> cheap and it’s still not going to be secure enough to keep your network
>> from being compromised.
>>
>> > On Dec 23, 2020, at 3:02 PM, Kasper Laudrup 
>> wrote:
>> >
>> > On 23/12/2020 18.46, joseenoc...@gmail.com wrote:
>> >> Can some one pls explain what steps show I follow to host my django
>> project on my pc and allow anyone outside my network WIFI to see the webiste
>> >>
>> >
>> > You don't want to do that, but just in case:
>> >
>> > You probably want to ensure that you have a static IP from your
>> internet provider. If you don't have that or for some reason cannot get
>> one, consider looking into dynamic DNS so you have a well known DNS name
>> when your public IP address changes.
>> >
>> > Configure your router to forward requests on the port where your Django
>> website is running to the IP of your PC.
>> >
>> > But you seriously don't want to do that. Look into how to deploy your
>> website instead.
>> >
>> > Kind regards,
>> >
>> > Kasper Laudrup
>> >
>> > --
>> > 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+unsubscr...@googlegroups.com.
>> > To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/90d7384c-e6ea-4485-60da-3a57c0cd3707%40stacktrace.dk
>> .
>>
>> --
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CH2PR14MB3913826C4668B8F16D33278AC0DE0%40CH2PR14MB3913.namprd14.prod.outlook.com
>> .
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJPiQORoYwRcyKhJYxBa4j%3DxKsuT0snjHCe%2B0mVNoEogeejadw%40mail.gmail.com
> 
> .
>


-- 
*Anselme Gildas TCHASSEM BOUTCHOUANG*
DevOps, Fullstack, Freelance
(+237) 696 319 191 / (+237) 698 544 992 / Email : *aansegild...@yahoo.fr
* / LinkedIN : Profil LinkedIN

/ Facebook : Profil Facebook
  / Whatsapp:
(+237) 696 319 191

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPB6eugtZRasgPv7w%3DM%2BycdrzurLf8k47K_Xmm4RtAS4RJQPHA%40mail.gmail.com.


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread Shazia Nusrat
You also need to add your url provided by Ngrok to your Django settings.py 
"ALLOWED_HOSTS". Only then it will present your site on that URL. 

On Thursday, December 24, 2020 at 4:27:00 AM UTC+5 Shazia Nusrat wrote:

> Ngrok will help you publish your site for development if you need to show 
> your work remotely. Remember you need to run two terminals on terminal 1 
> you will run your project as you normally do and on other terminal you need 
> to run ngrok. It will provide you with couple of URLs one for http and 
> another for https. Https is usually if you need to test it with social 
> authentication etc. 
>
> Hope this helps. 
>
> Cheers
> On Wednesday, December 23, 2020 at 10:46:22 PM UTC+5 joseenoc...@gmail.com 
> wrote:
>
>> Can some one pls explain what steps show I follow to host my django 
>> project on my pc and allow anyone outside my network WIFI to see the webiste
>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/139389ef-c8dd-4f5e-8f5a-7d7c5c6830c4n%40googlegroups.com.


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread Shazia Nusrat
Ngrok will help you publish your site for development if you need to show 
your work remotely. Remember you need to run two terminals on terminal 1 
you will run your project as you normally do and on other terminal you need 
to run ngrok. It will provide you with couple of URLs one for http and 
another for https. Https is usually if you need to test it with social 
authentication etc. 

Hope this helps. 

Cheers
On Wednesday, December 23, 2020 at 10:46:22 PM UTC+5 joseenoc...@gmail.com 
wrote:

> Can some one pls explain what steps show I follow to host my django 
> project on my pc and allow anyone outside my network WIFI to see the webiste

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cba6c915-f660-43bd-b977-1a96285634e3n%40googlegroups.com.


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread Mai Elshiashi
If you're looking for a tool to allow anyone to see your project running on
localhost. There's a cool tool called Ngrok Which exposes your localhost
to  be public with a secure tunnel.Check it out.
https://ngrok.com/


On Wed, Dec 23, 2020 at 11:36 PM Benny M  wrote:

> I’m going to second Kasper on this. There’s enough affordable options out
> there that self hosting to a “safe enough” degree would be the more
> expensive route to go.
>
> I did this myself for a little while - had a makeshift cloud service for
> myself right up until I had a dev-ops friend take a look. His little
> giggles and eye-rolls were enough to convince me that I was wholly out of
> my league.
>
> It’s a fun idea, but if you’re going to do it right, it’s not going to be
> cheap and it’s still not going to be secure enough to keep your network
> from being compromised.
>
> > On Dec 23, 2020, at 3:02 PM, Kasper Laudrup 
> wrote:
> >
> > On 23/12/2020 18.46, joseenoc...@gmail.com wrote:
> >> Can some one pls explain what steps show I follow to host my django
> project on my pc and allow anyone outside my network WIFI to see the webiste
> >>
> >
> > You don't want to do that, but just in case:
> >
> > You probably want to ensure that you have a static IP from your internet
> provider. If you don't have that or for some reason cannot get one,
> consider looking into dynamic DNS so you have a well known DNS name when
> your public IP address changes.
> >
> > Configure your router to forward requests on the port where your Django
> website is running to the IP of your PC.
> >
> > But you seriously don't want to do that. Look into how to deploy your
> website instead.
> >
> > Kind regards,
> >
> > Kasper Laudrup
> >
> > --
> > 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+unsubscr...@googlegroups.com.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/90d7384c-e6ea-4485-60da-3a57c0cd3707%40stacktrace.dk
> .
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CH2PR14MB3913826C4668B8F16D33278AC0DE0%40CH2PR14MB3913.namprd14.prod.outlook.com
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJPiQORoYwRcyKhJYxBa4j%3DxKsuT0snjHCe%2B0mVNoEogeejadw%40mail.gmail.com.


Mobile social registration for Django Backend endpointe

2020-12-23 Thread Shazia Nusrat
Hi,
I am using Django for my web app and DRF to expose my API for mobile 
applications. I need users to sign in using social accounts at mobile side 
and need to authenticate via Django API. 

I've used couple of libraries but couldn't understand the workflow for 

1. https://github.com/RealmTeam/django-rest-framework-social-oauth2
2. https://github.com/wagnerdelima/drf-social-oauth2

If someone kindly guide me to the right direction it will be a great help. 
All I need is 3 to 4 simple step that what URLs I need to get user 
registered in orderly manner. 

Looking forward.

Cheers
Shazia

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/17fcc724-ea85-4db7-b7e4-4f4837e6ee1dn%40googlegroups.com.


Re: Implementing multiple roles user model in django

2020-12-23 Thread Mike Dewhirst

On 24/12/2020 4:38 am, Aakash Verma wrote:
Hi , which is the best possible way to have multiple roles user  model 
in django , I have tried OnetoOnefield with default user model , and 
then having a charField in a user model Where in choices are provided 
for different roles and other is trying Third party packages .
Can anyone suggest what is the best way used in Industry to implement 
Multiple roles in Django , (specially if roles are more than 5). Need 
to Implement this in Django Rest Framework .

Please suggest some good resource on it if possible


It is built into Django already. Look at django.contrib.auth ...

https://docs.djangoproject.com/en/2.2/ref/contrib/auth/#django.contrib.auth.models.Group

If you think "role" when you see "group" you have it already.

The key to success is to NEVER assign permissions to individual users. 
Roles (ie groups) need to be nicely named and given exactly the 
permissions required. You can then put different users into one or more 
groups as necessary. Next write a few utilities such as is_editor(user) 
or is_reporter(user) and so on.




Thanks and Regards
Akash verma
--
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+unsubscr...@googlegroups.com 
.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d1b0ffb2-c148-49e1-885a-551d6ff12a07n%40googlegroups.com 
.



--
Signed email is an absolute defence against phishing. This email has
been signed with my private key. If you import my public key you can
automatically decrypt my signature and be sure it came from me. Just
ask and I'll send it to you. Your email software can handle signing.


--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c531d0a4-1cb6-22a1-c97d-8ced458c7b1b%40dewhirst.com.au.


OpenPGP_signature
Description: OpenPGP digital signature


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread Benny M
I’m going to second Kasper on this. There’s enough affordable options out there 
that self hosting to a “safe enough” degree would be the more expensive route 
to go. 

I did this myself for a little while - had a makeshift cloud service for myself 
right up until I had a dev-ops friend take a look. His little giggles and 
eye-rolls were enough to convince me that I was wholly out of my league.

It’s a fun idea, but if you’re going to do it right, it’s not going to be cheap 
and it’s still not going to be secure enough to keep your network from being 
compromised. 

> On Dec 23, 2020, at 3:02 PM, Kasper Laudrup  wrote:
> 
> On 23/12/2020 18.46, joseenoc...@gmail.com wrote:
>> Can some one pls explain what steps show I follow to host my django project 
>> on my pc and allow anyone outside my network WIFI to see the webiste
>> 
> 
> You don't want to do that, but just in case:
> 
> You probably want to ensure that you have a static IP from your internet 
> provider. If you don't have that or for some reason cannot get one, consider 
> looking into dynamic DNS so you have a well known DNS name when your public 
> IP address changes.
> 
> Configure your router to forward requests on the port where your Django 
> website is running to the IP of your PC.
> 
> But you seriously don't want to do that. Look into how to deploy your website 
> instead.
> 
> Kind regards,
> 
> Kasper Laudrup
> 
> -- 
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/90d7384c-e6ea-4485-60da-3a57c0cd3707%40stacktrace.dk.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CH2PR14MB3913826C4668B8F16D33278AC0DE0%40CH2PR14MB3913.namprd14.prod.outlook.com.


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread Kasper Laudrup

On 23/12/2020 18.46, joseenoc...@gmail.com wrote:
Can some one pls explain what steps show I follow to host my django 
project on my pc and allow anyone outside my network WIFI to see the 
webiste




You don't want to do that, but just in case:

You probably want to ensure that you have a static IP from your internet 
provider. If you don't have that or for some reason cannot get one, 
consider looking into dynamic DNS so you have a well known DNS name when 
your public IP address changes.


Configure your router to forward requests on the port where your Django 
website is running to the IP of your PC.


But you seriously don't want to do that. Look into how to deploy your 
website instead.


Kind regards,

Kasper Laudrup

--
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/90d7384c-e6ea-4485-60da-3a57c0cd3707%40stacktrace.dk.


Re: How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread ule...@gmail.com
Hi,
You can use https://pythonanywhere.com and create a free account or 
https://eu.pythonanywhere.com...
How to put your site on pythonanyhere is explained  on following tutorial 
https://help.pythonanywhere.com/pages/DeployExistingDjangoProject/
samples :
task application : see https://ulefr03.eu.pythonanywhere.com/
or donation : see https://ulefr03.eu.pythonanywhere.com/donatie
or address application : see https://ulefr01.pythonanywhere.com/
or budget application : see https://ulefr02.eu.pythonanywhere.com/schema
Op woensdag 23 december 2020 om 18:46:22 UTC+1 schreef 
joseenoc...@gmail.com:

> Can some one pls explain what steps show I follow to host my django 
> project on my pc and allow anyone outside my network WIFI to see the webiste

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/924b587d-37fe-4de4-ae38-827b53daba25n%40googlegroups.com.


How can I host my django project on my pc for someone to see it outside my WIFI network

2020-12-23 Thread joseenoc...@gmail.com
Can some one pls explain what steps show I follow to host my django project 
on my pc and allow anyone outside my network WIFI to see the webiste

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/311941fc-09ad-4606-aadb-c5d4db459cd4n%40googlegroups.com.


Implementing multiple roles user model in django

2020-12-23 Thread Aakash Verma
Hi , which is the best possible way to have multiple roles user   model in 
django , I have tried OnetoOnefield with default user model , and then 
having a charField in a user model Where in choices are provided for 
different roles and other is trying Third party packages .
Can anyone suggest what is the best way used in Industry to implement 
Multiple roles in Django , (specially if roles are more than 5). Need to 
Implement this in Django Rest Framework .
Please suggest some good resource on it if possible 
Thanks and Regards 
Akash verma

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d1b0ffb2-c148-49e1-885a-551d6ff12a07n%40googlegroups.com.


Re: attempt to write a readonly database

2020-12-23 Thread MALVIYA IT WEB
try from  your end or contact me 8696067700 on monday


On Wed, Dec 23, 2020 at 9:48 PM Parul.  wrote:

> OperationalError at /users/
> Request Method: POST
> Request URL: http://localhost:8000/users/
> Django Version: 3.0.3
> Exception Type: OperationalError
> Exception Value:
>
> attempt to write a readonly database
>
> Exception Location: 
> C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
> in execute, line 396
> Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
> Python Version: 3.8.5
> Python Path:
>
> ['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']
>
> Server time: Wed, 23 Dec 2020 16:14:46 +
>
>
>
> ->>> Also, i checked the properties in db.sqlite3, all the
> permissions are checked...write permission also
> can anyone help
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHjHRFoBMq5VCKnBPiCEgSrLvZ7P0vvwd5Ah-_cDOv8kX1oKhg%40mail.gmail.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJmdaX5RYg-y_ZbGhk5E4KMNt-Q-fbu7Hg%2B7T47fw_v-dOGYhA%40mail.gmail.com.


Re: attempt to write a readonly database

2020-12-23 Thread Bryan Anderson bautista garcia
hello, I don't know who you are, you're the wrong person

El mié, 23 de dic. de 2020 a la(s) 11:19, Parul. (parul.281...@gmail.com)
escribió:

> OperationalError at /users/
> Request Method: POST
> Request URL: http://localhost:8000/users/
> Django Version: 3.0.3
> Exception Type: OperationalError
> Exception Value:
>
> attempt to write a readonly database
>
> Exception Location: 
> C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
> in execute, line 396
> Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
> Python Version: 3.8.5
> Python Path:
>
> ['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']
>
> Server time: Wed, 23 Dec 2020 16:14:46 +
>
>
>
> ->>> Also, i checked the properties in db.sqlite3, all the
> permissions are checked...write permission also
> can anyone help
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAHjHRFoBMq5VCKnBPiCEgSrLvZ7P0vvwd5Ah-_cDOv8kX1oKhg%40mail.gmail.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACs2VvYWAkaOpcVAVTm5TKVixq%2BuUhejD-1ejUaVGrK1V31oUQ%40mail.gmail.com.


Re: Django/python free Training

2020-12-23 Thread Shruti Yadav
I am interested

On Wed, 23 Dec, 2020, 21:19 rpower,  wrote:

> interested
>
> On Friday, December 18, 2020 at 9:27:14 AM UTC-5 rampage...@gmail.com
> wrote:
>
>> Hi guys,
>>
>> I am manucho from Kenya and am good developer with django and python and
>> i want to teach people what i know .I want to start a youtube channel for
>> Django and python based tutorials ..If intrested you can message me here on
>> concepts and projects you want covered and i will start immediately.
>>
>> Regards,
>> Manucho.
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e426f173-42be-4f13-a9fa-a57dee769bb9n%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPyR55zYN%3DbeL_Fv0Ag5Fo%3DutjB8QF%2BAn9xfnyPKRTSqdj%2Bo5w%40mail.gmail.com.


attempt to write a readonly database

2020-12-23 Thread Parul.
OperationalError at /users/
Request Method: POST
Request URL: http://localhost:8000/users/
Django Version: 3.0.3
Exception Type: OperationalError
Exception Value:

attempt to write a readonly database

Exception Location:
C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
in execute, line 396
Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
Python Version: 3.8.5
Python Path:

['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
 'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']

Server time: Wed, 23 Dec 2020 16:14:46 +



->>> Also, i checked the properties in db.sqlite3, all the
permissions are checked...write permission also
can anyone help

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHjHRFoBMq5VCKnBPiCEgSrLvZ7P0vvwd5Ah-_cDOv8kX1oKhg%40mail.gmail.com.


Re: Django/python free Training

2020-12-23 Thread Surya M
Yes, I'm interested , I already working with Django without any knowledge
and guidance,It's useful to me.

On Wed, Dec 23, 2020, 9:19 PM rpower  wrote:

> interested
>
> On Friday, December 18, 2020 at 9:27:14 AM UTC-5 rampage...@gmail.com
> wrote:
>
>> Hi guys,
>>
>> I am manucho from Kenya and am good developer with django and python and
>> i want to teach people what i know .I want to start a youtube channel for
>> Django and python based tutorials ..If intrested you can message me here on
>> concepts and projects you want covered and i will start immediately.
>>
>> Regards,
>> Manucho.
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e426f173-42be-4f13-a9fa-a57dee769bb9n%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CANR%2BB8G_xbbQNLk4UHYcXeqZJFhK5bBA0w8qpe%3Duf5jHDikj2Q%40mail.gmail.com.


Re: Django/python free Training

2020-12-23 Thread Igbinyemi Adeboye Amos
I am interested.

On Wed, Dec 23, 2020 at 4:49 PM rpower  wrote:

> interested
>
> On Friday, December 18, 2020 at 9:27:14 AM UTC-5 rampage...@gmail.com
> wrote:
>
>> Hi guys,
>>
>> I am manucho from Kenya and am good developer with django and python and
>> i want to teach people what i know .I want to start a youtube channel for
>> Django and python based tutorials ..If intrested you can message me here on
>> concepts and projects you want covered and i will start immediately.
>>
>> Regards,
>> Manucho.
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e426f173-42be-4f13-a9fa-a57dee769bb9n%40googlegroups.com
> 
> .
>


-- 
Igbinyemi Adeboye Amos
Cybersecurity Personnel
09063997466

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHXnsF347GCj96_%2BvZim0%3DDu0Cs4hse_Wm-GVc8SmBVin33hYw%40mail.gmail.com.


Re: Django/python free Training

2020-12-23 Thread rpower
interested

On Friday, December 18, 2020 at 9:27:14 AM UTC-5 rampage...@gmail.com wrote:

> Hi guys,
>
> I am manucho from Kenya and am good developer with django and python and i 
> want to teach people what i know .I want to start a youtube channel for 
> Django and python based tutorials ..If intrested you can message me here on 
> concepts and projects you want covered and i will start immediately.
>
> Regards,
> Manucho.
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e426f173-42be-4f13-a9fa-a57dee769bb9n%40googlegroups.com.


Re: Django/python free Training

2020-12-23 Thread Ruhia gr
am interested

On Wed, Dec 23, 2020 at 2:56 PM yashwanth .k 
wrote:

> I am interested!
> Add me as well.
>
> On Wed, Dec 23, 2020 at 2:14 PM narendra thapa 
> wrote:
>
>> interested to connect with you
>>
>>
>> On Wed, Dec 23, 2020 at 3:07 AM kerolos emad <55522ash...@gmail.com>
>> wrote:
>>
>>> very nice to hear that
>>> interested
>>>
>>> On Fri, Dec 18, 2020, 4:26 PM Python Class 
>>> wrote:
>>>
 Hi guys,

 I am manucho from Kenya and am good developer with django and python
 and i want to teach people what i know .I want to start a youtube channel
 for Django and python based tutorials ..If intrested you can message me
 here on concepts and projects you want covered and i will start 
 immediately.

 Regards,
 Manucho.

 --
 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+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/5c715780-23c4-4d31-9219-a1e7b92c14f1n%40googlegroups.com
 
 .

>>> --
>>> 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+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CABUMrQKfEBSpjvR_gc5%2BjB2R6dvEqpkpsVC4OfEcVmWpQ4hg7Q%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAEtntjWmWYnk2fuBa9%2BA3RT7HakNWB8kkbCHa35EU%3Dzm1Ddyxw%40mail.gmail.com
>> 
>> .
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CALgTQAJR_80bB1asm0kvsvcnq-QMQfN7FWn812bVRgTsiU1w3A%40mail.gmail.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAG5%3DJHfJd1bZ5bkQJ3m4KWYH8KLWu1MT9W_HNtswkdofHug-4w%40mail.gmail.com.


Re: Django/python free Training

2020-12-23 Thread yashwanth .k
I am interested!
Add me as well.

On Wed, Dec 23, 2020 at 2:14 PM narendra thapa 
wrote:

> interested to connect with you
>
>
> On Wed, Dec 23, 2020 at 3:07 AM kerolos emad <55522ash...@gmail.com>
> wrote:
>
>> very nice to hear that
>> interested
>>
>> On Fri, Dec 18, 2020, 4:26 PM Python Class 
>> wrote:
>>
>>> Hi guys,
>>>
>>> I am manucho from Kenya and am good developer with django and python and
>>> i want to teach people what i know .I want to start a youtube channel for
>>> Django and python based tutorials ..If intrested you can message me here on
>>> concepts and projects you want covered and i will start immediately.
>>>
>>> Regards,
>>> Manucho.
>>>
>>> --
>>> 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+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/5c715780-23c4-4d31-9219-a1e7b92c14f1n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CABUMrQKfEBSpjvR_gc5%2BjB2R6dvEqpkpsVC4OfEcVmWpQ4hg7Q%40mail.gmail.com
>> 
>> .
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEtntjWmWYnk2fuBa9%2BA3RT7HakNWB8kkbCHa35EU%3Dzm1Ddyxw%40mail.gmail.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALgTQAJR_80bB1asm0kvsvcnq-QMQfN7FWn812bVRgTsiU1w3A%40mail.gmail.com.


Re: Django/python free Training

2020-12-23 Thread narendra thapa
interested to connect with you


On Wed, Dec 23, 2020 at 3:07 AM kerolos emad <55522ash...@gmail.com> wrote:

> very nice to hear that
> interested
>
> On Fri, Dec 18, 2020, 4:26 PM Python Class 
> wrote:
>
>> Hi guys,
>>
>> I am manucho from Kenya and am good developer with django and python and
>> i want to teach people what i know .I want to start a youtube channel for
>> Django and python based tutorials ..If intrested you can message me here on
>> concepts and projects you want covered and i will start immediately.
>>
>> Regards,
>> Manucho.
>>
>> --
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/5c715780-23c4-4d31-9219-a1e7b92c14f1n%40googlegroups.com
>> 
>> .
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CABUMrQKfEBSpjvR_gc5%2BjB2R6dvEqpkpsVC4OfEcVmWpQ4hg7Q%40mail.gmail.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAEtntjWmWYnk2fuBa9%2BA3RT7HakNWB8kkbCHa35EU%3Dzm1Ddyxw%40mail.gmail.com.