Python Daily
2.57K subscribers
1.48K photos
53 videos
2 files
38.9K links
Daily Python News
Question, Tips and Tricks, Best Practices on Python Programming Language
Find more reddit channels over at @r_channels
Download Telegram
As if there weren't enough packaging tools already: mitsuhiko/rye: an experimental alternative to poetry/pip/pipenv/venv/virtualenv/pdm/hatch/…
https://github.com/mitsuhiko/rye

/r/Python
https://redd.it/12w2ws7
Question about unit testing

Suppose I have a User entity and I have this business rule: usernames should be saved in lowercase letters.

If we need to enforce this rule with a test, what layer does this test belong to?

Controller? Service? Domain model? Repository? Integration test?

What layer should this test live in?

/r/Python
https://redd.it/12wcyf0
Library installation not working

/r/JupyterNotebooks
https://redd.it/12wh47z
Trying out tunnel.dev

Hey, what's up, everyone? I'm building a startup called Tunnel. Tunnel is a super fast way to get a locally running app on the web, and it comes with a bunch of tools for collecting feedback like commenting and video chat.

I would love it if you all could check out our docs and give me some feedback! Here's the link: https://docs.tunnel.dev

I'm also happy to answer any questions you have, like "Why is Tunnel better than ngrok?"

Thanks, builders!

/r/flask
https://redd.it/12wksay
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" which provides a list of projects and the code to make them work.

/r/Python
https://redd.it/12wvgm0
Solarflare

Hello! I made a simple Python Library for solar/lunar calculations. Its main focus is on Sunset/rise times, but it can calculate other things (solar noon, moon phases, etc.). You can view its documentation at https://solarflare.w3spaces.com , and the source code at Github (https://github.com/PyndyalaCoder/solarflare ). Tell me what you think! If you like it, please star the repository on Github.

/r/Python
https://redd.it/12wvwsa
Does anyone know of a good tutorial for documenting code and what I should use for flask?

Does anyone know of a good tutorial for documenting code and what I should use for flask?

/r/flask
https://redd.it/12wz3fw
I have made some easy tools to rip webpages, clean the data, and vectorize it for a Pinecone DB. Great if you want your AI to consult a webpage.

[https://github.com/Sstobo/Site-Sn33k](https://github.com/Sstobo/Site-Sn33k)

Take a look :)

# Website Scraper and Vectorizer

This Python repository contains a set of scripts that allow you to scrape a website, clean the data, organize it, chunk it, and then vectorize it. The resulting vectors can be used for a variety of machine learning tasks, such as similarity search or clustering.

## Files

* cleaner.py
: This script downloads a website using wget, reads and cleans the HTML files using Beautiful Soup, and saves the resulting text files in a specified directory.
* chunker.py
: This script splits the text files into smaller chunks, using a recursive character-based text splitter. The resulting chunks are saved in a JSONL file.
* vectorizor.py
: This script loads the JSONL file, creates embeddings using OpenAI's text-embedding-ada-002 model, and indexes the embeddings using Pinecone. This is the one script you need api keys to run

​

Enjoy and let me know if this helps with anything, or you have any feedback :)

/r/Python
https://redd.it/12wqzbk
🚀 Boost Your Python Code Performance: Essential Tips & Techniques

Hey fellow Python enthusiasts! I've just written a comprehensive guide on optimizing Python code for better performance. In this article, I cover everything from understanding Python's execution model and profiling your code, to leveraging parallel programming and powerful external libraries like NumPy and Pandas.

I believe these tips and techniques will be valuable for anyone looking to enhance the efficiency of their Python projects. Whether you're a beginner or an experienced developer, you'll find something useful in this guide.

Check out the full article here: https://danielbuilescu.com/blogs/learn-python/python-performance-optimization-tips-and-techniques-for-faster-more-efficient-code

Let me know your thoughts and if you have any other tips or tricks for optimizing Python code! Happy coding! 🐍

/r/Python
https://redd.it/12x76vj
Sharing: Converting drawings into 3D animation; a deep dive into the Python modules behind ShapeMeshing

Hi everyone.  I want to share with you a set of Python modules I built in 2019 for converting 2D animation into 3D animation.  Originally developed for the short film The Peak, this technology that transforms Flash-generated content into 3D data has since evolved and been deployed to multiple animation productions around the world.

This system has been featured at SIGGRAPH, CGWORLD, Cartoon Brew, Animation World Network, UNITE Tokyo, CEDEC and others - now is the first time the inner workings of the modules are being revealed.  I invite you to watch the two videos below, and I hope you find it useful and entertaining.    (Subtitles are available in English and Japanese)

Introduction : https://www.youtube.com/watch?v=c4GzniN7STQ

Advanced : https://www.youtube.com/watch?v=rIePFFwRYow


You can read more here

/r/Python
https://redd.it/12wxfb0
what is the best way to deploy to a server safely?

is deploying with docker the best way to deploy from your computer to a digital ocean instance?

the reason I ask is because I noticed that when I deploy my code just by pulling it from github on the server and try to pip install everything I often end up with packages that don't have equivalence in ubuntu or package clashes or things that I did not foresee happening when I was deploying and I have to figure them out and fix them in the instance.

I think if I add docker to my projects it would just add another layer of complexity to debug, but I dont know how else to make deployment easy and simple so it always works.

I dont want to use heroku either because they charge an arm and a leg.

anyone have any ideas?

/r/django
https://redd.it/12x5l7o
Do you guys use Chat GPT to code? If so, what do you make?

I have been completely blown away with chat GPT. I'm basically a noob, but I am curious how common it is amongst serious coders. Also what kind of stuff are you guys creating with chat GPT? I've created a few programs that I am really proud of, and that I don't think I ever would've been able to code myself. I have noticed that chat GPT makes a lot of mistakes though, and I actually stayed up till like six in the morning one night trying to get it to write something correctly and it never did… I'm sure if I was a better coder I'd be better at correcting chat GPT... But it is still pretty amazing.

/r/Python
https://redd.it/12wsx2g
Swagger for Django api

Hi, I’m building a basic api while learning the Django framework and wanted to know how to add swagger to document it. Almost all tutorials I see has a reference to the Django test framework, but I’m building a small api that just returns a json. Can somebody provide some insight into this or point me in the right direction?

/r/django
https://redd.it/12x52sd
Help solving IOPub data rate error

I received an 'IOPub message rate exceeded" error when running a built-in trackpy function. All information online says "the problem was fixed when launching jupyter with "jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000". What does this mean? How do I do this? (I have zero knowledge of jupyter but I have to use it for a project)

I tried to run it from CMD but it just said that jupyter is not recognised as an internal or external command etc...

I'm using jupyter through anaconda 3.

/r/JupyterNotebooks
https://redd.it/12xpsfm
Is it just me or are the docs for sqlalchemy a f*cking nightmare?

Granted, I have little to no experience when it comes to working with databases, but the docs for sqlalchemy are so god damn convoluted and the lingo is way too abstract. Perhaps someone can recommend a good in-depth tutorial?

/r/Python
https://redd.it/12xrvwz
I built a leaderboard creator app

Try this fully functional leaderboard maker app here, https://www.maketheboard.com/. Built with Python & Flask (obviously), SQLAlchemy, and JavaScript with the simple bootstrap frontend.

The next step is to add Google AdSense and create the paid plans, which are already modeled out. Finished it in December and honestly forgot about it but I am getting tons of emails from Google search console that it is finally ranking lol.

I am open to answering any questions that any beginners may have

/r/flask
https://redd.it/12xsxb1