ConnectionTcpMTProxy
telethon.network.connection
на гитхабе такого слёту не нашел. Есть подобные по имени, но не точно. utils:
func.py
help:
help.py
main.py
my_help = 'my_help imported'
import help.help as my_help
def my_func():
return my_help.my_help
import utils.func as func
print(func.my_func())
print(func.my_help.my_help)
my_help imported
my_help imported
Process finished with exit code 0
def create_user(id, tag):
uid = user.count_documents({})
x = { "uid": uid, "id": id, "tag": tag}
return user.insert_one(x)
result = create_user(id=my_id, tag=my_tag)
print(result)