Skip to content

Calling an External API That Fails Randomly

I am using Django server to call a Korean government’s weather API to retrieve weather data for around 1800 locations. However, this weather API results in time out most of the time. I tried giving resting periods. For example, for every request, it will sleep for 0.8 seconds and after every 30 requests…

How subplot pairs of photo from different folder

I have 2 folder each has 13 pics. I wanna plot any pair of them. for example the first pic from the first folder next to the first pic in the second folder. and then below it the second pair of photose from the first and second folder. could you please help me. I tried my self but id doesn’t

Align strings over a common character

I am looking for a simple, pythonic way of doing this with the minimum calculations and loops. I have a bunch of strings, such as: What I would like to print at the screen is: (where the x are actually spaces, but I could not figure out how to show it with this editor) I am aware of string formatting

Python: get attribute from class objects stored in an array

I would like to get the attribute of every object contained in an ndarray. Consider the following code, where after vectorization the function returns an ndarray with the objects. From each of these objects in the array, I would like to get the attribute and store the attributes in a new array. The classes an…

parse json object in django view

I have a form than i need to check if the emails on my form are valid or not here is my ajax code : and this is my code in django view: it raises this error : TypeError: the JSON object must be str, bytes or bytearray, not ‘NoneType’ thanks in advance Answer TypeError: the JSON object must be