Metadata-Version: 2.1
Name: AutoUpdateGit
Version: 1.0
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

- lang="ru" - Русский язык модуля
- lang="en" - English language module

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


```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)
```


- module author: Luna#6983
