You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.5 KiB

  1. Compression and Archive Extensions
  2. ==================================
  3. [![Go Walker](http://gowalker.org/api/v1/badge)](http://gowalker.org/github.com/Unknwon/cae)
  4. [中文文档](README_ZH.md)
  5. Package cae implements PHP-like Compression and Archive Extensions.
  6. But this package has some modifications depends on Go-style.
  7. Reference: [PHP:Compression and Archive Extensions](http://www.php.net/manual/en/refs.compression.php).
  8. Code Convention: based on [Go Code Convention](https://github.com/Unknwon/go-code-convention).
  9. ### Implementations
  10. Package `zip`([Go Walker](http://gowalker.org/github.com/Unknwon/cae/zip)) and `tz`([Go Walker](http://gowalker.org/github.com/Unknwon/cae/tz)) both enable you to transparently read or write ZIP/TAR.GZ compressed archives and the files inside them.
  11. - Features:
  12. - Add file or directory from everywhere to archive, no one-to-one limitation.
  13. - Extract part of entries, not all at once.
  14. - Stream data directly into `io.Writer` without any file system storage.
  15. ### Test cases and Coverage
  16. All subpackages use [GoConvey](http://goconvey.co/) to write test cases, and coverage is more than 80 percent.
  17. ### Use cases
  18. - [Gogs](https://github.com/gogits/gogs): self hosted Git service in the Go Programming Language.
  19. - [GoBlog](https://github.com/fuxiaohei/GoBlog): personal blogging application.
  20. - [GoBuild](https://github.com/shxsun/gobuild/): online Go cross-platform compilation and download service.
  21. ## License
  22. This project is under Apache v2 License. See the [LICENSE](LICENSE) file for the full license text.