Metadata-Version: 2.1
Name: deepcopyall
Version: 0.10
Summary: deepcopys almost everything (functions, lambda ... )
Home-page: https://github.com/hansalemaos/deepcopyall
Author: Johannes Fischer
Author-email: <aulasparticularesdealemaosp@gmail.com>
License: MIT
Keywords: deepcopy
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Editors :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Indexing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.rst


# 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





```
