Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

News at python3 #40

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cd6eb3a
:sparkles: Major Update - Python 3 Support!
ctrlsam Feb 5, 2018
677fadc
Removed Owner Headers
ctrlsam Feb 19, 2018
3b28fed
autopep run
TomFaulkner Feb 20, 2018
2cbe878
some pep8, rewrite ConfigurationReader
TomFaulkner Feb 20, 2018
3493899
more cleanup
TomFaulkner Feb 20, 2018
1fa70ac
break up news main loop, still needs work
TomFaulkner Feb 20, 2018
af5391a
more cleanup on news.py
TomFaulkner Feb 20, 2018
b5460f6
Merge pull request #1 from TomFaulkner/code-cleanup
Feb 20, 2018
35b3aa2
more cleanup
TomFaulkner Feb 20, 2018
acedaad
Merge pull request #2 from TomFaulkner/more-cleanup
Feb 20, 2018
ecea6dd
Merge pull request #2 from TomFaulkner/more-cleanup
ctrlsam Feb 20, 2018
1bf2263
Update README.md
Feb 20, 2018
92ce7ba
Update README.md
Feb 20, 2018
8327daa
Update README.md
Feb 20, 2018
2780a6d
add empty dir for saved_articles
TomFaulkner Feb 21, 2018
8e4a810
Merge branch 'master' of github.com:TomFaulkner/News-At-Command-Line
TomFaulkner Feb 21, 2018
e7611fd
remove accidentally added stories, add dir
TomFaulkner Feb 21, 2018
1f28ca4
adding file to appease git
TomFaulkner Feb 21, 2018
fb82b59
Merge branch 'News-At-python3' into more-cleanup
Feb 21, 2018
4f4148b
remove ExtractMainContent stub
TomFaulkner Feb 21, 2018
fc5f2ff
Merge branch 'more-cleanup' of github.com:TomFaulkner/News-At-Command…
TomFaulkner Feb 21, 2018
c313660
Merge pull request #28 from TomFaulkner/more-cleanup
Griffintaur Feb 21, 2018
9748481
Merge pull request #27 from SillySam/master
Griffintaur Feb 21, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 108 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# Saved News Files
saved_articles/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
.static_storage/
.media/
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
60 changes: 0 additions & 60 deletions ExtractMainContent.py

This file was deleted.

127 changes: 0 additions & 127 deletions Extractor.py

This file was deleted.

2 changes: 1 addition & 1 deletion Images/Readme.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# This folder contain the sample ouput or screen shots of the program while running.
# This folder contains the sample output or screen shots of the program while running.
Binary file modified Images/screenshot1.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Images/snapshot2.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 0 additions & 62 deletions Main.py

This file was deleted.

Loading