atlas news
    
Reddit : Python
21  avril     00h00
Sunday Daily Thread: What’s everyone working on this week?
   Weekly Thread: What ;s Everyone Working On This Week ï Hello r Python It ;s time to share what you ;ve been working on Whether it ;s a work in progress, a completed masterpiece, or just a rough idea, let us know what you ;re up to How it Works: Show amp; Tell: Share your...
25  avril     00h00
Thursday Daily Thread: Python Careers, Courses, and Furthering Education
   Weekly Thread: Professional Use, Jobs, and Education Welcome to this week ;s discussion on Python in the professional world This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment. How it Works...
24  avril     21h17
What are your favourite pre-commit hooks and why?
   Just getting started with pre commit and I think it ;s awesome. Looking to find out what other code automation tools people are using. Let me know what works for you and why. Thanks ; submitted by ; u LatterConcentrate link ; comments
25  avril     05h50
Python Interview Cheat Sheet Website
   Hey everyone, I’ve recently launched a new website aimed at helping fellow programmers ace their Python interviews. It’s not just limited to Python though; it also covers essential topics like big O notation, object oriented programming, design patterns, and more I’d love to hear your thoughts and...
    09h01
OpenTelemetry Architecture: Python SDK Overview
   Hey folks, I have just posted an article for those who want to go a little bit beyond the basic usage of OTEL and understand how it works under the hood. The post quickly touches on: History and the idea of OpenTelemetry Distributed traces amp; spans. How span collection happens on the...
    08h44
UXsim 1.2.0 released with support for (self-driving) taxis and shared mobility
   Version . . of UXsim is released, which allows simulating taxis, shared mobility and self driving taxis Main Changes in . . Add taxi aka. shared mobility functions A standard vehicle in UXsim just travel from A to B and disappear. This is like a private owned vehicle. From this update, a...
24  avril     13h12
Best way to grade Jupyter-Notebooks?
   I recently took a job with a professor, that includes helping with the grading of biweekly assignments. So I basically have now Notebooks that I have to grade. Top of my head I can think of these approaches: Convert to PDF and write into the PDF Duplicate the Notebook and write the comments in...
25  avril     10h56
Request for Creative suggestion on : alternate syntaxes for python3 decorators.
   Hey everyone I was working on a project and thought to myself: If I could make a better syntax for python decorators what would it look like Any suggestions are welcome Declaration and calling syntax can be specified Feel free to respond or skip and also let ;s see what the community creates....
24  avril     01h08
Zillow scraper made pure in Python
   Hello everyone., on today new scraper I created the python version for the zillow scraper. https: github.com johnbalvin pyzill What My Project Does The library will get zillow listings and details. I didn ;t created a defined structured like on the Go version just because it ;s not as easy...
25  avril     10h26
streamlit error
   streamlit : The term ;streamlit ; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line: char: streamlit run Home.py ...
    05h03
How to use Google’s Free Python Programming Environment, Google Colab
   Hi. Beginning programmers should be using the same tools that we use in business. For Python that ;s mainly Jupyter notebooks. Google provides those free at Google Colab. I made this video to show you how to use Colab and hope that can help you. https: www.youtube.com watch v JwIaYnrM Oc ...
24  avril     09h58
Created Netlify DNS Manager: CLI Tool for uploading zone Files to Netlify or exporting Netlify DNS
   What My Project Does Command line tool to simplify the management of DNS records for domains hosted on Netlify, whether you want to migrate to Netlify or migrate away from Netlify. . Import Zone File from Godaddy, NameCheap or others to Netlify helpful in migrating nameservers. Export DNS...
23  avril     09h50
Py2wasm: A Python to Wasm compiler 3x faster than pyiodide
   Take the excellent nuitka, compile python code to C, turn it into web assembly, and you got Python in the browser, without the usual runtime overhead: https: wasmer.io posts py wasm a python to wasm compiler While the doc states you can get this effect by doing: pip install py wasm py wasm...
