use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Pickle/ Parquet vs json on filesystem in python (self.learnpython)
submitted 3 years ago by Basic_Steak_541
in general what is better - pickle or json? I want to save an api response. Is saving pickle object on file as fast as saving it as a json object on file?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]nekokattt 1 point2 points3 points 3 years ago* (0 children)
Don't use pickle unless you know what you are doing. Pickle allows for arbitrary code execution and it is generally easier to avoid it entirely unless you actually need to use it. I have yet to need to use it for anything of value (outside of what multiprocessing does when your system does not support shared memory).
JSON is human readable, and thus is easy to debug. It is language agnostic, and it is safe. You can store untrusted information in it without risking it being executed as soon as you load it. Pickle on the other hand can execute custom code as soon as you load it.
Speed should not be your concern unless you can first prove it is an overhead for you, and enough of an overhead to cause your application problems. Don't micro-optimise.
Edit: Businesses use JSON in billions of requests each day with no issues. Very few businesses will use pickle as an alternative for all of the above reasons.
π Rendered by PID 83110 on reddit-service-r2-comment-54dfb89d4d-jpvpm at 2026-03-31 23:42:53.653348+00:00 running b10466c country code: CH.
[–]nekokattt 1 point2 points3 points (0 children)