├── .gitignore ├── FakeUA.py ├── FakeUAdb.py ├── LICENSE ├── README.md ├── common.py ├── config.py ├── exporter.py ├── log.py ├── main.py ├── models.py ├── parser.py ├── requirements.txt ├── tasks.py └── uaServer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/.gitignore -------------------------------------------------------------------------------- /FakeUA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/FakeUA.py -------------------------------------------------------------------------------- /FakeUAdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/FakeUAdb.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FakeUA 2 | 3 | 现脚本暂无法使用,建议直接使用release中的现成库压缩文件 -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/common.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/config.py -------------------------------------------------------------------------------- /exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/exporter.py -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/log.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/models.py -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/tasks.py -------------------------------------------------------------------------------- /uaServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s045pd/FakeUA/HEAD/uaServer.py --------------------------------------------------------------------------------