Skip to main content

Python Helpful Urls for Data science & Block-chain

https://towardsdatascience.com/python-for-data-science-8-concepts-you-may-have-forgotten-i-did-825966908393


https://medium.com/ub-women-data-scholars/python-vs-r-for-data-science-490e1c82ede4

https://medium.com/factory-mind/regex-tutorial-a-simple-cheatsheet-by-exa

https://medium.com/neptune-insights/ultimate-cheat-sheet-to-start-coding-in-blockchain-rule-it-with-python-af355e86ba3c

https://medium.com/technology-invention-and-more/how-to-build-a-simple-neural-network-in-9-lines-of-python-code-cc8f23647ca1?source=---------39---------------------


https://medium.freecodecamp.org/python-list-comprehensions-vs-generator-expressions-cef70ccb49db

https://towardsdatascience.com/how-to-build-a-data-science-portfolio-5f566517c79c


https://medium.com/tech-tajawal/modern-backend-developer-in-2018-6b3f7b5f8b9


https://medium.com/@msalmon00/helpful-python-code-snippets-for-data-exploration-in-pandas-b7c5aed5ecb9


https://towardsdatascience.com/object-detection-with-10-lines-of-code-d6cb4d86f606


https://medium.com/@mateini_12893/python-for-big-data-computation-on-a-single-computer-c232046df3c3

https://medium.freecodecamp.org/learning-python-from-zero-to-hero-120ea540b567

https://towardsdatascience.com/unboxing-matplotlib-19f550a93b25


https://hackernoon.com/learn-blockchains-by-building-one-117428612f46

https://towardsdatascience.com/multi-class-text-classification-with-scikit-learn-12f1e60e0a9f


https://towardsdatascience.com/5-quick-and-easy-data-visualizations-in-python-with-code-a2284bae952f


https://becominghuman.ai/machine-learning-for-dummies-explained-in-2-mins-e83fbc55ac6d

https://medium.com/tag/python

Popular posts from this blog

How to read or extract text data from passport using python utility.

Hi ,  Lets get start with some utility which can be really helpful in extracting the text data from passport documents which can be images, pdf.  So instead of jumping to code directly lets understand the MRZ, & how it works basically. MRZ Parser :                 A machine-readable passport (MRP) is a machine-readable travel document (MRTD) with the data on the identity page encoded in optical character recognition format Most travel passports worldwide are MRPs.  It can have 2 lines or 3 lines of machine-readable data. This method allows to process MRZ written in accordance with ICAO Document 9303 (endorsed by the International Organization for Standardization and the International Electrotechnical Commission as ISO/IEC 7501-1)). Some applications will need to be able to scan such data of someway, so one of the easiest methods is to recognize it from an image file. I 'll show you how to retrieve the MRZ infor...

How to generate class diagrams pictures in a Django/Open-edX project from console

A class diagram in the Unified Modeling Language ( UML ) is a type of static structure diagram that describes the structure of a system by showing the system’s classes, their attributes, operations (or methods), and the relationships among objects. https://github.com/django-extensions/django-extensions Step 1:   Install django extensions Command:  pip install django-extensions Step 2:  Add to installed apps INSTALLED_APPS = ( ... 'django_extensions' , ... ) Step 3:  Install diagrams generators You have to choose between two diagram generators: Graphviz or Dotplus before using the command or you will get: python manage.py graph_models -a -o myapp_models.png Note:  I prefer to use   pydotplus   as it easier to install than Graphviz and its dependencies so we use   pip install pydotplus . Command:  pip install pydotplus Step 4:  Generate diagrams Now we have everything installed...

How to Play with docker

For folks who want to get started with Docker, there is the initial hurdle of installing Docker. Even though Docker has made it extremely simple to install Docker on different OS like Linux, Windows and Mac, the installation step prevents folks from getting started with Docker. With  Play with Docker , that problem also goes away.  Play with Docker  provides a web based interface to create multiple Docker hosts and be able to run Containers. This project is started by Docker captain Marcos Nils and is an open source project. Users can run regular containers or build Swarm cluster between the Docker hosts and create container services on the Swarm cluster. The application can also be installed in the local machine. This project got me interested in trying to understand the internals of the Docker host used within the application. I understood that Docker hosts are implemented as Docker in Docker(Dind) containers. In this blog, I have tried to cover some details on D...