sub
stringclasses
4 values
title
stringlengths
3
304
selftext
stringlengths
3
30k
upvote_ratio
float64
0.07
1
id
stringlengths
9
9
created_utc
float64
1.6B
1.65B
Python
QualityScaler 1.3.0 - Image/video upscaling & enhancement Windows app
​ [GUI](https://preview.redd.it/vtj3a827yhu81.png?width=1357&format=png&auto=webp&s=9321b61c88261595c31d3512cef93af4cc0bcf39) [EXAMPLE](https://preview.redd.it/lbfejx48yhu81.png?width=2232&format=png&auto=webp&s=13067052d8ed6364eff09d716746e37986cff7d1) Itch -> [https://jangystudio.itch.io/qualityscaler](https://jangystudio.itch.io/qualityscaler) Github -> [https://github.com/Djdefrag/QualityScaler/releases/tag/1.3.0](https://github.com/Djdefrag/QualityScaler/releases/tag/1.3.0) ​ **Update 1.3.0 - Auto tile-merge / speed and UI improv. (1.3.0)** New * Automatic tiles and merge images and video frames to avoid Gpu VRam limitation * Gaussian filtering after upscale to avoid tiles and merging defects in images * New upscale factor x3 UI * A new vertical left bar, now is much cleaner and uniform * All buttons now have same dimension * App title changed color and the background has been removed * Upscale/Stop buttons are bigger * Other general improvements Bugfix/improvement * Removed unused functions * General code cleaning and improvements
1
t3_u76rf5
1,650,379,305
Python
I made a football simulation/game entirely using Python Turtle Graphics
# Overview: About a year ago i made a project called as "Python Football Game" which was just a Pong game on green background and goal posts it felt like cheating so this time i made an entire football game with 11 players and other rules etc in python turtle with about *629 lines of code* you can have a look at it here: ​ [Working Of Simulation\/Game](https://reddit.com/link/u75ydj/video/awyg0ye3thu81/player) [Python Football Simulation In Turtle](https://www.youtube.com/watch?v=7rRYpX5-9RI) (Alternative Link Youtube) You can do all sorts of things from passing ball to other teammates to scoring goals to switching players (inspired by fifa like mechanics) with throwing ball to a teammate if it goes outside etc. The team that scores 3 goals first wins you play against CPU with enemy having its own Logical AI it's a fun experience. # Source Code: [Project Source Code Here](https://github.com/JackhammerYT/Football-Simulation) # Controls: w(up) , a(left) , d(right) , s(down) , q(north west) , e(north east) , z(south west) , x(south east) Space Bar (Change Player) , Mouse Click (Pass the ball onto clicked position) # Challenges: Even though with how simple it's design was there were few challenges i learned to overcome, the biggest one being Calling a function after a delay without using threads. This was a rather hard challenge to overcome because turtle is not a thread safe framework that is all the GUI operations need to run on main thread and it so happened that i required to call a GUI operation with delay i solved it by making my own FunctionInvoker class based on time module that invokes a function after a delay you can see it's structure in "[FunctionInvoker.py](https://FunctionInvoker.py)" file on github repo
0.81
t3_u75ydj
1,650,377,093
Python
I was today years old when I found out that Python supports else clauses in try/excepts.
Their functionality is brilliant, too! I always used to use guard values and flags to find out if an exception happened. Totally surprised (and embarrassed), but IMO this is one of the reasons why writing in Python feels so nice. Context: I have been using python for 7 years (from 2nd year of college up to mid-PhD), and using it almost exclusively in the last 4. I did know about the `finally` clause, but I hardly ever use it.
0.94
t3_u75y3m
1,650,377,073
Python
I wrote a Spotify alternative in Python
[Myuzi](https://gitlab.com/zehkira/myuzi) is a Spotify alternative for Linux. It's built entirely using Python. The interface uses GTK, and the streaming is handled by `youtube-dl` and Gstreamer. You don't need an account to use Myuzi, and there are no payments or ads. This is a prototype, so things will break a lot. [AUR](https://aur.archlinux.org/packages/myuzi) | [Source](https://gitlab.com/zehkira/myuzi) | [Donations](https://www.patreon.com/bePatron?u=65739770)
0.87
t3_u7446h
1,650,371,709
Python
What are some of the main reasons I should switch to pytest from unittest?
nan
0.9
t3_u73xv2
1,650,371,161
Python
Build a Web App with Pandas
nan
0.71
t3_u725g8
1,650,364,948
Python
How To Install Kivy On macOS Monterey
nan
0.25
t3_u71x6r
1,650,364,046
Python
Auto ML in Python — An Overview of the MLBox Package
nan
0.5
t3_u70gk9
1,650,358,000
Python
Dynamic Logging for logging.Logger
I have created an extension of `logging.Logger` class to be able to easily & dynamically log "extra" values. This module provides 2 main APIs - `log_extras()` decorator to log values from the decorated function arguments and `set_extras()` method to log static values. ``` import dynamic_logger import logging logging.setLoggerClass(dynamic_logger.Logger) # Set-up log formatter with user-definied attributes fmt = '[%(asctime)s] <%(app)s> [%(levelname)s] <%(id)s> <%(customer_id)s> --- %(message)s' # Note: format attributes in <> are user-definited # Load config logging.basicConfig(format=fmt, datefmt='%d-%b-%y %H:%M:%S', level='INFO') applogger = logging.getLogger(__name__) @applogger.log_extras('id',int=0,customer_id='obj.customer_id') # Log value of 'id' and 'obj.customer_id' def example_1(id=0,id2=0,obj=None): applogger.info('This example shows how to log values from function arguments') if __name__ = "__main__": example_1(id=123456,obj={"customer_id":777}) ``` Will give below log entry [2022-04-19 12:53:51,658] [INFO] <123456> <customer_id:777> --- This example shows how to log values from function arguments More examples and code can be found [here](https://github.com/ajatkj/dynamic_logger). I hope this is useful for someone.
0.75
t3_u70a80
1,650,357,206
Python
I developed a template for starting new Python projects! Features: Poetry, GitHub CI/CD, MkDocs, publishing to PyPi/Artifactory, Pytest, Tox, black and isort.
nan
0.94
t3_u7081n
1,650,356,962
Python
Python Lambda Function in Simple Words
How to Use Lambda Function? Difference Between Lambda and Def Function? What are the benefits of the Lambda Function? The most important things you should know about the Lambda/Anonymous Function in Python by many examples. Take a look at [my story](https://medium.com/p/e05171925c98) and leave comments!
0.5
t3_u6zh3e
1,650,353,719
Python
Beginning a brand new set of ML foundations series starting with Pandas
Beginning a Hey all, I am starting a new set of ML video series on Youtube. I will be covering the topics very deep, the way I wish someone taught me. Pandas is the first topic, promise to post one video every weekday. Please view and let me know your suggestions. Link : [Pandas for Data Science](https://www.youtube.com/watch?v=t4yBm9agYWo&list=PLFAYD0dt5xCxdKfIR3ZX3k07qrqEjUZSO&index=2&t=1s)
0.88
t3_u6yugv
1,650,351,107
Python
Python Selenium Tutorial #9 - How to bypass/solve hCaptcha using 2captcha API
nan
0.69
t3_u6yo7z
1,650,350,404
Python
Are you a person who loves reinventing a wheel ?
Just wondering, are you a person who loves remaking the most popular python library ? When people are learning how to create a Python web app using Flask, you are thinking "I am going to make the library by myself." . When people are learning how to use Django + Gunicorn, you are thinking "I am going to make all of the components by myself." .
0.75
t3_u6u7i6
1,650,334,907
Python
From 30 to 11 Lines of Code: Revisiting Rock Paper Scissors in Python
nan
0.5
t3_u6t9yb
1,650,332,091
Python
Is your company still letting you use Pycharm?
I really hate programming without Pycharm. Actually, I hate programming without Jetbrains as I use several of their applications for personal use and pay for the All-Products Pack. I noticed today that CORP does not have it in their approved software list any more. I still have it installed on my work machine and still use their stuff everyday at home. Is all okay with Jetbrains given the current thing?
0.76
t3_u6t4hn
1,650,331,639
Python
Tuesday Daily Thread: Advanced questions
Have some burning questions on advanced Python topics? Use this thread to ask more advanced questions related to Python. **If your question is a beginner question we hold a beginner Daily Thread tomorrow (Wednesday) where you can ask any question! We may remove questions here and ask you to resubmit tomorrow.** This thread may be fairly low volume in replies, if you don't receive a response we recommend looking at r/LearnPython or joining the Python Discord server at [https://discord.gg/python](https://discord.gg/python) where you stand a better chance of receiving a response.
0.88
t3_u6rcpp
1,650,326,409
Python
Indeed Job Scraper
What's happening in the job market? I published a new python script that pulls new jobs from an indeed advanced query and stores to a datasource. The attributes for each job include the posting title, description, pay, and url. I have another project I am working on where I am training an NLP model on a large dataset with Prodigy. If there is interest I can share that as well. Tune in! https://github.com/hazondata/webscraping
0.7
t3_u6r6xy
1,650,325,935
Python
DRF application for Authentication Using metamask
Hey Guys, So recently I wrote a drf application for authentication using metamask extension for a one click login. This app uses simple-JWT for managing and creating tokens and so is compatible with djoser as well. I am planning to create a more detailed documentation, add more testing and create a sample-app for demonstrations. I would really appreciate it if you test it out and tear it apart if you want. Feel free to contribute in any way possible. Also followed this tutorial for the basics [https://www.toptal.com/ethereum/one-click-login-flows-a-metamask-tutorial](https://www.toptal.com/ethereum/one-click-login-flows-a-metamask-tutorial)
0.86
t3_u6nv18
1,650,316,814
Python
Build a Twitter Bot with Python, Tweepy and the Twitter API
nan
0.55
t3_u6mmt6
1,650,313,555
Python
Program Raspberry Pi Pico with Python https://medium.com/@needablackcoffee/program-raspberry-pi-pico-with-python-6a410192dd07
nan
0.36
t3_u6lo7q
1,650,311,084
Python
Masonite Permission - Masonite Framework.
To all the Masonite Framework developers/engineers, the ACL package that I created is now production ready. Give it a try, and feedback. [https://github.com/yubarajshrestha/masonite-permission](https://github.com/yubarajshrestha/masonite-permission)
0.5
t3_u6kxwt
1,650,309,124
Python
Python implementation of recursive insertion sort.
nan
0.76
t3_u6khdk
1,650,307,932
Python
Top down Minecraft.. clone? Written in python and pygame.
[https://youtu.be/-riH-R-1EfY](https://youtu.be/-riH-R-1EfY) Ignore my terrible voice. Github: [https://github.com/Electro-Corp/top-down-minecraft-ripoff](https://github.com/Electro-Corp/top-down-minecraft-ripoff)
0.33
t3_u6ib28
1,650,302,268
Python
User login system with JWT and FastAPI
In this series so far, we have set up our environment and created a user. Now we are going to let them login, we do so by sending them a JWT token which is then required in subsequent requests to access protected resources. Read this 4th post in this series to know how: [https://santoshk.dev/posts/2022/tdd-approach-to-create-an-authentication-system-with-fastapi-part-4/](https://santoshk.dev/posts/2022/tdd-approach-to-create-an-authentication-system-with-fastapi-part-4/)
0.78
t3_u6gvm7
1,650,298,419
Python
Are there any task queue libraries with the ergonomics of FastAPI
## django is to FastAPI as celery is to `???` We currently use FastAPI as our backend and Celery as our task/job queue. But I find it really clunky. Not that there's anything *wrong* with the Django/Celery way of doing things, but it doesn't jive with me. Everything is that old school loosey-goosey python style with kwargs and dynamic magic everywhere. It's sync so I need separate helper functions for all my IO work in the API, then another set for those in tasks. And I'm stuck with pass-by-import of all my IO, rather than DI, so I have to monkeypatch everything to unit test. Oh and I know about background tasks, this needs to be a distributed task queue with separate agents. Is there a task queue library out there with: - static types, full coverage ideally - Depends() style dependency injection, or similar - async native I've looked at RQ/ARQ and they are close to what I want but not quite. Alternatively, are there any tips to get a better experience with Celery in the way of async, typing, and DI? I think it's getting better with the typing, but the lack of DI frustrates my unit test writing and makes it more convoluted. Thanks!
0.72
t3_u6g9bf
1,650,296,839
Python
Which IDE do you use?
I'm new to CS in general, and our intro class used Wing Personal. Is there something about a basic IDE that holds me back? I'm not very educated on IDE's and have no idea if they're all the same. I've had no problems with Wing so far, I really like the tab structure.
0.69
t3_u6g4jk
1,650,296,486
Python
Python Tips and Tricks — Write Better Python Code
nan
0.5
t3_u6fzb2
1,650,296,100
Python
PyQt hello world
nan
0.43
t3_u6fiqo
1,650,294,880
Python
What is the usual tech stacks paths for Python developers going into the world?
I have a year left in Uni and I really like Python so I'd like to be prepared properly.
0.6
t3_u6egcg
1,650,292,090
Python
If you could start your Python journey over with what you know know what practices would you force your past self to implement?
This could also apply to programming in general or even best practices for communicating code to non technical team members/management.
0.86
t3_u6c6p8
1,650,285,569
Python
Why do people still pay and use matlab having python numpy and matplotlib?
nan
0.94
t3_u6bcgc
1,650,282,874
Python
I have written a blog to create a Perceptron(Single Neuron) and then trained it on Cat and Dog image data. All from scratch in python.
nan
0.56
t3_u6adlb
1,650,279,439
Python
Ping With Python
nan
0.52
t3_u68m93
1,650,272,377
Python
3d Game Engine in Python
Have any of you guys experimented with 3d game engines in python like ursina, Panda3d etc... I want to prototype some ideas but I'm worried about running into platform specific issues after completing most of the development. I can obviously learn Unity or Unreal but I would like to know if viable options are there in python
0.92
t3_u6695b
1,650,262,365
Python
Why are some static type-checking functionalities implemented as identity functions?
For example, `typing.cast` returns the argument unchanged. Obviously, this has no effect on the program at runtime. If this is the case, why can we not just tell the static type checker (mypy) that we want the argument to be treated as some type *without* having to add a function call? Why can’t this override/cast be in a comment of some sort?
0.82
t3_u64dfw
1,650,255,058
Python
Monday Daily Thread: Project ideas!
Comment any project ideas beginner or advanced in this thread for others to give a try! If you complete one make sure to reply to the comment with how you found it and attach some source code! If you're looking for project ideas, you might be interested in checking out Al Sweigart's, ["The Big Book of Small Python Projects"](https://inventwithpython.com/bigbookpython/) which provides a list of projects and the code to make them work.
0.81
t3_u5zpzh
1,650,240,011
Python
I wrote a program to play Minecraft in your Windows command line / Linux console
Video demonstration: https://youtu.be/P1d04is-wQQ Source code: https://github.com/louis-e/cli-screenview
0.93
t3_u5ykrh
1,650,236,464
Python
Type safe Django app, Part 3
nan
0.7
t3_u5xql9
1,650,233,988
Python
r/Place Data Visualization w/ Python + Blender (open source project)
I've created a [GitHub repository](https://github.com/ChrisCrossCrash/r-place-blender) containing everything you need to create beautiful 3D renders of the [r/Place](https://www.reddit.com/r/Place/) 2022 canvas (scroll down for more info). [Python Logo \(r\/Place 2022\)](https://preview.redd.it/bm0m1c1vv5u81.jpg?width=1920&format=pjpg&auto=webp&s=c813de013e50fe3fa91cd954478cc3fdff25cb66) [Blender Logo \(r\/Place 2022\)](https://preview.redd.it/l7w8d9wet5u81.jpg?width=800&format=pjpg&auto=webp&s=45fc8f698e489d0c2b2b8bd8f9c1cf3d8d1420a9) [Whatever this is \(r\/Place 2022\)...](https://preview.redd.it/fmbxz1xms5u81.png?width=3840&format=png&auto=webp&s=f721632bb9e10af682fdbb01b8ca2f64403afa30) [Start of r\/Place 2022](https://preview.redd.it/f7ckdpshs5u81.png?width=3840&format=png&auto=webp&s=9654241197449ccb064a01d32a4d69d93aba53bb) [\\"Darth Plagueis the Wise \(r\/Place 2017\)\\"](https://preview.redd.it/ete7b05vr5u81.png?width=1920&format=png&auto=webp&s=6fc618bf43ce3cb1476a58620c7bcb92063a38c4) [Rainbows \(r\/Place 2017\)](https://preview.redd.it/tiz5v32ts5u81.png?width=1920&format=png&auto=webp&s=b07375a5843038d3bed97040688aaa9e52003599) [Green Lattice \(r\/Place 2017\)](https://preview.redd.it/9jrmj6c6t5u81.png?width=1920&format=png&auto=webp&s=282051e36bd9bbddc2d83dc97656100cdc4c2743) [r-place.blend open in Blender](https://preview.redd.it/101fu8vzv5u81.jpg?width=1921&format=pjpg&auto=webp&s=c3bfd90fc93d3a69ca88de3ffbf5d2080a9ed607) I've prepared a [GitHub repository](https://github.com/ChrisCrossCrash/r-place-blender) with everything you need to create beautiful 3D renders of the r/Place 2022 canvas. It's an open source project with an MIT license. I recently posted a [Star Wars timelapse I created earlier](https://www.reddit.com/r/blender/comments/u0gtvs/a_long_time_ago_in_a_subreddit_far_far_away/). I also created one for the [Michigun memorial](https://www.reddit.com/r/blender/comments/u178pc/michigun_memorial_request/) artwork, which somebody requested. The linked GitHub repository contains an improved version of the code and `.blend` file used to generate those renders. Let me know if you need help or notice any mistakes. I'm super excited to see what other people can do with this!
0.8
t3_u5xfgt
1,650,233,080
Python
Quickly create online forms for your python scripts
nan
0.65
t3_u5x46b
1,650,232,184
Python
Relational Algebra interpreter powered by Python
I made a RA interpreter in Python, [Pireal](https://github.com/centaurialpha/pireal). Small story: In my database class (back in 2015), I could not use a software made for Windows (WinRDBI), so I set out to make a free and cross-platform alternative. Taking advantage of what I wanted to understand how the compilers and interpreters work, I wrote an interpreter for Pireal. Today the project is used at my university, but I had never been promoted. I hope it serves more people. And of course, any can collaborate to improve it.
0.7
t3_u5w63g
1,650,229,365
Python
Mean population of US States with graph
import random import numpy from statistics import mode import matplotlib.pyplot as plt import csv import collections ##dictionary of States and populations from numpy import ndarray #states_info_dic = { # "California": 39538223, # "Texas": 29145505, # "Florida": 21538187, # "New York": 20201249, # "Pennsylvania": 13002700, # "Illinois": 12812508, # "Ohio": 11799448, # "Georgia": 10711908, # "North Carolina": 10439388, ## "Michigan": 10077331, # "New Jersey":8882190, # "Virginia": 8535519, # "Washington":7614893, # "Arizona": 7278717, # "Massachusetts":6949503, # "Tennessee":6833174, # "Indiana": 6732219, # "Missouri": 6137428, # "Maryland": 6045680, # "Wisconsin":5822434 #} states_info_dic = { "Cal": 39538223, "Tex": 29145505, "Flo": 21538187, "NY": 20201249, "Pen": 13002700, "Ill": 12812508, "Ohio": 11799448, "Geo": 10711908, "NC": 10439388, "Mich": 10077331, "NJ":8882190, "Vir": 8535519, "Was":7614893, "Ari": 7278717, "Mass":6949503, "Ten":6833174, "Ind": 6732219, "Miss": 6137428, "Mary": 6045680, "Wis":5822434 } ##print values of states population = list(states_info_dic.values()) print(population) ##round population round_up_list =[] for num in population: round_up_int=num/1000000 round_up_list.append(round(round_up_int)) #Mean, median and mode of list mean1=numpy.mean(population) median1=numpy.median(population) mode1=mode(round_up_list) print(f"The mean of the population is {mean1}") print(f"The median of the population is {median1}") print(f"The mode of the population is {mode1}") print(round_up_list) ##Grpah population information # x-coordinates of left sides of bars left = states_info_dic.keys() # heights of bars height = states_info_dic.values() # plotting a bar chart plt.bar(left, height, width=0.8, color=['green']) # naming the x-axis plt.xlabel('States') # naming the y-axis plt.ylabel('Populations') # plot title plt.title('U.S States populations') # function to show the plot plt.show()
0.33
t3_u5v91y
1,650,226,634
Python
Weekly Algorithm Project: Middle Square Method
Recently I started a weekly algorithm project just to help me study new algorithms with a flair of good practice. This week I decided to focus on Python and the "Middle Square Method" a PRNG produced by John von Neuman in 1949. I further reiterated two attempted improvements to the algorithm that come from a couple of papers just last month: one using a Weyl Sequence and another using the Weyl Sequence with a Counter - both were by Bernard Widynski. Testing them was interesting as there appeared to be barely a difference between the two new iterations, however, both were much more stable than the original work by von Neuman. Typically with the newer algorithms I'd gather a standard deviation roaming around 4-8 x 10\^15-18. Obviously that's fairly in line with modern standards. The original method had a lower deviation, however, I found that one harder to test perhaps because I should have a used a different algorithm. Full documentation can be found here if anyone is interested. For GitHub, it is under KNOWNALGO/W03. [https://youtu.be/O53ihWtoEGk](https://youtu.be/O53ihWtoEGk) [https://github.com/F35H/WeeklyCode](https://github.com/F35H/WeeklyCode) Any word on improvements \[don't get me with "four space only"\] would be appreciated. Although, I'm fairly certain I could have done much better with the original method probably implementing the "bit-shift" way of doing it Bernard used at the very least. Might as well link it here, here are the two papers: [https://arxiv.org/pdf/1704.00358.pdf](https://arxiv.org/pdf/1704.00358.pdf) [https://arxiv.org/pdf/2004.06278.pdf](https://arxiv.org/pdf/2004.06278.pdf)
0.63
t3_u5twnz
1,650,222,631
Python
Simple android game with online functionality
Hi everyone! Topics covered in this project are: * game made using the Kivy Python module * compiling with buildozer (and spec file) to get an .aab file * using the 'kv' language * using Kivy to switch between screens, display graphs, etc. * online functionality (e.g. leaderboard) using firebase * firebase rules * app splash screen ​ showcase video: [https://youtu.be/PFNS4bGSocQ](https://youtu.be/PFNS4bGSocQ) github: [https://github.com/Contraposite/PrimeFactorization](https://github.com/Contraposite/PrimeFactorization) buildozer method I followed: [Creating an AAB for python apps using Buildozer (github.com)](https://gist.github.com/Guhan-SenSam/35c5ed7da254a7c0141e6a8b6101eb33) play store listing: [Prime Factorizer Game - Apps on Google Play](https://play.google.com/store/apps/details?id=com.jf.primefactorizer) This is my first app, which I wrote in Python and the 'kv' language, using Kivy, compiled to create an android app bundle using buildozer, and successfully uploaded to the Google Play Store. There is a reasonable amount of support for Kivy but not too much for using it with firebase, so I hope this helps some people trying to make something similar. My github link includes my buildozer spec file and a text file of my firebase rules. The premise of my game is simple: you're shown a target number, and you need to use the on-screen buttons to input the prime factors of that number, in order of smallest to largest (e.g. for target number 66, the prime factors are 2, 3, and 11, so you would press '2 3 1 1'. You are timed, and each time you complete a target, you get a new one. Target numbers get larger with time so that there is some difficulty progression. Most of the functionality is shown in the linked video above, but some notable things are that you can create an online profile or play fully offline, the game shows you a variety of stats and graphs of your past play data, there are search functions to find points shown on the graphs, there is an online scoreboard, with a graph showing the leaderboard entries overlapped. You can also view the stats and graphs of other online players. There are two glitches that I ran into with Kivy: * kivy-garden scatterplot graphs sometimes have a graphical issue where the data points disappear and are not redrawn. The workaround was to redraw the graph with a slightly different size (I added a numpy random number times a negligibly small number to the size I actually needed). * in the kivy textboxes, if the user types an '@' sign while the font size is large, it can crash the app. Definitely one of the most bizarre glitches I've ever encountered, but I just kept the font size small to avoid it. I tried to add sounds for button feedback, but there was too much of a delay and it wasn't very good, so I've taken it out and plan to add sounds sometime in the future with another method to avoid the delay.
0.75
t3_u5tqje
1,650,222,127
Python
Use python to optimize the rebar lost in construction.
Hello everyone, I'm a python beginner. I want to improve my coding skill so I try to use python to help my work.The following problem is bar cut list. It use in construction business. The rebar length is 10 meter each and We have to cut to length follow the order.We have to find the sequence of each Rebar Mark.I.E. We should cut bar No. 439(7350mm) then use it's scrap as rebar No.410 (2650mm) or We might cut bar no.443(6950mm) then no.410(2650mm) this would left the scrap 400mm.The less scrap on rebar the less rebar We have to order.The goal is to minimize rebar scrap on bar cut list.How should I create a logic follow this Idea?I have attached the link to csv file in case you want to try it.Thanks in advance. [https://drive.google.com/file/d/1vxJXX8jmEoumwA08x8UtVyBCjSDpyldu/view?usp=sharing](https://drive.google.com/file/d/1vxJXX8jmEoumwA08x8UtVyBCjSDpyldu/view?usp=sharing) https://preview.redd.it/tm23n32zp4u81.png?width=450&format=png&auto=webp&s=252b11688408922e06d0192bc52f2a415319124f
0.93
t3_u5sisg
1,650,218,540
Python
Gupshup - Chat in the terminal
Gupshup is a terminal-based application inspired by discord! github: [https://github.com/kraanzu/gupshup/](https://github.com/kraanzu/gupshup/)
0.79
t3_u5q6jl
1,650,211,690
Python
Funny bot I made
[https://youtu.be/XrYadm3y\_e4](https://youtu.be/XrYadm3y_e4)
0.36
t3_u5pjy6
1,650,209,914
Python
Writing Better Django Queries
A blog that explains how to write better Django Queries by both performance and Memory wise. [https://delliganesh.dev/tech/the-one-with-better-django-queries/](https://delliganesh.dev/tech/the-one-with-better-django-queries/)
0.45
t3_u5o1aq
1,650,205,312
Python
PySGI, the library for creating web servers
Still under development, the PySGI library can manage HTTP routes, requests and responses simply and quickly. Help me by giving this repository a star! [PySGI GitHub ](https://github.com/jaedsonpys/pysgi)
0.72
t3_u5npcy
1,650,204,250
Python
How to create an image out of text using Python and Glide OpenAI library ? [tutorial]
ERROR: type should be string, got " \n\nhttps://preview.redd.it/2q5yox16e3u81.png?width=1280&format=png&auto=webp&s=0e06a88407034c5e567443a881a43e59684fb1ef\n\nHi,\n\nThis is a nice and fun Python tutorial that enables to produce an image out of a simple text \n\nThis is effect is based on Python and the amazing Glide library (based on OpenAI's )\n\nThe outcome is impressive. \n\nYou can find the link for the video tutorial here: https://youtu.be/DKEOmRBgPe8\n\nYou can find Python instructions file here : [https://github.com/feitgemel/Python-Code-Cool-Stuff/blob/master/Glide/glide-Install-instructions.txt](https://github.com/feitgemel/Python-Code-Cool-Stuff/blob/master/Glide/glide-Install-instructions.txt) \n\n\nEnjoy\n\nEran\n\n​\n\n\\#python #opencv #Glide #OpenAI"
0.77
t3_u5n88a
1,650,202,661
Python
Python Script EXE detected as virus in VT
Hey Everybody, I'm creating from a python script, with Pyinstaller ,an exe file, but when I insert it to Virus total for testing it detects it as a virus in many viruse detections softwares. I have tried to solve it with nukita, several guides I found but nothing worked. Anyone has any advice?
0.75
t3_u5m3x5
1,650,198,722
Python
Toolchain recommendations for a production-quality monorepo?
Hi, I’m not exactly a newcomer to Python, but I’ve been using C++ pretty much exclusively for all of my professional projects. I am starting a new project in Python where we are going to be using a monorepo and I am looking for some recommendations on what people use for tooling. Build system: I would like something to help orchestrate tests, generate coverage reports, handle running a typechecker in CI, do dependency analysis to figure out what changed in a commit, build Docker images and package cloud functions. It looks like the leading candidates are Bazel and Pants? Which does the community prefer? Typechecker: Which do people use? A balance of speed, thoroughness of warnings and integration into editors/build systems seems like the driving factors here. Dependency management: I am familiar with virtual environments, but to me this seems at odds with a monorepo where the virtual environment will grow boundlessly. Is there any tooling to help here? Documentation: one of the main points of a monorepo is to ease the reuse of code, so docs are important. I am familiar enough with sphinx to know it is a pain in the butt. Are there any easy-to-use alternatives that can produce comparable quality? Any other tools that make a big difference in refactoring and shifting errors to the left? Thanks!
0.86
t3_u5kkxh
1,650,192,403
Python
Stack Game made in pygame
GitHub - [https://github.com/Vaibhav521/Pygame/tree/main/stack](https://github.com/Vaibhav521/Pygame/tree/main/stack) in-game footage ​ [stack game](https://reddit.com/link/u5ilqk/video/fzhstiy6t1u81/player)
0.57
t3_u5ilqk
1,650,183,508
Python
Python Cybersecurity— Network Tracking using Wireshark and Google Maps
nan
0.72
t3_u5ibzu
1,650,182,335
Python
Windows 11 design on Python
Hello. This is my project to styling Win32 applications on Python. I try to make the application look in Fluent design with Mica. If someone is interested, you can join or just look. 😊 [witalihirsch/QTWin11: QT Theme for Win32 apps on Windows 11 (github.com)](https://github.com/witalihirsch/QTWin11) [Example](https://preview.redd.it/q9tcxjjgz0u81.jpg?width=1078&format=pjpg&auto=webp&s=060b7e0390e85cf641b6b4c8141eb61dbf4f3d15) https://preview.redd.it/qgd7ykywc1u81.jpg?width=346&format=pjpg&auto=webp&s=0057bb4e4d4da836fdfe1384894b7f039bef5e89 https://preview.redd.it/cw3qmuywc1u81.jpg?width=344&format=pjpg&auto=webp&s=1e324ad9ac28484d38be37a154e8ae997a685f69 https://preview.redd.it/z8rkcwywc1u81.jpg?width=345&format=pjpg&auto=webp&s=84f73edc619d65c26998b44051bcfd0e0b630889 https://preview.redd.it/1hwt01zwc1u81.jpg?width=345&format=pjpg&auto=webp&s=2a0e0dcbf7ece6a400eb6d784fc5e11cba0b98b5 https://preview.redd.it/fldjh6zwc1u81.jpg?width=186&format=pjpg&auto=webp&s=35ffbee447fb622c0d3a75e22872bdf6a34c6232
0.97
t3_u5gcj7
1,650,173,660
Python
I watched programmer who said for every beginners don't learn python because only jobs you can use python with are data science and machine learning etc.. and these jobs are not for beginners, so you will not work and get money with python as beginner. is it true ?
nan
0.35
t3_u5fqtp
1,650,171,251
Python
Edge detection project
I'm in grade 12 and planning on doing a project on something edge detection related. What can I do somewhat unique?
0.75
t3_u5dr4w
1,650,164,059
Python
They say Python is the easiest language to learn, that being said, how much did it help you learn other languages? Did any of you for instance try C++ but quit, learn Python, and then back to C++?
nan
0.94
t3_u5c9et
1,650,158,940
Python
Sunday Daily Thread: What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
0.92
t3_u5amsg
1,650,153,610
Python
Arrowdantic 0.1.0 released
Hi, I am announcing the release of [arrowdantic](https://pypi.org/project/arrowdantic/): Arrowdantic is a small Python library backed by a [mature Rust implementation](https://github.com/jorgecarleitao/arrow2) of Apache Arrow that can interoperate with * [Parquet](https://parquet.apache.org/) * [Apache Arrow](https://arrow.apache.org/) and * [ODBC](https://en.wikipedia.org/wiki/Open_Database_Connectivity) (databases). It has a similar performance and higher safety (e.g. no segfaults) than pyarrow. It supports reading from and writing to ODBC compliant databases at likely similar performance as [`turbodbc`](https://turbodbc.readthedocs.io/en/latest/) and it does not require conda to install. This package is particularly suitable for environments such as AWS Lambda - it takes 13M of disk space, compared to 82M taken by pyarrow. ## Features * declare and access Arrow-backed arrays (integers, floats, boolean, string, binary) * read from and write to Apache Arrow IPC file * read from and write to Apache Parquet * read from and write to ODBC-compliant databases (e.g. postgres, mongoDB) It is not intended for OLAP type of queries (Pandas, Polars and many others serve this purpose better). There is still work to support more types (e.g. datetimes, python dictionaries), etc, but the gist is there - a small utility to lower the barrier to interoperate the Arrow format with Parquet, Arrow and ODBC. Looking forward for feedback!
0.87
t3_u58xni
1,650,148,309
Python
Slowpoke: A tool to convert Spotify and Youtube songs to slow and reverb
[https://github.com/newpolygons/SlowPoke](https://github.com/newpolygons/SlowPoke) Little tool I worked on this weekend. Hope you guys like it. Currently setup to allow you to control the speed of the song.
0.8
t3_u58rf6
1,650,147,774
Python
Is it me learning python that there are many different ways to write it? I learn one way to write variable then next lesson shows me functions to show the same outcome. Or am I’m looking at this too soon and something else suppose to go along with it?
nan
0.62
t3_u57opq
1,650,144,578
Python
Space Science: Asteroid spectra meet Autoencoders
Hey Pythonistas, In my [previous videos](https://www.youtube.com/playlist?list=PLNvIBWkEdZ2gagAcgm44cplgSvQ_Cmvbv) I explained and showed the "nature" of asteroid spectra. Based on their major 4 classes, I created a Support-Vector-Machine classifier as well as a Keras-based neural network to distinguish between these classes ([GitHub repo](https://github.com/ThomasAlbin/Astroniz-YT-Tutorials/tree/main/%5BML1%5D-Asteroid-Spectra); yes... I should have numbered my scripts starting at 01, 02, 03, ...). Classifying imbalanced data is really interesting, and it is also somehow exciting to write Conv1D networks, since it is rarely seen (most use Conv2D in their tutorials, since most use images to classify data). But what would be more interesting than writing a neural network classifier? Well, data classes can be artificial constructs. Especially "space spectra" (asteroid, mass spectra of dust particles in space, or spectra of so-called active galactic nuclei), are not always 100% distinguishable and have transitional classes between major classes. So... can we classify our asteroid spectra in a data-driven way? Well, that's the goal of my last 3 video sessions, starting today with the very first one. The idea: \- Creating an Autoencoder to reconstruct asteroid spectra \- Displaying and inspecting the latent space of these spectra \- Applying some clustering algorithm on the latent space to determine a data science based number of potential asteroid classes Starting with the Autoencoder part I'd like to share my most recent tutorial: [YouTube Link](https://www.youtube.com/watch?v=UsiY28qjBK8&list=PLNvIBWkEdZ2gagAcgm44cplgSvQ_Cmvbv&index=13) [GitHub Link](https://github.com/ThomasAlbin/Astroniz-YT-Tutorials/blob/main/%5BML1%5D-Asteroid-Spectra/11_dl_autoencoder_reconstruction.ipynb) I hope you'll like the final steps of this *Space Science with Python* project. I am honestly thinking to put everything in a small scientific paper :). Cheers, Thomas
0.73
t3_u57cdr
1,650,143,542
Python
What are your useful packages to help scraping (besides requests, beautifulsoup etc)?
What are your go-to packages to include in python scraping scripts? Besides the basics (requests/urlib(2), beautifulsoup/lxml, selenium, scrapy). What are the packages you include in your scripts? For me it's: * click * requests-cache * retry/backoff * fake-useragent
0.8
t3_u578lt
1,650,143,213
Python
Shipping command line programs with a python package
I already know this inherently sounds like a bad idea, but I'd love some genuine, constructive technical advice on the following scenario. I have a python package that is used by others at work, and one of the features I need to add is the ability to upload binary files (\~1GB) from local to a cloud object storage, in this case Azure Data Lake. The Azure Data Lake python client does have the ability to upload data, but it is significantly slower than their recommended command line bulk copy tool AzCopy. **Can I get feedback on this approach:** \-pip install the python package \-the python package already has a command line entry point so the user would type something like <package_name> setup externals Which would then run a setup script which would install azcopy to the users $HOME path and create a symlink to their PATH for the binary to run. \-Then python would use it via subprocess. **For me the negatives I see are:** \-Having to write handling code for the setup script to fail gracefully. \-Possibly having to host the already installed binaries on a fileshare somewhere so URL changes and version changes don't break the installer \-Having an extra step if someone else clones the repo, pip installs the requirements, they have one more step before they can recreate. **Positives are:** \-AzCopy is way faster than the python sdk and doesn't have to upload objects one at a time. \-I can extend this to use RClone eventually to make it cloud storage agnostic, and have it work with S3 as well ​ Has anyone ever done anything like this? Am I being oblivious to any major issues here?
0.6
t3_u53wpo
1,650,133,545
Python
Do you think AI/machine learning is a very important field to get into for future relevance?
I am just starting to learn about it this week and thinking it is really going to be integral in the years to come right? Perhaps as important if not more than the information age we are in now. More probably when skynet goes online and the war between humans/ai begins. So, good to get onboard now. I think my last great decision was learning coding around 2016 and this is going to be another great one in terms of time management and where to focus your efforts. Not only yes but interested to hear what fields it will be relevant in? All? EDIT: seems this is going off what I intended. I am not actually looking for a new career path. I am more just interested in knowing what future implementations will/might be as it becomes more ubiquitous, just speculating what that might be.
0.68
t3_u51zk3
1,650,128,123
Python
CLI macro for Windows
Hey everyone, I built a cli program for windows that can open files,websites, create temporary python enviroments. This is kind of my first full scale project that really eases my workflow.I would love to get suggestions on this program. :) [https://github.com/Sidharth-S/do](https://github.com/Sidharth-S/do)
0.73
t3_u51ud3
1,650,127,715
Python
Python Virtual Environments: A Primer
nan
0.96
t3_u51l5b
1,650,126,979
Python
A lightweight way to profile Python Code non-intrusively
Latency: [https://github.com/oracle-samples/hiq/blob/henry\_dev/hiq/examples/paddle/demo.ipynb](https://github.com/oracle-samples/hiq/blob/henry_dev/hiq/examples/paddle/demo.ipynb) Memory: [https://github.com/oracle-samples/hiq/blob/main/hiq/examples/paddle/demo\_memory.ipynb](https://github.com/oracle-samples/hiq/blob/main/hiq/examples/paddle/demo_memory.ipynb) ​ [Latency Graph](https://preview.redd.it/qgc7upex3xt81.png?width=512&format=png&auto=webp&s=87a0a0cbf34e2ee4fd560d5c0768179ec5d95d76) ​ More details at: [https://github.com/oracle-samples/hiq](https://github.com/oracle-samples/hiq)
0.59
t3_u51h29
1,650,126,645
Python
How to make annoy any interviewer with the fizzbuzz challenge
I was bored so I decided to solve the fizzbuzz in an obnoxious way. Hope you enjoy (: `output = ["fizzbuzz", "buzz", "fizz"]` `iterList = lambda x: [x%i for i in [15, 5, 3]]` `fizzBuzz = [output[iterList(x).index(0)] if 0 in iterList(x) else x for x in range(1, 101)]` `print(fizzBuzz)` `[1, 2, 'fizz', 4, 'buzz', 'fizz', 7, 8, 'fizz', 'buzz', 11, 'fizz', 13, 14, 'fizzbuzz', 16, 17, 'fizz', 19, 'buzz', 'fizz', 22, 23, 'fizz', 'buzz', 26, 'fizz', 28, 29, 'fizzbuzz', 31, 32, 'fizz', 34, 'buzz', 'fizz', 37, 38, 'fizz', 'buzz', 41, 'fizz', 43, 44, 'fizzbuzz', 46, 47, 'fizz', 49, 'buzz', 'fizz', 52, 53, 'fizz', 'buzz', 56, 'fizz', 58, 59, 'fizzbuzz', 61, 62, 'fizz', 64, 'buzz', 'fizz', 67, 68, 'fizz', 'buzz', 71, 'fizz', 73, 74, 'fizzbuzz', 76, 77, 'fizz', 79, 'buzz', 'fizz', 82, 83, 'fizz', 'buzz', 86, 'fizz', 88, 89, 'fizzbuzz', 91, 92, 'fizz', 94, 'buzz', 'fizz', 97, 98, 'fizz', 'buzz']` Edit: yes I know the title is messed
0.66
t3_u4zs3s
1,650,121,763
Python
Live flame graph rendering in the terminal
Austin TUI 1.2.0 has just been released, with the new live flame graph mode. [https://github.com/P403n1x87/austin-tui](https://github.com/P403n1x87/austin-tui) This is what it looks like in VS Code. The graph can be paused and files opened directly in the editor with a Ctrl + Click on the path for further inspection. The VS Code extension is also available for more insight into performance [https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode](https://marketplace.visualstudio.com/items?itemName=p403n1x87.austin-vscode) https://i.redd.it/5kh8pn811wt81.gif
0.77
t3_u4x741
1,650,113,643
Python
"Safe" way to install Python 3 on MBA M1
Hi. I just want to ask if there's something like a "safe" way to install Python 3 on Macbook Air m1. I'm learning Python right now, and MBA has Python 2.7 something version.
0.82
t3_u4uji2
1,650,103,050
Python
Recover deleted and overwritten files with RecoverPy 1.5.0
​ https://i.redd.it/qg7rwesb1vt81.gif Hi! I recently release RecoverPy v1.5.0 and I think I might give you some news. **-> Repo:** [https://github.com/PabloLec/RecoverPy](https://github.com/PabloLec/RecoverPy) # What is it? RecoverPy is a 100% Python tool to not only recover deleted but also overwritten files. I got the idea when I was quite new to some programming best practices, especially version control... Long story short, I accidentally piped my output into my precious script... Just spent the day working on something and instead of typing myscript > log, I typed log > myscript, oh boy what a feeling. I knew some tools to recover deleted files, but my problem was quite different, I didn't deleted the file (in system words, marked the file blocks as deleted/available), I just replaced it's content. Talk about an impostor syndrome. After a long ride in the abysses of unix stackexchange, I found some dark combination of grep and dd command to search directly in your raw system partitions blocks and eventually recovered my file! But as the process was really slow and painful, I thought it might be a good idea to make a tool out of it. That's how RecoverPy was born. # 1.5.0 Since then, the tool has had quite some success. Especially in the hacker community (wasn't the initial intent but still). It even appeared in hakin9 magazine. Last releases have been quite stable, lastly I mostly added QoL updates and better binary file search handling. Feel free to have a look and tell me what you think of it! It's my biggest personal project and I'm beginning to be quite proud of my baby :)
0.93
t3_u4u8mb
1,650,101,676
Python
Python Web Frameworks
nan
0.5
t3_u4u85t
1,650,101,619
Python
Python for complete begginers Medium
I wrote this cool article about python for complete begginers about 2 months ago and I thought I'd share it. In this article you will learn about: 1) what coding is , what python is 2) The advantages of python 3) How to download and install python 4) What an ide is 5) Maths in python 6) Variables Here is the link : https://4rkal.medium.com/python-for-beginners-f1df170bcc08
0.35
t3_u4tsp2
1,650,099,636
Python
GitHub - AlexEidt/ASCII-Video: Blazing fast ASCII Image/Video Renderer.
nan
0.95
t3_u4rpyc
1,650,090,494
Python
Run python (and sql) with dbt
nan
0.72
t3_u4mwco
1,650,072,702
Python
Saturday Daily Thread: Resource Request and Sharing! Daily Thread
Found a neat resource related to Python over the past week? Looking for a resource to explain a certain topic? Use this thread to chat about and share Python resources!
0.86
t3_u4l9am
1,650,067,210
Python
i created my own music player in Python3
i always wanted an offline music player that was low on ram, and functioned properly, and for the love of god i could not find one so i created mine. i would be glad if you tested it, here's the github link: [https://github.com/AvivHamagniv69/music-player](https://github.com/AvivHamagniv69/music-player)
0.79
t3_u4l7re
1,650,067,079
Python
How to build a disease prediction service
nan
0.83
t3_u4jf15
1,650,061,429
Python
TL;DR: Dictionary Comprehension + Early\Late Binding of Lambdas in Python is Mental
Hello, I found a behaviour I couldn't explain when using lambdas in a dictionary comprehension so I decided to post a little Intermediate Showcase to inform you about my struggles and give you a solution, in the end (no spoilers) I like to minify python code in my spare time to relax and it often takes some iterations for each different function or class, alongside those iterations I was golfing a function in a progress bar script I wrote a very long time ago, this is the brief description of what the function should have done: `The function has to take a list of n elements and color them green, yellow or red according to a given condition.` This was the last *functioning* function in the process of being golfed: def paint(total, done, elements): color_str = lambda x, y: f'{x}{y}\033[00m' colors = {'r' : lambda x: color_str('\033[91m',x), 'g' : lambda x: color_str('\033[92m',x), 'y': lambda x: color_str('\033[93m',x) }['g' if total == done else 'y' if total/2 <= done else 'r'] return [*map(colors,elements)] I thought, that's easy, this has to be equivalent to this golfed function: def paint(total, done, elements): return [*map({'rgy'[i]:lambda x:f'\033[9{i+1}m{x}\033[00m' for i in range(len('rgy')) }['g' if total == done else 'y' if done <= total/2 else 'r'],elements)] *Until it's not*, in fact, while the first function outputs a correct response, the last one is **somehow** stuck on the color yellow, so I thought the dictionary comprehension wasn't working properly and thus I tried: dict_comp = {'rgy'[i]:lambda x:f'\033[9{i+1}m{x}\033[00m' for i in range(len('rgy'))} print(dict_comp) This prompted what I thought it would prompt, a dictionary with `r`,`g` and `y` as keys and a list of lambdas in different memory locations `{'r': <function <dictcomp>.<lambda> at 0x0000018D3E986200>, 'g': <function <dictcomp>.<lambda> at 0x0000018D3E9860E0>, 'y': <function <dictcomp>.<lambda> at 0x0000018D3E986050>}` so I tried to print all the key and lambda pairs with a test for each lambda: for key, lmbd in dict_comp.items(): print(key, lmbd(f'Testing {key}')) This was the output: [Horrific Minion-Colored Results](https://preview.redd.it/o216rv5pjrt81.png?width=139&format=png&auto=webp&s=eb4882d1c3114792c06656ac59204a08f297a790) I decided to remove the slash to check the text value of the lambda and the correct progression of `i` and this why I noticed the problem: each lambda stored the last value of `i`! dict_comp = {'rgy'[i]:lambda x:f'033[9{i+1}m{x}\033[00m' for i in range(len('rgy'))} for key, lmbd in dict_comp.items(): print(key, lmbd(f'Testing {key}')) >> r 033[93mTesting r # the value after the square bracket is 93 (it's supposed to be 91) >> g 033[93mTesting g # the value after the square bracket is 93 (it's supposed to be 92) >> y 033[93mTesting y # the value after the square bracket is 93 Here's the whole code in order to try both functions: from time import sleep def paint(total, done, elements): color_str = lambda x, y: f'{x}{y}\033[00m' colors = {'r' : lambda x: color_str('\033[91m',x), 'g' : lambda x: color_str('\033[92m',x), 'y': lambda x: color_str('\033[93m',x) }['g' if total == done else 'y' if total/2 <= done else 'r'] return [*map(colors,elements)] # UNCOMMENT THIS IN ORDER TO TEST THE FUNCTION DOWN BELOW """ def paint(total, done, elements): return [*map({'rgy'[i]:lambda x:f'\033[9{i+1}m{x}\033[00m' for i in range(len('rgy')) }['g' if total == done else 'y' if done <= total/2 else 'r'],elements)] """ def CustomProgressBar(task, completeness) -> None: size = 100 // 5 empty = size - completeness//5 fill = size - empty percent = f'{completeness:>3}% ' filler = f'{"═"*fill}' isComplete = fill==size progress_bar, percent = paint(size,fill, [filler, percent]) progress_bar+=f'{"─"*empty}' print(f'\r{task:<25}{percent}{progress_bar}', end='\n' if isComplete else '') for i in range(101): sleep(0.05) CustomProgressBar('Range 0-100', i) I then asked myself: >Why does this happen? Isn't each anonymous function different? After some scavenger hunt in StackOverFlow (thanks you Stack for the duplicate question tootip) I found out that the issue might be in [late binding in functions and lambdas in particular](https://stackoverflow.com/questions/3431676/creating-functions-in-a-loop), so the answer, apparently, is that even if the functions are stored in a different memory location as part of the dictionary, the lambda function captures the ***NAME*** of the variable, not the ***VALUE*** of the variable and assigns the value after the dict comprehension is called, so each value becomes the last value in the loop, as the friendliest guy on StackOverFlow explains [here](https://stackoverflow.com/questions/70862614/how-does-python-dict-comprehension-work-with-lambda-functions-inside). And so, the solution was there, after several hours of head scratches and articles about early and late bind and (anonymous) functions in loop variables inside loops, I had to tie (or late-bind, if you will) the value name of the variable in the lambda function to the value of the variable in the loop. This means I had to create another value in the lambda and that the value HAS to be the last in the lambda function because it will be created as a keyword argument and lambdas respect the rule of \*args first, \*\*kwargs last. So, the solution was finally here: def paint(total, done, elements): return [*map({'rgy'[i]:lambda x, y=i+1:f'\033[9{y}m{x}\033[00m'for i in range(len('rgy'))}['g' if total == done else 'y' if done >= total/2 else 'r'],elements)] If you have any question, you find this interesting, you have any feedback, you want to talk about Python or you just want to send me death threats because I wrote a long-ass post about lambdas and how they work in loops, HMU or comment down below. Have fun, and happy easter: [Easter Bunny](https://preview.redd.it/c2qo8krnmrt81.png?width=564&format=png&auto=webp&s=354dfac6c9adada4c4e5a57d531b073aa4967968)
0.76
t3_u4j0jn
1,650,060,242
Python
Learn Python from Scratch to Advance with Detailed Hands-on
nan
0.42
t3_u4hgpj
1,650,055,769
Python
Archimedes Spiral: Converting old-school BASIC to Python
A little bit retro, a little bit Python. This is pretty much a direct conversion of the BASIC code to Python. Perhaps you can make it even better! https://goto10.substack.com/p/archimedes-spiral https://i.imgur.com/eHdCPrK.jpg
0.9
t3_u4h485
1,650,054,739
Python
Creating an HTTPS Lambda Endpoint without API Gateway
nan
0.57
t3_u4gkfx
1,650,053,153
Python
Python module for Notion
Notionpy is a python module that helps you integrate notion with your programme\\workflow utilizing notion's API, the module helps you create, retrieve and update pages or databases with ease Someone will ask "what is the difference between this module and the other plenty of modules out there !?", as far as I have seen searching the web, this is the most versatile, user-friendly one you can start using it by typing in your terminal : pip install auto-py-notion Github repo : [https://github.com/kareemmahlees/NotionPy.git](https://github.com/kareemmahlees/NotionPy.git) Note : this module is still basic stage with fairly simple functionality, so all your suggestions, issues, and contributions are very welcome
0.6
t3_u4da5o
1,650,044,005
Python
How to build a RSS from scraping using Python
nan
1
t3_u4d17u
1,650,043,321
Python
Python, Flask, Elasticsearch - front controller and API documentation - Part 3 Tutorial
Hi, the 3d article devoted to the theme: “How to work with ElasticSearch, Python and Flask” already ready for reading. Here will speak about package dependencies we are going to use, some project structure aspects, controller, REST API, flask\_apispec package and response/request models. All details are here: ["Symfony, elasticsearch - front controller and api documentation"](https://sergiiblog.com/python-flask-elasticsearch-front-controller-and-api-documentation/). Have a pleasant reading.
0.4
t3_u4aplz
1,650,036,900
Python
Geometry Calculation
nan
0.25
t3_u4a3sa
1,650,035,177
Python
How To Build Your Own Crypto News Aggregator [Streamlit]
nan
0.23
t3_u49yxj
1,650,034,812
Python
A simple email app
I made a simple email app in python [gocrazygh/emailapp: A simple email app in python (github.com)](https://github.com/gocrazygh/emailapp)
0.67
t3_u48ux2
1,650,031,662
Python
Fun project to notify my boss if I’m at my desk or not each morning.
I made a script that utilizes opencv to help me identify if I’m at my desk or not and then let my boss know. Made a fun video on how it turned out. [Video](https://youtu.be/AV7qLsYnOWY)
0.91
t3_u48iqw
1,650,030,683
Python
Running Python in the Browser with WebAssembly
nan
0.72
t3_u47p54
1,650,028,107
Python
2 Use Cases of Python Pre-commit Hooks to Tidy Up Your Git Repositories
nan
0.64
t3_u47kk6
1,650,027,739
Python
Like httpie? Might need to like it again...
A great Python project, [HTTPie](https://github.com/httpie/httpie) recently lost all of its Github stars due to an easy-to-make mistake. [Read more at their blog](https://httpie.io/blog/stardust). I enjoy [HTTPie](https://github.com/httpie/httpie) as a cURL-like command line tool for interacting with APIs and other web resources. A very clever UI, and a good example of using [rich](https://rich.readthedocs.io/) and [requests](https://docs.python-requests.org/). You may want to consider helping them restore or even increase their online community, sadly lost due to this error. You can star and/or watch the repo at https://github.com/httpie/httpie
0.96
t3_u46vhe
1,650,025,435
Python
Firedm repos no longer exist.
FireDM is a python open source (Internet Download Manager) with multi-connections, high speed engine, it downloads general files and videos from youtube and tons of other streaming websites . Yesterday I tried to go to the GitHub page to download the latest release but the repo returns a 404 which means it does not exist. The pypi package still exists and here's the link: https://pypi.org/project/FireDM/ The project page clearly shows that the repository is inaccessible.No forks of it even exist on Github. I can't seem to find any news or complaints anywhere on the internet about this so I was wondering is there some announcement I missed? And to my last question, is there a way we can save the project through pypi and create forks of it? Edit : my package manager still has a copy(Manjaro and AUR)
0.95
t3_u44t8y
1,650,017,535
Python
Vitrix - An open source FPS video game coded in Python!
Vitrix is a fully open source video game coded in Python! It makes use of Ursina Engine and TKinter for its GUIs and has with prebuilt releases that come bundled with a Python binary and all necessary libraries preinstalled! Even though Vitrix is still in the early stages of its development, it is still perfectly playable and has actively maintained code and a wiki. Me being the developer, I'm not very good with any of the arts, so anybody who can contribute textures, models or sounds is much appreciated. Vitrix still has much development to go, so anybody who helps will be welcomed. ​ Want to see one of your ideas in Vitrix someday? Recommend me ideas: [https://github.com/ShadityZ/Vitrix/discussions/24](https://github.com/ShadityZ/Vitrix/discussions/24) Apply to become a developer: [https://github.com/ShadityZ/Vitrix/discussions/26](https://github.com/ShadityZ/Vitrix/discussions/26) ​ You can find the Vitrix github repository here: [https://github.com/ShadityZ/Vitrix](https://github.com/ShadityZ/Vitrix) Here at some images: [https://user-images.githubusercontent.com/543577/163570397-c4736068-199e-4527-a998-e18309e9c49c.png](https://user-images.githubusercontent.com/543577/163570397-c4736068-199e-4527-a998-e18309e9c49c.png) [https://imgur.com/a/PLKDG4L](https://imgur.com/a/PLKDG4L) ​ Contributions open, ShadityZ
0.9
t3_u43oxi
1,650,012,550
Python
Python custom formatting
nan
0.88
t3_u43mf5
1,650,012,218
Python
Good GUI builder for Python similar to Java’s Eclipse Windowbuilder
Hi guys! I’m a Java developer migrating to Python, and I’m trying to find a good GUI builder that is similar to Java’s Eclipse windowbuilder. I have tried PyQy5 and it’s Qt Designer which is very good and very close to windowbuilder in terms of interface, but the only problem is that the Qt Designer doesn’t work dynamically with the IDE like the windowbuilder: all Qt Designer’s ui file need to be translated manually to py file and then modified. This is really bad for efficiency since everything added and modified in the Qt Designer need to be saved and translated again and manually copied from the new py file to the main py file, and all objects’ code’s locations need to be manually located (Unlike in windowbuider where you double click the object in the builder and you will be automatically redirected to the related code) Since Python is such a popular language and so many people use it to develop complicated GUI softwares, I guess there has to be a GUI builder that is more efficient and similar to Java’s windowbuilder
0.76
t3_u40lpu
1,649,999,500
Python
Airflow 2.3.0 - Dynamic Tasks
Coming Soon in Airflow 2.3.0 - First-class support for "Dynamic Tasks". This is feature is called "Dynamic Task Mapping" The wait for the most requested feature of Apache Airflow is almost over !! No longer hacking over creating dynamic tasks, with Dynamic Task Mapping, Airflow will allow users to create a number of tasks at runtime based upon current data, rather than having to know in advance how many tasks would be needed. https://twitter.com/kaxil/status/1514745136680419335?s=21&t=suoW11Re4Ew2cooN4FbhEw
0.74
t3_u3vzb1
1,649,983,938