├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── app ├── __init__.py ├── aml_config.py ├── aml_utils.py ├── data.db ├── decorators.py ├── facade.py ├── models.py ├── news_source_entertainment.py ├── news_source_international.py ├── news_source_music.py ├── news_source_national.py ├── news_source_reddit.py ├── news_source_sports.py ├── news_source_technology.py ├── static │ ├── css │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ └── custom.css │ ├── images │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 180.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── ajax-loader.gif │ │ └── favicon.ico │ └── js │ │ ├── custom.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── templates │ ├── 404.html │ ├── 500.html │ ├── base.html │ └── ns.html ├── translations │ └── pt │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── views.py ├── docs ├── babel-instructions.md └── migrate-instructions.md ├── insert_ns.py ├── lxml-4.9.0-cp310-cp310-win_amd64.whl └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/aml_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/aml_config.py -------------------------------------------------------------------------------- /app/aml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/aml_utils.py -------------------------------------------------------------------------------- /app/data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/data.db -------------------------------------------------------------------------------- /app/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/decorators.py -------------------------------------------------------------------------------- /app/facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/facade.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/models.py -------------------------------------------------------------------------------- /app/news_source_entertainment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_entertainment.py -------------------------------------------------------------------------------- /app/news_source_international.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_international.py -------------------------------------------------------------------------------- /app/news_source_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_music.py -------------------------------------------------------------------------------- /app/news_source_national.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_national.py -------------------------------------------------------------------------------- /app/news_source_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_reddit.py -------------------------------------------------------------------------------- /app/news_source_sports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_sports.py -------------------------------------------------------------------------------- /app/news_source_technology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/news_source_technology.py -------------------------------------------------------------------------------- /app/static/css/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/static/css/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/static/css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/static/css/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/css/custom.css -------------------------------------------------------------------------------- /app/static/images/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/114.png -------------------------------------------------------------------------------- /app/static/images/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/120.png -------------------------------------------------------------------------------- /app/static/images/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/144.png -------------------------------------------------------------------------------- /app/static/images/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/152.png -------------------------------------------------------------------------------- /app/static/images/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/180.png -------------------------------------------------------------------------------- /app/static/images/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/72.png -------------------------------------------------------------------------------- /app/static/images/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/76.png -------------------------------------------------------------------------------- /app/static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /app/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/images/favicon.ico -------------------------------------------------------------------------------- /app/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/js/custom.js -------------------------------------------------------------------------------- /app/static/js/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/js/jquery/.bower.json -------------------------------------------------------------------------------- /app/static/js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /app/static/js/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/static/js/jquery/jquery.min.map -------------------------------------------------------------------------------- /app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/templates/404.html -------------------------------------------------------------------------------- /app/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/templates/500.html -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/ns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/templates/ns.html -------------------------------------------------------------------------------- /app/translations/pt/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/translations/pt/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /app/translations/pt/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/translations/pt/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/app/views.py -------------------------------------------------------------------------------- /docs/babel-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/docs/babel-instructions.md -------------------------------------------------------------------------------- /docs/migrate-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/docs/migrate-instructions.md -------------------------------------------------------------------------------- /insert_ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/insert_ns.py -------------------------------------------------------------------------------- /lxml-4.9.0-cp310-cp310-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/lxml-4.9.0-cp310-cp310-win_amd64.whl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nandopedrosa/as_mais_lidas/HEAD/requirements.txt --------------------------------------------------------------------------------