Metadata-Version: 2.1
Name: AutoUpdateGit
Version: 1.2
Summary: Make your program autoupdate with Github Raw
Home-page: https://github.com/Nelliprav/AutoUpdateGit
Author: LunaModules
Author-email: probeb589@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

#### AutoUpdateGit - Docs



- lang="ru" - Русский язык модуля
- lang="en" - English language module
- lang="ua" - Українська мова модуля
- lang="ar" - وحدة اللغة العربية
- lang="kz" - Қазақ тілі модулі

- requests - the module does not need to be imported.

```py
pip install AutoUpdateGit
```

```py
from AutoUpdateGit import *

githubraw_url="https://raw.githubusercontent.com/username/repo/main/file.py" # url raw file


#module usage example
if update_check(githubraw_url, lang="ru"):
    r = requests.get(githubraw_url)
    with open(__file__, 'w') as f:
        f.write(r.text)
```
