mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-28 14:18:12 -08:00
Compare commits
6 Commits
3db59e2ffb
...
9d18c7aaf0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d18c7aaf0 | ||
|
|
10872e02d1 | ||
|
|
365b4f72b7 | ||
|
|
0f74ebe37b | ||
|
|
bf4c0379f2 | ||
|
|
29a6e053a6 |
@@ -149,6 +149,7 @@ Operators
|
|||||||
^= bitwise exclusive or and store
|
^= bitwise exclusive or and store
|
||||||
|= bitwise or and store
|
|= bitwise or and store
|
||||||
, separator as in ( y=x,z=++x )
|
, separator as in ( y=x,z=++x )
|
||||||
|
; statement terminator.
|
||||||
|
|
||||||
|
|
||||||
Operator precedence
|
Operator precedence
|
||||||
|
|||||||
@@ -380,3 +380,25 @@ function_name()
|
|||||||
* We need not to specify the return type of the function.
|
* We need not to specify the return type of the function.
|
||||||
* Functions by default return `None`
|
* Functions by default return `None`
|
||||||
* We can return any datatype.
|
* We can return any datatype.
|
||||||
|
|
||||||
|
|
||||||
|
## Some Important 3rd Party Modules
|
||||||
|
|
||||||
|
### 1. numpy
|
||||||
|
For manipulating numerical data and effectively deals with arrays and matrices.
|
||||||
|
### 2. requests
|
||||||
|
Deals with HTTP response and requests.
|
||||||
|
### 3. lxml
|
||||||
|
Used to parse web page in a better way.
|
||||||
|
### 4. beautifulsoup
|
||||||
|
Web-scraping module only for static pages and user-friendly
|
||||||
|
### 5. selenium
|
||||||
|
Web-scraping module also helps to automate web application and works in dynamic pages too.
|
||||||
|
### 6. scrapy
|
||||||
|
Boss of web-scraping modules, full fledged and can do all the heavy lifting for you.
|
||||||
|
### 7. pipreqs
|
||||||
|
To create requirements.txt file for the current project
|
||||||
|
### 8. colorama
|
||||||
|
To change the colors in the terminal
|
||||||
|
### 9. figlet
|
||||||
|
To create a ASCII art text
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
# DOCKER
|
# DOCKER
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
docker init # Creates Docker-related starter files
|
||||||
docker build -t friendlyname . # Create image using this directory's Dockerfile
|
docker build -t friendlyname . # Create image using this directory's Dockerfile
|
||||||
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
|
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
|
||||||
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode
|
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode
|
||||||
|
|||||||
Reference in New Issue
Block a user