How to make pydantic class fields immutable?
I am trying to create a pydantic class with Immutable class fields (not instance fields).Here is my base code:from pydantic import BaseModelclass ImmutableModel(BaseModel): _name: str = "My Name" _age:...
View ArticleKeep the previous maximum value and create a new column [duplicate]
This is my DataFrame:import pandas as pddf = pd.DataFrame( {'a': [1, 9, 8, 10, 7, 11, 20] })And this is the output that I want. I want to create column b: a b0 1 11 9 92 8 93 10 104 7 105 11 116 20...
View ArticleGrab rows that contain max value of league
I am wanting to grab the rows for the highest league a player played for each year. I have ordered each league that I want to compare from lowest to highest with a list I created from my code...
View ArticleNumpy use one array as mask for another array
I am trying to do these steps in NumPy. It was easy to do this with python list sort(), and argsort().How do I do this in Numpy?a = np.array([10,30,20,40,50])a_sorted = np.array([10,20,30,40,50])Get...
View ArticlePython opencv mp4 processing on gpu
I am trying a to make a script that detects specific color in the frame using cv2. CPU version of the code runs same-ish time as the GPU version. Here is GPU snip:import cv2import numpy as npimport...
View ArticleRobot Framework: access Robot's global variables from Python library code?
I have some settings-type global vars that I'd like to be able to access from Python code. For example:pybot --variable RESULTS_PATH:/wherever/this/points test.txtNow, my module logger.py file needs to...
View ArticleTelethon: how to get information about yourself correctly?
I want to write my own client for the Telegram messenger in Python. I use the Telethon library. I took the code example from their main page: from telethon import TelegramClient api_id = my_id api_hash...
View ArticleDocstring doesn't show on hover in vscode jupyter notebook
When I import a function into a vscode notebook, instead of getting a docstring I just get this:When I hover over the same function in the simple file text editor I get this:How can I get the same...
View Articlehaving trouble uploading video to telegram with aiogram lib
was writing a bot that goes through several tokens and sends a videoerror i encountered:aiogram.exceptions.TelegramBadRequest: Telegram server says - Bad Request: wrong file identifier/HTTP URL...
View ArticleIs it possible to Odoo to install a module with a compiled python file?
I am trying to install a module with a compiled python files(.pyc) to Odoo.compiled meaning all my .py files are converted to .pycmy goal here is to not show my code just for security purposes.So i...
View ArticleTensorFlow Auto neon-glow-effect
I wrote a piece of code to achieve the effect of neon lights but the effect is not good.Here is code.import osimport numpy as npimport tensorflow as tffrom tensorflow.keras.initializers import...
View ArticleHow to mapping many column in to one column
first data frame:name age sexsmith row 26 malesam smith 30 malesusan storm 25 femalesecond data frame:name age sex nick_namesmith row 26 male smitysam smith 30 male sammysusan storm 25 female...
View ArticleWhy can't I import from autoawq which was already installed?
For this codefrom awq import AutoAWQForCausalLMfrom transformers import AutoTokenizermodel_path = 'lmsys/vicuna-7b-v1.5'quant_path = 'vicuna-7b-v1.5-awq'quant_config = { "zero_point": True,...
View ArticleType hinting a decorator/descriptor that passes the outer instance to the...
I have this small piece of code which is supposed to be a decorator/descriptor that passes the outer instance to the inner class as the first positional argument when it is accessed from an instance....
View ArticleParsing CSV in Python: Issues with Extracting Full Text from a Column
I'm working on creating a function get_data() in Python that doesn't take any arguments. Its purpose is to load a file named tx_deathrow_full.csv and return a list of dictionaries. Each dictionary...
View ArticleFix csv file rows with more columns than others, in Python
I have to upload an Excel file into Teradata. So I took the tab I needed to upload and saved it as a csv file. (I was advised to use Teradata BTEQ after multiple failed attempts at using FastLoad...
View ArticleFormulae / Method to calculate smooth curved line between two points...
As shown in the image, formulae or method how to calculate smooth curved line is needed.The red line is the line which will look at the end after solving.I'll appreciate your help / discussion.I need...
View ArticleIs there a way to load the network URL for streamlit on another device?
It takes very long to load the network URL on another device. Would using a more powerful computer solve this? I have tried to use as less code as I can to try make it faster. Even if I just had 1 line...
View ArticleHow to fix this problem with pip when i try to install packages? "TypeError:...
When i try to install package using pip install:pip install requestsRequirement already satisfied: requests in c:\users\qq891\appdata\local\programs\python\python312\lib\site-packages...
View ArticleDownload files from a list if not already downloaded
I can do this in c#, and the code is pretty long. Would be cool if someone can show me how this would be done via python.Pseudo code is:url: www.example.com/somefolder/filename1.pdf1. load file into an...
View Article