Skip to content

Missing dependancies of rtree

I am currently using Spyder for Python, and I have this error message when I open the program: Error: You have missing dependencies! rtree>= 0.8.3: None (NOK) Please install them to avoid this message. Note: Spyder could work without some of these dependencies, however to have a smooth experience, we stron…

How to json dump inside Zipfile.open process?

I am trying to write a json inside a ZipFile BytesIO process. It goes like this: It is later saved in a Django File field. However it does not dump the data into the json_file. Finds it hard since it does not report an error message. Answer Your code ‘shadows’ zipfile, which won’t be a probl…

Accessing Microsoft Sharepoint files and data using Python

I am using Microsoft sharepoint. I have an url, by using that url I need to get total data like photos,videos,folders,subfolders,files,posts etc… and I need to store those data in database(Sql server). I am using python. So,Please anyone suggest me how to do this and I am beginner for accessing sharepoi…

How to use list() when in an ipdb session?

In a Python 3.5.2 script where I have, e.g., The interpreter hits these lines and drops me into an ipdb session. Understandably, ipdb has limited functionality compared to an iPython interpreter session (e.g., no magic commands). However, I’m surprised to find that some Python built-ins don’t work…

How to change plotly figure size

I have made a scatter plot using matplotlib and Plotly. I want the height, width and the markers to be scatter as in matplotlib plot. Please see the attached plots. I used the following code in Plotly I try to tune the range but did not help. In addition, I use Autorange that did not help. Could you please he…

Websocket Client not receiving any messages

I have Python client which opens a websocket connection to a server and subscribes to particular topic using STOMP protocol, subscription goes just fine as i see on the server all is fine. However, When the server publishes a few messages the client does not receive any. Here are the codes used: Client Code s…

Connecting means in seaborn box plot

I want to connect box plot means. I can do the basic part but cannot connect box plot means and box plots offset from x axis. similar post but not connecting means Python: seaborn pointplot and boxplot in one plot but shifted on the x-axis As we can see the sns.line plot does not follow the means and box plot…