Re: how reploy the project on heroku stack-22 because some of old modules doesn't support,error is defined here

2022-09-26 Thread Abhinandan K
awscli==1.16.41
boto3==1.9.31
botocore==1.12.31
colorama==0.3.9
dj-database-url==0.5.0
Django==2.1.2
django-filter==2.1.0
django-heroku==0.3.1
django-storages==1.7.1
djangorestframework==3.9.0
docutils==0.14
gunicorn==19.9.0
jmespath==0.9.3
Pillow==5.4.1
psycopg2==2.7.5
pyasn1==0.4.4
PyJWT==1.7.1
python-dateutil==2.7.3
pytz==2018.5
PyYAML==3.13
rsa==3.4.2
s3transfer==0.1.13
six==1.11.0
urllib3==1.24
whitenoise==4.1


On Mon, Sep 26, 2022 at 12:50 PM Dev Femi Badmus 
wrote:

> let me see your requirements.txt
>
> On Mon, Sep 26, 2022 at 7:23 AM Abhinandan K 
> wrote:
>
>>
>> --
>> 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/CAA6_Mp4nQm-3eh5zWH7R6ozH3rxo2oT1ZRFOytd%3DoY4uGn3E8A%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAA6_Mp4nQm-3eh5zWH7R6ozH3rxo2oT1ZRFOytd%3DoY4uGn3E8A%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/CAD9bWYwKN34TzUERyJA_950jyUpsFrXEn-EB0kCdN5gdSYzNzA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAD9bWYwKN34TzUERyJA_950jyUpsFrXEn-EB0kCdN5gdSYzNzA%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAA6_Mp7uNUBemGRb1pGWsHesV32g9wSqAcV4XSXeGH4wXqJU5Q%40mail.gmail.com.


how reploy the project on heroku stack-22 because some of old modules doesn't support,error is defined here

2022-09-26 Thread Abhinandan K


-- 
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/CAA6_Mp4nQm-3eh5zWH7R6ozH3rxo2oT1ZRFOytd%3DoY4uGn3E8A%40mail.gmail.com.


Answer me as soon as possible?

2022-07-12 Thread Abhinandan K
Is anybody know how to install CLI tool with brew in Django

-- 
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/CAA6_Mp5inKhTeEfSTcp8w6xGP_V8wx2yh99FdByEB3t7LkAk_g%40mail.gmail.com.


Re: Answer me as soon as possible?

2022-07-12 Thread Abhinandan K
# importing required modules
import argparse

# create a parser object
parser = argparse.ArgumentParser(description = "An addition program")

# add argument
parser.add_argument("add", nargs = '*', metavar = "num", type = int,
help = "All the numbers separated by spaces will be added.")

# parse the arguments from standard input
args = parser.parse_args()

# check if add argument has any input data.
# If it has, then print sum of the given numbers
if len(args.add) != 0:
print(sum(args.add))

it is CLI , please how to install it through brew .


>>
>>
>>
>>
>>
>>
>>

-- 
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/CAA6_Mp4f3h7_9cNyBJ_i5FewRROHmOUArQ_7wXfSnwmWvJ1Mow%40mail.gmail.com.


Fwd: Answer me as soon as possible?

2022-07-12 Thread Abhinandan K
-- Forwarded message -
From: Abhinandan K 
Date: Tue, Jul 12, 2022 at 1:13 PM
Subject: Fwd: Answer me as soon as possible?
To: 




-- Forwarded message -
From: Abhinandan K 
Date: Tue, Jul 12, 2022 at 1:02 PM
Subject: Answer me as soon as possible?
To: 


Is anybody know how to install CLI tool with brew in Django

-- 
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/CAA6_Mp6OMhCv-v7M7quUyyBDigwR7vRPT84_W%3DJFnWmm5hS4xg%40mail.gmail.com.


Fwd: Answer me as soon as possible?

2022-07-12 Thread Abhinandan K
-- Forwarded message -
From: Abhinandan K 
Date: Tue, Jul 12, 2022 at 1:02 PM
Subject: Answer me as soon as possible?
To: 


Is anybody know how to install CLI tool with brew in Django

-- 
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/CAA6_Mp4kptONYbmV0Q_KTVX3bpeN3bFq7Mu4DsOWkV9Hs8eqgw%40mail.gmail.com.


?? question ,its urgent

