Skip to content

v0.0.1

Compare
Choose a tag to compare
@lucas-six lucas-six released this 04 Aug 23:28
· 206 commits to main since this release
3156c0c

Initial release of Python Cookbook, including language core features.

  • Function Decorator (函数装饰器)
  • Context Manager (上下文管理器)
  • Regex Patterns
  • Time: Timestamp (UNIX Time), UTC, Local Time
  • Representation of Dates and Times
  • Type Hint
  • Pack/Unpack Binary Data - struct
  • I/O, File-Like Object
  • Logging (日志)
  • Parallelism and Concurrent (并发): Multi-Threads, Multi-Processes, Async I/O (Coroutine), Queue
  • Synchronization Primitives: Lock, Event, Condition Variable, Semaphore
  • Networks (网络)
    • TCP, UDP
    • I/O model: Blocking, Timeout, I/O Multiplex, Async I/O
  • IPC (进程间通信): UNIX Domain Socket, Socket Pair
  • Setup Python Project