ModuleNotFoundError: No module named 'scapy'
I can't import the module "scapy" in my virtual environment.I tried it with python 3.6.9 (which i have to use for my project) and python 3.7. None of them versions did work.Import variants likefrom...
View ArticleProblem with the PIL (pillow) library , ImportError: dlopen.... Reason: image...
Actually this not a question , its the solution that worked for me and i wanted to help others that might have been throught the same experience.So i had a problem in anaconda that i didnt know the...
View ArticlePython requirements.txt file setup for a Python project
I have created a small project (personal) and I wanted people to use it. Currently it resides in a private GitHub repository and I want to share it with others. One thing I knew about creating a Python...
View ArticleConfig Git Secret for MageAI
I'm currently follow this course on youtube about a data engineering project: https://www.youtube.com/watch?v=WpQECq5Hx9g&t=505s&ab_channel=DarshilParmarOn the Google Clould VM, I already...
View ArticleGoogle Drive uc?id= no longer works
I am trying to write code to get the direct urls of images in a public Google Drive folder and embed them. Until a few minutes ago everything has been working and using the uc? trick gives the raw...
View ArticleHow to pass arguments to a callback function in Python?
I want to make my code Async for HTTP calls, since the whole program stops while the call is being made.I took a look at grequests and couldn't figure it out, same for asynciothis is the current sync...
View ArticleAccess denied error while setting up spark config in Python
I am getting Failed to create directory /tmp/spark-a12d2057-a5ea-4fb9-876f-382d41153eab error while setting up spark config for an ETL application , I am running this application using a docker...
View ArticleKivy not working Error - [CRITICAL] [App ] Unable to get a Window, abort
I am new to Kivy and I try to run this code# Set window provider before importing other Kivy modules Config.set('graphics', 'window_state', 'visible')Config.set('graphics', 'width', '400')...
View ArticleReplace values of certain cells in excel in python
I have an excel with data that through a python script I want to update the value of a column for a row in which the "code" value matches. I have tried to do it using this code but it creates another...
View ArticleConverting PDF bank statements to Xlsx/CSV file
I'm trying to use tabula and Pandas concat in Python to PDF bank statements into a CSV/Xlsx file, so I can automate the task of manually entering them into Excel, however after intense experimentation...
View ArticleHow to change Matplotlib Style sheets programatically?
I'm trying to change/toggle between two available matplotlib styles, "dark_background" & "classic", based on user feedback through a gui button status. I tried using...
View ArticleFunction returned by decorator isn't being executed when calling the...
I had a go at writing a little function for making it easier to create decorators with arguments:def decoratorAddSupportForOptionalArguments(addToDict: typing.Callable):"""Takes a function with...
View ArticleKivy Buildozer: aiohttp asyncio Issue, App Crashes
I will try to expain my problem exactly.First of all, my kivy app and its all sections works in VScode.It is a calculator app that scrape some datas and calculate themPython version: 3.11.7Kivy...
View ArticleHeapreplace and ordering
I have a list (or heap) of elements and I want to replace the element with the lowest value with a new element of higher value. However if there are multiple elements in the heap with this lowest...
View ArticleLogistic regression: X has 667 features per sample; expecting 74869
Using a imdb movie reviews dataset i have made a logistic regression to predict the sentiment of the review.tfidf = TfidfVectorizer(strip_accents=None, lowercase=False, preprocessor=None,...
View ArticleHow to debug fourth-order Runge-Kutta for a differential equation in Python
I have been trying to solve this differential equation using Runge Kutta method on Python. I haven't been able to get the right result with the code I wrote. What could be wrong here? The equation...
View ArticleIntegers or Floats conversion to Binary (signed or unsigned)
Any tips to correct this?Example;Enter a float number: -34.5Binary: 1101 1110.1 #-33.5The output is incorrect,Because:1 1 0 1 1 1 1 0 1-128+64+0+16+8+4+2+0+0.5= -33.5The output should be:1101 1101.1...
View ArticleHow do I define __contains__ for a Python Generator() returned by a function?
The following example:def myGenerator(): i = -1 while i < 1000000: print(f"iterating {i}") i+=1 yield iprint(9999 in myGenerator())Prints in the console...iterating 9994iterating 9995iterating...
View ArticleIntegrating FastAPI with ASP.NET Web API
i want to integrate the machine learning python model with my asp.net web api project using another APIs by FastApi, How can i do that?i try to use the machine learning model methods like Camera...
View ArticleUnable to unprotect worksheet in openpyxl
I am running xlwings on Windows. When my code hits the unprotection of the sheet, the code just sits there. No exceptions, no popups appeared in Excel, just hanging. I can manually remove protection,...
View Article