├── README.md ├── docker ├── DOCKERFILE └── docker.md ├── html-css-js ├── bootstrap │ ├── bootstrap.md │ └── index.html ├── index.html ├── maps.html └── style-tables.css ├── php ├── data_management.php └── file_managament.php └── python ├── .gitignore ├── python.py └── snippets ├── data science ├── Data Science Template.ipynb ├── project structure │ ├── data_importer.py │ ├── data_processor.py │ ├── main.py │ └── model.py └── python for data science.py ├── datetime └── datetime.py ├── dotenv ├── dotenv.md └── main.py ├── finance ├── calc.py └── get_data.py ├── flask ├── api │ ├── api.py │ └── main.py ├── app │ ├── app.py │ ├── static │ │ ├── css │ │ │ └── layout.css │ │ └── js │ │ │ └── layout.js │ └── templates │ │ ├── 404.html │ │ ├── index.html │ │ ├── index2.html │ │ ├── index3.html │ │ ├── layout.html │ │ └── template4.html └── flask.md ├── gui └── qt.py ├── hardware ├── nidaq.py └── pyserial.py ├── json ├── search_json.py └── sort_json.py ├── langchain ├── langchain.md └── main.py ├── matplotlib └── matplotlib stream data.py ├── pytest ├── main.py ├── pytest.md └── test_main.py ├── signal └── signal.py ├── streamlit ├── .streamlit │ └── config.toml ├── app.py ├── images │ └── CDAD.png └── streamlit.md ├── unit testing └── unit test.py └── web scraping ├── 1check_robots_txt.py ├── 2simple_scraper.py ├── 3beautiful_soup_4.py ├── 4download_webpage_with_requests.py ├── 5scrapy.py └── 6selenium.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/README.md -------------------------------------------------------------------------------- /docker/DOCKERFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/docker/DOCKERFILE -------------------------------------------------------------------------------- /docker/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/docker/docker.md -------------------------------------------------------------------------------- /html-css-js/bootstrap/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/html-css-js/bootstrap/bootstrap.md -------------------------------------------------------------------------------- /html-css-js/bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/html-css-js/bootstrap/index.html -------------------------------------------------------------------------------- /html-css-js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/html-css-js/index.html -------------------------------------------------------------------------------- /html-css-js/maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/html-css-js/maps.html -------------------------------------------------------------------------------- /html-css-js/style-tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/html-css-js/style-tables.css -------------------------------------------------------------------------------- /php/data_management.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/php/data_management.php -------------------------------------------------------------------------------- /php/file_managament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/php/file_managament.php -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/python.py -------------------------------------------------------------------------------- /python/snippets/data science/Data Science Template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/data science/Data Science Template.ipynb -------------------------------------------------------------------------------- /python/snippets/data science/project structure/data_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/data science/project structure/data_importer.py -------------------------------------------------------------------------------- /python/snippets/data science/project structure/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/data science/project structure/data_processor.py -------------------------------------------------------------------------------- /python/snippets/data science/project structure/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/data science/project structure/main.py -------------------------------------------------------------------------------- /python/snippets/data science/project structure/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/data science/project structure/model.py -------------------------------------------------------------------------------- /python/snippets/data science/python for data science.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/data science/python for data science.py -------------------------------------------------------------------------------- /python/snippets/datetime/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/datetime/datetime.py -------------------------------------------------------------------------------- /python/snippets/dotenv/dotenv.md: -------------------------------------------------------------------------------- 1 | ```pip install python-dotenv``` -------------------------------------------------------------------------------- /python/snippets/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/dotenv/main.py -------------------------------------------------------------------------------- /python/snippets/finance/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/finance/calc.py -------------------------------------------------------------------------------- /python/snippets/finance/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/finance/get_data.py -------------------------------------------------------------------------------- /python/snippets/flask/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/api/api.py -------------------------------------------------------------------------------- /python/snippets/flask/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/api/main.py -------------------------------------------------------------------------------- /python/snippets/flask/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/app.py -------------------------------------------------------------------------------- /python/snippets/flask/app/static/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: peru; 3 | } -------------------------------------------------------------------------------- /python/snippets/flask/app/static/js/layout.js: -------------------------------------------------------------------------------- 1 | // alert('welcome to Peru'); -------------------------------------------------------------------------------- /python/snippets/flask/app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/templates/404.html -------------------------------------------------------------------------------- /python/snippets/flask/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/templates/index.html -------------------------------------------------------------------------------- /python/snippets/flask/app/templates/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/templates/index2.html -------------------------------------------------------------------------------- /python/snippets/flask/app/templates/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/templates/index3.html -------------------------------------------------------------------------------- /python/snippets/flask/app/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/templates/layout.html -------------------------------------------------------------------------------- /python/snippets/flask/app/templates/template4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/app/templates/template4.html -------------------------------------------------------------------------------- /python/snippets/flask/flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/flask/flask.md -------------------------------------------------------------------------------- /python/snippets/gui/qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/gui/qt.py -------------------------------------------------------------------------------- /python/snippets/hardware/nidaq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/hardware/nidaq.py -------------------------------------------------------------------------------- /python/snippets/hardware/pyserial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/hardware/pyserial.py -------------------------------------------------------------------------------- /python/snippets/json/search_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/json/search_json.py -------------------------------------------------------------------------------- /python/snippets/json/sort_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/json/sort_json.py -------------------------------------------------------------------------------- /python/snippets/langchain/langchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/langchain/langchain.md -------------------------------------------------------------------------------- /python/snippets/langchain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/langchain/main.py -------------------------------------------------------------------------------- /python/snippets/matplotlib/matplotlib stream data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/matplotlib/matplotlib stream data.py -------------------------------------------------------------------------------- /python/snippets/pytest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/pytest/main.py -------------------------------------------------------------------------------- /python/snippets/pytest/pytest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/pytest/pytest.md -------------------------------------------------------------------------------- /python/snippets/pytest/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/pytest/test_main.py -------------------------------------------------------------------------------- /python/snippets/signal/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/signal/signal.py -------------------------------------------------------------------------------- /python/snippets/streamlit/.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/streamlit/.streamlit/config.toml -------------------------------------------------------------------------------- /python/snippets/streamlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/streamlit/app.py -------------------------------------------------------------------------------- /python/snippets/streamlit/images/CDAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/streamlit/images/CDAD.png -------------------------------------------------------------------------------- /python/snippets/streamlit/streamlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/streamlit/streamlit.md -------------------------------------------------------------------------------- /python/snippets/unit testing/unit test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/unit testing/unit test.py -------------------------------------------------------------------------------- /python/snippets/web scraping/1check_robots_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/web scraping/1check_robots_txt.py -------------------------------------------------------------------------------- /python/snippets/web scraping/2simple_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/web scraping/2simple_scraper.py -------------------------------------------------------------------------------- /python/snippets/web scraping/3beautiful_soup_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/web scraping/3beautiful_soup_4.py -------------------------------------------------------------------------------- /python/snippets/web scraping/4download_webpage_with_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/web scraping/4download_webpage_with_requests.py -------------------------------------------------------------------------------- /python/snippets/web scraping/5scrapy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/toolkit/HEAD/python/snippets/web scraping/5scrapy.py -------------------------------------------------------------------------------- /python/snippets/web scraping/6selenium.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------