sub stringclasses 1
value | title stringlengths 7 303 | selftext stringlengths 0 8.65k | upvote_ratio float64 0.08 1 | id stringlengths 9 9 | created_utc float64 1.65B 1.65B |
|---|---|---|---|---|---|
Python | I made a game from scratch in 48 hours for the Ludum Dare with Python | I made all of the code, artwork, sfx, etc. solo during the 48 hours of the Ludum Dare as required by the rules.
https://i.redd.it/acex0iv0y1s81.gif
The game (and its source) are available here:
[https://dafluffypotato.itch.io/explont](https://dafluffypotato.itch.io/explont)
I also [livestreamed almost all of the de... | 0.97 | t3_ty6yvn | 1,649,313,627 |
Python | Dockersh : A shell for docker commands with autocomplete | Hi everyone,
I was learning Docker and felt that it was hard to remember all the commands and various arguments. I also kept forgetting the names of my containers & images so I decided to build a CLI for Docker using Prompt Toolkit. Hopefully it will be useful for those of you learning & working with devops. L... | 0.67 | t3_ty6f0a | 1,649,311,338 |
Python | Continuous feedback and the 'definition of done' | Hey! I wrote a post about what I see is sometimes the short fallings of 'definition of done'. Wonder whether you guys agree with it and have been dealing with such issues?
[https://betterprogramming.pub/youre-never-done-by-definition-c04ac77c616b](https://betterprogramming.pub/youre-never-done-by-definition-c04ac77c61... | 0.5 | t3_ty5lnw | 1,649,308,203 |
Python | What is the best Python -> direct executable package / compiler today? (April,2022) | I need to create a few applications that I want to distribute as executables, the options I'm aware of are:
Nuitka
pyinstaller
py2exe
py2app
What else is out there, and what is the BEST?
I'm looking to create a couple of cli's using click, and a couple of GUI's using DearPyGui | 0.93 | t3_ty36vb | 1,649,299,895 |
Python | Pong game in just 14 lines. | import pygame
pygame.init()
win = pygame.display.set_mode((800, 600))
clock = pygame.time.Clock()
rects = [pygame.Rect(0, 0, 20, 60), pygame.Rect(780, 0, 20, 60), pygame.Rect(390, 290, 20, 20)]
ball_vel = [5, 5]
while clock.tick(60) and not pygame.QUIT in [event.type for event in pygame.eve... | 0.83 | t3_ty15no | 1,649,293,551 |
Python | Thursday Daily Thread: Python Careers, Courses, and Furthering Education! | Discussion of using Python in a professional environment, getting jobs in Python as well as ask questions about courses to further your python education!
**This thread is not for recruitment, please see** r/PythonJobs **or the thread in the sidebar for that.** | 0.67 | t3_txzwcj | 1,649,289,609 |
Python | I made the game Wordle in Python | This game is somewhat similar to hangman.
You try to guess a random 5 letter word and the game will tell you the if the placement of each letter is correct or not. Example:
```
O - correct place
? - right letter, wrong place
X - letter is present in word
Word we're looking for: hello
Your word (input): house
Output... | 0.72 | t3_txvx5q | 1,649,278,243 |
Python | The last Python 3.11 alpha (3.11.0a7) is available | 0.95 | t3_txuukh | 1,649,275,361 | |
Python | Continuous Feedback over code | Hey everyone! We made something! I wanted to get your feedback on our new open-source platform - Digma. Digma provides observability 🔭 over code and makes it relevant to feature development. It gleans code-relevant insights from OpenTelemetry and other sources and provides in-code feedback 💻. [https://github.com/di... | 0.57 | t3_txrs93 | 1,649,267,039 |
Python | Blog API built with FastAPI, MySQL, SQLAlchemy, and Alembic | 0.75 | t3_txrlz4 | 1,649,266,567 | |
Python | A practical introduction solving differential equations numerically | 0.83 | t3_txq7d2 | 1,649,262,787 | |
Python | Configpile: a modern, typed argparse replacement | I started documenting astronomy code written by a PhD student, and wanted a command-line parsing library that would be self documenting.
Thus [ConfigPile](https://denisrosset.github.io/configpile/) was born! It's based on dataclasses with annotated types.
Sample code (imports omitted):
@dataclass(frozen=True)
... | 0.83 | t3_txq6ch | 1,649,262,713 |
Python | Show the songs that you are listening to on Telegram. (Like Discord's "Listening to") [Recently updated] | 0.5 | t3_txp8kf | 1,649,260,175 | |
Python | UNPHAT method for designing apps | I found this to be very useful when thinking about the most important part of writing apps: understanding what to solve and how. It's from https://news.ycombinator.com/item?id=30931831.
Next time you find yourself Googling some cool new technology to (re)build your architecture around, I urge you to stop and follow U... | 0.67 | t3_txoq2p | 1,649,258,798 |
Python | I made a small tool to apply "color palette restriction" on images ! | I got inspired by /r/place and I wanted to exercice my python skills so I tried to make a tool to redraw images with a specific color palette (/r/place color palette)
Here are some examples :
[Reference image](https://preview.redd.it/3p4us69n7xr81.jpg?width=494&format=pjpg&auto=webp&s=0535c1eed010716f0535... | 0.97 | t3_txnuzx | 1,649,256,498 |
Python | YAML: The Missing Battery in Python | 0.88 | t3_txmfli | 1,649,252,420 | |
Python | Programming projects for Physics in Python | So I am looking for some projects to do in Physics using Python ,when I searched for the same in Quora ,it was too hard to even comprehend .
I am ready to do some reading if it is needed ,I don't like learning Python just through some courses ,I think that learning by creating projects will be a good motivation.
I ha... | 0.79 | t3_txm6zl | 1,649,251,713 |
Python | hello this could be an english vocabulary question, what does comprehension mean from 'List Comprehension'? I already learned that is like set builder notation | 0.61 | t3_txk1nm | 1,649,244,748 | |
Python | Scrape Naver Related Search Results with Python |
Full DIY code:
```python
import requests, json
from parsel import Selector # https://parsel.readthedocs.io/
# https://docs.python-requests.org/en/master/user/quickstart/#passing-parameters-in-urls
params = {
"query": "minecraft", # search query
"where": "web" # web results. works with nexearch as w... | 0.4 | t3_txif8z | 1,649,238,341 |
Python | Extending pylint with plugins | 0.5 | t3_txfsuz | 1,649,226,686 | |
Python | A Practical Introduction To Web Scraping With Python | 0.96 | t3_txf65f | 1,649,224,130 | |
Python | Python email sender | Hi everyone, I have created a script that sends an email to whoever I want using data retrieved from an API (I chose News API, and it will send me the top 20 news of the day).
[https://github.com/jrodriigues/news-email-sender](https://github.com/jrodriigues/news-email-sender)
Take a look, let me know what you think,... | 0.56 | t3_txd85l | 1,649,217,069 |
Python | I made my first ever programming assignment into a youtube tutorial | 0.5 | t3_txbulk | 1,649,212,511 | |
Python | Termtyper - Typing in terminal is fun ! | Termtyper is a TUI (Text User Interface) typing application that provides you a great feel with typing with a lot of options to tweak!
It is highly inspired by [monkeytype](https://monkeytype.com/)
It is built on top of [textual](https://github.com/Textualize/textual) which provides the UI for the application
github... | 0.82 | t3_txbsdd | 1,649,212,316 |
Python | Wednesday Daily Thread: Beginner questions | New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions!
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/pytho... | 1 | t3_tx8uqj | 1,649,203,209 |
Python | Why and how to use conda? | I'm a data scientist and my main is python. I use quite a lot of libraries picked from github. However, every time I see in the readme that installation should be done with conda, I know I'm in for a bad time. Never works for me.
Even installing conda is stupid. I'm sure there is a reason why there is no "apt install... | 0.9 | t3_tx73j8 | 1,649,198,092 |
Python | Online coding video tutorials - Opinions | Hello everyone,
I am currently creating some space science + Python [YouTube tutorials](https://youtube.com/c/Astroniz). In these videos I do some coding and provide some explanations on what I am doing, the science behind it etc.
Now I was wondering whether this is a good approach at all. I really like creating some... | 0.6 | t3_tx6k1q | 1,649,196,551 |
Python | Rubik's Cube Model in Python using OOP | I've been thinking for a while about developing a model to simulate a Rubik's cube in Python. I wanted to make use of object-oriented programming, and this project was the perfect excuse to get down to work. 💻⌨️🖖
https://carlosgrande.me/rubiks-cube-model/ | 0.78 | t3_tx6gfb | 1,649,196,238 |
Python | What happened between SciPy creater Travis Oliphant and Enthought? | I was listening to his interview on the [Lex Friedman podcast](https://open.spotify.com/episode/2U2AkSSuAzmZi7nmGzJboW?si=28e8c7d915e04f75) and he mentioned that he is no longer friends with the founder of Enthought because he started Anaconda. I can't find any details online, does anyone know the story? | 0.79 | t3_tx67bv | 1,649,195,579 |
Python | My first package to pypi. Connpy: Network connection manager and automation module | Hi!
So a little bit of background, I'm a network engineer (ccie), with 10+ years of experience in networking, and i'm a really lazy guy so usually i try to automate and script everything. long time ago i created my bash connection manager and been using it since. A month ago i decided it was time to upgrade it to pyth... | 0.67 | t3_tx604l | 1,649,195,030 |
Python | "Bicycle or Metro": My first interactive web app using Dash/Flask. | I collected data from the Google Direction API and built an interactive app comparing travel duration times between Bicycle and Public Transportation in Santiago, Chile.
Each specific route to a point in the map can be accessed by clicking on the destination point, and the relevant information will be displayed.
The ... | 0.81 | t3_tx4xj4 | 1,649,192,222 |
Python | Create a timelapse of any canvas area and any timeframe of r/place | [(Github) Source code and download](https://github.com/gislerro/rplace-cropped-timelapse-creator)
Configuration in the config.yaml file:
* range of images to create timelapse for [(archive of snapshots here)](https://rplace.space/combined/)
* granularity of frames (take every n-th image - determines speed of timelaps... | 0.87 | t3_tx3x67 | 1,649,189,564 |
Python | Applications of Python | Hey! Anyone who is interested in learning about the applications of python in the field of automation should check out [this](https://medium.com/@Nick_27/automation-using-python-66ec75a6b0ba) article.
It really encourages you to learn more about the language! | 0.3 | t3_tx0enu | 1,649,180,149 |
Python | Learning Python | Python just makes so much freaking sense! LOVING IT!! | 0.8 | t3_tx0cns | 1,649,179,997 |
Python | Running a live 45-minutes session on the fundamentals of observability, OpenTelemetry, and distributed tracing with microservices messaging systems (Kafka, RabbitMQ, etc) | Hi everyone, we're running another live OpenTelemetry and observability fundamentals session - Wednesday, April 20 at 11 AM PDT.
You will learn how to instrument your message brokers and apps to capture traces with OpenTelemetry.
This session is at no cost and vendor-neutral.
You can expect in this session: 45 minu... | 0.4 | t3_tx097t | 1,649,179,745 |
Python | As of today, how well does Anaconda run on M1 MacBook Pro? | Last year, there was an article from the developer that they were working on M1 version of the software suite. However, I don't seem to hear any news after that. Are they still working on it? I recall there were some compatibility issues with some packages last year. How well does it run on M1 MacBook Pro as of today? ... | 0.75 | t3_tww564 | 1,649,168,665 |
Python | Attending my first PyCon US 2022 (SLC) - tips? | What recommendations would you have for someone new to this conference?
I am new to programming and a beginner learning python (self-taught). Hoping to network, learn about new ideas to get my excited, and do some running in a new place. | 0.9 | t3_twr5wj | 1,649,151,796 |
Python | Reason to go from Python3.9 to 3.10 ? | I don't find and real advantages and all i have to do works fine on 3.9.
Change my mind. | 0.42 | t3_twq7my | 1,649,147,520 |
Python | I'm presenting live in 6 hours at Microsoft Reactor online about troubleshooting Python applications, especially on Kubernetes. (Part 2 of the Python on Kubernetes series.) Let me know your questions in advance | 0.89 | t3_twpt1m | 1,649,145,681 | |
Python | Python Firebird-driver 1.4.3 released | 0.71 | t3_twpopx | 1,649,145,186 | |
Python | How to Execute SQL Queries in Python and R Tutorial | 0.58 | t3_twpo9w | 1,649,145,127 | |
Python | Community for Python app developers | Hey, I'm curious if there is a dedicated community of Python developers who are making apps with frontend interface. (As opposed to data analysis or training ML models).
For example, developers who are using Streamlit or Anvil. (Are there any other big ones?)
Do you know any such communities? | 0.64 | t3_twpbuw | 1,649,143,631 |
Python | Python and the Truth | Hi folks,
Excited to share some notes on Python's Truth values, their internals, and possible applications.
[https://towardsdatascience.com/python-and-the-truth-90cf08380246](https://towardsdatascience.com/python-and-the-truth-90cf08380246)
Thanks and happy reading! | 0.5 | t3_twoqza | 1,649,141,265 |
Python | Why is Python becoming indispensable in IoT Industry? | IoT Applications are usually pre-built SaaS (software-as-a-service) applications. These can present and analyze captured IoT sensor data to businesses via dashboards. They use machine learning algorithms and analyze huge amounts of connected sensor data in the cloud. Real-time IoT alerts and dashboards provide you... | 0.27 | t3_two0m1 | 1,649,138,209 |
Python | I got a little problem with my visualization program. | I find a great code of visualizing the PSO algorithm in 2D. And I tried to change it into 3D.I've done the majority part of it, but now the particles just don't update, they superpose over the old ones.
[Figure shows like this](https://preview.redd.it/fhiagfvecnr81.png?width=1102&format=png&auto=webp&s=6ed... | 0.5 | t3_twm7ke | 1,649,131,590 |
Python | Visualize Differential Equations | [https://www.youtube.com/watch?v=gH47pQHeKDE](https://www.youtube.com/watch?v=gH47pQHeKDE)
Normalize for your highest order derivative and plug in your initial conditions to numerically solve any differential equation | 0.57 | t3_twjqds | 1,649,123,664 |
Python | Use nested GitHub Action Runners to reduce costs by up to 50% for multiple jobs in one workflow | 0.9 | t3_twhorh | 1,649,117,806 | |
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 ... | 0.72 | t3_twha21 | 1,649,116,810 |
Python | Predicting the Champions League with Python! (21/22) | 0.67 | t3_twgvyu | 1,649,115,763 | |
Python | I published my first tutorial on YouTube: Insertion sort explained + Python code | 0.71 | t3_twe9kh | 1,649,109,341 | |
Python | I made use of Zoho Sheets and used it as a database engine | I started working on this yesterday and have just finished rewriting it into classes and publishing it as a PyPI project :)
This module uses Zoho Sheets (which is completely free to use) as a way to store data.
I'm keen on the development of ZohoDB.py and aiming to keep improving it's performance in order to make it a... | 0.86 | t3_tw954f | 1,649,096,725 |
Python | Create python logo on r/place | I in the r/place we can create a python logo on 384,1618 | 0.29 | t3_tw8p3f | 1,649,095,625 |
Python | Voice Controlled Switch Using Arduino & Python | 1 | t3_tw8ace | 1,649,094,644 | |
Python | Python f-strings Are More Powerful Than You Might Think | 0.93 | t3_tw69i5 | 1,649,089,724 | |
Python | Book for python network programming | Hey folks, can you please recommend a good book(s) for network programming? Something that would cover subjects from low level TCP/IP, to SMTP/SSH/HTTP/etc libraries? Thanks in advance! | 1 | t3_tw5tru | 1,649,088,639 |
Python | Head-first Kubernetes - A hands-on tutorial for beginners | 0.85 | t3_tw50n4 | 1,649,086,671 | |
Python | Active Learning in Machine Learning Explained | 0.57 | t3_tw4o2v | 1,649,085,795 | |
Python | Can my IT department tell (without any sortve deep dive) that I'm using a python script to login? | I have to do timesheets for my crew every morning, and it takes about twenty minutes a day. I've long since thought I could automate this, and write a little proof of concept and it worked.
It would however involve using pyautogui to enter my login information including password into our time management software. Do ... | 0.95 | t3_tw2ozp | 1,649,080,757 |
Python | StackSocial Discount. Are their courses any good? | I saw that they were offering a 'complete Python certification bundle' for $35 'reduced from $2k' if you can believe that.
I'm beginner to intermediate - written some Flask websites and programmed some automated stuff, so I was wondering if anyone would recommend this sort of thing to get into Python programming prof... | 0.43 | t3_tw2ihc | 1,649,080,260 |
Python | Rock, Paper, Scissors | LMK what I can do differently. Thanks!
​
running = True
while running:
player1 = input(" (Player1) Rock, Paper, or Scissors:\\n >")
player2 = input(" (Player 2) Rock, Paper, or Scissors:\\n >")
if player1.lower() == "rock" and player2.lower() == "scissors":
print("Player 1 Wins!") ... | 0.6 | t3_tw0wkp | 1,649,075,628 |
Python | Solving and Animating the 3D Double Pendulum in Python: Sympy for algebra, Scipy for numerically solving differential equations, and vpython for 3D animation | 0.81 | t3_tw0eck | 1,649,073,978 | |
Python | ConfigParser - manage user-editable settings for your Python programs | 0.43 | t3_tvzwqb | 1,649,072,412 | |
Python | Scraping Naver Videos in Python | Full code:
```python
import requests, os, json
from parsel import Selector
def parsel_scrape_naver_videos():
params = {
"query": "minecraft", # search query
"where": "video" # video results
}
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit... | 0.5 | t3_tvzlgk | 1,649,071,317 |
Python | Creating A Modern Python Development Environment | 0.69 | t3_tvyvov | 1,649,068,761 | |
Python | Different types of implementation of polymorphism | Hi All,
I am reading about OOP in python and wonder if we implement ` __add__`, `__sub__` etc, it looks to me thst we are doing operator overloding. So my question is, that is it correct to think like that and does this implementation falls under AdHoc polymorphism in python.
Thanks
Pradeep | 0.6 | t3_tvx5ee | 1,649,061,795 |
Python | CaptchaCracker - Deep Learning-based Captcha Recognizer | Hello!
I made a python open source project.
**Github Repository:** [https://github.com/WooilJeong/CaptchaCracker](https://github.com/WooilJeong/CaptchaCracker)
# CaptchaCracker
## Introduction
CaptchaCracker is an open source Python library that provides functions to create and apply deep learning models for Captc... | 0.56 | t3_tvwizf | 1,649,059,109 |
Python | QualityScaler 1.1.0 - Image/video upscaling & enhancement GUI app based on BRSGAN & RealSR_JPEG | Image/video upscaling GUI app based on BRSGAN & RealSR\_JPEG
[GUI interface](https://preview.redd.it/9rxldsstugr81.png?width=1392&format=png&auto=webp&s=4760f210cb169dc95679b5a5183ed0e142cbbad4)
## Links.
Github -> [https://github.com/Djdefrag/QualityScaler/releases/tag/1.1.0](https://github.com/D... | 0.83 | t3_tvwbu7 | 1,649,058,226 |
Python | Machine Learning Sandbox in Python | Hope you are doing well. I was reaching out to share one of my projects with all of you . The idea was to build a sandbox of ML algorithms that people could use to demonstrate classical ML algorithms and also break down the same with simple from-the-scratch implementation in Python. You can simply fork the repo and sta... | 0.9 | t3_tvw388 | 1,649,057,193 |
Python | Is List Comprehension The Most Effective Way to Solve Any Tasks? | Python | 0.25 | t3_tvut3j | 1,649,052,016 | |
Python | Choosing Python over other languages | This is an interesting blog that I read. It's written by Brett Cannon who is a core developer of Python. It essentially explain why you shouldn't automatically ignore Python because it's not as fast as some other programs.
​
[Selecting a programming language can be a form of premature optimization (snarky... | 0.69 | t3_tvubzw | 1,649,050,282 |
Python | Open-Source python package to find relevant images for a sentence | ​
[Search results for \\"a happy potato\\"](https://preview.redd.it/2cnopvno0gr81.jpg?width=744&format=pjpg&auto=webp&s=eecc9e9948c386fbd959289257c347fa19c35644)
You **don't** need to caption the images for the search to work, and it is **not** just limited to objects in the image but an overal... | 0.86 | t3_tvs0dp | 1,649,042,711 |
Python | If you're bored at work or school. | Try to open Python Idle and Import antigravity module
`import antigravity`
Then laugh. | 0.87 | t3_tvp8uf | 1,649,034,470 |
Python | swagger-gen: the Swagger spec generator you've been waiting for | Hey Python people,
As a .NET developer by day, I've always been bummed by the lack of real Swagger spec generators available for Flask compared to Swashbuckle for ASP.NET. I personally don't want to write some markup or clutter the service with a bunch of code to generate the docs, I wanted something that would gener... | 1 | t3_tvp63o | 1,649,034,247 |
Python | Is r/Python participating in r/place? | If so, where can one get involved? | 0.25 | t3_tvom5q | 1,649,032,639 |
Python | iMandelbrot is a tool made out of PyGame that visualizes the nature of a Mandelbrot fractal! | # Mandelbrot: An Interactive Module
**iMandelbrot** is a **learning aid** purely made out of **PyGame** that visualizes the nature of a **Mandelbrot** fractal!
GitHub Link: [https://github.com/wonmor/iMandelbrot-Plotter](https://github.com/wonmor/iMandelbrot-Plotter)
## Public Release 1.2.0
**DEVELOPED** AND **MAIN... | 0.67 | t3_tvofnv | 1,649,032,116 |
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 Proj... | 0.81 | t3_tvnusp | 1,649,030,411 |
Python | Python libraries for hierarchical or multilevel time series analysis | What are the python libraries best suited for analyzing time series with hierachical or multiple levels like geographic levels between neighborhoods within cities and cities within states. | 0.76 | t3_tvmdfk | 1,649,026,196 |
Python | Python and Blockchains | Why is Python is not used as much in blockchain technology, Specially in the core of blockchains | 0.22 | t3_tvl7m8 | 1,649,023,159 |
Python | Two new articles this week: Beginner tutorial on classes and object-oriented programming with exercises and Python careers research | Hi all,
In the last few days, I had a lot of fun publishing two brand new articles for you:
* [Python Classes Zero to Expert: A Tutorial with Exercises](https://codesolid.com/getting-started-with-python-classes/)
For new programmers just beginning with Python and learning about object orientation, this beginner-... | 0.85 | t3_tvkqlt | 1,649,021,930 |
Python | we need to make the python logo in r/place | Don't you think? Imo it would be so cool if some of us got together and started to plan it :) | 0.19 | t3_tvjg5x | 1,649,018,716 |
Python | Twitter read and analysis | # Import tweepy to work with the twitter API
import tweepy as tw
# Import numpy and pandas to work with dataframes
import numpy as np
import pandas as pd
from matplotlib import pyplot as plt
consumer_key ='mycode'
consumer_secret = 'mycode'
access_token ='mycode'
... | 0.6 | t3_tvj90z | 1,649,018,223 |
Python | Dice roll Probability | import random
import collections
import time
##Outcome List of Combinations Total
##2 1+1 1
##3 1+2, 2+1 2
##4 1+3, 2+2, 3+1 3
##5 1+4, 2+3, 3+2, 4+1 4
##6 1+5, 2+4, 3+3, 4+2, 5+1 5
##7 1+6, 2+5, 3+4, 4+3, 5+2, 6+1 6
##8 2+6, 3+5, 4+4, 5+3, 6+2 5
##9 3+6, 4+5, 5+4, 6... | 0.33 | t3_tvinqx | 1,649,016,754 |
Python | Who exactly is a python developer? I know this is a broad term which include many paths. But do we have to cover them all to become one? much like, one term to rule them all? | Hii all
I've seen the term "Python developer" been around online, and the roadmap to become one. As we all know, it does include many paths, web dev, analysis, DS, ML and so on. To be called a python dev, do we actually need to cover all potential paths and then just choose one? or we should be able to do anything u... | 0.42 | t3_tvi6ql | 1,649,015,670 |
Python | python logo in r/place | guys let’s make the python logo
discuss coordinates and such in the comments | 0.3 | t3_tvhwuf | 1,649,015,005 |
Python | I am working on some 3D reconstruction using TOMVIZ, does anybody know any tutorial for segmentation in this software? | 0.33 | t3_tvhi0d | 1,649,014,055 | |
Python | Introducing File Folder Hider! (made with Tkinter Python) | I've been working on this project for a couple of months now, first it was in the from of a terminal where the user had to give certain commands to get the job done, but now, its a fully-fledged GUI with buttons and labels to guide you. It has its two main features, "Hide" and "Unhide", which help you hide and unhide a... | 0.75 | t3_tvflrx | 1,649,009,385 |
Python | I made a video comparing different data storage formats that python users should consider. Feedback welcome! | 0.75 | t3_tver6p | 1,649,007,270 | |
Python | Easier Regexps | 0.2 | t3_tveh1e | 1,649,006,548 | |
Python | A Redux inspired store pattern for asyncio applications - SimpleEventMonitor | So, recently I had to deal with the issue of setting up a solution to monitor a few on-prem deployments for health status. The on-prem clusters were configured to send emails with multiple tables with the status of every node etc.
Well, it is a pretty straightforward solution was writing a python script to check the m... | 0.73 | t3_tve7uh | 1,649,005,890 |
Python | magic-timer: Conveniently get a rough idea of how long things take. (package) | 0.62 | t3_tvcnmr | 1,649,001,856 | |
Python | Darts in higher dimensions | While browsing YouTube, I came across the following video in which a little puzzle is presented that is solved mathematically. Using maths, an answer was presented that I validated by implementing a simulation.
I thought this was a fun little challenge to program. Maybe others want to give it a go as well?
How wou... | 0.63 | t3_tvbluw | 1,648,999,132 |
Python | r/Place | Are people interested in putting the 2 snakes in there? | 0.22 | t3_tvakqu | 1,648,996,309 |
Python | Simple and Super Easy-to-use Colabs | [Github](https://github.com/BreezeWhite/interesting-colabs)
Tired of figuring out how to use a research demo colab? Feeling lost in the arrangements of all the messy colab blocks and information?
I want to share my personal collections of colabs that is definitely easy to use. This is not just another “awesome list” ... | 0.75 | t3_tva26l | 1,648,994,803 |
Python | Instagram bot and Data gathering with GUI | Hi,
InstaMachine is a post-oriented Instagram bot which means it is more focused on gathering data and storing it inside the SQLite database. I made this app solely to put to test my web scraping abilities as a beginner programmer and build up some portfolio, therefore I did not use any python's Instagram library such... | 0.5 | t3_tv9nz9 | 1,648,993,681 |
Python | Python beginners created these games based on my tutorials! What do you think? | 0.68 | t3_tv9cin | 1,648,992,723 | |
Python | Python open-source OpenBB Terminal against Bloomberg Terminal | 0.95 | t3_tv7xqp | 1,648,988,114 | |
Python | How is PyPy Tested? | 0.83 | t3_tv7nyw | 1,648,987,167 | |
Python | PtPython as default Django shell - my first Django package | Hey there!
I've built a package to use PtPython as default Django shell.
Due to extra functionalities of PtPython, I'm using that rather than Python and maybe many of you using ptpython too so I tried to make it default shell in Django framework.
You can give it a try:
`pip install django-ptpython`
Github reposit... | 1 | t3_tv7jej | 1,648,986,698 |
Python | Python dictionary implementation | 0.73 | t3_tv4p4i | 1,648,974,980 | |
Python | Share Python Code Snippets Like A Pro Without Using GitHub | 0.38 | t3_tv33br | 1,648,968,433 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.