-1
votes
1answer
36 views

Reading bytes from network socket in Python

I want to write a Python program that gets data from a network socket and then scans the data looking for particular sequences of data. The 'getting from the network' bit works fine, and I can dump ...
4
votes
2answers
65 views

Python 3 How do I 'declare' an empty `bytes` variable

How do I 'declare' an empty bytes variable in Python 3? I am trying to receive chunks of bytes, and later change that to a utf-8 string. However, I'm not sure how to declare the initial variable that ...
0
votes
2answers
60 views

Bytes to String or String to Bytes?

I have read some of the examples here but I am such a novice I don't understand some of them and others don't seem to work(probably because I'm such a novice but... import urllib.request import re ...
2
votes
2answers
68 views

Convert string of 0s and 1s to byte in Python

I have a string representation of binary integers and I need bytes having the exact bit structure, to send over the sockets. For e.g. if I have a string of length 16 : 0000111100001010 then I need 2 ...
1
vote
1answer
33 views

Single Byte Multiplication in Python?

I have a requirement to decode a file using simple byte multiplication For every byte in the file, the byte value is muliplied by 0x69. The result cannot be a word, it must be a single byte. ...
1
vote
1answer
24 views

Python generic buffer datatype access

In Python, is there any existing library-based method to polymorphically treat a buffer as being an array of any datatype -- including bits, bytes, WORDs, DWORDs, etc. -- without copying the buffer? ...
2
votes
1answer
76 views

Converting a float in chars to float (PYTHON)

I have a program in python in which I want to receive a frame with some values. This values are sent by a xbee. Xbee send a float splitted in 4 bytes by a union struct, something like this: typedef ...
1
vote
1answer
93 views

Base64 decoding

I'm trying to decode some text in base 64, and I don't understand why I get an error while trying to do that: b'Zm9v'.decode('base64_codec') The exception raised is: TypeError: expected bytes, not ...
3
votes
1answer
57 views

How to print binary file as bytes?

I did >>> b0 = open('file','rb') Then >>> b0.read(10) gives b'\xb8\xaaK\x1e^J)\xab_I' How can I get things printed all as pure hex bytes? I want ...
3
votes
1answer
83 views

Python detect string byte encoding

I've got about 1000 filenames read by os.listdir() some of them are encoded 'utf-8' and some are 'cp1252'. I want to decode all of them to unicode for further processing in my script. Is there a way ...
1
vote
2answers
81 views

Converting string to raw bytes

I wrote a program that works with raw bytes (I don't know if this is the right name!) but the user will input the data as plain strings. How to convert them? I've tried wih a method but it returns a ...
1
vote
2answers
85 views

python single byte function

I have a python function for setting the volume in winamp that appears to only accept a single byte as it's volume control argument. When I try to pass it a string type number it sets the volume to ...
2
votes
4answers
90 views

get all possible single bytes in python

I'm trying to generate all possible bytes to test for a machine learning algorithm (8-3-8 mural network encoder). is there a way to do this in python without having 8 loops? Could permutations help? ...
0
votes
3answers
82 views

How do I map one range of values to another in python

Want to do the equivalent of this, (and the inverse toByte) in python, how do you map in python? int toInt(byte b) { return map(b, 0, 255, -128, 127); } i would try ...
0
votes
1answer
122 views

Python read() automatically converts hex to char?

I'm trying to convert a 4x4, 5.6.5.0.0, .bmp file into a list of rgb values to plug into another program that needs a specific format, and I'm getting stuck because I think the read() method in Python ...
1
vote
4answers
188 views

How can I convert two bytes of an integer back into an integer in Python?

I am currently using an Arduino that's outputting some integers (int) through Serial (using pySerial) to a Python script that I'm writing for the Arduino to communicate with X-Plane, a flight ...
0
votes
0answers
150 views

python: writing an arrow ('-->' ) character to a file

i was writing this code in python 2.6 for testing the random key generation method using pycrypto module. so here is the code: from Crypto import Random k = Random.get_random_bytes(8) #print k ...
1
vote
3answers
201 views

string as bytes python3

let say i got string(that is supposed to be a bytes): "b'YzJGNVltYzJGNVltOTBlbk5oZVdKdmRIcHpZWGxpYjNSNmMyRjVZbTkwZW5OaGVXSnZkSHB6WVhsaWIzUjZjMkY1WW05MGVnOTBlblJsYzNRPXNheWJvdHo='" and i want to ...
2
votes
2answers
177 views

python how to compute a simple checksum as quickly as zlib.adler32

I wish to compute a simple checksum : just adding the values of all bytes. The quickest way I found is: checksum = sum([ord(c) for c in buf]) But for 13 Mb data buf, it takes 4.4 s : too long (in ...
1
vote
2answers
89 views

byte reverse AB CD to CD AB with python

I have a .bin file, and I want to simply byte reverse the hex data. Say for instance @ 0x10 it reads AD DE DE C0, want it to read DE AD C0 DE. I know there is a simple way to do this, but I am am ...
0
votes
1answer
80 views

Keep Track of Number of Bytes Read

I would like to implement a command line progress bar for one of my programs IN PYTHON which reads text from a file line by line. I can implement the progress scale in one of two ways: (number ...
3
votes
4answers
171 views

Get size of integer in Python

How can I find out the number of Bytes a certain number takes up to store e.g. for \x00 - \xFF I'm looking to get 1 (Byte), \x100 - \xffff would give me 2 (Bytes) and so on... any clue? Thank you Ron ...
1
vote
1answer
83 views

How to encode input() variable to bytes without adding backslashes

I need to create a bytes variable from input() and use it for socket.sendall([bytes]) but when I do input_var.encode("utf-8") it adds another backslash after a backslash: This is my input variable: ...
1
vote
1answer
49 views

Deque changes bytes to ints when it is extended

from collections import deque recvBuffer=deque() x1=b'\xFF' recvBuffer.append(x1) recvBuffer.extend(x1) x2=recvBuffer.pop() x3=recvBuffer.pop() print(type(x1)) print(type(x2)) print(type(x3)) The ...
0
votes
0answers
42 views

key obfuscation payment gateway

I am implementing a payment gateway. In the documentation of the payment gateway to one of the steps asks me the following: Convert to bytes obfuscated secret word Convert to byte key obfuscation ...
2
votes
3answers
131 views

Fixed length data field and variable length utf-8 encoding

I have a Python project where I have a fixed byte-length text field (NOT FIXED CHAR-LENGTH FIELD) in a comm protocol that contains a utf-8 encoded, NULL padded, NULL terminated string. I need to ...
2
votes
2answers
207 views

How to know bytes size of python object like arrays and dictionaries? - The simple way

I was looking for a easy way to know bytes size of arrays and dictionaries object, like [ [1,2,3], [4,5,6] ] or { 1:{2:2} } Many topics say to use pylab, for example: from pylab import * A = ...
1
vote
2answers
209 views

How to write ANSI compatible bytes in Python 3 (0x80 and up)?

I am new to python and try to write a script which makes byte 0x00-0xff output to a file. This is the code i am currently looking at import sys filename="binarywriter.txt" openmode="wb" ...
0
votes
1answer
63 views

How to change byte on specific addres. Python 2.2

I need to write program that will change bytes in file in specific addreses. I can use only python 2.2 it's game's module so... I read once about mmap but i can't find it in python 2.2
0
votes
2answers
329 views

Handling and working with binary data HEX with python

I'm trying to do a comparison of some byte values - source A comes from a file that is being 'read': f = open(fname, "rb") f_data = f.read() f.close() These files can be anything from a few Kb to a ...
0
votes
0answers
127 views

How to handle fixed size/places for Hex Representation in protocol fields in Python

I am new to python. I'm using Python 2.7 and am hoping to write something that will generate a sample dataset for a simulator that will ultimately work on a network. For now though, we can have the ...
2
votes
3answers
159 views

python smallest data type for socket chatter

What is the smallest "packet" one can send via the socket module? I only need to send 16 bits of data, 2 bytes and it is something I have to send rapidly so I would like it as small as possible. I ...
0
votes
1answer
475 views

Python-How to add a struct.pack value to an integer that would be sent through the serial port

I'm a newbie in python and recently I made a similar question about how to convert a decimal value to an integer with low byte first and then high byte is here and is solved but now I have a problem ...
2
votes
2answers
756 views

Python - decimal to integer low byte then high byte

Hello I'm a newbie with Python but I've been interested on it for 2 years. I want to make robots and I'm trying to use Python with pyserial on blender. But I found a problem and after 2 hours of ...
2
votes
1answer
298 views

Byte manipulation in Python

I have a integer. Lets say, var = 83 #less than 0xff And I have a byte. So let's say I have byte b and I want to calculate the integer value of b-=var #b as an integer value , possibly by ...
1
vote
1answer
73 views

Determine how many files are in a zip

I am trying to read a zip file (in python 2.7.2) by reading each of the bytes. I am able to get through the local file headers and the data. However I am stuck when trying to read the Central file ...
2
votes
2answers
210 views

decoding bytes from urllib using python3, is there a better way?

I was recently re-writing some code to python3 and in search for a clean pythonic solution to decode bytes returned by urllib.request.urlopen to be passed to csv.reader I came up with the following: ...
1
vote
2answers
446 views

String to binary python

This is probably a dummy question for most of you, but i'm facing this problem; I'm capturing a mac address on the network with scapy,I convert this mac address to "\x00\x21\x23\x24\x25" this way : ...
1
vote
3answers
220 views

integer to byte without using struct in python

I need to use an embedded system running Python 1.5.2+ (!!!) with very few modules. And there is no "struct" module usable... Here is the list of usable modules : marshal imp _main_ _builtin_ sys md5 ...
2
votes
1answer
136 views

How do I read one and only one byte from a binary file at a specified position?

I am wondering if it is possibly to read one byte at one given position at a time in python. I know about file.read(any number), but I want something that returns the byte I specify and ONLY the byte ...
6
votes
2answers
204 views

Python 3 bytes.index: better way?

Just learned Python 3 in 7 days, and I have the feeling that there's a bit of a hole in my understanding of byte strings. In Python 3, suppose I have a byte string b'1234'. Its iterator returns ...
1
vote
3answers
713 views

Changing string to byte type in Python 2.7

In python 3.2, i can change the type of an object easily. For example : x=0 print(type (x)) x=bytes(0) print(type (x)) it will give me this : <class 'int'> <class 'bytes'> But, in ...
-5
votes
1answer
213 views

Convert file of bytes to ints Python [duplicate]

Possible Duplicate: reading integers from binary file in python I've read the solution to a similar problem here: convert a string of bytes into an int (python) but I'm not quite sure how ...
0
votes
3answers
253 views

working with bytes in python

I am trying to port a processing.org app into python and have some difficulties with it. i need to write this in python: int[][] elevation; // elevations in meters float[][] felevation; // scaled to ...
2
votes
2answers
432 views

How Do I Properly Declare a ctype Structure + Union in Python?

I'm messing around with making a binary data parser, and while I could fall back on C, I wanted to see if I could use Python for the task. I have some inkling of how to get this going, and my current ...
1
vote
2answers
509 views

How to send an integer over a socket to a Java application using python?

I have a client in Python that sends data (preceded by a data length message): s = socket.socket() s.connect((host, port)) data = 'hello world' s.sendall('%16s' % len(data)) #send data length ...
3
votes
8answers
764 views

Python: Extracting bits from a byte

I'm reading a binary file in python and the documentation for the file format says: Flag (in binary)Meaning 1 nnn nnnn Indicates that there is one data byte to follow ...
1
vote
1answer
340 views

Python - byte read/write and bitwise AND

I thougth I knew Python enough to program a basic chip8 emulator, but it seems I was wrong. I'm basically having problems to read/write bytes to and from memory. At a certain point in the program, I ...
3
votes
2answers
1k views

printing UTF-8-encoded byte string

I have a data of a form: v = "\xc5\x84" which is a byte representation of an utf-8 encoded character "ń" How can I print >>ń<< using variable v? I'm using python 2.7.2 Thanks Sorry, but ...
4
votes
4answers
2k views

Convert bytes to bits in python

I am working with Python3.2. I need to take a hex stream as an input and parse it at bit-level. So I used bytes.fromhex(input_str) to convert the string to actual bytes. Now how do I convert these ...

1 2 3