Decode base64 encoded file and print results to the console

KingMak

So I have a file that I have already encoded with base64, now I want to decode it back but instead of creating another file, I want to decode it in the console and print the results to screen. How to do that?

encoded file string = MUhRRy1ITVRELU0zWDItNlcxSA==

FYI: this would mean first opening the file in console, then decoding the give string

Thanks

Peter DeGlopper

Unless I'm overlooking something, this is as simple as reading in your encoded string and then calling the standard library's base64.b64decode function on it.

Something like:

with open(path_to_encoded_file) as encoded_file:
    print base64.b64decode(encoded_file.read().strip())

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to decode lines encoded as base64 from file?

From Dev

module base64.decode yields corrupt pdf base64 encoded file

From Dev

PDF encoded in base64, how to decode it?

From Dev

Decode base64 data encoded in bash

From Dev

decode base64 encoded value

From Dev

Decode file to stream, from base64 encoded string. How to do that?

From Dev

Unusual results for Base64 decode NSString

From Dev

Download base64 encoded file

From Dev

Decode gzip compressed and base64 encoded data to a readable format

From Dev

Decode and unzip a Base64 encoded and Gziped compressed text

From Java

NodeJS: How to decode base64 encoded string back to binary?

From Dev

how to decode an encoded image string using base64

From Dev

java8 decode image which encoded in base64

From Dev

Java - How to decode a Base64 encoded Certificate

From Dev

how to decode an encoded image string using base64

From Dev

How do I decode base64 encoded lines in linux?

From Dev

Code which will decode base64 encoded text automatically on pageload

From Dev

atob won't decode bota encoded base64 strings

From Dev

Decode base64 string and write to file

From Dev

Base64 decode and overwrite file

From Dev

The sqlx library gives weird base64 encoded looking results

From Dev

Error with file upload as base64 encoded string

From Dev

How to identify file type by Base64 encoded string of a image

From Dev

Is base64 encoded file smaller than straight hexdump?

From Dev

play .wav sound file encoded in base64 with javascript

From Dev

How to find file extension of base64 encoded image in Python

From Dev

NodeJS write base64 encoded image to file

From Dev

Convert encoded base64 image to File object in Android

From Dev

Play Base64 encoded audio file in java

Related Related

  1. 1

    How to decode lines encoded as base64 from file?

  2. 2

    module base64.decode yields corrupt pdf base64 encoded file

  3. 3

    PDF encoded in base64, how to decode it?

  4. 4

    Decode base64 data encoded in bash

  5. 5

    decode base64 encoded value

  6. 6

    Decode file to stream, from base64 encoded string. How to do that?

  7. 7

    Unusual results for Base64 decode NSString

  8. 8

    Download base64 encoded file

  9. 9

    Decode gzip compressed and base64 encoded data to a readable format

  10. 10

    Decode and unzip a Base64 encoded and Gziped compressed text

  11. 11

    NodeJS: How to decode base64 encoded string back to binary?

  12. 12

    how to decode an encoded image string using base64

  13. 13

    java8 decode image which encoded in base64

  14. 14

    Java - How to decode a Base64 encoded Certificate

  15. 15

    how to decode an encoded image string using base64

  16. 16

    How do I decode base64 encoded lines in linux?

  17. 17

    Code which will decode base64 encoded text automatically on pageload

  18. 18

    atob won't decode bota encoded base64 strings

  19. 19

    Decode base64 string and write to file

  20. 20

    Base64 decode and overwrite file

  21. 21

    The sqlx library gives weird base64 encoded looking results

  22. 22

    Error with file upload as base64 encoded string

  23. 23

    How to identify file type by Base64 encoded string of a image

  24. 24

    Is base64 encoded file smaller than straight hexdump?

  25. 25

    play .wav sound file encoded in base64 with javascript

  26. 26

    How to find file extension of base64 encoded image in Python

  27. 27

    NodeJS write base64 encoded image to file

  28. 28

    Convert encoded base64 image to File object in Android

  29. 29

    Play Base64 encoded audio file in java

HotTag

Archive