Commit Graph

6 Commits

Author SHA1 Message Date
Özcan Oğuz 27533359f2
RC1: everything tested 2020-08-24 15:14:00 +03:00
Umut Karcı e01b61143d
1- example `updated` timestamp replaced to epoch
2- __init__ or another file shouldn't be used as a main entry point. __main__ is the correct way. python3 -m pfxposter will work this way.
3- renamed pfxposter to poster, easier to import, easier to understand.
4- moved all stuff into functions, this is cleaner, hope for the cleanest code for all.
5- pip3 is not the best way, python3 -m pip is better due to pip3 may be in a different PATH than your virtual environment.
6- requests must be in requirements for development and setup.py for installation. Excluding it to not break the OS is just a bad workaround.
7- textwrap.dedent and triple quotes helps with readability
8- when using regular expressions, you should use raw strings (strings that ignores escape sequences like `\s`)
9- os._exit(0) is an immediate exit, sys.exit(0) will also exit the software but after flushing any open buffers and running any atexit callbacks.
10- breaking long chain calls is more readable
2020-08-24 14:10:20 +03:00
Özcan Oğuz 605c4e6477
0.1.4 2020-08-24 13:18:46 +03:00
Özcan Oğuz df326fb87b
0.1.0 2020-08-24 12:17:21 +03:00
Özcan Oğuz 79920d0ac1
init 5 2020-08-24 11:52:30 +03:00
Özcan Oğuz effff24781 Initial commit 2020-08-24 08:36:37 +03:00