Python Daily
@itweekly_python
22
subscribers
115K
links
Python Daily
Download Telegram
Join
Python Daily
22 subscribers
Python Daily
temporian: Library for Preprocessing Temporal Data
https://github.com/google/temporian
GitHub
GitHub - google/temporian: Temporian is an open-source Python library for preprocessing
⚡
and feature engineering
🛠
temporal data…
Temporian is an open-source Python library for preprocessing
⚡
and feature engineering
🛠
temporal data
📈
for machine learning applications
🤖
- google/temporian
Python Daily
mac-cleanup-py: Cleanup Script for macOS in Python
https://github.com/mac-cleanup/mac-cleanup-py
GitHub
GitHub - mac-cleanup/mac-cleanup-py:
👨💻
Python cleanup script for macOS
👨💻
Python cleanup script for macOS. Contribute to mac-cleanup/mac-cleanup-py development by creating an account on GitHub.
Python Daily
lockbox: Forward Proxy for Making 3rd Party API Calls
https://github.com/mkjt2/lockbox
GitHub
GitHub - mkjt2/lockbox: Lockbox is a forward proxy for making third party API calls.
Lockbox is a forward proxy for making third party API calls. - mkjt2/lockbox
Python Daily
rexi: Terminal UI for Regex Testing
https://github.com/royreznik/rexi
GitHub
GitHub - royreznik/rexi: Terminal UI for Regex Testing
Terminal UI for Regex Testing. Contribute to royreznik/rexi development by creating an account on GitHub.
Python Daily
sqlite-web: Web-Based SQLite Database Browser
https://github.com/coleifer/sqlite-web
GitHub
GitHub - coleifer/sqlite-web: Web-based SQLite database browser written in Python
Web-based SQLite database browser written in Python - coleifer/sqlite-web
Python Daily
SPb Python Drinkup
https://www.meetup.com/spbpython/
Meetup
SPb Python Community | Meetup
Сообщество Python-программистов Санкт-Петербурга.К участию приглашаются как гуру, так и начинающие разработчики.Ждем всех!Telegram канал: https://t.me/spbpythonnewsХотите делать митапы или доклады пишите [https://t.me/nonamenix](https://t.me/nonamenix)
Python Daily
PyLadies Amsterdam
https://www.meetup.com/pyladiesams/events/298654058/
Meetup
Login to Meetup | Meetup
Not a Meetup member yet? Log in and find groups that host online or in person events and meet people in your local community who share your interests.
Python Daily
PyCon Namibia 2024
https://na.pycon.org/
Python Daily
Melbourne Python Users Group, Australia
http://j.mp/mpug
Python Daily
你的 Python 代码需要解释一下了!
https://juejin.cn/post/7345774710850191401
juejin.cn
你的 Python 代码需要解释一下了! - 掘金
Python 是一种相对简单的编程语言。它主要以解释型语言著称,这意味着每行代码都要通过解释器逐行执行。不过在某些时候,将 Python 代码翻译成计算机可以理解的内容,然后再逐行执行,可以减少繁琐。
Python Daily
一文彻底搞定 Python 的 Exception 处理
https://juejin.cn/post/7345647273161228329
juejin.cn
一文彻底搞定 Python 的 Exception 处理 - 掘金
这篇文章主要介绍了Python中的异常处理机制。首先阐述了异常的定义和应用场景,如文件操作、网络请求和数据验证等。然后详细解释了异常的使用方式,包括抛出异常、捕获异常等等
Python Daily
终于!我写出了自己的后端框架!
https://juejin.cn/post/7345484955794260022
juejin.cn
终于!我写出了自己的后端框架! - 掘金
一路走来,真的是跌跌撞撞,从什么是html, 到什么是框架,这些东西又是怎么实现的,一切都是一个谜,让人着迷,让人抓狂!现在,我终于写出了自己心心念念的第一个框架!
Python Daily
盘点Python中4种读取JSON文件和提取JSON文件内容的方法
https://juejin.cn/post/7345692979074187279
juejin.cn
盘点Python中4种读取JSON文件和提取JSON文件内容的方法 - 掘金
JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,它基于ECMAScript的一个子集,采用完全独立于语言的文本格式来存储和表示数据。Python中提供了多种
Python Daily
Pandas导出美化技巧,让你的Excel更出众
https://juejin.cn/post/7345679865184780322
juejin.cn
Pandas导出美化技巧,让你的Excel更出众 - 掘金
pandas的DataFrame可以通过设置参数使得在jupyter notebook中显示的更加美观,但是,将DataFrame的数据导出excel时,却只能以默认最朴素的方式将数据写入excel。
Python Daily
Python import 跟 Java import 有什么区别?
https://juejin.cn/post/7345423755948572726
juejin.cn
Python import 跟 Java import 有什么区别? - 掘金
本文重点阐述了Python和Java中import语句的异同。主要区别包括:语法形式、编译时导入还是运行时导入、名称冲突解决方式、静态绑定与动态绑定等
Python Daily
【一分钟快学】掌握 Python 3 的 sched 模块:轻松实现高效事件调度
https://juejin.cn/post/7345405978723106866
juejin.cn
【一分钟快学】掌握 Python 3 的 sched 模块:轻松实现高效事件调度 - 掘金
本文深入探讨 Python 3 的 sched 模块,介绍其用于事件调度的基本用法、适用场景和注意事项,通过示例提升应用性能。
Python Daily
【一分钟快学】深入 Python 3 的 weakref:优化内存管理与避免循环引用
https://juejin.cn/post/7345478992054681663
juejin.cn
【一分钟快学】深入 Python 3 的 weakref:优化内存管理与避免循环引用 - 掘金
在本篇文章中,将探索 Python 3 中的 weakref 模块,它提供了一种机制来创建对象的弱引用。与常规引用不同,弱引用不会增加对象的引用计数,这意味着它们不会阻止垃圾收集器回收所引用的对象。
Python Daily
Python中ArcPy切割栅格文件为四等分
https://juejin.cn/post/7345379924167917609
juejin.cn
Python中ArcPy切割栅格文件为四等分 - 掘金
本文介绍基于Python中的ArcPy模块,基于一个大文件夹,遍历其中每一个子文件夹中所有的遥感影像栅格文件,并将原本的每一景遥感影像文件四等分切割,或裁剪为其他指定个数的小块的方法~
Python Daily
20个Python random模块的代码示例
https://juejin.cn/post/7345397788391456819
juejin.cn
20个Python random模块的代码示例 - 掘金
本文分享自华为云社区《Python随机数探秘:深入解析random模块的神奇之处》,本文将深入探讨random模块的各种函数,以及它们的应用场景和代码示例。
Python Daily
Pandas统计分析(三)
https://juejin.cn/post/7345363013589123082
juejin.cn
Pandas统计分析(三) - 掘金
数据的增加、修改与删除 原始数据 增加数据 DataFrame对象增加主要包括列数据增加和行数据增加......