Results 6 issues of Tuffy_

My Linux `uname -a` output is `Linux ***** #1 SMP PREEMPT Wed Sep 8 10:41:11 UTC 2021 armv7l armv7l armv7l GNU/Linux` ```python >>> import uvloop Traceback (most recent call last):...

```python class TypeEnum(str, Enum): on = "ON" off = "OFF" recover = "RECOVER" class Record(models.Model): interactive_network_id: int id = fields.IntField(pk=True) type = fields.CharEnumField(TypeEnum) interactive_network = fields.ForeignKeyField( "my_models.InteractiveNetwork", related_name="records", index=True, )...

I wanted to use XA + Mysql, but so far only find Tortoise.transactions. In_transaction (connection_name=None) in docs, What should I do?

enhancement

### Describe the bug I used APScheduler to add two jobs that execute once per second, both using sentinel to write to Redis. But it takes about 4-5 minutes to...

bug

```python consumer_ = aiokafka.AIOKafkaConsumer( *topics, bootstrap_servers=f"192.168.1.100:9092", ) await consumer_.start() try: async for msg in consumer_: print(msg) finally: await consumer_.stop() ``` `aiokafka` outputs a lot of error logs when I disconnect...

enhancement

Modify to use utf-8 by default when reading configuration files containing Chinese characters to prevent reading errors on Windows if the configuration file contains Chinese characters. Add the ability to...