Skip to content

Tag: python

Python3: another user doesn’t see the library

I have 2 windows system users: user1 user2 When running in Python3 the script: Module is imported successfully – under user1 Module is not found – under user2 Location of the library is How to make the user2 to see pandas library? It is possible to install library from user2. But pandas – is…

how to load and save pandas data frame to excel .csv file

CODE:- Now when I run the code I am getting this output. How to load this output into the excel as .csv file with the name as ’11-08-2022.csv’. And suppose if I run the code on 12-08-2022 then another .csv file should add in the same folder where first .csv file has saved and now the file name sho…

How to send POST request with custom data

I am trying to get the responses from server and save this response to json files. The problem is that I cannot request custom data, even if I try to change some parameters, nothing works. Here is my code: Let say I want to send POST request with next data Answer Nevermind, they provided option to request all…

BeautifulSoup – can’t find attribute

I’m trying to scrape this link. I want to get to this part here: I can see where this part of the website is when I inspect the page: But I can’t get to it from BeautifulSoup. Here is the code that I’m using and all the ways I’ve tried to access it: Also, when I just look at the

Save Images with orginal name

I have script to download images from website. But it’s saves name with ‘images1, images2, images3, images4 etc’ I need to save images with orginal name. If the images name 43343.jpg i need to save with 43343.jpg I use beautifulsoup and requests for this case. Sorry my english. It’s no…