Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenjieXu committed Apr 12, 2021
1 parent 1dc041c commit cab4821
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGES
Expand Up @@ -18,4 +18,6 @@
- add points information in result
0.3.5 (6 March 2021)
- support decoding qrcode with bytes format content
- support passing array into BarCodeReader
- support passing array into BarCodeReader
1.0.0 (12 April 2021)
- better decoding performance
13 changes: 12 additions & 1 deletion README.md
@@ -1,12 +1,23 @@
# pyzxing

English | [简体中文](README_CN.md)

[![Travis (.org)](https://img.shields.io/travis/ChenjieXu/pyzxing)](https://travis-ci.org/github/ChenjieXu/pyzxing)
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/chenjiexu/pyzxing?include_prereleases)](https://github.com/ChenjieXu/pyzxing/releases/latest)
[![PyPI](https://img.shields.io/pypi/v/pyzxing)](https://pypi.org/project/pyzxing/)
[![Codacy grade](https://img.shields.io/codacy/grade/353f276d2073445aab7af3e32b0d503a)](https://www.codacy.com/manual/ChenjieXu/pyzxing)

A Python wrapper of [ZXing library](https://github.com/zxing/zxing). python-zxing does not work properly and is out of maintenance. So I decide to create this repository so that Pythoneers can take advantage of ZXing library with minimum effort.
## First GA

After a year of development, the first General Availability of pyzxing is finally released. I would like to express my
gratitude to all the developers for their suggestions and issue, which helped the development of this project to a great
extent. This project will continue to be open source and updated regularly.

## Introduction

A Python wrapper of [ZXing library](https://github.com/zxing/zxing). python-zxing does not work properly and is out of
maintenance. So I decide to create this repository so that Pythoneers can take advantage of ZXing library with minimum
effort.

## Features

Expand Down
10 changes: 9 additions & 1 deletion README_CN.md
@@ -1,12 +1,20 @@
# pyzxing

简体中文 | [English](README.md)

[![Travis (.org)](https://img.shields.io/travis/ChenjieXu/pyzxing)](https://travis-ci.org/github/ChenjieXu/pyzxing)
[![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/chenjiexu/pyzxing?include_prereleases)](https://github.com/ChenjieXu/pyzxing/releases/latest)
[![PyPI](https://img.shields.io/pypi/v/pyzxing)](https://pypi.org/project/pyzxing/)
[![Codacy grade](https://img.shields.io/codacy/grade/353f276d2073445aab7af3e32b0d503a)](https://www.codacy.com/manual/ChenjieXu/pyzxing)

Pyzxing是二维码识别[ZXing](https://github.com/zxing/zxing)JAVA库的Python API。由于Zxing库相较于其他库二维码识别率最高,但使用起来十分繁琐,且python-zxing不能正常使用缺已不再维护,所以我创建了这个库让使用Python的人可以以最小的精力来使用Zxing库来进行二维码识别。
## 第一个正式版本

经历了一年的开发,pyzxing的第一个正式版本终于发布了。十分感谢各位开发者的建议和issue,这非常大程度上帮助了这个项目的开发。这个项目会继续保持开源并定时更新。

## 简介

Pyzxing是二维码识别[ZXing](https://github.com/zxing/zxing)JAVA库的Python
API。由于Zxing库相较于其他库二维码识别率最高,但使用起来十分繁琐,且python-zxing不能正常使用缺已不再维护,所以我创建了这个库让使用Python的人可以以最小的精力来使用Zxing库来进行二维码识别。

## 特性

Expand Down
9 changes: 6 additions & 3 deletions setup.py
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyzxing",
version="0.3.5",
version="1.0.0",
url="https://github.com/ChenjieXu/pyzxing",
description="Python wrapper for ZXing Java library",
long_description=readme,
Expand All @@ -18,12 +18,15 @@
packages=find_packages(),
license='MIT',
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
"Intended Audience :: Financial and Insurance Industry",
'License :: OSI Approved :: MIT License',
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
],
install_requires=reqs.strip().split('\n'),
)

0 comments on commit cab4821

Please sign in to comment.