24  avril     00h00
Wednesday Daily Thread: Beginner questions
   Weekly Thread: Beginner Questions Welcome to our Beginner Questions thread Whether you ;re new to Python or just looking to clarify some basics, this is the thread for you. How it Works: Ask Anything: Feel free to ask any Python related question. There are no bad questions here Community...
23  avril     14h35
Runtime type checking performance
   I ;m trying to decide whether to use typeguard or stick to assert isinstance in the places where I care. Has anyone done benchmarking testing of the overhead of using type guards quot;at quot;typeguard decorator ; submitted by ; u gerardwx link ; comments
24  avril     16h43
pwdgen v2 -a simple password generator
   https: github.com RadoTheProgrammer pwdgen What my project does My project generate simple, strong, memorable and easy to type passwords. The system is simple: it generate pronounceable words separated by a special char, with a number at start or end. I tried creating a password generator that...
    06h06
find where - my first Python package published to PyPi
   PyPi Source What My Project Does find where is a Python package that provides a function to find values in dictionaries where a specified key matches a given value, similar to filtering in SQL. Target Audience This is my first attempt at creating a Python package so I would describe this as a toy...
22  avril     16h44
I now know again why I stopped using mamba conda for setting up virtual environments
   I have started at a new job and had the idea that it would probably be clever to set up my developing environment in exactly the same way as my predecessor did. Because: This should help resolving errors quicker in the transition period His code was good and clean and it appears that he knows what...
23  avril     16h11
Inline templating engine
   I was wondering if anyone has come across anything like https: github.com a h templ or https: hono.dev guides jsx, but for python. For context, I am familiar with jinja , mako, etc. but find them to be unintuitive due to the loose coupling of logic ex: database calls and templating ex...
    03h03
Pandas Python Introduction
   I ;m sharing some of the Python tutorials I made. I teach Ukrainian teenagers and university students Python programming and data science for free. Here is an introduction to Pandas. It shows: How to read data into a Pandas dataframe from a CSV file. Show how to print out the column names....
22  avril     12h14
I made Cria - Run LLMs (AI) locally and programmatically with as little friction as possible
   https: github.com leftmove cria My name is Anonyo, and I am a seventeen year old from Southeast Michigan. This is my second open source project. I built Cria, a Python library that allows you to run LLMs programmatically through Python. Cria is designed so there is as little friction as possible ...
    19h54
tutorial] Data imputation on real-time data source
   Hi there, My team at Bytewax and I have been working on a series of hands on guides on streaming data and I am excited to share how one can handle missing values in real time in Python. While some parts of the guide are simplified, for example, we use a random number generator as an input source,...
    07h04
What is currently the fastest state-of-the-art ODE solver in Python?
   For my application, Scipy ;s solvers are not fast enough so I am looking to speed up by using another package. These are some packages I have found so far: NumbaLSODA DifferentialEquations.jl Torchquad Although doesn ;t solve ODEs, just integrates quickly, but that could be wrapped I guess ...
    13h06
Announcing The Python Logging Book & Course Kickstarter
   New developers print out strings to their terminal. It’s how we learn But printing out to the terminal isn’t what you do with most professional applications. In those cases, you log into files. Sometimes, you log into multiple locations at once. These logs may serve as an audit trail for...
23  avril     00h00
Tuesday Daily Thread: Advanced questions
   Weekly Wednesday Thread: Advanced Questions Dive deep into Python with our Advanced Questions thread This space is reserved for questions about more advanced Python topics, frameworks, and best practices. How it Works: Ask Away: Post your advanced Python questions here. Expert Insights: Get...
21  avril     21h59
Jobs that utilize Jupyter Notebook?
   I have been programming for a few years now and have on and off had jobs in the industry. I used Jupyter Notebook in undergrad for a course almost a decade ago and I found it really cool. Back then I really didn’t know what I was doing and now I do. I think it’s cool how it makes it feel more like...
22  avril     13h16
Most-watched PyData conference & meetup talks from 2023
   Just came across this list and I think it ;s amazing: https: techtalksweekly.substack.com p all pydata talks ; submitted by ; u ad link ; comments