A small tutorial based on my own journey with packaging gitcrawl.
A small tutorial based on my own journey with packaging gitcrawl.
Gitcrawl is a tool which I wrote recently and spend some time on figuring out the right parameters. Thus I decided to write this small walk-through with explanations for my future me, my colleagues and anyone who might find it useful :)
If you just want to know how its done, just jump straight to Building the package
Simplified output of tree ../gitcrawl
pointing out the structure:
../gitcrawl
├── LICENSE
├── README.md
├
├── docs
│ │...<docs build with sphinx>
│
├── gitcrawl
│ ├── __init__.py
│ ├── core_functions.py
│ ├── docs
│ │ ├── ... < docs build with sphinx>
│ ├── ... <the actual code>
│ └── tests
│ └── <contains test code>
├
├── gitcrawl-env.yml
├── imgs
│ └── <images for the docs/README.md>
├── requirements.txt
├── setup.py
Guide to Python Programming Language
Python is an interpreted, high-level, powerful general-purpose programming language. You may ask, Python’s a snake right? and Why is this programming language named after it?
Python Hello World Program - Your first step towards Python world. Learn how to create the Hello World Python program in PyCharm.
Python Programming Tutorials For Beginners
Today you're going to learn how to use Python programming in a way that can ultimately save a lot of space on your drive by removing all the duplicates. We gonna use Python OS remove( ) method to remove the duplicates on our drive. Well, that's simple you just call remove ( ) with a parameter of the name of the file you wanna remove done.