liuyuqi-dellpc 2 years ago
commit
d2a0868fdf
5 changed files with 80 additions and 0 deletions
  1. 37 0
      README.md
  2. 12 0
      main.py
  3. 1 0
      requirements.txt
  4. 13 0
      telagram_creator/__init__.py
  5. 17 0
      telagram_creator/telegram_creator.py

+ 37 - 0
README.md

@@ -0,0 +1,37 @@
+# telegram-creator
+
+[![Version](https://img.shields.io/badge/version-v1.1.0-brightgreen)](https://git.yoqi.me/lyq/telagram_creator)
+[![.NET](https://img.shields.io/badge/python-v3.9-brightgreen?style=plastic)](https://git.yoqi.me/lyq/telagram_creator)
+
+[English](./README.md) | [中文](./README.zh-CN.md)
+
+telegram account creator
+
+## develop
+
+1、using smspva.com get phone number, and receive phone verification code. so you should register a account then own a `apikey`. input it into the file named api.py.
+
+2、using email-fake.com get email,and reveice email verification code.
+
+3、using namefake.com get nickname
+
+4、you should set a proxy if you live in china and run it:
+```
+virtualenv .venv
+.venv\scripts\activate
+pip install -r requirements.txt
+
+python main.py --proxy 127.0.0.1:1080
+```
+
+
+## Contributing
+
+* Submit [bugs and feature requests](https://git.yoqi.me/lyq/telagram_creator/issues), and help us verify as they are checked in
+* Review [source code changes](https://git.yoqi.me/lyq/telagram_creator/pulls) 
+* Leave a message to us: liuyuqi.gov@msn.cn
+
+
+## License
+
+Licensed under the [Apache 2.0](LICENSE) © [liuyuqi.gov@msn.cn](https://github.com/jianboy)

+ 12 - 0
main.py

@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2023/04/02 00:33:20
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   
+'''
+from telegram_creator import main
+
+if __name__=='__main__':
+    main()

+ 1 - 0
requirements.txt

@@ -0,0 +1 @@
+requests==2.27.1

+ 13 - 0
telagram_creator/__init__.py

@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2023/04/02 00:33:29
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   
+'''
+
+from .telegram_creator import TelegramCreator
+
+def main():
+    TelegramCreator().run()

+ 17 - 0
telagram_creator/telegram_creator.py

@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2023/04/02 00:32:48
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   
+'''
+import os,sys,re,requests
+
+class TelegramCreator(object):
+    
+    def __init__(self):
+        pass
+    
+    def run(self):
+        pass