Re: python/django/vs code

2024-06-06 Thread Bhagyashri Phalake
Calculate Total Sales in View from django.shortcuts import render from .models import Sale def sales_report(request): sales = Sale.objects.all() total_sales = sales.aggregate(total=models.Sum('total_price'))['total'] return render(request, 'sales_report.html', {'sales': sales, 'to

Re: python/django/vs code

2024-06-05 Thread Nagaraja
try below method {% block content %} {% endblock content %} On Wed, Jun 5, 2024 at 1:09 PM 'Mee “MeeGrp” Grp' via Django users < django-users@googlegroups.com> wrote: > I have two html files 1. view_sales.html 2. total_sales.html > > I want to display output of total_sales.html withi

Re: python/django/vs code

2024-06-05 Thread Web dev
Hi, I guess your trouble. Let me try. On Wed, Jun 5, 2024 at 4:38 PM 'Mee “MeeGrp” Grp' via Django users < django-users@googlegroups.com> wrote: > I have two html files 1. view_sales.html 2. total_sales.html > > I want to display output of total_sales.html within view_sales.html* > just below *

Re: Python Database Migration Tool

2024-02-29 Thread Eduardo Barbachan
I believe that you will have to translate your postgres db to a mssql schema, perform the mapping by yourself, and elaborate a series of procedures to get this done. As far as I know, no tool will cover all of your needs. Em qui., 29 de fev. de 2024 às 12:01, sebasti...@gmail.com < sebastian.ju...

Re: Python Database Migration Tool

2024-02-29 Thread Christian Ledermann
On Thu, 29 Feb 2024 at 15:01, sebasti...@gmail.com < sebastian.ju...@gmail.com> wrote: > Hey, > > i have 2 different database systems. In source postgresql and target MS > SQL. Now i have on source DBMS a database with a complete different schema > like in target DBMS. Now i search a solution wher

Re: Python on the web

2024-01-12 Thread Luc Verier
You can go on Freelance Dispo Le vendredi 11 mars 2016 à 10:19:51 UTC+1, Derek a écrit : > Do you offer a discount because its not PEP-8 compliant ;) > > > On Wednesday, 9 March 2016 19:25:22 UTC+2, Mario R. Osorio wrote: >> >> There you are: http://hlevkin.com/S

Re: Python

2023-08-31 Thread Brian Carey
It would be good to have a goal. What do you want to do? Website? Applications? Data Science? Machine Learning? The answer really depends on your purpose. ⁣Get BlueMail for Android ​ On Aug 31, 2023, 21:34, at 21:34, KHUSH DESAI wrote: >hey guys , I am a new to doing all of this as i just start

Re: Python

2023-08-31 Thread Andréas Kühne
You should start by understanding a web framework with Python. I would recommend starting with Django - www.djangoproject.com - it’s a batteries included framework where you won’t need to handle all aspects by yourself.You can find a good tutorial at the following website:Introduction · HonKittutor

Re: python manage.py commonds: AttributeError: 'PosixPath' object has no attribute 'startswith'

2023-05-14 Thread David Du
Thanks to all and best wishes! Julius Chesoni在 2023年4月26日星期三下午9:58:23 [UTC+8]寫道: > You must be a very good Django programmer. > > Thank you on behalf of Django community, for such a great answer that even > novices like me are able to understand. > > I had no idea that there were other non def

Re: python manage.py commonds: AttributeError: 'PosixPath' object has no attribute 'startswith'

2023-04-26 Thread Julius Chesoni
You must be a very good Django programmer. Thank you on behalf of Django community, for such a great answer that even novices like me are able to understand. I had no idea that there were other non default configurations of the variable BASE_DIR. Julius. On Wed, Apr 26, 2023 at 1:15 AM David

Re: python manage.py commonds: AttributeError: 'PosixPath' object has no attribute 'startswith'

2023-04-25 Thread David Nugent
This error is being triggered by an outdated and badly behaved module that contains the run_cmdb_worker management command. Anything that relies on the presence of BASE_DIR in settings is bad behaviour. This is an entirely arbitrary variable name that might not even be present in a non-default con

Re: Python(Back-End) Engineer

2023-02-25 Thread Benjamin Telford
Hello, José Ícaro. Thank you for your response. These are my information: https://github.com/Github-Benjamin https://www.linkedin.com/in/benjamin-tilford-782794264/ Benjamin On Sat, Feb 25, 2023 at 12:42 PM José Ícaro wrote: > What is your linkedin or github Benjamin? > > > Em sex., 24 de fev.

Re: Python(Back-End) Engineer

2023-02-25 Thread José Ícaro
What is your linkedin or github Benjamin? Em sex., 24 de fev. de 2023 às 22:22, Benjamin Telford < benjamintelford0...@gmail.com> escreveu: > I am a Senior Back-End Engineer who has 8+ years experience in web > development including python(Django, Flask, FastAPI), Docker, CI/CD, AWS > etc. > > >

Re: python instagram bot to upload posts ( TRY THIS )

2022-06-15 Thread UJJWAL CHAUDHARY
from instabot import Bot bot=Bot() bot.login(username='username'),password=('**') bot.upload_photo('/Users/mac/Documents/Abhinandan_Projects/complete_BOT_project/milestone_5/ok.png',caption='ok its here') On Tue, 14 Jun 2022, 11:36 Abhinandan K, wrote: > hello every one i'm trying to create

Re: python instagram bot to upload posts

2022-06-14 Thread 'Kasper Laudrup' via Django users
On 14/06/2022 08.06, Abhinandan K wrote: hello every one i'm trying to create a python instagram bot to upload posts.. That's great but how is this related to Django? Maybe you should consider finding another place for all your questions as none of them really fit here. Before doing that

Re: Python Question re Executing a Script (Mike)

2022-05-01 Thread Mike Dewhirst
day, April 30, 2022 7:15 PM *To:* Brent Hunter ; python-l...@python.org *Subject:* Re: Python Question re Executing a Script On 1/05/2022 8:37 am, Brent Hunter wrote: Hello, I just purchased a new Windows 11 computer and installed Python 3.10.4 (64 bit).  I can't figure out from your

Re: Python code changes are not reflecting on Django-based web server.

2021-09-30 Thread Ryan Nowakowski
You can use the ps command: ps -aef | grep "apache\|httpd" The process id(pid) is the second column usually. If it changes, then you know the process was restarted. - Ryan N On Thu, Aug 19, 2021 at 10:52:04PM -0400, Hasan Baig wrote: > Yes systemctl stop and start httpd, i verified by che

Re: Python code changes are not reflecting on Django-based web server.

2021-08-19 Thread Hasan Baig
Yes systemctl stop and start httpd, i verified by checking the web page. How can i check pid? Regards Hasan > On Aug 19, 2021, at 8:55 AM, Ryan Nowakowski wrote: > > I'd verify that the systemctl commands are actually starting and stopping > httpd. Does the pid change? > >> On August 18, 2

Re: Python code changes are not reflecting on Django-based web server.

2021-08-19 Thread Abeer Eltanawy
I have been using the apachectl command instead and it works without an issue. sudo apachectl stop sudo apachectl start sudo apachectl restart On Thu, Aug 19, 2021 at 2:54 PM Ryan Nowakowski wrote: > I'd verify that the systemctl commands are actually starting and stopping > httpd. Does the pid

Re: Python code changes are not reflecting on Django-based web server.

2021-08-19 Thread Ryan Nowakowski
I'd verify that the systemctl commands are actually starting and stopping httpd. Does the pid change? On August 18, 2021 11:04:07 AM CDT, Hasan Baig wrote: >Hi, > >I have been hosting a django-based web server (httpd with mod_wsgi package) on >Linux CentOS 7. I used to reflect the changes made

Re: python manage.py magrate gives the below error with SQL SERVER (Please help)

2021-08-10 Thread 'Amitesh Sahay' via Django users
check your database table though some UI. make sure that the " polls_question" is not there  On Tuesday, 10 August, 2021, 07:20:42 pm IST, Vikram Gajjala wrote: SQL Server 2019Python 3.9.6pip 21.2.3python -m django --version 3.2.6 asgiref              3.4.1astroid              2.6.6

Re: Python Developer

2021-07-12 Thread Mohammad Rahimi
Hello nagaraju!! Thanks for your great Gmail! I saw your resume, but I didn't understand that well... So, I have to study more to figure out it! However, very very very thanks for your help! Mohammad from Iran On Mon, Jul 12, 2021, 19:53 RaviKiran Kk wrote: > We are looking for django develop

Re: Python Developer

2021-07-12 Thread RaviKiran Kk
We are looking for django developer Contact 6309620745 On Fri, Jul 2, 2021, 23:56 Nagaraju Singothu wrote: > Dear Group Members, > > My name is Nagaraju, I have 2+ years of experience as a > python developer in Ikya Software Solutions Pvt Ltd at Hyderabad. Please > refer to my r

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-07-08 Thread Joseph Borge
I tried to configure and compile with all 3 variables and that did work as expected. Thanks! # C_INCLUDE_PATH=/usr/local/include CPLUS_INCLUDE_PATH=/usr/local/include LD_RUN_PATH=/usr/local/lib ./configure --enable-optimizations # C_INCLUDE_PATH=/usr/local/include CPLUS_INCLUDE_PATH=/usr/local/

Re: python code

2021-06-27 Thread mayank sandikar
Hello sir, I am trying to run the 'if else' query for a valid item name but my else is not running. and it is showing an error for invalid item name. For example, I have a 'pen' in my database. If I input the 'pen', the program runs but if I input 'penn' instead of showing the output print 'valid i

Re: Python libraries for visualisations

2021-03-17 Thread Stephen Lalor
I do a tonne of data visualization and would recommend checking out Plotly . Looks really good and easy to create fairly complex graphics with. On Monday, March 15, 2021 at 4:50:18 AM UTC geethanj...@gmail.com wrote: > Hi..How to build a dashboard using django and py

Re: Python libraries for visualisations

2021-03-17 Thread Ryan Nowakowski
On March 14, 2021 11:49:19 PM CDT, GEETHANJALI S P wrote: >Hi..How to build a dashboard using django and python libraries for >creating >visualisations?. Please let me know .Thanks in advance! I'm terrible at web design so I usually like to start with some HTML that is already styled. I've

Re: Python libraries for visualisations

2021-03-15 Thread Thomas Lockhart
If you are working with larger scientific datasets then bokeh may be of interest. For my cases all of the code is done in python. hth - Tom > On Mar 14, 2021, at 9:49 PM, GEETHANJALI S P > wrote: > > Hi..How to build a dashboard using django and python libraries for creating > visualisation

Re: Python libraries for visualisations

2021-03-15 Thread Milind Yadav
See if Dash or Grafana has some python wrapper or not? On Mon 15 Mar, 2021, 3:23 PM Christian Ledermann, < christian.lederm...@gmail.com> wrote: > You may want to checkout pygal https://github.com/Kozea/pygal > > On Mon, 15 Mar 2021 at 08:50, Roger Gammans > wrote: > >> >> Plotly comes to mind.

Re: Python libraries for visualisations

2021-03-15 Thread Christian Ledermann
You may want to checkout pygal https://github.com/Kozea/pygal On Mon, 15 Mar 2021 at 08:50, Roger Gammans wrote: > > Plotly comes to mind. there are quite a few charting libraries in this > python/web space. Google is as always your friend. > > But at the end of the day the best UX is always goi

Re: Python libraries for visualisations

2021-03-15 Thread Roger Gammans
Plotly comes to mind. there are quite a few charting libraries in this python/web space. Google is as always your friend. But at the end of the day the best UX is always going to come from a library with a significant JS component. If you don't want to worry to much about JS plotly's py component

Re: Python libraries for visualisations

2021-03-15 Thread GEETHANJALI S P
Can't we use python libraries instead of chart.js ...is there any method ..? On Mon, 15 Mar, 2021, 10:26 AM Omkar Parab, wrote: > You can integrate chart.js with Django for visualization. > > Check out this video 👇 > https://youtu.be/B4Vmm3yZPgc > > > On Mon, Mar 15, 2021, 10:19 AM GEETHANJALI S

Re: Python libraries for visualisations

2021-03-14 Thread Danny
You can use matplotlib library, encode the image in base64 and then show it in your html I found this snippet of code works the same way with the way I usually do it. https://stackoverflow.com/questions/52368870/display-matplotlib-image-on-html-page-using-django If you are interested in a dyn

Re: Python libraries for visualisations

2021-03-14 Thread Omkar Parab
You can integrate chart.js with Django for visualization. Check out this video 👇 https://youtu.be/B4Vmm3yZPgc On Mon, Mar 15, 2021, 10:19 AM GEETHANJALI S P wrote: > Hi..How to build a dashboard using django and python libraries for > creating visualisations?. Please let me know .Thanks in adv

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread panfei
It finally proved a compilation issue, this is the right way to compile Python 3.9: 1033 C_INCLUDE_PATH=/home/felix/.local/sqlite/default/include/ CPLUS_INCLUDE_PATH=/home/felix/.local/sqlite/default/include/ LD_RUN_PATH=/home/felix/.local/sqlite/default/lib ./configure --prefix=/home/felix/.local

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread panfei
Thanks for all the suggestions. 'Amitesh Sahay' via Django users 于2021年1月20日周三 下午10:06写道: > Please read the release notes of the Django version you are using. It will > be a life saver as well. > > Regards, > Amitesh > > > On Wednesday, 20 January, 2021, 07:35:14 pm IST, Amitesh Sahay < > amites

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread 'Amitesh Sahay' via Django users
Please read the release notes of the Django version you are using. It will be a life saver as well. Regards, Amitesh  On Wednesday, 20 January, 2021, 07:35:14 pm IST, Amitesh Sahay wrote: So, this seems to be a version compatibility issue, a a work around you can use some other dat

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread 'Amitesh Sahay' via Django users
So, this seems to be a version compatibility issue, a a work around you can use some other database(mysql, oracle, etc). This cud save ur day and time as well. Regards, Amitesh  On Wednesday, 20 January, 2021, 07:32:59 pm IST, panfei wrote: I have tried, it works in Python 3.6 environ

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread panfei
The exception is raised from inside the C implementation in Python when checking sqlite3 version check. In Django: @async_unsafe def get_new_connection(self, conn_params): conn = Database.connect(**conn_params) if PY38: create_deterministic_function = functools.partial(

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread panfei
I have tried, it works in Python 3.6 environment. but I still want to find a way (maybe a workaround) to solve this problem. 'Amitesh Sahay' via Django users 于2021年1月20日周三 下午9:48写道: > Try older version of Python interpreter and see if that works. May be > consider using 3.6 > > Regards, > Amites

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread 'Amitesh Sahay' via Django users
Try older version of Python interpreter and see if that works. May be  consider using 3.6 Regards, Amitesh  On Wednesday, 20 January, 2021, 05:55:32 pm IST, panfei wrote: I found that, it may not be a Django-related issue, It's more likely a Python level issue, but do anyone know h

Re: python manage.py runserver can not use newly compiled sqlite3 lib on CentOS 7

2021-01-20 Thread panfei
I found that, it may not be a Django-related issue, It's more likely a Python level issue, but do anyone know how to avoid this problem?: (venv) [felix@localhost blueprint]$ python Python 3.9.1 (default, Jan 20 2021, 14:32:50) [GCC 10.2.0] on linux Type "help", "copyright", "credits" or "license"

Re: Python Django Training

2020-12-19 Thread Oyedele Yusuff
Add me also On Fri, 18 Dec 2020 3:26 pm Rafael Alix, wrote: > Pls add me > > On Wednesday, December 16, 2020 at 12:10:52 PM UTC-5 ray.s...@gmail.com > wrote: > >> Pls add me >> >> On Wed, 16 Dec 2020, 10:26 pm Nagaraju Singothu, >> wrote: >> >>> I'm also interested sir, Plz add me I'm from hyde

Re: Python Django Training

2020-12-18 Thread Rafael Alix
Pls add me On Wednesday, December 16, 2020 at 12:10:52 PM UTC-5 ray.s...@gmail.com wrote: > Pls add me > > On Wed, 16 Dec 2020, 10:26 pm Nagaraju Singothu, > wrote: > >> I'm also interested sir, Plz add me I'm from hyderabad >> >> On Mon 7 Dec, 2020, 1:40 PM narendra thapa, >> wrote: >> >

Re: Python Django Training

2020-12-16 Thread Saswat Ray
Pls add me On Wed, 16 Dec 2020, 10:26 pm Nagaraju Singothu, < nagarajusingoth...@gmail.com> wrote: > I'm also interested sir, Plz add me I'm from hyderabad > > On Mon 7 Dec, 2020, 1:40 PM narendra thapa, > wrote: > >> hello please add me also in training group? >> >> >> On Fri, Feb 21, 2020 at 7

Re: Python Django Training

2020-12-16 Thread Nagaraju Singothu
I'm also interested sir, Plz add me I'm from hyderabad On Mon 7 Dec, 2020, 1:40 PM narendra thapa, wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please

Re: Python Django Training

2020-12-16 Thread Ajay Prajapati
Interested Regards, Ajay Prajapati |* SDE 2* Haptik M: +91 7030308678 On Wed, Dec 16, 2020 at 7:38 PM Chuck wrote: > add me also in the training group, thanks. > > On Tuesday, December 15, 2020, 05:51:21 AM PST, manishimwe emmanuel < > manishimweemmanu...@gmail.com> wrote: > > > Hello add m

Re: Python Django Training

2020-12-16 Thread Chuck
add me also in the training group, thanks. On Tuesday, December 15, 2020, 05:51:21 AM PST, manishimwe emmanuel wrote: Hello add me also in training group?   On Tue, Dec 15, 2020 at 8:35 AM Eugene TUYIZERE wrote: add me please On Mon, 7 Dec 2020 at 10:10, narendra thapa wrote: he

Re: Python Django Training

2020-12-15 Thread manishimwe emmanuel
Hello add me also in training group? On Tue, Dec 15, 2020 at 8:35 AM Eugene TUYIZERE wrote: > add me please > > On Mon, 7 Dec 2020 at 10:10, narendra thapa > wrote: > >> hello please add me also in training group? >> >> >> On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam >> wrote: >> >>> Hi, >>>

Re: Python Django Training

2020-12-14 Thread Eugene TUYIZERE
add me please On Mon, 7 Dec 2020 at 10:10, narendra thapa wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tell me how to join? >> >> Regards, >>

RE: Python Django Training

2020-12-12 Thread LASISI HABEEB
Interested... Sent from Mail for Windows 10 From: Pawan Goswami Sent: December 13, 2020 3:47 AM To: django-users@googlegroups.com Subject: Re: Python Django Training I'm interested too... On Sat, 12 Dec, 2020, 6:51 AM paidjoo indo, wrote: Am too, I'm interesting training Django O

Re: Python Django Training

2020-12-12 Thread Pawan Goswami
I'm interested too... On Sat, 12 Dec, 2020, 6:51 AM paidjoo indo, wrote: > Am too, I'm interesting training Django > > On Mon, Dec 7, 2020, 3:09 PM narendra thapa > wrote: > >> hello please add me also in training group? >> >> >> On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam >> wrote: >> >>> H

Re: Python Django Training

2020-12-11 Thread paidjoo indo
Am too, I'm interesting training Django On Mon, Dec 7, 2020, 3:09 PM narendra thapa wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tell me how

Re: Python Django Training

2020-12-11 Thread Chuck
I'm interested too. Thnaks. On Friday, December 11, 2020, 07:36:45 AM PST, Mitchel Inaju wrote: I'm interested Could you please add me up? On Mon, 7 Dec 2020, 9:09 am narendra thapa, wrote: hello please add me also in training group? On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam wr

Re: Python Django Training

2020-12-11 Thread Mitchel Inaju
I'm interested Could you please add me up? On Mon, 7 Dec 2020, 9:09 am narendra thapa, wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tell me h

Re: Python Django Training

2020-12-09 Thread Sabas Alfredo
l message >> From: Chuck >> Date: 08/12/2020 02:42 (GMT+03:00) >> To: django-users@googlegroups.com >> Subject: Re: Python Django Training >> >> I am also interested. >> >> Thanks, >> Chuck >> >> On Monday, December 7, 2020,

Re: Python Django Training

2020-12-08 Thread narendra thapa
hello everyone, I have created a slack group and had added you guys their and here is the link. Happy LEarning https://join.slack.com/t/newworkspace-5ux7465/shared_invite/zt-jtnrhbvq-0JGEt0KEaREZsxsZTt2dVw On Wed, Dec 9, 2020 at 12:24 AM ali faouzi wrote: > Also interested ! > > ‪Le mar. 8 déc.

Re: Python Django Training

2020-12-08 Thread ali faouzi
Also interested ! ‪Le mar. 8 déc. 2020 à 17:12, ‫شيماء شعبان حسن‬‎ a écrit :‬ > Hi, > I from Egypt and I'm also interested in the training. please tell me how > to join? > > ‫في الثلاثاء، 8 ديسمبر 2020 في 5:42 م تمت كتابة ما يلي بواسطة ‪Dhirendra > Tripathi‬‏ <‪dt23...@gmail.com‬‏>:‬ > >> Consid

Re: Python Django Training

2020-12-08 Thread شيماء شعبان حسن
Hi, I from Egypt and I'm also interested in the training. please tell me how to join? ‫في الثلاثاء، 8 ديسمبر 2020 في 5:42 م تمت كتابة ما يلي بواسطة ‪Dhirendra Tripathi‬‏ <‪dt23...@gmail.com‬‏>:‬ > Consider me also I'm interested > > On Mon, Dec 7, 2020, 1:40 PM narendra thapa > wrote: > >> hell

Re: Python Django Training

2020-12-08 Thread Dhirendra Tripathi
Consider me also I'm interested On Mon, Dec 7, 2020, 1:40 PM narendra thapa wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tell me how to join?

Re: Python Django Training

2020-12-08 Thread Sujata Aghor
I m in 👍 On Tue, Dec 8, 2020 at 6:59 AM cmailu06 wrote: > I am interested > > > > > Sent from my Galaxy > > > Original message > From: Chuck > Date: 08/12/2020 02:42 (GMT+03:00) > To: django-users@googlegroups.com > Subject: R

Re: Python Django Training

2020-12-07 Thread cmailu06
I am interested Sent from my Galaxy Original message From: Chuck Date: 08/12/2020 02:42 (GMT+03:00) To: django-users@googlegroups.com Subject: Re: Python Django Training I am also interested.Thanks,Chuck

Re: Python Django Training

2020-12-07 Thread hajar Benjat
also from hyd > > > > Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for > Windows 10 > > > > *From: *tech george > *Sent: *Monday, December 7, 2020 7:24 PM > *To: *django-users@googlegroups.com > *Subject: *Re: Python Django Training > >

Re: Python Django Training

2020-12-07 Thread Chuck
am also interested I am also from hyd   Sent from Mail for Windows 10   From: tech george Sent: Monday, December 7, 2020 7:24 PM To: django-users@googlegroups.com Subject: Re: Python Django Training   I want in too   On Mon, 7 Dec 2020, 16:43 Hector Berrones, wrote: I am interested

Re: 'python manage.py startapp polls' doesn't generate urls.py in polls

2020-12-07 Thread Julie Reier
Nevermind. I managed to create the missing file myself. On Monday, December 7, 2020 at 9:48:59 AM UTC-5 Julie Reier wrote: > Hi! I'm following the tutorial at > https://docs.djangoproject.com/en/3.1/intro/tutorial01/. > > When running the 'python manage.py startapp polls' command, the urls.py >

Re: 'python manage.py startapp polls' doesn't generate urls.py in polls

2020-12-07 Thread Mohemed Misfar
Good evening, When u run the code python manage.py startapp, it wont create urls.py. You have to create it in your every apps after run that command. You will only have the urls.py file in your main app which has the settings.py. Thank you. On Mon, 7 Dec 2020 20:18 Julie Reier, wrote: > Hi! I'm

RE: Python Django Training

2020-12-07 Thread elon musk
I am also interested I am also from hyd Sent from Mail for Windows 10 From: tech georgeSent: Monday, December 7, 2020 7:24 PMTo: django-users@googlegroups.comSubject: Re: Python Django Training I want in too On Mon, 7 Dec 2020, 16:43 Hector Berrones, <hec...@getin2web.com> wrote:I am inte

Re: Python Django Training

2020-12-07 Thread tech george
I want in too On Mon, 7 Dec 2020, 16:43 Hector Berrones, wrote: > I am interested. > > On Mon, Dec 7, 2020, 2:09 AM narendra thapa > wrote: > >> hello please add me also in training group? >> >> >> On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam >> wrote: >> >>> Hi, >>> I also from Hyderabad and

Re: Python Django Training

2020-12-07 Thread Hector Berrones
I am interested. On Mon, Dec 7, 2020, 2:09 AM narendra thapa wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tell me how to join? >> >> Regards,

Re: Python Django Training

2020-12-07 Thread Master Stock Mart
I wanna also interested joining training group On Mon., 7 Dec. 2020, 2:09 pm narendra thapa, wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tel

Re: Python Django Training

2020-12-07 Thread 039 Avinash Alanjakar
Hello , I am also interested to join this training. On Mon, 7 Dec 2020, 1:39 pm narendra thapa, wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >>

Re: Python Django Training

2020-12-07 Thread narendra thapa
hello please add me also in training group? On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam wrote: > Hi, > I also from Hyderabad and I'm also interested in the training. please tell > me how to join? > > Regards, > Bharati > > On Thu, 20 Feb, 2020, 6:19 PM Thiagu Palaniappan, < > thiagarajan@

Re: python/django support

2020-10-12 Thread siddharth kantekar
Hi Subbu, I can help you out with your requirements, lets have a call if that works for you? Thanks Siddharth On Sun, Oct 11, 2020 at 10:21 AM Dvs Khamele wrote: > > Hi do you hire contract based python/django freelancer? > We can help you in this and related tasks at fair prices. Reply or s

Re: python/django support

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Thu, 1 Oct 2020, 6:31 pm Subbu Lakk, wrote: > guys, I need support for my django applicati

Re: Python/Django, "The 'poster' attribute has no file associated with it"

2020-08-31 Thread sapna Choudhary
Did you create media directory in your base directory? On Thu 27 Aug, 2020, 8:33 PM Tony Hall, wrote: > I'm relatively new to programming and I'm having some trouble with the > ImageField in my models.py. > > I keep getting the error in the attachment every time I load the > local:8000. > > My m

Re: Python/Django, "The 'poster' attribute has no file associated with it"

2020-08-28 Thread RANGA BHARATH JINKA
Hi, Add a default image in models. On Thu, Aug 27, 2020 at 8:34 PM Tony Hall wrote: > I'm relatively new to programming and I'm having some trouble with the > ImageField in my models.py. > > I keep getting the error in the attachment every time I load the > local:8000. > > My models.py is: >

Re: Python manage.py runserver error

2020-08-26 Thread Ajeet Kumar Gupt
Hi, Install django in virtual environment. Thanks On Wed, Aug 26, 2020, 6:57 AM ROHINI PUNDE wrote: > Hi, > while running "python manage.py runserver" I got this type of error ,I am > not understand how to to solve this problem.please help me out. > find out on this attachment(error.png) > >

Re: Python manage.py runserver error

2020-08-25 Thread ROHINI PUNDE
Thank you so much, run properly on server. On Tue, Aug 25, 2020 at 8:22 PM RANGA BHARATH JINKA < bharathjink...@gmail.com> wrote: > Hi, > > Please create a virtual environment, activate it and install django > and other packages inside that environment. > All the best. > > On Wed, Aug 26,

Re: Python manage.py runserver error

2020-08-25 Thread RANGA BHARATH JINKA
Hi, Please create a virtual environment, activate it and install django and other packages inside that environment. All the best. On Wed, Aug 26, 2020 at 8:28 AM ROHINI PUNDE wrote: > Hi, > while running "python manage.py runserver" I got this type of error ,I am > not understand how t

Re: Python Django Tutorial for absolute beginners

2020-08-25 Thread Madhav Nandan
Dear Balaji, Recently I joined your session on google meet and it was nice to experience. I'm good at python, databases and backend technologies. Can I present a session on 'Using databases in python' to the fellow community? Regards, 9170459494 On Mon, Aug 24, 2020 at 10:42 PM Balaji Shetty w

Re: Python-django project

2020-08-20 Thread Lokesh Kumar
Interested to hop in. On Mon, Aug 10, 2020 at 6:21 PM Rostislav Kornatsky < info.send.o...@gmail.com> wrote: > Hi, I'm interested. I have a start test project and i will be glad to > collaborate with somebody > > вторник, 21 июля 2020 г., 6:09:08 UTC+3 пользователь learn code написал: >> >> Hi ev

Re: Python-django project

2020-08-10 Thread Rostislav Kornatsky
Hi, I'm interested. I have a start test project and i will be glad to collaborate with somebody вторник, 21 июля 2020 г., 6:09:08 UTC+3 пользователь learn code написал: > > Hi everyone, > > I am learning python and django, like to work on the projects to improve > more.If any one interested to

Re: Python-django project

2020-08-08 Thread learn code
Thank you all for your interest!!! On Fri, Aug 7, 2020 at 2:18 PM Anu Pande wrote: > Interested. > > On Fri, Aug 7, 2020, 21:09 hajar Benjat wrote: > >> Interested >> >> On Tue, Jul 21, 2020, 4:10 AM learn code wrote: >> >>> Hi everyone, >>> >>> I am learning python and django, like to work on

Re: Python-django project

2020-08-07 Thread vishnu thuletiya
Yes i am in On Sun, 26 Jul 2020, 9:30 pm Andi Setyawan, wrote: > Interested > > Pada tanggal 21 Jul 2020 10:10 AM, "learn code" > menulis: > >> Hi everyone, >> >> I am learning python and django, like to work on the projects to improve >> more.If any one interested to join with me to work on th

Re: Python-django project

2020-08-07 Thread Anu Pande
Interested. On Fri, Aug 7, 2020, 21:09 hajar Benjat wrote: > Interested > > On Tue, Jul 21, 2020, 4:10 AM learn code wrote: > >> Hi everyone, >> >> I am learning python and django, like to work on the projects to improve >> more.If any one interested to join with me to work on the projects,plz

Re: Python-django project

2020-08-07 Thread hajar Benjat
Interested On Tue, Jul 21, 2020, 4:10 AM learn code wrote: > Hi everyone, > > I am learning python and django, like to work on the projects to improve > more.If any one interested to join with me to work on the projects,plz send > me a email. > > -- > You received this message because you are su

Re: Python-django project

2020-08-07 Thread loic medou
Interested On Tue, 21 Jul 2020, 04:09 learn code, wrote: > Hi everyone, > > I am learning python and django, like to work on the projects to improve > more.If any one interested to join with me to work on the projects,plz send > me a email. > > -- > You received this message because you are subs

Re: Python-django project

2020-08-06 Thread Kovy Jacob
i mean project. Do you have a specific project in mind? On Thu, Aug 6, 2020 at 12:26 PM Kovy Jacob wrote: > do you have a specific question in mind? > > On Thu, Aug 6, 2020 at 9:36 AM Lahu Chavan wrote: > >> i am also interested to join ur project. my whatsapp number >> is +917875279602 >> >> O

Re: Python-django project

2020-08-06 Thread Kovy Jacob
do you have a specific question in mind? On Thu, Aug 6, 2020 at 9:36 AM Lahu Chavan wrote: > i am also interested to join ur project. my whatsapp number > is +917875279602 > > On Thu, Aug 6, 2020 at 6:56 PM gregory adomako > wrote: > >> Interested >> >> On Tuesday, July 21, 2020 at 4:09:08 AM U

Re: Python-django project

2020-08-06 Thread Lahu Chavan
i am also interested to join ur project. my whatsapp number is +917875279602 On Thu, Aug 6, 2020 at 6:56 PM gregory adomako wrote: > Interested > > On Tuesday, July 21, 2020 at 4:09:08 AM UTC+1, learn code wrote: >> >> Hi everyone, >> >> I am learning python and django, like to work on the proje

Re: Python-django project

2020-08-06 Thread gregory adomako
Interested On Tuesday, July 21, 2020 at 4:09:08 AM UTC+1, learn code wrote: > > Hi everyone, > > I am learning python and django, like to work on the projects to improve > more.If any one interested to join with me to work on the projects,plz send > me a email. > -- You received this message

Re: Python-django project

2020-08-06 Thread salla ajay
gt; >>> >>> *From: *Mithlesh Kumar >>> *Sent: *Wednesday, 29 July 2020 12:36 AM >>> *To: *django-users@googlegroups.com >>> *Subject: *Re: Python-django project >>> >>> >>> >>> I am also interested. Please add my nu

Re: Python-django project

2020-08-06 Thread jose AVOM
a V >>> >>> >>> >>> *From: *Mithlesh Kumar >>> *Sent: *Wednesday, 29 July 2020 12:36 AM >>> *To: *django-users@googlegroups.com >>> *Subject: *Re: Python-django project >>> >>> >>> >>> I am also

Re: Python-django project

2020-08-05 Thread Nagaraju Singothu
my WhatsApp number >> +919384402100 >> >> Best regards, >> >> Yamuna V >> >> >> >> *From: *Mithlesh Kumar >> *Sent: *Wednesday, 29 July 2020 12:36 AM >> *To: *django-users@googlegroups.com >> *Subject: *Re: Python-django project &

Re: Python-django project

2020-08-05 Thread todd brown
egards, >>> >>> Yamuna V >>> >>> >>> >>> *From: *Mithlesh Kumar >>> *Sent: *Wednesday, 29 July 2020 12:36 AM >>> *To: *django-users@googlegroups.com >>> *Subject: *Re: Python-django project >>> &g

Re: Python-django project

2020-08-05 Thread neeraj garg
am interested to join with your work. Its my WhatsApp number >> +919384402100 >> >> Best regards, >> >> Yamuna V >> >> >> >> *From: *Mithlesh Kumar >> *Sent: *Wednesday, 29 July 2020 12:36 AM >> *To: *django-users@googlegroups.com

Re: Python-django project

2020-08-05 Thread jhabar singh
; *Sent: *Wednesday, 29 July 2020 12:36 AM > *To: *django-users@googlegroups.com > *Subject: *Re: Python-django project > > > > I am also interested. Please add my number 8750641542 > > > > > > Regards, > > Mithlesh Kumar > > > > On Tue, Jul 28,

RE: Python-django project

2020-08-05 Thread yammunap...@gmail.com
Dear I am interested to join with your work. Its my WhatsApp number +919384402100Best regards,Yamuna V From: Mithlesh KumarSent: Wednesday, 29 July 2020 12:36 AMTo: django-users@googlegroups.comSubject: Re: Python-django project I am also interested. Please add my number 8750641542   Regards

Re: Python-django project

2020-08-05 Thread sapna Choudhary
Interested On Tue 21 Jul, 2020, 8:39 AM learn code, wrote: > Hi everyone, > > I am learning python and django, like to work on the projects to improve > more.If any one interested to join with me to work on the projects,plz send > me a email. > > -- > You received this message because you are su

Re: Python-django project

2020-07-28 Thread Lokesh Kumar
Hi there! Great to hear from you all! Looking forward to your support. On Tue, Jul 28, 2020 at 10:20 PM KONE GOMPOU LOUA ALASSANE < gompou.k...@uvci.edu.ci> wrote: > +225 47389778 > > interested brother! > Regards... > > Le mar. 28 juil. 2020 à 16:37, Mithlesh Kumar a > écrit : > >> I am also

  1   2   3   4   5   6   7   8   9   10   >