Python

SQLServerCentral Article

Vector DB implementation using FAISS

  • Article

Searching for relevant information in vast repositories of unstructured text can be a challenge. This article explains a Python-based approach to implementing an efficient document search system using FAISS (Facebook AI Similarity Search) for Vector DB and sentence embeddings, which can be useful in applications like chatbots, document retrieval, and natural language understanding. In this […]

You rated this post out of 5. Change rating

2025-01-17

2,564 reads

External Article

Screen Scraping with Python and BeautifulSoup Code Examples

  • Article

BeautifulSoup (sometimes referred to as Beautiful Soup library) is one of several widely used screen scraping packages for a web page. It is highly regarded for its ease of use and power.
Screen scraping enables developers to create solutions that permit comparative analyses from all over the internet, such as web applications that look for the best price on an item from many different online stores.

2023-08-25

SQLServerCentral Article

Modifying MySQL data from within Python

  • Article

In the previous article in this series, I introduced you to how to access MySQL data from within a Python script. The article described how to use the MySQL Connector to establish a connection with a database and then retrieve data through that connection. In this article, I continue the discussion by demonstrating how to insert, update, and delete data in a MySQL database, again working with Python and the MySQL Connector.

2023-08-04

314 reads

External Article

Modifying MySQL data from within Python

  • Article

In the previous article in this series, I introduced you to how to access MySQL data from within a Python script. The article described how to use the MySQL Connector to establish a connection with a database and then retrieve data through that connection. In this article, I continue the discussion by demonstrating how to insert, update, and delete data in a MySQL database, again working with Python and the MySQL Connector.

2023-08-02

Blogs

DevUp 2025 Recap

By

Had an incredible time at DevUp in St. Louis this weekend! This conference gets...

How AI is Shaping Sustainable Textile Solutions

By

The textile world is undergoing a transformation, one where creativity meets computation, and tradition...

Microsoft Exchange Hybrid Deployment Vulnerability – Shared Service Principal

By

On August 6, 2025, Microsoft announced a vulnerability with hybrid deployments because of a...

Read the latest Blogs

Forums

NKTg Law on Varying Inertia – A Different Way to Think About Motion

By NKTgLaw

Hi everyone, I’d like to share something from the science side of life rather...

How to create your custom GPT SQL Expert

By Daniel Calbimonte

Comments posted to this topic are about the item How to create your custom...

Storage Enhancements

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Storage Enhancements

Visit the forum

Question of the Day

Getting Azure SQL Database Permissions

When I run this on Azure SQL Database, what is returned?

SELECT * FROM sys.fn_builtin_permissions('Server') AS fbp

See possible answers