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 | python-nbxmpp 2.0.6 out! | 0.6 | t3_tpi6fh | 1,648,381,174 | |
Python | Backtesting A Put Option With An Example Of A Sell Put | Here's a simple post for people looking to try to backtest a put option strategy, or even a sell put strategy. I did this up because I was trying to look at a stock with a favorable put premium, and wanted to see based on a historical basis what are the chances of profit if I kept selling puts on these underlying at th... | 0.87 | t3_tpggqk | 1,648,373,495 |
Python | I made a Python program that AUTOMATICALLY edits YouTube Videos! | https://youtu.be/WYiKb5Ggtjc | 0.9 | t3_tpgeiw | 1,648,373,209 |
Python | I've created a extension for the Tornado framework that makes working with the framework easier and code development faster. | The extension is located in the [PyPi](https://pypi.org/project/usernado/) and you can easily install and use it. But the documentation and doc strings are not complete. This can be a good starting point if you want to [participate in open source](https://github.com/reganto/Usernado/issues).
Install it via pip: `pip i... | 0.74 | t3_tpfzq3 | 1,648,371,196 |
Python | Using Python and Django, I've built to a GPT-3 powered web application to help myself write better | I am good in writing in my native language but when it comes to my second language, sometimes I struggle. So, for this reason, using Python and Django, I've built to a GPT-3 powered web application to help myself write better.
I've been using it for a while and it is working so good!
[https://www.youtube.com/watch?... | 0.5 | t3_tpb1qd | 1,648,349,987 |
Python | I made my first gui program! | I finally made a gui using tkinter. Its a super simple program that takes in an image and then makes it into text art using the braille unicode characters. You can specify the final dimensions of the characters. Also you can control how sensitive it is. Seemed like a fun thing to try!
Not many ive told have been inter... | 0.84 | t3_tpak0x | 1,648,348,186 |
Python | Tools for designing hardware in Python | Any hardware designers here who use Python for designing hardware? There are a bunch of libraries that all seem promising [MyHDL](https://www.myhdl.org/), [PyRTL](https://github.com/UCSBarchlab/PyRTL), [PyVerilog](https://github.com/PyHDI/Pyverilog), [PyLog](https://github.com/hst10/pylog), [PyMTL3](https://github.com/... | 0.72 | t3_tpa4eo | 1,648,346,641 |
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. | 1 | t3_tp7ye1 | 1,648,339,210 |
Python | Live video to ascii | Hi!
​
First time posting, this is a small passion project which I coded in my free time.
[https://github.com/DSERIOUSGUY/whoami.git](https://github.com/DSERIOUSGUY/whoami.git)
It basically converts Image/live video to ascii art (can save as Image or text) using openCV.
Currently it does not save video a... | 0.78 | t3_tp684n | 1,648,333,884 |
Python | toolgui: A modular event-driven GUI system for quickly building tools with Python and pyimgui. | 0.86 | t3_tp50ru | 1,648,331,504 | |
Python | Arcade version 2.6.13 has been released | Arcade, a 2D graphics library, has released version 2.6.13.
[https://api.arcade.academy/en/latest/development/release\_notes.html](https://api.arcade.academy/en/latest/development/release_notes.html)
​
* New Features
* Arcade can now run in headless mode on linux servers **opening more possibilities f... | 0.88 | t3_tp4o3d | 1,648,330,422 |
Python | Why is Python so popular? | I am sorry if this is provocative to anyone, but personally I can't stand Python. I hate the indentations, Python is slow, no private keyword in OOP, dynamically typed ...
Obviously I can see that it has its reasons to be popular in certain areas like data science. But why in the world in the backend for production l... | 0.28 | t3_tp3od4 | 1,648,327,393 |
Python | Space Science with Python - AI 1-9: A Convolutional Approach | Hey everyone,
the asteroid reflectance spectra project reaches almost its end. There are 5 more videos to come and then I will focus on another topic (Near-Earth Objects).
Anyway, spectra are still amazing and I show in today's session how to conduct an ML multi-class classification experiment using keras and Conv1... | 0.67 | t3_tp0vo1 | 1,648,322,880 |
Python | Show r/python: Sailor - a tiny PaaS to install on your servers/VPS that uses git push to deploy micro-apps, micro-services, sites with SSL, on your own servers or VPS | Hey Pythonistas, here's a tool that I would like to share with y'all that allows you deploy multiple apps on servers/VPS. Let me know what you think and some feedback or what you would like to see in it.
Introducing, Sailor. [https://github.com/mardix/sailor](https://github.com/mardix/sailor)
**Sailor** is a tiny **P... | 0.67 | t3_tozhrt | 1,648,318,743 |
Python | Interview with a Postdoc, Junior Python Developer in 2022 | 0.93 | t3_toy9gu | 1,648,315,157 | |
Python | What is the most pythonic way to limit while loop iterations? | Hi all
Whenever I write a while loop, I always want to limit the number of iterations it can run to avoid infinite loops while developing the program, what would the most pythonic way of doing that?
theres obviously the basic
n = 0
while condition and n < 100:
n += 1
but the `n+=1` can easily g... | 0.8 | t3_towbf7 | 1,648,311,909 |
Python | Image Processing With the Python Pillow Library – Real Python | 0.82 | t3_tov052 | 1,648,310,781 | |
Python | oCrypt0r - AES encryption library | Hello everyone!
I have decided to for the first time, try my hand at making an encryption package/library. It uses salted AES encryption.
As of right now, I'm not sure what else to add to it or do as I have everything pretty much covered in terms of what could be encrypted. From just normal messages/strings to file... | 0.6 | t3_tosyou | 1,648,308,863 |
Python | PIPELY - new lightweight pipeline library | hey there, just released a new version of `pipely` \- a lightweight pipeline library that can trigger any sequence of classes in any order.
# Simple Example:
create `collect.yaml`
steps:
a1_print:
exec: src/file1.py:firstA
a2_print:
exec: src/file1.py:secondA
fina... | 0.73 | t3_tosvcq | 1,648,308,584 |
Python | Simple Key Event Sending to an Application Wrapper I made | I made a Python library to send inputs to an executable, useful for scenarios such as having a neural network send decisions to a game. Essentially a wrapper around the win32api.
You can send events to a window in just 2 lines:
hwnd = pyinput.get_handle(window_name) # Gets the handle
pyinput.press_key... | 0.71 | t3_toryjt | 1,648,305,770 |
Python | Encrypto - A simple way of complicating/encrypting data | This is a repost I made to fit community guidelines.
*Meet Encrypto, a revolutionary technology that can protect your data from the government **(Joke Intended)** and prevent the Feds from understanding your text.*
The code itself does a simple task. When asked to encrypt data, it will generate two random keys. One t... | 0.68 | t3_tonad8 | 1,648,296,993 |
Python | Creating mp4 clips with soccer data and Python | Hi Pythonistas! I’ve updated my package to allow users to creat mp4 clips of soccer data. Here is the short tutorial I wrote up on how to use it: https://todofootballclub.com/?p=1056.
I’ve also run into an issue of wanting to use latitude and longitude data in the future but realized there is a learning curve with tra... | 0.9 | t3_tomsiv | 1,648,295,093 |
Python | NiceScaler update 1.3.0 | &#x200B;
[GUI](https://preview.redd.it/gogk3hgavop81.png?width=2790&format=png&auto=webp&s=31396204dac0bb003f7ff7920a4c4555bf15109c)
[example upscale](https://preview.redd.it/q9nwpoz8vop81.jpg?width=2486&format=pjpg&auto=webp&s=955eb9817ddc84a6d9392b00cf67d11b35577253)
Itch -> [https:/... | 0.94 | t3_tok71u | 1,648,283,523 |
Python | The Oregon Trail | How many have ever played The Oregon Trail? I remember playing it in my later days of High School. Not the video game but the teletype version. I just ported over the original version from Fortran to Python.
If you want to read out the different parts of the port or even get the source here are some links:
[https://k... | 0.93 | t3_toa6c6 | 1,648,256,653 |
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.75 | t3_to8lbi | 1,648,252,810 |
Python | What's the dumbest, trivial, shoddily-written project you've made that somehow impressed a non-programmer? | I wrote a script that grabs an Overwatch screenshot, tries to recognize whatever hero portraits are present on the tab screen, then copies some text making hero suggestions into your clipboard. I'm 90% certain that the one person in the hiring process that sounded impressed when I mentioned it didn't actually look at i... | 0.93 | t3_to8jhz | 1,648,252,736 |
Python | AI Project Ideas | Hi everyone,
I need to make an AI project with full-fledged programming ... it has to be based on a social issue nd focused mainly on the data science domain. Does anyone have any suggestions for an idea that can be implemented using AI? I'm open to anything as it's a group project and we're mainly putting forth any ... | 0.82 | t3_to33to | 1,648,246,367 |
Python | pointers.py - segmentation faults in python | 0.67 | t3_tnz5uw | 1,648,242,515 | |
Python | Kids Learn to Code in Python with the Raspberry Pi Foundation | 0.85 | t3_tnw8zx | 1,648,234,236 | |
Python | I've built a wrapper that makes building Telegram Bots a lot easier | It's called **MATE** (*Easy Telegram Application Maker*, but reversed lol) and it automatically handles the boring under the hood stuff, letting you focus on the logic of your app.
It comes with (fairly) complete **documentation** & a **PyPI** release.
check it out here: [https://github.com/SudoOmbro/MATE](https:... | 0.81 | t3_tnsarp | 1,648,229,199 |
Python | I Made a Hangman Game with Music, Light Artwork, and Sound Effects (GitHub Repo Below) | As my first python project, I decided to create a hangman game with music, light artwork, and sound effects.
After completing PY4E on Coursera, I decided to create a program that combined all elements from the course. In all, it uses urllib for web scraping, sqlite3 to create and manage the leaderboard and wordbank, ... | 0.89 | t3_tns9go | 1,648,229,099 |
Python | A free and flexible translation library in python | Hi y all,
*I'm not making this post only to promote the project. I also want to invite contributors and get feedback.*
Feel free to check the GitHub [repo here](https://github.com/nidhaloff/deep-translator)
deep-translator is a flexible and **free** translation library that supports multiple translators.
I tried t... | 0.83 | t3_tnp85j | 1,648,224,421 |
Python | GitHub - Rog3rSm1th/Frelatage: The Python Fuzzer that the world deserves | 0.43 | t3_tnovr2 | 1,648,223,456 | |
Python | Python Selenium Tutorial #6 - Bypass Detection using plugins, settings & proxies | 0.83 | t3_tnmxy8 | 1,648,217,926 | |
Python | Python - LinkedIn Skill Assessments Quizzes with Answers | MeshWorld | 0.36 | t3_tnljc5 | 1,648,213,623 | |
Python | Python Pub/Sub | Let's see how far this rabbit hole goes. It's late evening. I started reading up on networking. It's 2am. Let's see how Redis implements pub/sub under the hood. Basically, I ended up writing my own pub/sub implementation in Python:
[https://github.com/Salaah01/py-pub-sub/blob/master/server/server.py](https://github.co... | 0.6 | t3_tnkxf3 | 1,648,211,635 |
Python | Value objects with Python | Hello r/Python
This is my first post here.
I created a blog post about value objects with Python.
[https://blog.szymonmiks.pl/p/value-objects-with-python/](https://blog.szymonmiks.pl/p/value-objects-with-python/)
&#x200B;
Code examples are available on my GitHub [https://github.com/szymon6927/szymonmiks.pl/tre... | 0.6 | t3_tnk6p3 | 1,648,209,000 |
Python | Ethereum Price Email Alerts With Python | 0.11 | t3_tnjf86 | 1,648,206,202 | |
Python | Reactivex like operators that can be used directly on async iterables | I'm a fan of the [operators](https://rxpy.readthedocs.io/en/latest/reference_operators.html) available in ReactiveX. I'm not a fan of observables, and all the other cruft that comes with using reactivex. I would much rather be writing async generators, and using them in async for loops.
So I've started writing a libr... | 0.88 | t3_tnifu4 | 1,648,202,004 |
Python | Scrape Google Top Carousel Results in Python | Full code:
```python
import requests, lxml, re, json
from parsel import Selector
# https://docs.python-requests.org/en/master/user/quickstart/#custom-headers
headers = {
"User-agent":
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.83 Safari/537.36"
}
params... | 0.81 | t3_tngota | 1,648,193,728 |
Python | Build a Word Guessing Game in Python [video + source code] | Here is the link for the video :
[https://youtu.be/M1t4RJ5XRHE](https://youtu.be/M1t4RJ5XRHE)
Here is the link for the source code :
[Word-Guessing-Game/wordgame.py at main · The-Nerdy-Dev/Word-Guessing-Game (github.com)](https://github.com/The-Nerdy-Dev/Word-Guessing-Game/blob/main/wordgame.py) | 0.8 | t3_tngfjr | 1,648,192,532 |
Python | Build your own Feature Rich J.A.R.V.I.S in Python - Python Project | 0.67 | t3_tngd7q | 1,648,192,249 | |
Python | Meta donates $300,000 to the Python Software Foundation | 0.91 | t3_tnfh9l | 1,648,188,306 | |
Python | Friday Daily Thread: Free chat Friday! Daily Thread | Use this thread to talk about anything Python related! Questions, news, projects and any relevant discussion around Python is permitted! | 1 | t3_tn96gz | 1,648,166,410 |
Python | Python for AWS Lambda Functions: A Beginner's Guide and Tutorial | [https://codesolid.com/python-and-aws-lambda-functions](https://codesolid.com/python-and-aws-lambda-functions/)
I just finished this -- it's very much focused on Python developers who may not have written an AWS Lambda function before and are wondering what all the fuss is about. Enjoy! | 0.83 | t3_tn7qfv | 1,648,162,106 |
Python | A simple python3 script to keep 2 folders synced | Hi r/Python, I'm here today to showcase a project that I've developed to experiment with python, github, ci/cd best practices and pytest.I'm not really a beginner, I've been coding in python for a while now (I'm a junior GCP developer). This post is just a request for feedback and/or suggestion on how to improve from m... | 0.8 | t3_tn733z | 1,648,160,259 |
Python | Guido van Rossum on Twitter: It's happening! BPO is migrating to GitHub tomorrow. | 0.95 | t3_tn4lyj | 1,648,155,805 | |
Python | Is Spock-Config the only tool that integrates object-oriented config files and command-line interfaces? | [Spock-Config](https://github.com/fidelity/spock) allows one to create OO configuration files. That's how I roll. I currently use [PYdantic settings](https://pydantic-docs.helpmanual.io/usage/settings/) and it's great. But it does not offer command-line re-configuration of what you have in the OO config file.
Sure yo... | 0.67 | t3_tmz4yi | 1,648,150,974 |
Python | Performance: SQLAlchemy vs Django vs EdgeDB | 0.66 | t3_tmqev6 | 1,648,143,624 | |
Python | IDE-style autocomplete that integrates with Python tools (pip, pyenv, etc) | &#x200B;
https://reddit.com/link/tmleui/video/r3kh3f0pycp81/player | 0.82 | t3_tmleui | 1,648,139,283 |
Python | Github - Multiplatform (arm7, arm64, amd64) Docker Image for Celery with precompiled gevent | 0.75 | t3_tmcp8z | 1,648,131,220 | |
Python | Animating a Sprite Sheet in Python w/ PyGame | 0.8 | t3_tmbg9f | 1,648,129,996 | |
Python | How to create a digital clock with python easily | This tutorial is about creating a project using python language. I’m going to show you how to create a digital clock with Python. Before reading the article, if you like to know more about Python, you could check out these two important articles:
* [Why should I learn Python?](https://progskillss.com/why-should-i-lea... | 0.54 | t3_tmabdm | 1,648,128,741 |
Python | OpenTelemetry and Python: A Complete Instrumentation Guide | A blog post exploring how to instrument a Python application to emit tracing data (metric and log data interfaces are not stable quite yet). It examines:
* How auto-instrumentation of the same codebase works.
* The differences with manual instrumentation.
* How to mix manual instrumentation with auto-instrumentation.
... | 0.92 | t3_tm8jte | 1,648,127,261 |
Python | Web2py Framework in Python | 0.6 | t3_tm3sxx | 1,648,121,398 | |
Python | Tree Traversal Algorithms in Python-InsideAIML | 0.85 | t3_tm3jvl | 1,648,120,520 | |
Python | Scientific computation using NumPy library | 0.43 | t3_tm30b4 | 1,648,118,458 | |
Python | Learn Python yield interactively from your browser! | 0.67 | t3_tm2yyc | 1,648,118,307 | |
Python | RaViewer: parsing and displaying binary data straight from camera (made with Dear PyGui) | &#x200B;
[RaViewer screenshot](https://preview.redd.it/6e3n26fe7bp81.png?width=1220&format=png&auto=webp&s=9163087922bf30b0038e173e9290d6b56fa9f586)
[RaViewer demo](https://i.redd.it/s4m2bmsa7bp81.gif)
[RaViewer](https://github.com/antmicro/raviewer) is an open-source utility dedicated to parsing and... | 0.92 | t3_tm2wb6 | 1,648,118,019 |
Python | httpx worked fine for me... any reason to consider urllib3? | I've found [httpx](https://www.python-httpx.org/) to be very approachable for my API consumption tasks and less wordy than [urllib3](https://urllib3.readthedocs.io/).
Do you have a preference for API consumption (perhaps requests) and why? | 0.73 | t3_tm1grs | 1,648,111,891 |
Python | I created a Python Script to find out Broken links by scanning entire WordPress Website | I created a Python script to check links in all the WordPress posts to find out broken ones. I tried creating this after learning multi-threading based, I had this idea for so long because other broken link checking software such as SiteBulb and ScreamingFrog take very long time (\`24 hours) to crawl a one of my websit... | 0.92 | t3_tlzj7n | 1,648,103,526 |
Python | 5 Python Libraries for Automating OSINT Operations | 0.91 | t3_tlz7q5 | 1,648,102,201 | |
Python | Tutorial on GPU-based ray-casting with Python |
If you are interested in doing 'shadows' for a 2D game, here's a tutorial:
[https://api.arcade.academy/en/development/tutorials/raycasting/index.html](https://api.arcade.academy/en/development/tutorials/raycasting/index.html)
https://preview.redd.it/fd1dyzmoi8p81.png?width=1200&format=png&auto=webp&s=9... | 0.94 | t3_tlsb8q | 1,648,085,480 |
Python | Including packages in project | I've been working on project for a raspberry pi, which I've been writing on my PC in Pycharm, and SSHing over to my pi. What's the best way to move the whole project over, including the dependencies? Been just manually adding them on the pi and realized there has to be a better way.
Thanks! | 0.67 | t3_tlp1vn | 1,648,082,311 |
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_tlmt0a | 1,648,080,009 |
Python | Coin toss probability | import random
from collections import Counter
import itertools
##method for coin toss
def cointoss():
rand_i = random.randint(0, 1)
outcomes = ["Heads", "Tails"]
#outcomes = [0,1]
return outcomes[rand_i]
#create list
list=[]
##Number of coin... | 0.44 | t3_tlkryn | 1,648,077,791 |
Python | Can we get hired just to do EDA’s in Python ? Exploratory Data Analysis using libraries- | I’ve been relatively new to Datascience, spent couple of years with sql, r, python, power BI & tableau.. I’ve specifically loved getting involved with EDA’s - what do you guys think ? | 0.33 | t3_tli7e4 | 1,648,073,230 |
Python | Where will Python be in the Web3 space? | Hi guys, I noticed that there are two prominent libraries for web3 applications: [web3.py](https://web3.py) and web3.js . After doing some searching online, I have found there is some preference for web3.js over [web3.py](https://web3.py). Does this mean that Python might be obsolete in Web3? | 0.32 | t3_tlhee1 | 1,648,072,417 |
Python | Pants 2.10: Multiple Python lockfile support, PyOxidizer, Thrift codegen, and better linter parallelization | 0.8 | t3_tlgwka | 1,648,071,777 | |
Python | Programming community for freetime team projects | The problem:
I started learning programming 3 year ago, partly in university, partly at home, and built a few larger projects since then. I have a lot of new ideas for projects, which are fun, but could also be profitable if done right. The problem is the scale of these imagined projects is too large to handle them al... | 0.67 | t3_tlg6u2 | 1,648,070,961 |
Python | Custom BurpSuite extensions in Python: recreating Cloud2Butt | 0.72 | t3_tlg281 | 1,648,070,801 | |
Python | Text Similarity w/ Levenshtein Distance in Python | 0.67 | t3_tldsug | 1,648,068,506 | |
Python | Mail merge in python | I have a excel/CSV data where in a single customer has multiple orders in different lines. Can I generate a list of text files in which each customer's multiple orders are present. Much like a invoice copy. Any clues on how to do this is highly appreciated ...
PS ... I am learning python | 0.8 | t3_tl9dbz | 1,648,063,812 |
Python | i created a game controller using Arduino touch sensor and python | 0.5 | t3_tl3raq | 1,648,057,722 | |
Python | Creating a Python CLI with Go(lang)-comparable startup times | Hi Folks.
I recently put some effort into creating a command line interface (CLI) made with Python.
Background: I started a new project called Gefyra, a tool for local application development directly with Kubernetes. Check it out the website [https://gefyra.dev](https://gefyra.dev) or have a glance at the code [http... | 0.82 | t3_tl3jwz | 1,648,057,171 |
Python | “Like it or not, it’s going to be primarily up to Python devs to crush the business side’s dreams AI can magically make their company better.” The CTO of an AI company explains why AI can be a waste of time and resources at most companies primarily because it’s retrofitted onto existing products. | 0.91 | t3_tkyuz8 | 1,648,052,349 | |
Python | Minos Demo - Stocks Index Wallet with Microservices | 1 | t3_tkv9ax | 1,648,045,935 | |
Python | Python Timer Functions: Three Ways to Monitor Your Code – Real Python | 0.8 | t3_tkv08a | 1,648,045,223 | |
Python | The top 5 advanced Python highly rated free courses On Udemy with real-world projects. | Hello,
&#x200B;
[Top 5 Python free courses](https://preview.redd.it/9p3qq8gacbp81.png?width=1024&format=png&auto=webp&s=b225e18de619f201c4aa711d229a72b5a7704aa2)
**The top 5 Python highly rated free courses On Udemy with real-world projects.**
[Course1: Applied Deep Learning Build a Chatbot Theory A... | 0.87 | t3_tkuqsi | 1,648,044,502 |
Python | (I think) I stress tested matplotlib for real-time graping. | &#x200B;
[Matplotlib Stress Test](https://i.redd.it/x3xvfvmeq4p81.gif)
It can run at 60 FPS if you push it to its limits, which is more than I need.
There are occasional hiccups, but I think it's fine.
I am developing a simple GUI for an open-source DAQ module called [PlainDAQ](https://www.crowdsupply.com/kuncu... | 0.79 | t3_tkt5v8 | 1,648,039,696 |
Python | Python Generators | 0.72 | t3_tksmex | 1,648,037,852 | |
Python | Bloxs: display your data in an attractive way in your notebook | Hi, I would like to share with you a small python package that I've created to display data in a notebook in an attractive way. The package is called `bloxs` and is available on GitHub https://github.com/mljar/bloxs
The package can display as a block following data:
- number with the title
- progress bar
- chart... | 0.74 | t3_tkrlom | 1,648,034,233 |
Python | How To Automate Your Statistical Data Analysis | 0.75 | t3_tkpe69 | 1,648,024,528 | |
Python | The Right Way to Compare Floats in Python | 0.78 | t3_tkp7wz | 1,648,023,709 | |
Python | Spotify LED Matrix | I created an LED matrix that takes your currently playing spotify song and displays it to an led panel. It uses a raspi 0w to create one thread to get data from the spotify api, and another to update the board. The code is rough around the edges, but I hope y'all enjoy it!
Demo:
https://reddit.com/link/tkp0xt/vi... | 0.9 | t3_tkp0xt | 1,648,022,796 |
Python | Yet another simple wordle searcher | It is a script that will help narrow down the list of possible solutions to a wordle puzzle. In the end, you still have to use your grey matter, and, depend on luck. It scrapes data from Lou Hevly's website (which provides a regex search functionality). And then it applies some simple filtering algorithms on the result... | 0.57 | t3_tkoi7q | 1,648,020,431 |
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... | 0.67 | t3_tkgwne | 1,647,993,608 |
Python | Flask web blog | Some days ago i made a Blog based-on Flask, it lets you add a custom password, username, upload small comments with HTML and it has a basic user authentication system!
I called it "comments" (because of it's feature, it let's you to post small text with custom HTML) [https://github.com/ZSendokame/comments](https://git... | 0.87 | t3_tkgecq | 1,647,992,128 |
Python | I Created a Visualization Package for Soccer | I’ve put my package on PyPi. The world of sports analytics, at least for soccer, is restricted. I wanted to learn how to analyze a game but found a large lack of data. Even worse, a lack of applications. I decided to creat my own Python package and help educate the public through my website. I’ve made a YouTube tutoria... | 0.57 | t3_tkgccb | 1,647,991,972 |
Python | Meta deepens its investment in the Python ecosystem | 0.95 | t3_tkedpx | 1,647,986,506 | |
Python | I made bubble slort. I dont think it looks clean but it works. Comments both in Polish and English | Here is image and link
[https://github.com/bibi100101/Bubble-Sort](https://github.com/bibi100101/Bubble-Sort)
https://preview.redd.it/t1oni4fc60p81.png?width=1920&format=png&auto=webp&s=76703d2816371f63a113f7d32130aa0cfaae37de
Showcase
Translation:
\-Lista Wcześniej = list before
\-Lista Pozniej = lis... | 0.5 | t3_tkdp7o | 1,647,984,659 |
Python | Declarative command line parser library [Heated Arguments] | I was trying out a bunch of different command line parser libraries recently and wanted to see if I could take a different approach. I have a proof of concept for a command line parser that let's you define parameters and sub-commands in a declarative way.
I have a repository with a couple demo scripts to show what t... | 0.72 | t3_tkcfmu | 1,647,981,274 |
Python | Today i released a small package called geoiter. Used for web scraping | # geoiter
iterates the planet.
**edit**
A simple tool to iterate coordinates within given boundaries.
The usage is mostly for querying/searching by location.
Geoiter provides many locations within a boundary, like a country.
Let's say Germany has in sum 5000 houses to sell. Then most platforms will only allo... | 0.94 | t3_tkbqms | 1,647,979,432 |
Python | Directories in Python |
Directories in Python
https://youtu.be/Qip7MToDr18
\#python #python3 #directories #os #PythonProgramming #tutorial #PythonForResearchers | 0.1 | t3_tkb40y | 1,647,977,755 |
Python | Top 5 Benefits of Python Web Development That You Need to Know | 0.29 | t3_tk9o0p | 1,647,973,886 | |
Python | I made a tutorial on How to convert Images to ASCII using pygame | Hi everyone! I have been looking at various image filtering libraries, and some of them have image to ASCII filters. So I thought, why not make it using pygame?
Tutorial can be found [here](https://www.youtube.com/watch?v=oEacnqQgE4A)
Source code can be found [here](https://github.com/tank-king/Tutorials/tree/main/Py... | 0.89 | t3_tk9jqo | 1,647,973,579 |
Python | Scrape Google Scholar Profiles from a certain University in Python | 0.75 | t3_tk8itk | 1,647,970,895 | |
Python | Text editors are stupid, change my mind | WHAT is the point of text editors for Python? Sure, they make you code faster but why not choose the standard IDLE? I mean, PyCharm never helped me. It always made a simple project too complicated to save. SO WHY CHOOSE TEXT EDITORS? | 0.08 | t3_tk7umy | 1,647,969,075 |
Python | Running a live 45-minutes session on the fundamentals of observability, OpenTelemetry, and distributed tracing in Python | Hi everyone, there's a live OpenTelemetry and observability fundamentals session - Wednesday, March 30 at 11 AM PST.
**You will learn how to instrument your apps to capture traces with OpenTelemetry in Python.**
This session is at no cost and vendor-neutral.
You can expect in this session: 45 minutes of core concept... | 0.72 | t3_tk71j6 | 1,647,966,912 |
Python | We developed a Python tool to generate a map of your embedded or edge distributed system | Hi guys, we recently developed a Python tool that allows you to generate and visualize a map of your embedded or edge distributed system. With the open-source project r/Luos, we are trying to code and make accessible CI/CD for these systems.
Is this feature useful for your needs?
&#x200B;
[Routing Table Luos](h... | 0.77 | t3_tk69zo | 1,647,964,904 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.