upload file with selenium python through "a" tag
so i tried different methods to pass the file path for image file uploading thru sendkeys and __upload method but it didnt workedany suggestions how to upload an jpg image file in this pagelink to...
View ArticleDatabricks how to Remove pipe row from a dat file and output to dataframe
I have a .dat file that I need to parse using spark or pythonThe row that needs removing from the dataframe is the | | pipe separated row, when trying to add the option to skip rows or first row as...
View ArticlePython Opencv, send data to website via port
I have a python opencv code for age detection.import cv2import mathimport timeimport argparsedef getFaceBox(net, frame,conf_threshold = 0.75): frameOpencvDnn = frame.copy() frameHeight =...
View Articlei am trying to make bot who can upload images telegram to instagram
S C:\Users\hp\Desktop\telegram> c:; cd 'c:\Users\hp\Desktop\telegram'; & 'C:\Program...
View ArticleSpotipy popularity value is different than the value retrieved from Spotify API
I was trying to get data on spotify tracks in a playlist, and while I was running over the playlist with a script I noticed that some of the values seem odd - for example, one of the songs that I went...
View ArticlePySide6 QUiLoader doesn't show window
It is a simple coding.I tried the code below which is almost same example in the QT for Python website.see the website below option...
View ArticleMultil-class, Multi-label Object Detection using Tensorflow Keras in Google...
My goal is the following:I want to train an Object Detectino model, which can classify multiple classes within an image.Each of the classes can appear a varying number of times. It is also possible for...
View ArticlePython matrix input not working this way?
I have tried several ways that are working. But, this one is not.Please help me understand why ?row, col = 2, 3mat1 = [[None]*col]*rowprint(mat1)for i in range(0, row): for j in range(0, col):...
View ArticleCelery does not see objects in SQLite (in Docker)
I have project on Django, DRF, SQLite, RabbitMQ and Celery.When I run the project locally (separately rabbitmq, celery and django), everything works correctly. But when I run it in Docker, the task in...
View Articleopen() is not creating a new file [duplicate]
I am trying to create a text file and write to it but the file is not being created as it states the file is not found.I am using this line of code which PyCharm as my IDE:with...
View ArticlePyInstaller compiled .exe raises error "OSError: could not get source code"...
I am trying to convert my python code into an EXE file through Auto-py-to-exe which uses PyInstaller. I am running into a problem when I try to launch the EXE file. I have resolved some of the initial...
View ArticlePydantic union discriminator based on filed on parent model
i have model like this:class Foo(BaseModel): protocol: str protocol_params: Union[ProtoclOneParam, ProtocolTwoParam]ProtoclOneParam and ProtocolTwoParam have no same field with distinguishable value so...
View ArticleHow can I get my python script to ignore specific characters in my csv file?
I have data in a csv file that contains car loan data.The columns are the car make and model, the total cost, and the APR.So I am using pyPlot and Python to make Pie charts for each make...the pie...
View ArticleOptimization problem in Python. Dynamic programming
I have the following task.There is a list of segments: list[int]. All these segments must be involved. We have the length of the rope and infinite number of ropes. when we make combinations, most often...
View ArticleUnable to install ipykernel in vscode for python3.12 (ipynb)
I’ve done a fair amount of code for statistics (mainly R), but I’m quite new to Python and modules etc.I work with an Ubuntu 22.04, and I installed vscode and the latest version of Python (pyhton3.12)....
View Articlewhat's the equivalent of asyncio event loop with uvloop?
I have an event loop with a coroutine method using asyncio.I am looking for an equivalent of the following example using uvloop instead.Here's a simple asyncio event loop example:import asyncioasync...
View ArticlePytube error with new format of YT channels
I am working on a bot that downloads videos from YouTube. The bot allows downloading videos by individual video links, playlists, and channels. For this task, I am using the pytube library. When...
View Article```Exception: JVM exception occurred: read failed, socket might closed or...
Good day,I am encountering the error below when connecting my Kivy application to Bluetooth.Exception: JVM exception occurred: read failed, socket might closed or timeout, read ret: -1...
View ArticlePlotting data on map in Mercator projector looks flipped 90 deg latitude
I am using Arch Linux with cartopy version 0.17.0 installed on the system through packagemanager. I am trying to plot a simple satellite image from hdf5 file with cartopy as plotting tool. Following is...
View ArticleJupyter notebook does not open from conda environment
for some reasons I am unable to open jupyter notebook from newly created conda environment.What I am doing is next:conda create -n myenv python=3.9source activate myenvconda install jupyterjupyter...
View Article