Skip to content

codingEzio/code_py_trylib_psycopg2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Material

Read soure code

  • Get it

    • git clone https://github.com/psycopg/psycopg2 && cd psycopg2
  • Search methods, functions etc.

    grep -inr 'KEYWORD' SEARCH_PATH \
      | grep -vi "test\|NEWS\|pep\|rst\|psycopg/\|errorcode" \
      | grep -i "KEYWORD"
    
    # OPTIONAL pipes
      | wc -l             # how many search results
      >| OUTPUT_FILE      # export search results to a text file
    
    # test\|NEWS\|pep\|rst\|psycopg/\|errorcode
    # test        typically we don't need it
    # pep, rst    you may add this if you just wanna see the code
    # psycopg     no C code
    # errorcode   typically we don't need it

Releases

No releases published

Packages

No packages published

Languages