hutils icon indicating copy to clipboard operation
hutils copied to clipboard

a charming python web util-library

Results 11 hutils issues
Sort by recently updated
recently updated
newest added

Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.4.4 to 0.5.0. Changelog Sourced from sqlparse's changelog. Release 0.5.0 (Apr 13, 2024) Notable Changes Drop support for Python 3.5, 3.6, and 3.7. Python 3.12 is now...

dependencies

Bumps [pymongo](https://github.com/mongodb/mongo-python-driver) from 3.12.0 to 4.6.3. Release notes Sourced from pymongo's releases. PyMongo 4.6.2 Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-2-released/267404 PyMongo 4.6.1 Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-1-released/255752 PyMongo 4.6.0 Release notes: https://www.mongodb.com/community/forums/t/pymongo-4-6-0-released/251866 PyMongo 4.5.0 Release...

dependencies

Bumps [django](https://github.com/django/django) from 3.2.23 to 3.2.25. Commits c98eca3 [3.2.x] Bumped version for 3.2.25 release. 072963e [3.2.x] Fixed CVE-2024-27351 -- Prevented potential ReDoS in Truncator.words(). 2ad2676 [3.2.x] Added release date for...

dependencies

Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.12.7 to 2023.7.22. Commits 8fb96ed 2023.07.22 afe7722 Bump actions/setup-python from 4.6.1 to 4.7.0 (#230) 2038739 Bump dessant/lock-threads from 3.0.0 to 4.0.1 (#229) 44df761 Hash pin Actions and...

dependencies

Bumps [pip](https://github.com/pypa/pip) from 23.0 to 23.3. Changelog Sourced from pip's changelog. 23.3 (2023-10-15) Process Added reference to vulnerability reporting guidelines <https://www.python.org/dev/security/>_ to pip's security policy. Deprecations and Removals Drop a...

dependencies

包括但不限于: - [ ] django grpc fake server - [ ] django grpc management command

enhancement

Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.12.7 to 2024.7.4. Commits bd81538 2024.07.04 (#295) 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294) 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293) e8abcd0 Bump pypa/gh-action-pypi-publish from...

dependencies

class SecretEnum(TupleEnum): SECRET = "secret", "敏感" NO_SECRET = "no_secret", "非敏感" \@ classmethod def member_items(cls) -\> Dict: return cls.\_value2member\_map\_ \>\>\>print(SecretEnum.member_items()) \>\>\>{'secret': , 'no_secret': }

class SecretEnum(TupleEnum): SECRET = "secret", "敏感" NO_SECRET = "no_secret", "非敏感" \>\>\>print(str(SecretEnum.SECRET)) \>\>\>SecretEnum.SECRET 重写\_\_str\_\_: class TupleEnum: def \_\_str\_\_(self): return self.value \>\>\>print(str(SecretEnum.SECRET)) \>\>\>"secret"