2022-06-20 Thread Abhinandan K
how to store the data in django databse table if user append fields
according to their need
for example i have 1 one field 1) name 2) age 3) salary and the sign('+)
if user click on + sign row append one plus in form..my question is that i
want to store the data in all appended textboxes in single field in
database,,

-- 
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/CAA6_Mp6UPLakoi-JhcgB4U89-iKfDwAaxDWwW547tFKyk_imrg%40mail.gmail.com.


its urgent...

2022-06-17 Thread Abhinandan K
is anybody know how to scrap all businesses from google maps and save into
csv with selenium and whenever search that business it gave result of
that business...
also its important to me that how generate google maps api without
billing...

-- 
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/CAA6_Mp6QVZAY75%3DMHEugVpH5HBGBiGdyNyDf7QfkdiA1SHU39Q%40mail.gmail.com.


Re: About Specific User Login

2022-06-17 Thread Abhinandan K
use django icontains

On Fri, Jun 17, 2022, 9:27 PM Shubham Mendade 
wrote:

> I want to know that how django  user module helps me to get the data of
> specific user from lots of user to its dashboard after he/she logins
>
> --
> 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/e714288b-b813-41b7-ab19-0e708154e1f0n%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/CAA6_Mp6Ca%2Be2x%2BTC%3DQyy1gdqa36XBPSiN%2BEgv8SebvrYA9DkTQ%40mail.gmail.com.


is anybody know how to add multiple fields on html form when user click on + icon

2022-06-17 Thread Abhinandan K
for example-
fields are-
name,age,salary.  +
and when user click on + sign same fields increased according to user
clicks on + sign..

-- 
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/CAA6_Mp7YOmRprYhKu0Xb0%3DTVQqLTMEn7St2xRVrQjJeQ%2BghOgg%40mail.gmail.com.


[no subject]

2022-06-16 Thread Abhinandan K
Here i don't understand what to do is somebody can help me to understand it
in easy way step by step process..

The core aim is to match existing customers (stored in an Excel sheet)
against Google Maps entries, to detect existing customers and distinguish
them from new potential customers.

*Customer:* a customer in this context is a Google My Business entry for
example a Restaurant.

The problem is that the existing customer names are not exactly the same as
the Google Maps entries, so we can’t compare them directly. In order to
overcome this problem, one has to scrape the existing customers in Google
Maps, hence obtaining the same type of data.

Example: Business Database has: the name “Coffee Shop 123”, but in Google
Maps it is “Coffee Shop 123 Munich”.

If you search for “Coffee Shop 123 in Munich” you will get the desired data
that is in this case: “Coffee Shop 123 Munich”

There are ca. 15k to 25k customers to cross-check and due to the secrecy of
the entire project, we never have access to the dataset, instead an
autonomous application is required that can process the given input.

-- 
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/CAA6_Mp4txB%3DfsD3RDdJVNtv_B6yQsXT1bPB_WBNB6hps5m4W4A%40mail.gmail.com.


python instagram bot to upload posts

2022-06-14 Thread Abhinandan K
hello every one i'm trying to create a python instagram bot to upload
posts..

error-gives-", line 132, in upload_photo
if not compatible_aspect_ratio(get_image_size(photo)):
  File
"/Users/mac/Documents/Abhinandan_Projects/complete_BOT_project/milestone_5/env/lib/python3.10/site-packages/instabot/api/api_photo.py",
line 224, in get_image_size
raise RuntimeError("Unsupported format")
RuntimeError: Unsupported format
code..
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')

it gives error..
", line 132, in upload_photo
if not compatible_aspect_ratio(get_image_size(photo)):
  File
"/Users/mac/Documents/Abhinandan_Projects/complete_BOT_project/milestone_5/env/lib/python3.10/site-packages/instabot/api/api_photo.py",
line 224, in get_image_size
raise RuntimeError("Unsupported format")
RuntimeError: Unsupported format

-- 
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/CAA6_Mp5MYC0QE71SiVj8CtFzCdbad%2BftQV%3DR-rsHgye2SbK0%3Dg%40mail.gmail.com.


how to convert xlsx file into jpg

2022-06-09 Thread Abhinandan K
IS anybody know how to convert xlsx file into jpg format in python on mac ?

-- 
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/CAA6_Mp6Ve%3D1jdvYbt3qRVVub1%2BhsbHf%3Dd0VYR6WWCk%3DDC_-5wg%40mail.gmail.com.


working of python with slack

2022-05-18 Thread Abhinandan K
Is anybody know how to run python script with slack...for example run the
scrapped data from fiplkart bot working on slackis anybody have answer
reply as soon as possible

-- 
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/CAA6_Mp57Q%3D-K3b1EXfVFmYgjTOrpGWzpgd0G0Qy0qdjkYxSA7w%40mail.gmail.com.


error message

2022-03-23 Thread Abhinandan K

   
   - 
   

-- 
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/6697d5ff-49bb-45e7-ae4e-8e02565301cbn%40googlegroups.com.