deepcopyall


Namedeepcopyall JSON
Version 0.10 PyPI version JSON
download
home_pagehttps://github.com/hansalemaos/deepcopyall
Summarydeepcopys almost everything (functions, lambda ... )
upload_time2023-03-03 01:06:31
maintainer
docs_urlNone
authorJohannes Fischer
requires_python
licenseMIT
keywords deepcopy
VCS
bugtrack_url
requirements dill
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# deepcopys almost everything (functions, lambda ... ) 



## pip install deepcopyall



```python



from deepcopyall import deepcopy

class bibi:

    def __init__(self, bebe=112):

        self.bebe = bebe



    def printbebe(self):

        print(self.bebe)





baba = lambda: print("baba")





def buax(x):

    print(x)

    return x





baba2 = deepcopy(o=baba)

baba2()

buax2 = deepcopy(o=buax)

q = buax2(444)

print(q)



bibi2 = deepcopy(o=bibi)

bibi2inst = bibi2(23323)

bibi2inst.printbebe()



#output 

baba

444

444

23323





```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hansalemaos/deepcopyall",
    "name": "deepcopyall",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "deepcopy",
    "author": "Johannes Fischer",
    "author_email": "<aulasparticularesdealemaosp@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/dd/91/46ef4b3c009eba31d2ab6d0a234f94906bbb3ac6efba9d485bd701d0c5da/deepcopyall-0.10.tar.gz",
    "platform": null,
    "description": "\n# deepcopys almost everything (functions, lambda ... ) \n\n\n\n## pip install deepcopyall\n\n\n\n```python\n\n\n\nfrom deepcopyall import deepcopy\n\nclass bibi:\n\n    def __init__(self, bebe=112):\n\n        self.bebe = bebe\n\n\n\n    def printbebe(self):\n\n        print(self.bebe)\n\n\n\n\n\nbaba = lambda: print(\"baba\")\n\n\n\n\n\ndef buax(x):\n\n    print(x)\n\n    return x\n\n\n\n\n\nbaba2 = deepcopy(o=baba)\n\nbaba2()\n\nbuax2 = deepcopy(o=buax)\n\nq = buax2(444)\n\nprint(q)\n\n\n\nbibi2 = deepcopy(o=bibi)\n\nbibi2inst = bibi2(23323)\n\nbibi2inst.printbebe()\n\n\n\n#output \n\nbaba\n\n444\n\n444\n\n23323\n\n\n\n\n\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "deepcopys almost everything (functions, lambda ... )",
    "version": "0.10",
    "split_keywords": [
        "deepcopy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fca6fcc131cc26845f9593b8716d3a708cb0d0a8e7179b13a48405a7429a3e8c",
                "md5": "2963fc3fb4b3a12ac697d0f3bbbe588b",
                "sha256": "813031d37f09c27bce8126768751f64ac8382273a40d55a104f2ea7bee0938d7"
            },
            "downloads": -1,
            "filename": "deepcopyall-0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2963fc3fb4b3a12ac697d0f3bbbe588b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 4350,
            "upload_time": "2023-03-03T01:06:29",
            "upload_time_iso_8601": "2023-03-03T01:06:29.679826Z",
            "url": "https://files.pythonhosted.org/packages/fc/a6/fcc131cc26845f9593b8716d3a708cb0d0a8e7179b13a48405a7429a3e8c/deepcopyall-0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd9146ef4b3c009eba31d2ab6d0a234f94906bbb3ac6efba9d485bd701d0c5da",
                "md5": "108607d35deacc1538df88a3848075a1",
                "sha256": "d85ad53ac44385068038a9ded330b83dfe1d8f7235a4672dfb9072fedf8e34dd"
            },
            "downloads": -1,
            "filename": "deepcopyall-0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "108607d35deacc1538df88a3848075a1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3192,
            "upload_time": "2023-03-03T01:06:31",
            "upload_time_iso_8601": "2023-03-03T01:06:31.429068Z",
            "url": "https://files.pythonhosted.org/packages/dd/91/46ef4b3c009eba31d2ab6d0a234f94906bbb3ac6efba9d485bd701d0c5da/deepcopyall-0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-03 01:06:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "hansalemaos",
    "github_project": "deepcopyall",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "dill",
            "specs": []
        }
    ],
    "lcname": "deepcopyall"
}
        
Elapsed time: 0.04876s