Accidentally deleted PyCharm venv file and code not running
I accidentally deleted my pycharm projects venv file so I copied all my code files to a new Pycharm project. I'm using Kivy and thats where the error occursI did all this but when I tried running my...
View ArticlePython and Pytorch implementation difference on different machines and OSes
I have a pytorch project (note if u want to check it be sure that u are cloning wrapper branch). this code has multiple tests which can be run from tests\runAllTests.py. the problem is that all tests...
View ArticleDuckDb Hash a Record
I have a use case where I want to check for conflicts for slowly changing dimensions. In theory, I should be able to do this by hashing a record of the original table and compare it to a hash of the...
View ArticleShorten regex to capture digits grouped by variable delimiter
I have a regex that is trying to capture integer numbers like12_456_789But the delimiter can by either any of [\ _.,] or no delimiter. My regex looks like\d{1,3}((_\d{3})*|(\...
View ArticleCannot access django app through ip address while accessing it through localhost
I have a django app on my local computer. I can access the application from a browser by using the url: http://localhost:8000/myapp/But I cannot access the application by using the ip of the host...
View ArticleSelenium WebDriver Dynamic acess button Error
I´m trying to do a full download of the pdfs from my University Page but i´m stuck in a part where a dynamic JavaScript part appears.I can login, acess the courses page and then after click the correct...
View Article.get() func for button widget in tkinter
I want to get information from the button to pass an if conditional inside of a window. I am planning to add +10 widgets that have functions bound to them after that condition. I would appreciate it if...
View ArticleUse a proxy with ASANA API - Python
I'm using the ASANA API to automate some mundane tasks in ASANA using Python. I work for a large government education department which uses a web proxy to which I have no knowledge of the back end or...
View ArticleWhats Causing This Python Calendar Puzzle Index Error?
I have previous experience with Java and web development, but have recently been learning Python. To help me learn this language, I have been working on creating a program that will solve the Dragon...
View ArticleHow to pass user's id into the decorator as an argument. aiogram
Im writing a simple procedure bot and one of the features requires authorization. Easiest way I found is having an array of telegram user ids and when user wants to execute a command /log it would...
View ArticlePython Firebase issue No module named firebase_admin
I have deployed a python code in Google App Engine.In my code,tried to import firebase_admin,but it shows following error,import firebase_adminImportError: No module named firebase_adminhello.pyimport...
View ArticleHow to use langchain and chromadb on columnar input csv text data for...
i have the following df:import pandas as pd# Creating the FAQ datafaq_data = {"Questions": ["How can I reset my company email password?","What should I do if my computer is running slow?","How do I...
View Articlestrange behavior of a telegram bot on python
I am writing a telegram bot on python and aiogram3. And a strange problem appeared. At some point, the bot stopped responding to the command. The logs contain the following message...
View ArticleWhy is plt.savefig() not working in texstudio?
I am trying to make a simple graph to show in my latex document using pythontex and it seems that plt.savefig() is not working. Here is the code i used for testing:% !TeX TXS-program:compile =...
View ArticleHow to use python to edit a column with linked data?
I have a text data file containing multi-columns, rows and sections. Herein, I want to delete rows which their 5th or 6th or 7th columns larger than 50.Challenges are:In 'Atoms' section, the first...
View ArticleVSCode Python: Error while enumerating installed packages
My long-successful VSCode Python setup broke inexplicably.Please, what does the error below mean?First the recommended Python 3.12 can't find _tkinter. I try an older installed version and get this. I...
View Articlescraping with selenium and undetected_chromedriver in docker container mac...
I was attempting to run undetected-chromedriver in a docker container on my m1 mac and received the following stack trace:2024-02-11 13:20:04 2024-02-11 13:20:04 Scraping Pararius...2024-02-11 13:20:05...
View ArticlePython and SQLite with Prefect / Kubernetes
Hi I have a task in Python to generate simulated events in Json coming from a Customer Data Platform (such as Rudderstack), do some simple transformation and finally load into a SQLite DB. This...
View ArticleExcel Pivot Export from Pandas Dataframe
I have multiple functions that generate multiple data frames of different lengths, I am aiming to consolidate all of them in one place and later pivot it out and export to Excel, here is an example of...
View ArticleIssue with virtualenv - cannot activate
I created a virtualenv around my project, but when I try to activate it I cannot.It might just be syntax or folder location, but I am stumped right now.You can see below, I create the virtualenv and...
View Article