extracting attributes from html with lxml
I use lxml to retrieve the attributes of tags from an html page. The html page is formatted like this:<div class="my_div"><a href="/foobar"><img...
View ArticlePIP installation for Python3 problem: Consider adding this directory to PATH
I tried to install pip in python$ python get-pip.py through terminal but had this warning in Terminal. Python3.8MacOS CatalinaPlease help :( . I have been trying to search for answers for days WARNING:...
View ArticleHow to make a pompt to auto click to collect items in a game
so how can I do A code that detects when certain items fall to the ground recognizes the x and y item and performs a left click on that item?I had access to a program that performs a similar function...
View ArticleStreamlit showing me "Welcome to Streamlit" message when executing it with...
I'm trying to run a Docker container created from this DockerfileFROM selenium/standalone-chromeWORKDIR /app# Install dependenciesUSER rootRUN apt-get update && apt-get install...
View ArticleImport a python Class from another sub-directory of parent directory
So I'm trying to do some stuff with Json, and so I want to be able to acces the Dragoon Class (in Dragoon.py) from the Character_manager.py file.Here's what my folder looks like.- Code - Classes -...
View ArticleFullbody Detection Using OpenCV Haar Cascades
I want to detect the full body of human within image using OpenCV fullbody Haar Cascades. Here's my code:import numpy as npimport cv2from matplotlib import pyplot as pltbodydetection =...
View ArticleHow to insert an image with rounded borders in Kivy while cropping it to keep...
I have a square image and I want to display it as background of a rounded rectangle. I want to avoid this image to be deformed. Here is a visual explanation of what I mean.Explanation_ImageI tried to...
View ArticleIs it possible to download image from website via Selenium (Python) in case...
I found out in Web Inspector tool image on one site (domain is just for example)https://somesite.com/asd/photo.pl?num=10 which is not part of website but is probably generated dynamically from server.I...
View ArticleHow to get KerrasRegressor to work? I keep getting an AttributeError
I'm trying to optimize hyperparameters for a simple sequential neural-network using the KerasRegressor as part of a learning exercise. This is my code:from sklearn.model_selection import GridSearchCV,...
View ArticleIs there a way to store pandas dataframe to a Teradata table
I have created a pandas data-frame 'df' and I am trying to store it in a 'table' using Teradata-SQL assistant.Connection string - conn =...
View ArticleTrying to pass a variable to CTkComboBox from a sqlite query
I'm a relative newbie with regard to Python, however, I wanted to create a custom budgeting program to gain some more practice and exposure. I have the following class so far -class...
View ArticleHow can I store text and voice channels, categories, roles with their...
as seen in the title, I would like to know how I can store the text, voice, categories and roles channels with their respective permissions for my antirad bot. What I am trying to do is save and load...
View ArticleFailed to find data source: kafka. Please deploy the application as per the...
Hello I am trying to use pyspark + kafka in order to do this I execute this command in order to set up the kafka-clusterSpark version is 3.5.0 | spark-3.5.0-bin-hadoop3Kafka version is -...
View Articlepip unusable in Python 3.12 virtual environment
I've created a blank, brand-new Python project using PyCharm. From the command line, going into that project correctly activates the virtual environment.$ [~/Developer] cd pythonProjectSwitching...
View Articlepython requests get cookies
x = requests.post(url, data=data)print x.cookiesI used the requests library to get some cookies from a website, but I can only get the cookiesfrom the Response, how to get the cookies from the Request?...
View ArticleTkinter. clear entry widget when clicked or in focus
I found similar questions but this one in particular.I ve tried a few different ways but i can t make it work. Total noob with events!I don t understand how to refer to the widget i guess...The app...
View ArticleHow to embed python into a standalone C++ application? (i.e. do not rely on...
I'm trying to embed python into my C++ application, but also make it standalone, i.e. do not rely on python dependencies on a disk, like Libs folder with standard library scripts, but still be able to...
View ArticleWhy does Python act like my dict is a list?
I'm trying to create a sorted dict class as a way to mess around with dunder methods. I know collections.OrderedDict exists.When I try to overload __getitem__ or __setitem__, Python acts as if I am...
View ArticleFinding first and last index of some value in a list in Python
Is there any built-in methods that are part of lists that would give me the first and last index of some value, like:verts.IndexOf(12.345)verts.LastIndexOf(12.345)
View ArticleFail to finetune CLIP model
I'm trying to finetune CLIP using anime image and tags from danbooru. I used huggingface to load the pretrained model and tried to train it with clip loss.finetune.pyimport torchimport torch.nn as...
View Article