pycopy


Namepycopy JSON
Version 2025.7.54 PyPI version JSON
download
home_pageNone
SummaryA simple python script (cli and package) for syncing files between directories
upload_time2025-07-10 02:54:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords files syncing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pycopy

This tool was made as a simple python library for syncing files. It also works famously as a simple cli for doing the same thing.

### Usage as library
```python
import pycopy

pycopy.sync("path/to/directory1", "path/to/directory2")
```

To make it also delete files:
```python
import pycopy

pycopy.sync("path/to/directory1", "path/to/directory2", do_delete=True)
```

### Usage as command
First install the library as a command, usually like so:
```bash
pipx install pycopy
```

Then simply execute the command using:
```bash
pycopy "path/to/directory1" "path/to/directory2" 
```

To make it also delete files:
```bash
pycopy -d "path/to/directory1" "path/to/directory2" 
```
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pycopy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Files, Syncing",
    "author": null,
    "author_email": "Guenthner <guenthner.jonathan@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/da/d1/750a03b8c2b1141272361cbc408cc3c5cabdab1cbf575be7bb023ebf16d0/pycopy-2025.7.54.tar.gz",
    "platform": null,
    "description": "# pycopy\n\nThis tool was made as a simple python library for syncing files. It also works famously as a simple cli for doing the same thing.\n\n### Usage as library\n```python\nimport pycopy\n\npycopy.sync(\"path/to/directory1\", \"path/to/directory2\")\n```\n\nTo make it also delete files:\n```python\nimport pycopy\n\npycopy.sync(\"path/to/directory1\", \"path/to/directory2\", do_delete=True)\n```\n\n### Usage as command\nFirst install the library as a command, usually like so:\n```bash\npipx install pycopy\n```\n\nThen simply execute the command using:\n```bash\npycopy \"path/to/directory1\" \"path/to/directory2\" \n```\n\nTo make it also delete files:\n```bash\npycopy -d \"path/to/directory1\" \"path/to/directory2\" \n```",
    "bugtrack_url": null,
    "license": null,
    "summary": "A simple python script (cli and package) for syncing files between directories",
    "version": "2025.7.54",
    "project_urls": null,
    "split_keywords": [
        "files",
        " syncing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "112709f19938f1d3db2c0b81630a042018381694ab580f26a43141ca03cb2580",
                "md5": "1c53701410871c5facab6163289a5c34",
                "sha256": "68047cdcf8fa8a3335322db44cac224dd5b5a72085fe40bd88326f89b67d34d9"
            },
            "downloads": -1,
            "filename": "pycopy-2025.7.54-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1c53701410871c5facab6163289a5c34",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 8237,
            "upload_time": "2025-07-10T02:54:26",
            "upload_time_iso_8601": "2025-07-10T02:54:26.425095Z",
            "url": "https://files.pythonhosted.org/packages/11/27/09f19938f1d3db2c0b81630a042018381694ab580f26a43141ca03cb2580/pycopy-2025.7.54-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dad1750a03b8c2b1141272361cbc408cc3c5cabdab1cbf575be7bb023ebf16d0",
                "md5": "346768c3d88793095e663eabc3de067d",
                "sha256": "5dc86d13cba0f0aa5c2df20b227b976fdb2e1b9113accc1c6e8c1edbe445abfd"
            },
            "downloads": -1,
            "filename": "pycopy-2025.7.54.tar.gz",
            "has_sig": false,
            "md5_digest": "346768c3d88793095e663eabc3de067d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 112562,
            "upload_time": "2025-07-10T02:54:27",
            "upload_time_iso_8601": "2025-07-10T02:54:27.548161Z",
            "url": "https://files.pythonhosted.org/packages/da/d1/750a03b8c2b1141272361cbc408cc3c5cabdab1cbf575be7bb023ebf16d0/pycopy-2025.7.54.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-10 02:54:27",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pycopy"
}
        
Elapsed time: 2.24171s