cosme12 / SimpleCoin

Just a really simple, insecure and incomplete implementation of a blockchain for a cryptocurrency made in Python as educational material. In other words, a simple Bitcoin clone.
http://copitosystem.com
MIT License
1.78k stars 397 forks source link

Imported modules #18

Closed adanielpincab closed 6 years ago

adanielpincab commented 6 years ago

I think it would be better to download required modules and save them in the proyect. This way the user wouldn't have to install all the modules required, more simple.

adanielpincab commented 6 years ago

I leave that commit because I'm having a problem with miner.py When I execute it, it launches an error, because markupsafe._compat couldn't be found. And I think that if we save the modules in the proyect it whouldn't happen.

cosme12 commented 6 years ago

Including modules inside this project may have several problems with licenses. So it's better to keep the tradicional way.

adanielpincab commented 6 years ago

Ok then.