Discover Python
Discover Python
  • 10
  • 53 913

Відео

MySQL Connection Pooling [Dramatically increase performance]
Переглядів 4,9 тис.2 роки тому
Dramatically increase performance using connection pooling with python's MySQL connector. Such a small change can have performance gains upwards of 30%! Git Repo: github.com/discover-python-channel/youtube-content/tree/main/mysql_connection_pooling 0:00 Introduction 0:48 Docker setup 2:00 Python import script 2:40 Connection pool syntax 7:00 Single connection test 8:30 Pool connection test
SSH AWS EC2 with PowerShell [No PuTTY/PuTTY gen]
Переглядів 3883 роки тому
SSH into an AWS EC2 instance with just your windows 10 PowerShell. Does not require PuTTY or AWS PEM key transformation with PuTTY gen.
Python Requests [Everything you need to get started]
Переглядів 1243 роки тому
Everything you need to know to get up and running with Python Requests package. This video will show you how to send a request from a Python IDE as well as how the request is received by a server. I will mainly focus on GET and POST requests since these are the most common, but if anyone wants examples of PUTS/HEAD/DELETE request please let me know! Python Request documentation link: requests.r...
Python Neo4j Part 2 [Enriching data with Python]
Переглядів 4,2 тис.3 роки тому
Use Python to retrieve and enrich Neo4j data. You will see how to run simple queries against a Neo4j database and return the results to a list. You will also see how to use the returned data to create additional cypher queries to further enrich your dataset. GitHub Repo: github.com/discover-python/PYTHON_NEO4J/blob/main/Part 2 extracting and enriching data.ipynb
Python MySQL Connector Common Problems [Data not saving correctly DML/DDL issues]
Переглядів 6593 роки тому
Is your data not saving into a MySQL database even though it is executing successfully? This video describes the difference between MySQL DML and DDL commands using the Python MySQL connector.
Python Neo4j Advanced Relationships [Creating a process workflow]
Переглядів 1,7 тис.3 роки тому
Learn how to use Python with Neo4j to create relationship to display process workflows for process mining.
Neo4j with Python [Upload data into Neo4j with Python]
Переглядів 26 тис.3 роки тому
Learn how to use Python to upload data into a Neo4j graph database. GIT repo with Jupyter notebook: github.com/discover-python/PYTHON_NEO4J/blob/main/Upload data into neo4j with Python.ipynb Neo4j python library documentation: neo4j.com/docs/api/python-driver/current/ 0:00 Introduction 0:24 Create Database 1:00 Create fictional transactions 3:55 Upload to MariaDB (optional) 4:08 Write to Neo4j
Connect Python to MariaDB/MySQL Database [Nearly everything you need to know in 9 minutes!]
Переглядів 15 тис.3 роки тому
Nearly everything you need to know about the Python MySQL Connector in under 9 minutes. After watching this video, you will know how to easy connect to a MariaDB or MySQL database using Python. This video covers using python to read, write, and execute DDL commands using a Python and the mysql-connector package either in an IDE such as Spyder or within a Flask or Django Application. 0:00 Instal...
Python Elasticsearch [No Elasticsearch DSL/Middleware!]
Переглядів 6673 роки тому
Connect with Elasticsearch using only python requests package and without the need for Elasticsearch DSL or other middleware packages. This approach will allow you to align your application/project closely with the Elasticsearch documentation rather than with a middleware package. After 12 minutes you will understand how to connect with a Elasticsearch application running on your local host, bu...