├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── access_controller.png ├── examples ├── add_user.py ├── open_door.py ├── remove_user.py ├── webserver.py └── windows_webservice.py ├── rfid.py ├── rfid_card_number_explanation.png ├── setup.cfg ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE rfid.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/README.md -------------------------------------------------------------------------------- /access_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/access_controller.png -------------------------------------------------------------------------------- /examples/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/examples/add_user.py -------------------------------------------------------------------------------- /examples/open_door.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/examples/open_door.py -------------------------------------------------------------------------------- /examples/remove_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/examples/remove_user.py -------------------------------------------------------------------------------- /examples/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/examples/webserver.py -------------------------------------------------------------------------------- /examples/windows_webservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/examples/windows_webservice.py -------------------------------------------------------------------------------- /rfid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/rfid.py -------------------------------------------------------------------------------- /rfid_card_number_explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/rfid_card_number_explanation.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawl/Chinese-RFID-Access-Control-Library/HEAD/tests.py --------------------------------------------------------------------------------