easy-symlink


Nameeasy-symlink JSON
Version 0.10 PyPI version JSON
download
home_pagehttps://github.com/hansalemaos/easy_symlink
SummaryCreates symlinks and all folders in the symlink path if they don't exist
upload_time2022-12-28 02:36:31
maintainer
docs_urlNone
authorJohannes Fischer
requires_python
licenseMIT
keywords symlinks touch symbolic links
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Creates symlinks and all folders in the symlink path if they don't exist

```python

# You don't have to worry about creating the folder(s).
# If the folder and subfolders don't exist, they will be created.
# If a symlink already exists at the given path, it will be overwritten.
# If something goes wrong, the function returns False
# If everything is fine, it returns True

from easy_symlink import create_symlink

pp = create_symlink(
    r"C:\pictest4\1671814710.650013.png",
    "f:\\aaaaaaaafolder1\\folder2\\folder3\\folder4\\img.png",
)
print(pp)
True



```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hansalemaos/easy_symlink",
    "name": "easy-symlink",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "symlinks,touch,symbolic links",
    "author": "Johannes Fischer",
    "author_email": "<aulasparticularesdealemaosp@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/30/cf/ea9d3feb139812112be25b58e69825af7138f9f49e3dcdcccac2ee34136e/easy_symlink-0.10.tar.gz",
    "platform": null,
    "description": "\n# Creates symlinks and all folders in the symlink path if they don't exist\n\n```python\n\n# You don't have to worry about creating the folder(s).\n# If the folder and subfolders don't exist, they will be created.\n# If a symlink already exists at the given path, it will be overwritten.\n# If something goes wrong, the function returns False\n# If everything is fine, it returns True\n\nfrom easy_symlink import create_symlink\n\npp = create_symlink(\n    r\"C:\\pictest4\\1671814710.650013.png\",\n    \"f:\\\\aaaaaaaafolder1\\\\folder2\\\\folder3\\\\folder4\\\\img.png\",\n)\nprint(pp)\nTrue\n\n\n\n```\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Creates symlinks and all folders in the symlink path if they don't exist",
    "version": "0.10",
    "split_keywords": [
        "symlinks",
        "touch",
        "symbolic links"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "8322725dede5e4e7d8ea462320648901",
                "sha256": "7bfd049846b40332ce0d95d13600c1a505f621cc167f063e2944a1c54b45d5cf"
            },
            "downloads": -1,
            "filename": "easy_symlink-0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8322725dede5e4e7d8ea462320648901",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4570,
            "upload_time": "2022-12-28T02:36:29",
            "upload_time_iso_8601": "2022-12-28T02:36:29.900348Z",
            "url": "https://files.pythonhosted.org/packages/cf/a8/aa71dcb9b4be209f07710d7fb58cbfc81c18ccc42f3272e314a12ccbc76a/easy_symlink-0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a41e08b6da07f76bfa4f179b262f7b71",
                "sha256": "100cd589a306ea6f088b666e438a3e283007d0fbe2b55b229e5671afb478888e"
            },
            "downloads": -1,
            "filename": "easy_symlink-0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "a41e08b6da07f76bfa4f179b262f7b71",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3285,
            "upload_time": "2022-12-28T02:36:31",
            "upload_time_iso_8601": "2022-12-28T02:36:31.413050Z",
            "url": "https://files.pythonhosted.org/packages/30/cf/ea9d3feb139812112be25b58e69825af7138f9f49e3dcdcccac2ee34136e/easy_symlink-0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-28 02:36:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "hansalemaos",
    "github_project": "easy_symlink",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "easy-symlink"
}
        
Elapsed time: 0.02310s