# zd **Repository Path**: znlp/zd ## Basic Information - **Project Name**: zd - **Description**: No description available - **Primary Language**: Python - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-21 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # read ``` import zd with zd.open( "./test.zd" ) as f: for i in f: print(i) ``` # write ``` import zd # argsument level is optional, default is 10 with zd.open( "./test.zd", "w", level=10) as f: for i in range(10): f.write(i) ```