Upsonic / Update

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Upsonic Update

The cloud updating system for your python applications ! Control everything from one place and distribute all clients without effort

Website | Discord | Twitter

Installation

You can install Upsonic by pip3:

pip3 install upsonic_update

Implementing

In this point you can use any Upsonic Cloud.

from upsonic_update import Upsonic_Update
from upsonic import Upsonic_Cloud
cloud = Upsonic_Cloud("YOUR_CLOUD_KEY")


updates = Upsonic_Update(cloud)

updates.pre_update("remove_lines") # Register your updates

# Define the updates
@cloud.active
def remove_lines(string):
    return string.replace("\n","")


updates.update() # Start to Update

And the console out is this:

Updating: ['remove_lines']

remove_lines: OK

Updating Complated Without any Error

Contributing

Contributions to Upsonic Update are welcome! If you have any suggestions or find a bug, please open an issue on the GitHub repository. If you want to contribute code, please fork the repository and create a pull request.

License

Upsonic Update is released under the MIT License.

Contributors

Thank you for your contribution!

About

License:MIT License


Languages

Language:Python 100.0%