Skip to content

DanielW10001/booklist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

booklist

Structured publication info for CS and EE books.

Structure: "TITLE", "AUTHOR", "PUBLISHER"

Notice:

  • Chinese and English publications are included.
  • For publications with multiple authors, only one author is included.
  • Publisher may be not included.
  • May include empty line or comment line led with '#'.

Work with Python 3:

with open('./booklist.txt', 'r', encoding='utf-8') as file:
    for line in file:
        if line[0] != '\n' and line[0] != '#':
            title, author, publisher = eval(line)

Issues and PRs are more than welcomed.

Licensed under LICENSE.md.

About

Structured publication info for CS and EE books

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published