Metadata-Version: 2.1
Name: fileup.py
Version: 0.1.1
Summary: A Python package that simplifies the auto-update process by updating individual files with remote versions based on file-specific version comments.
Home-page: https://github.com/mvishok/fileup
Author: Vishok M
Author-email: hello@vishok.me
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
License-File: LICENSE
Requires-Dist: requests

# fileup

`fileup` is a Python package that simplifies the auto-update process by updating individual files with remote versions based on file-specific version comments.

## Installation

Install the package using pip:

``` pip install fileup ```

## Usage
1. Set the remote file URL in your script.
2. Call the `update` function from the `fileup` package.

### Example

```python
import fileup

REMOTE_FILE_URL = "https://example.com/path/to/your/script.py"

def main():
    # Your main script logic here
    print("Running the main script...")

if __name__ == "__main__":
    fileup.update(REMOTE_FILE_URL)
    main()
