Python Forum
'>' not supported between instances of 'str' and 'int'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
'>' not supported between instances of 'str' and 'int'
#1
Hi Guys,

I am trying to upload an image to my server using Python:

Function:

def upload_image(image_location, image_name_only):
    ftp_client = ftplib.FTP('site.com')
    ftp_client.connect('user', 'pass')
    file = open(image_location, 'rb')
    ftp_client.storbinary('STOR /home/admin/web/site.com/public_html/images/screenshots/' + image_name_only, file) 
    file.close()                         
    ftp_client.quit()
Function Usage:

upload_image("screenshots\failed\4-site.com-1557162721.5269995.png", "4-site.com-1557162721.5269995.png")
Currently the error is: '>' not supported between instances of 'str' and 'int'

From what i have been reading the error is caused because i'm comparing a string to an int, but i don't compare strings anywhere in the code, can anyone see anything abvious i have missed?

cheers guys

Graham
Reply
#2
Is this the full code?

If not could you please include the full code
Reply
#3
You need to include the full stacktrace as well.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Sort Function: <' not supported between instances of 'float' and 'tuple' quest 2 7,971 Apr-30-2021, 07:37 PM
Last Post: quest
Exclamation TypeError: '>=' not supported between instances of 'int' and 'str' helpme1 11 8,676 Mar-11-2021, 11:13 AM
Last Post: helpme1
  Type error: '>' not supported between instances of 'NoneType' and 'int' spalisetty06 1 10,427 Apr-29-2020, 06:41 AM
Last Post: buran
  TypeError: '<' not supported between instances of 'str' and 'int' Svensation 5 8,669 Jan-20-2020, 08:12 PM
Last Post: buran
  TypeError: Not supported between instances of 'function' and 'int' palladium 9 19,399 Dec-06-2019, 12:40 AM
Last Post: palladium
  TypeError: '>=' not supported between instances of 'str' and 'int' AsadZ 8 10,336 Aug-20-2019, 11:45 AM
Last Post: ThomasL
  Newbie Question re "TypeError: '<' not supported between instances of 'list' and 'int sr12 8 12,945 Apr-11-2019, 08:19 PM
Last Post: sr12
  '<' not supported between instances of 'str' and 'int' jayaherkar 1 7,903 Apr-09-2019, 03:25 PM
Last Post: perfringo
  TypeError: '<' not supported between instances of 'int' and 'builtin_function_or_meth yann2771 1 5,511 Mar-05-2019, 09:51 PM
Last Post: stranac
  '<=' not supported between instances of 'str' and 'int' Loom 1 7,739 Aug-11-2018, 07:34 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020