All Projects → meetbill → Mypythonlib

meetbill / Mypythonlib

Licence: gpl-3.0
🐍 Python 库(工欲善其事,必先利其器) 标准库(https://docs.python.org/zh-cn/2.7/library/index.html)

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Mypythonlib

Mouse Rs
Rust library to control the mouse
Stars: ✭ 24 (+166.67%)
Mutual labels:  library
Brainf cksharp
A complete and full-featured Brainf_ck IDE/console for Windows 10 (UWP), with a high-performance REPL interpreter
Stars: ✭ 26 (+188.89%)
Mutual labels:  library
Usbmuxd
A socket daemon to multiplex connections from and to iOS devices
Stars: ✭ 847 (+9311.11%)
Mutual labels:  library
Ofxgrafica
A simple and configurable plotting library for openFrameworks
Stars: ✭ 24 (+166.67%)
Mutual labels:  library
M2x Python
AT&T M2X Python Library
Stars: ✭ 25 (+177.78%)
Mutual labels:  library
Stringplus
Funny and minimal string library for C++ inspired by underscore.string
Stars: ✭ 7 (-22.22%)
Mutual labels:  library
Preppy
A simple and lightweight tool for preparing the publish of NPM packages.
Stars: ✭ 23 (+155.56%)
Mutual labels:  library
Noty
⛔️ DEPRECATED - Dependency-free notification library that makes it easy to create alert - success - error - warning - information - confirmation messages as an alternative the standard alert dialog.
Stars: ✭ 6,725 (+74622.22%)
Mutual labels:  library
Similarloadingview
A stylish loading view for Android
Stars: ✭ 26 (+188.89%)
Mutual labels:  library
Librg
🚀 Making multi-player gamedev simpler since 2017
Stars: ✭ 813 (+8933.33%)
Mutual labels:  library
Gpsdetector Library
🌎 Android library. If GPS disabled, dialog shown and if user confirms GPS enabled. (2016)
Stars: ✭ 24 (+166.67%)
Mutual labels:  library
Badx12
A Python Library for parsing ANSI ASC X12 files.
Stars: ✭ 25 (+177.78%)
Mutual labels:  library
Migrator
Opinionated database migration library for Go applications.
Stars: ✭ 7 (-22.22%)
Mutual labels:  library
Downloadlargefilesbyurl
DownloadLargeFilesByUrl is a GAS library for downloading large files from URL to Google Drive using Google Apps Script (GAS).
Stars: ✭ 24 (+166.67%)
Mutual labels:  library
Abclinuxuapi
API for http://abclinuxu.cz.
Stars: ✭ 8 (-11.11%)
Mutual labels:  library
Blipkit
C library for creating the beautiful sound of old sound chips
Stars: ✭ 23 (+155.56%)
Mutual labels:  library
Awesome Android
😎 A curated list of awesome Android resources
Stars: ✭ 26 (+188.89%)
Mutual labels:  library
Bloc
A predictable state management library that helps implement the BLoC design pattern
Stars: ✭ 8,214 (+91166.67%)
Mutual labels:  library
Taco
The Tensor Algebra Compiler (taco) computes sparse tensor expressions on CPUs and GPUs
Stars: ✭ 846 (+9300%)
Mutual labels:  library
Cute php
PHP version of the beanstalkd-backed job queuing system.
Stars: ✭ 7 (-22.22%)
Mutual labels:  library

MyPythonLib

1 My_lib

1.1 终端界面 / 菜单相关

  • Python 程序进度条 ---------------------------progressbar
  • Linux 终端表格 ------------------------------ttable
  • 命令行执行加函数参数时,可以直接对函数操作 --command
  • 终端 print 颜色 -----------------------------color

1.2 进程相关

  • 守护进程模板 --------------------------------daemon
  • 检测某进程是否存在 --------------------------monitor_process
  • Python 多进程 - 多线程任务队列 --------------mpmt
  • Python 调用 shell 库 ------------------------easyrun

1.3 配置文件及日志相关

  • 查看 Linux 信息和修改 Linux 配置文件 --------serverinfo_config
  • 根据日志大小轮转日志 ------------------------log
  • 对配置文件进行获取配置以及修改配置 ----------file_utils
  • 参数检查
    • 函数参数检查 ------------------------------schema
  • 将 xml 转为字典或者字典转为 xml -------------xmltodict

1.4 其他

  • 根据 IP 获取地址位置信息 --------------------query_ip

1.5 Debug

  • 极简 DeBug 工具 PySnooper -------------------PySnooper

1.6 DB/Redis

  • 轻量化 MySQL orm ----------------------------Peewee
  • Python 连接 MySQL 的库 PyMySQL --------------PyMySQL
  • 分析 Redis RDB 工具 -------------------------redis-rdb-tools

2 Example

2.1 教程

2.2 相关笔记

3 相关项目

4 参加步骤

  • 在 GitHub 上 fork 到自己的仓库,然后 clone 到本地,并设置用户信息。
$ git clone https://github.com/meetbill/MyPythonLib.git
$ cd MyPythonLib
$ git config user.name "yourname"
$ git config user.email "your email"
  • 修改代码后提交,并推送到自己的仓库。
$ #do some change on the content
$ git commit -am "Fix issue #1: change helo to hello"
$ git push
  • 在 GitHub 网站上提交 pull request。
  • 定期使用项目仓库内容更新自己仓库内容。
$ git remote add upstream https://github.com/meetbill/MyPythonLib.git
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].