Користувальницькькі налаштування

Налаштування сайту


programming:python

Розбіжності

Тут показані розбіжності між вибраною ревізією та поточною версією сторінки.

Посилання на цей список змін

Порівняння попередніх версій Попередня ревізія
Наступна ревізія
Попередня ревізія
programming:python [2020/04/06 01:17]
charon [Разное]
programming:python [2025/05/13 23:37] (поточний)
charon [From Datacamp]
Рядок 3: Рядок 3:
   * [[programming:python:pip|Pip package manager]]   * [[programming:python:pip|Pip package manager]]
   * [[programming:python:new_project|New project template]]   * [[programming:python:new_project|New project template]]
 +  * [[programming:python:new_boto|Boto3 new project template]]
 +  * [[programming:python:find_max_dictionary|How to find dictionary element with maximum field value]]
 ====== Python ====== ====== Python ======
   * [[https://medium.com/@jtpaasch/the-right-way-to-use-virtual-environments-1bc255a0cba7|The Right Way to Use Virtual Environments]]   * [[https://medium.com/@jtpaasch/the-right-way-to-use-virtual-environments-1bc255a0cba7|The Right Way to Use Virtual Environments]]
Рядок 45: Рядок 47:
   * [[https://realpython.com/pycharm-guide/|PyCharm for Productive Python Development (Guide)]]   * [[https://realpython.com/pycharm-guide/|PyCharm for Productive Python Development (Guide)]]
   * [[https://realpython.com/python-main-function/|Defining Main Functions in Python]]   * [[https://realpython.com/python-main-function/|Defining Main Functions in Python]]
 +  * [[https://medium.com/better-programming/exploring-data-classes-in-python-66b696506e55|Exploring Data Classes in Python]]
 +  * [[https://martinheinz.dev/blog/66|Creating Beautiful Tracebacks with Python's Exception Hooks]]
 +  * [[https://bas.codes/posts/python-decorators|Understanding Decorators in Python]]
 +  * [[https://pieriantraining.com/how-to-perform-web-scraping-with-python/|How to perform web scraping with Python!]]
 +  * [[https://towardsdatascience.com/6-use-cases-in-python-where-and-come-in-handy-530dd9d04875/|6 Use Cases in Python Where * and ** Come in Handy]]
 +
 ====== From Datacamp ====== ====== From Datacamp ======
   * [[https://www.datacamp.com/community/tutorials/data-structures-python|Python Data Structures Tutorial]]   * [[https://www.datacamp.com/community/tutorials/data-structures-python|Python Data Structures Tutorial]]
Рядок 61: Рядок 69:
   * [[https://www.datacamp.com/community/tutorials/fuzzy-string-python|Fuzzy String Matching in Python]]   * [[https://www.datacamp.com/community/tutorials/fuzzy-string-python|Fuzzy String Matching in Python]]
   * [[https://medium.com/lambda-automotive/python-and-lru-cache-f812bbdcbb51|Python and LRU Cache]]   * [[https://medium.com/lambda-automotive/python-and-lru-cache-f812bbdcbb51|Python and LRU Cache]]
 +  * [[https://www.datacamp.com/tutorial/exception-handling-python|Exception and Error Handling in Python]] 
 +  * [[https://www.datacamp.com/tutorial/progress-bars-in-python|Progress Bars in Python: A Complete Guide with Examples]] 
 +  * [[https://www.datacamp.com/tutorial/python-generators|Python Generators: Boosting Performance and Simplifying Code]]
 ====== Python and data ====== ====== Python and data ======
   * [[https://medium.com/better-programming/data-cleaning-with-python-pandas-an-introduction-1cfd5cde6884|Data Cleaning With Python and pandas]]   * [[https://medium.com/better-programming/data-cleaning-with-python-pandas-an-introduction-1cfd5cde6884|Data Cleaning With Python and pandas]]
 +  * [[https://towardsdatascience.com/6-python-container-data-types-you-should-know-81dad6c4f61d|6 Python Container Data Types You Should Know]]: Named Tuple, Ordered Dict (Ordered Dictionary), Chain Map,     Counter, Deque (Double-Ended Queue) 
 +  * [[https://www.datacamp.com/tutorial/python-redis-beginner-guide|Python Redis: A Beginner's Guide]]
 ====== Security ====== ====== Security ======
   * [[https://medium.com/asecuritysite-when-bob-met-alice/tip-to-developers-avoid-using-immutable-types-for-passwords-and-sensitive-user-data-8ba4f2a36eaa|Tip To Developers … Avoid Using Immutable Types for Passwords and Sensitive User Data]]   * [[https://medium.com/asecuritysite-when-bob-met-alice/tip-to-developers-avoid-using-immutable-types-for-passwords-and-sensitive-user-data-8ba4f2a36eaa|Tip To Developers … Avoid Using Immutable Types for Passwords and Sensitive User Data]]
-  * [[https://docs.python.org/3.6/library/secrets.html#module-secrets|Secrets]] module is here to provide an obvious way to reliably generate cryptographically strong pseudo-random values suitable for managing secrets+  * [[https://docs.python.org/3.10/library/secrets.html#module-secrets|Secrets]] module is here to provide an obvious way to reliably generate cryptographically strong pseudo-random values suitable for managing secrets 
 +  * [[programming:python:secret_key|Генерація secret key]] 
 +====== Хмара ====== 
 +  * [[https://dashbird.io/blog/boto3-aws-python/|Explaining boto3: How to Use Any AWS Service with Python]] 
 +  * [[https://dashbird.io/blog/aws-s3-python-tricks/|8 Must-Know Tricks to Use S3 More Effectively in Python]]
 ====== Разное ====== ====== Разное ======
   * [[https://github.com/hardikvasa/google-images-download|google-images-download]] Python Script to download hundreds of images from 'Google Images'. It is a ready-to-run code!   * [[https://github.com/hardikvasa/google-images-download|google-images-download]] Python Script to download hundreds of images from 'Google Images'. It is a ready-to-run code!
   * [[https://fredrikaverpil.github.io/2017/02/02/my-vscode-setup/|Example of Visual Studio Code setup]] for Python   * [[https://fredrikaverpil.github.io/2017/02/02/my-vscode-setup/|Example of Visual Studio Code setup]] for Python
   * [[https://towardsdatascience.com/how-to-speed-up-your-python-code-d31927691012|How to Speed up Your Python Code]] - 5 ways to increase performance, from using better algorithms to multiprocessing   * [[https://towardsdatascience.com/how-to-speed-up-your-python-code-d31927691012|How to Speed up Your Python Code]] - 5 ways to increase performance, from using better algorithms to multiprocessing
 +  * [[https://betterprogramming.pub/6-things-to-know-when-dockerizing-python-apps-in-production-f4701b50ca46|6 Things To Know When Dockerizing Python Apps in Production]]
  
 ---- ----
Рядок 80: Рядок 96:
   * [[http://www.patricksoftwareblog.com/using-docker-for-flask-application-development-not-just-production/|Using Docker for Flask Application Development (not just Production!)]]   * [[http://www.patricksoftwareblog.com/using-docker-for-flask-application-development-not-just-production/|Using Docker for Flask Application Development (not just Production!)]]
   * [[http://www.patricksoftwareblog.com/software-development-checklist-for-python-applications/|Software Development Checklist for Python Applications]]   * [[http://www.patricksoftwareblog.com/software-development-checklist-for-python-applications/|Software Development Checklist for Python Applications]]
 +
 +===== Django =====
 +  * [[https://habr.com/ru/post/546778/|Запуск Django сайта на nginx + Gunicorn + SSL]]
 ===== How to install Pycharm ===== ===== How to install Pycharm =====
   sudo snap install pycharm-community --classic   sudo snap install pycharm-community --classic
programming/python.1586125051.txt.gz · Востаннє змінено: 2020/04/06 01:17 повз charon