Python Forum
How do I write class objects to a file in binary mode?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I write class objects to a file in binary mode?
#1
How do I write class instances to a file in binary mode? When I try to run this code,

from npc_gen import NPC

n1 = NPC()


a = open("workfile", "wb")

a.write(n1)

a.close()
I'm told:

Output:
Unexpected type(s): (NPC) Possible types: (bytearray) (bytes)
How do I convert a (custom) class object into a bytes object? Pickle?

Also, is this the best way to do what I want to do? I'm making my first app. Users will want to save some of the custom class objects that are created to their phones. I figured I'd need to have the program create a separate file to store those objects in. Is this best practice?

(Apologies if I have used any terms incorrectly or misunderstood something fundamental. I'm still new to programming, so please use easy-to-understand explanations in your answers. Thank you!)
Reply


Messages In This Thread
How do I write class objects to a file in binary mode? - by Exsul1 - Sep-13-2019, 03:39 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I write formatted (i.e. bold, italic, change font size, etc.) text to a file? JohnJSal 13 29,219 May-20-2025, 12:26 PM
Last Post: hanmen9527
  How to write variable in a python file then import it in another python file? tatahuft 4 1,148 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 1,459 Dec-19-2024, 11:57 AM
Last Post: snippsat
  [SOLVED] [Linux] Write file and change owner? Winfried 6 1,851 Oct-17-2024, 01:15 AM
Last Post: Winfried
  UART write binary code trix 3 1,937 Apr-28-2024, 04:57 PM
Last Post: deanhystad
  What does .flush do? How can I change this to write to the file? Pedroski55 3 1,552 Apr-22-2024, 01:15 PM
Last Post: snippsat
  Last record in file doesn't write to newline gonksoup 3 1,837 Jan-22-2024, 12:56 PM
Last Post: deanhystad
  How Write Part of a Binary Array? Assembler 1 1,129 Jan-14-2024, 11:35 PM
Last Post: Gribouillis
  write to csv file problem jacksfrustration 11 5,848 Nov-09-2023, 01:56 PM
Last Post: deanhystad
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 4,224 Nov-09-2023, 10:56 AM
Last Post: mg24

Forum Jump:

User Panel Messages

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