Metadata-Version: 2.4
Name: pullobj
Version: 0.1.1
Summary: A Python library for synchronizing remote objects to local files
Project-URL: Homepage, https://github.com/cvisinoni/pullobj
Project-URL: Issues, https://github.com/cvisinoni/pullobj/issues
Author: cvisinoni
License: Copyright (c) 2026 cvisinoni
        
        Permission is hereby granted, free of charge, to any person
        obtaining a copy of this software and associated documentation
        files (the "Software"), to deal in the Software without
        restriction, including without limitation the rights to use,
        copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the
        Software is furnished to do so, subject to the following
        conditions:
        
        The above copyright notice and this permission notice shall be
        included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
        OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
        NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
        HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
        WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
        OTHER DEALINGS IN THE SOFTWARE.
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# pullobj
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/cvisinoni/pullobj/blob/master/LICENSE)

pullobj is a Python library for building clients that connect to a generic remote server 
(databases, cloud storage, object collections) and synchronize all remote objects to a local directory.
It provides a simple abstraction to keep a local mirror always up to date with the remote source.


## Features
- Generic client for remote servers
- Full download of remote objects to local storage
- On-demand synchronization (remote → local)
- Supports heterogeneous objects (JSON, Excel, images, code, etc.)
- Extensible design for custom backends


## Installation
```bash
pip install pullobj
```

## Core Concept
- A Client represents a remote source
- The client knows how to list and fetch remote objects
- pullobj handles local storage and synchronization logic


## Contributing
If you'd like to contribute to pullobj, feel free to fork this repository, 
make your changes, and submit a pull request. 
We welcome contributions of all kinds, whether it's fixing a bug, 
adding a new feature, or improving documentation.


## License
This project is MIT licensed. See the [LICENSE](LICENSE) file for details.


## Support
If you have any questions, issues, or suggestions regarding pullobj, 
please [open an issue](https://github.com/cvisinoni/pullobj/issues) on GitHub.
We'd love to hear from you!
