Tagged articles
5000 articles
Page 21 of 50
Python Programming Learning Circle
Python Programming Learning Circle
May 23, 2024 · Artificial Intelligence

Comprehensive Collection of Aggregation Functions for Feature Engineering in Python

This article presents a detailed compilation of pandas built‑in aggregation methods and a wide range of custom Python functions for time‑series feature engineering, providing ready‑to‑use code snippets that cover statistical descriptors, drawdown metrics, peak detection, and more for data science practitioners.

PythonTime Seriesaggregation
0 likes · 17 min read
Comprehensive Collection of Aggregation Functions for Feature Engineering in Python
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 23, 2024 · Artificial Intelligence

Building a Multi‑Agent Bookmark Assistant Bot with Coze: From File Upload to AI‑Powered Search

This tutorial walks through creating a Coze bot that uses multi‑agent orchestration, memory variables, triggers, and large‑language‑model integration to upload bookmark files, extract and clean data, classify sites, generate importable HTML bookmarks, and provide AI‑driven search functionality, complete with Python code examples and deployment tips.

AI agentsBookmark ManagementBot Development
0 likes · 24 min read
Building a Multi‑Agent Bookmark Assistant Bot with Coze: From File Upload to AI‑Powered Search
Test Development Learning Exchange
Test Development Learning Exchange
May 22, 2024 · Backend Development

Python ReportLab PDF Generation Tutorial

This article provides a comprehensive guide to generating PDF documents using Python's ReportLab library, covering text reports, tables, images, multi-column layouts, headers/footers, dynamic chapters, styling, lists, long tables, and watermarks.

Document AutomationPythonReportLab
0 likes · 6 min read
Python ReportLab PDF Generation Tutorial
Python Programming Learning Circle
Python Programming Learning Circle
May 21, 2024 · Fundamentals

A Comprehensive Overview of Python Version, Environment, and Package Management Tools

This article provides a detailed classification and comparison of essential Python tooling—including version managers, virtual environment managers, package managers, and build/publish utilities—explaining their motivations, core commands, and feature support such as dependency locking, PEP 660, and PEP 621.

PythonTool comparisonVirtual Environments
0 likes · 19 min read
A Comprehensive Overview of Python Version, Environment, and Package Management Tools
Test Development Learning Exchange
Test Development Learning Exchange
May 20, 2024 · Fundamentals

Understanding Python List Indexing and Slicing

This article explains Python's list data structure, covering forward and negative indexing as well as slice operations, and provides multiple code examples demonstrating element access, sub‑list extraction, list copying, reversal, and stepwise selection.

ListPythonSlicing
0 likes · 4 min read
Understanding Python List Indexing and Slicing
Python Programming Learning Circle
Python Programming Learning Circle
May 20, 2024 · Fundamentals

30 Common Python Code Examples

This article presents a curated collection of 30 practical Python code snippets, ranging from basic algorithms like bubble sort and factorial calculation to file system operations, string manipulations, and utility functions such as generating calendars and checking leap years.

AlgorithmsPythonprogramming basics
0 likes · 4 min read
30 Common Python Code Examples
Test Development Learning Exchange
Test Development Learning Exchange
May 20, 2024 · Backend Development

Using HiPlot for Visualizing API Test Results

This article demonstrates how to employ HiPlot in API automated testing to efficiently visualize and analyze large sets of test data, covering single-run results, version comparisons, parameter impact studies, long‑running test sequences, and multi‑environment performance evaluations.

API testingHiPlotPython
0 likes · 5 min read
Using HiPlot for Visualizing API Test Results
Test Development Learning Exchange
Test Development Learning Exchange
May 17, 2024 · Backend Development

Using Python mechanize for Web Automation and Testing

The article introduces the Python mechanize library, explains its capabilities for automating web interactions such as form submission, link navigation, cookie management, and redirects, provides basic usage examples, detailed sample code for various testing scenarios, and notes its limitations compared to Selenium.

HTTPPythonSelenium
0 likes · 8 min read
Using Python mechanize for Web Automation and Testing
Top Architecture Tech Stack
Top Architecture Tech Stack
May 17, 2024 · Fundamentals

Understanding Python's input() Function: Basics, Examples, and Type Conversion

This article introduces Python's input() function, explains its basic syntax and behavior, provides example code for reading strings and converting them to numeric types, and highlights important considerations such as type conversion, input validation, and prompt usage, while also including promotional information for development tools.

Pythoncodinginput
0 likes · 6 min read
Understanding Python's input() Function: Basics, Examples, and Type Conversion
Python Programming Learning Circle
Python Programming Learning Circle
May 14, 2024 · Fundamentals

Essential pip Tips and Tricks for Python Package Management

This article provides a comprehensive guide to using pip, covering installation, upgrading, package installation, batch operations, uninstallation, dependency freezing, information lookup, outdated package checks, compatibility verification, and downloading packages for offline use, all illustrated with practical code examples.

Pythondependencypip
0 likes · 9 min read
Essential pip Tips and Tricks for Python Package Management
Python Programming Learning Circle
Python Programming Learning Circle
May 14, 2024 · Fundamentals

Python Frequently Asked Questions: Indentation, Float Precision, Immutability, and Core Language Design

This article answers twenty‑seven common Python questions covering why indentation is used for block grouping, the reasons behind surprising floating‑point results, the immutability of strings, the explicit use of self, the absence of assignment in expressions, and many other design choices that shape Python’s core behavior.

FAQMemory ManagementPython
0 likes · 28 min read
Python Frequently Asked Questions: Indentation, Float Precision, Immutability, and Core Language Design
Python Programming Learning Circle
Python Programming Learning Circle
May 13, 2024 · Backend Development

Django 5.0 Released: New Python Compatibility, Field Groups, and Database‑Computed Fields

Django 5.0 has been officially released, adding support for Python 3.10‑3.12, introducing field‑group templates to simplify form rendering, and providing new database‑computed field features such as Field.db_default and GeneratedField, while also marking the end of mainstream support for Django 4.2 and 4.1.

Database Computed FieldsDjangoField Group
0 likes · 5 min read
Django 5.0 Released: New Python Compatibility, Field Groups, and Database‑Computed Fields
Aikesheng Open Source Community
Aikesheng Open Source Community
May 13, 2024 · Databases

Profiling Memory Usage in MySQL Queries

This article explains how to use MySQL's performance_schema to monitor and analyze per‑connection memory consumption, provides SQL queries to list memory instruments, shows Python scripts for sampling and visualizing memory usage over time, and demonstrates practical usage with example commands and output.

Performance SchemaPythonmemory profiling
0 likes · 14 min read
Profiling Memory Usage in MySQL Queries
Test Development Learning Exchange
Test Development Learning Exchange
May 11, 2024 · Fundamentals

Understanding Python if...else Statements with Practical Examples

This article explains Python's if...elif...else conditional control structure, presents its basic syntax, and provides a series of clear examples ranging from simple number checks to more complex tasks like recursive Fibonacci, bubble sort, a guessing game, age classification, and bank account balance validation.

Pythonconditional statementsif-else
0 likes · 6 min read
Understanding Python if...else Statements with Practical Examples
21CTO
21CTO
May 11, 2024 · Fundamentals

What’s New in Python 3.13? Exploring GIL Removal, JIT, and Rankings

Python 3.13 beta introduces groundbreaking features such as an optional GIL, an experimental JIT compiler, and various module improvements, while the Redmonk ranking confirms Python’s surge to the second most popular language, reflecting its growing role in AI, data science, and modern development.

3.13GILJIT
0 likes · 6 min read
What’s New in Python 3.13? Exploring GIL Removal, JIT, and Rankings
Python Programming Learning Circle
Python Programming Learning Circle
May 11, 2024 · Artificial Intelligence

A Comprehensive Overview of Popular Python Libraries for Artificial Intelligence and Data Science

This article introduces and demonstrates more than twenty widely used Python libraries for artificial intelligence, computer vision, natural language processing, and data analysis, providing concise explanations and runnable code snippets that illustrate each library's core functionality and typical use cases.

Artificial IntelligenceData ScienceNumPy
0 likes · 29 min read
A Comprehensive Overview of Popular Python Libraries for Artificial Intelligence and Data Science
Test Development Learning Exchange
Test Development Learning Exchange
May 11, 2024 · Fundamentals

Common Operations with Python's os, sys, and datetime Modules

This guide demonstrates how to list directory contents, create and delete folders, manage the current working directory with the os module, retrieve interpreter information, handle command‑line arguments and exit codes using sys, and work with dates and times via the datetime module, providing expected outputs for each operation.

File OperationsPythondatetime module
0 likes · 5 min read
Common Operations with Python's os, sys, and datetime Modules
Python Programming Learning Circle
Python Programming Learning Circle
May 10, 2024 · Artificial Intelligence

Comprehensive Overview of Common Anomaly Detection Methods with Code Examples

This article compiles and explains a variety of common anomaly detection techniques—including distribution‑based, distance‑based, density‑based, clustering, tree‑based, dimensionality‑reduction, classification, and prediction methods—providing algorithm descriptions, workflow steps, advantages, limitations, and ready‑to‑run Python code snippets for each approach.

PythonUnsupervised Learninganomaly detection
0 likes · 23 min read
Comprehensive Overview of Common Anomaly Detection Methods with Code Examples
Python Programming Learning Circle
Python Programming Learning Circle
May 7, 2024 · Backend Development

Comparing Python Project Scaffolding and Build Tools: Cookiecutter, PyScaffold, PyBuilder, and Poetry

This article reviews the lack of a standard Python project structure and compares four popular scaffolding and build tools—Cookiecutter, PyScaffold, PyBuilder, and Poetry—detailing their installation, generated directory layouts, and typical make/ tox/ poetry commands for testing, documentation, and packaging.

PoetryProject ManagementPyBuilder
0 likes · 12 min read
Comparing Python Project Scaffolding and Build Tools: Cookiecutter, PyScaffold, PyBuilder, and Poetry
Python Programming Learning Circle
Python Programming Learning Circle
May 6, 2024 · Fundamentals

20 Essential Python Tips to Improve Code Readability and Efficiency

This article presents twenty practical Python tricks—including string reversal, title casing, unique element extraction, list repetition, list comprehensions, variable swapping, splitting, joining, palindrome checking, frequency counting, anagram detection, exception handling, enumeration, dictionary merging, timing code execution, flattening, sampling, digit conversion, and uniqueness testing—to help developers write clearer, more efficient code.

CodeTipsDataStructuresErrorHandling
0 likes · 9 min read
20 Essential Python Tips to Improve Code Readability and Efficiency
Test Development Learning Exchange
Test Development Learning Exchange
May 6, 2024 · Fundamentals

Chinese Idiom Chain Game Implemented with Python Tkinter

This article presents a Python Tkinter implementation of a Chinese idiom chain game, explaining its educational purpose, core modules, idiom data handling, validation functions, GUI layout, game logic, hint system, and provides the complete source code for learners to run and explore.

Idiom GamePythoneducational
0 likes · 7 min read
Chinese Idiom Chain Game Implemented with Python Tkinter
Python Programming Learning Circle
Python Programming Learning Circle
May 5, 2024 · Artificial Intelligence

Python Implementation of DBSCAN and KMeans for Point Cloud Clustering and Tracking with Hungarian Matching

This article presents a Python project that reads point‑cloud data from CSV files, applies DBSCAN and KMeans clustering, extracts cluster features, and uses the Hungarian algorithm to match clusters across frames for tracking, complete with full source code and result visualization.

DBSCANHungarian algorithmKMeans
0 likes · 13 min read
Python Implementation of DBSCAN and KMeans for Point Cloud Clustering and Tracking with Hungarian Matching
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 5, 2024 · Artificial Intelligence

Comprehensive Guide to Neural Network Algorithms: Definitions, Structure, Implementation, and Training

This article provides an in‑depth tutorial on neural network algorithms, covering their biological inspiration, significance, advantages and drawbacks, detailed architecture, data preparation, one‑hot encoding, weight initialization, forward and backward propagation, cost functions, regularization, gradient checking, and complete Python code examples.

AIBackpropagationNeural Networks
0 likes · 37 min read
Comprehensive Guide to Neural Network Algorithms: Definitions, Structure, Implementation, and Training
CSS Magic
CSS Magic
May 4, 2024 · Artificial Intelligence

Missed the ChatGPT Code Interpreter? Three Real Cases Show Its Power

The article explains what the ChatGPT Code Interpreter is, demonstrates three practical use‑cases—document conversion, batch file processing, and fixing math errors—and outlines how to embed it in GPTs while noting its current limitations.

AI toolsChatGPTCode Interpreter
0 likes · 9 min read
Missed the ChatGPT Code Interpreter? Three Real Cases Show Its Power
MaGe Linux Operations
MaGe Linux Operations
May 2, 2024 · Fundamentals

Unlock Python’s Power: Master Multiprocessing for Faster, Scalable Code

This comprehensive guide explains Python’s multiprocessing module, covering process creation, inter‑process communication, pools, synchronization primitives, error handling, and real‑world examples such as web crawlers, data analysis, and game servers, helping developers harness multiple CPU cores to boost performance and avoid GIL limitations.

Code ExamplesParallelismPython
0 likes · 32 min read
Unlock Python’s Power: Master Multiprocessing for Faster, Scalable Code
Test Development Learning Exchange
Test Development Learning Exchange
May 1, 2024 · Fundamentals

Using Python Generators for Dynamic Test Data Generation

This article explains how Python generators can be leveraged in interface automation testing to dynamically create test data, parameterize URLs, generate test cases, build report entries, tokens, HTTP status codes, query dates, API paths, report headings, and email templates, with complete code examples for each scenario.

GeneratorsPythonprogramming
0 likes · 10 min read
Using Python Generators for Dynamic Test Data Generation
Architect
Architect
May 1, 2024 · Fundamentals

Why ULID Beats UUID: A Deep Dive into Features, Specs, and Python Usage

This article compares UUID and ULID, explains the limitations of UUID versions, details ULID's timestamp‑based, lexicographically sortable design, presents its binary layout and encoding, and shows how to generate and manipulate ULIDs in Python with concrete code examples.

Distributed SystemsPythonSorting
0 likes · 8 min read
Why ULID Beats UUID: A Deep Dive into Features, Specs, and Python Usage
Java Tech Enthusiast
Java Tech Enthusiast
May 1, 2024 · Fundamentals

Zigzag Conversion Algorithm (LeetCode 6)

The Zigzag Conversion algorithm rearranges an input string into a Z‑shaped pattern across a specified number of rows, tracks the current row while toggling direction at the top and bottom, stores characters per row, and finally concatenates the rows to produce the transformed string, with reference implementations in C++, Java, and Python.

LeetCodePythonString
0 likes · 9 min read
Zigzag Conversion Algorithm (LeetCode 6)
Python Programming Learning Circle
Python Programming Learning Circle
Apr 30, 2024 · Cloud Native

Choosing the Right Docker Base Image for Python Applications: Requirements, Size, and Build‑Time Comparison

This article evaluates several Linux‑based Docker base images for Python applications, outlining stability, security, library availability, and size requirements, then compares Ubuntu, CentOS, Debian, Amazon Linux 2, official Python images and Alpine in terms of image size and build time, concluding with practical recommendations.

AlpineBase ImageBuild Time
0 likes · 17 min read
Choosing the Right Docker Base Image for Python Applications: Requirements, Size, and Build‑Time Comparison
Test Development Learning Exchange
Test Development Learning Exchange
Apr 30, 2024 · Fundamentals

Understanding Python Comprehensions: Lists, Dictionaries, Sets, and Generators with Examples

Python comprehensions provide a concise, powerful way to create new data structures—lists, dictionaries, sets, and generators—from existing iterables, combining loops and conditional logic, and the article explains their syntax, usage, and includes practical code examples for dynamic parameter construction, data analysis, and testing scenarios.

ComprehensionsPythonSet
0 likes · 7 min read
Understanding Python Comprehensions: Lists, Dictionaries, Sets, and Generators with Examples
Python Programming Learning Circle
Python Programming Learning Circle
Apr 28, 2024 · Fundamentals

13 Lesser‑Known Python Tricks for Cleaner and More Efficient Code

This article introduces thirteen lesser‑known Python tricks—including ternary operators, enumerate, zip, list comprehensions, lambda functions, any/all, itertools, generators, decorators, argument unpacking, dynamic imports, dictionary comprehensions, and mutable collections—each explained with concise examples to help developers write cleaner, more efficient code.

AdvancedPythonTutorial
0 likes · 10 min read
13 Lesser‑Known Python Tricks for Cleaner and More Efficient Code
Python Programming Learning Circle
Python Programming Learning Circle
Apr 26, 2024 · Artificial Intelligence

Five Essential Python Libraries for Machine Learning Engineers

This article introduces five essential Python libraries—MLflow, Streamlit, FastAPI, XGBoost, and ELI5—that every junior or intermediate machine‑learning engineer and data scientist should master to streamline experiment tracking, build interactive web apps, deploy models efficiently, achieve fast accurate predictions, and improve model interpretability.

ELI5FastAPIPython
0 likes · 8 min read
Five Essential Python Libraries for Machine Learning Engineers
Python Programming Learning Circle
Python Programming Learning Circle
Apr 24, 2024 · Big Data

Using the TransBigData Python Library for Mobile Signaling Data Processing, Analysis, and Visualization

This article introduces the TransBigData Python package, explains how to install it, read mobile signaling data with pandas, preprocess and grid the data, identify stay and move events, determine home and work locations, and visualize individual user activity using built‑in functions.

Big DataData visualizationPython
0 likes · 7 min read
Using the TransBigData Python Library for Mobile Signaling Data Processing, Analysis, and Visualization
21CTO
21CTO
Apr 23, 2024 · Artificial Intelligence

How to Build a Python ChatGPT App: Step‑by‑Step API Guide

This tutorial walks you through accessing the OpenAI ChatGPT API with Python, covering account setup, API key generation, code examples for basic calls, custom system instructions, conversation memory handling, and building a simple GUI chatbot using tkinter or Gradio.

AIAPIChatGPT
0 likes · 9 min read
How to Build a Python ChatGPT App: Step‑by‑Step API Guide
21CTO
21CTO
Apr 23, 2024 · Artificial Intelligence

Deploy Large Language Models with vLLM and Quantization for Low Latency

This guide explains how to deploy open‑source large language models using vLLM, benchmark latency and throughput, and apply 8‑bit/4‑bit quantization techniques such as BitsandBytes and NF4 to achieve faster inference on limited‑GPU hardware.

LLM deploymentLarge Language ModelsPython
0 likes · 13 min read
Deploy Large Language Models with vLLM and Quantization for Low Latency
Python Programming Learning Circle
Python Programming Learning Circle
Apr 23, 2024 · Fundamentals

How to Decompile a Python .exe Back to Python Source Code

This guide explains how to extract .pyc files from a Python‑generated executable, restore missing bytecode headers, and use tools such as pyinstxtractor, pyi‑archive_viewer, and uncompyle6 to decompile the bytecode back into readable Python scripts while highlighting common pitfalls and protection mechanisms.

ExecutablePythonbytecode
0 likes · 12 min read
How to Decompile a Python .exe Back to Python Source Code
Baidu Geek Talk
Baidu Geek Talk
Apr 22, 2024 · Artificial Intelligence

Designing Effective Prompts for Large Language Models: Structure, Code Examples, and Regex Extraction

The article presents a systematic prompt template—comprising Instruction, Input Data, Context, and Output Indicator—demonstrates code examples for single‑ and multi‑task formatting, shows how clear markers enable regex extraction, and introduces Baidu’s PaddlePaddle Star River Community to simplify building reliable LLM‑driven applications.

AICode ExamplePython
0 likes · 13 min read
Designing Effective Prompts for Large Language Models: Structure, Code Examples, and Regex Extraction
21CTO
21CTO
Apr 22, 2024 · Operations

Discover Guider: A Python‑Powered Linux Observability Suite with 150+ Commands

Guider, a Python‑based Linux observability suite created by Hyundai engineer Peace Lee, offers over 150 command‑line tools for real‑time performance monitoring, resource tracing, automated reporting, and visualizations, enabling developers to diagnose slow startups, crashes, GPU stalls, and system resets with microsecond precision.

CLILinuxObservability
0 likes · 7 min read
Discover Guider: A Python‑Powered Linux Observability Suite with 150+ Commands
21CTO
21CTO
Apr 22, 2024 · Artificial Intelligence

Run Llama 3 Locally on PC/Mac: Ollama, LM Studio & GPT4All Guide

This guide walks you through three practical methods—using Ollama, LM Studio, and GPT4All—to install and run the open‑source Llama 3 model locally on Windows, macOS, or Ubuntu, including command‑line usage, Python integration, and prompt‑engineering techniques for formatted outputs.

GPT4AllLM StudioLlama3
0 likes · 5 min read
Run Llama 3 Locally on PC/Mac: Ollama, LM Studio & GPT4All Guide
Test Development Learning Exchange
Test Development Learning Exchange
Apr 20, 2024 · Artificial Intelligence

Implementing a Simple University Paper Plagiarism Detection System in Python

This article outlines the design and implementation of a basic university paper plagiarism detection system using Python, covering text preprocessing with NLTK, TF‑IDF weighting, cosine similarity calculation, and a sample in‑memory paper database, while also discussing scalability, UI, and legal considerations.

Cosine SimilarityNLPPython
0 likes · 10 min read
Implementing a Simple University Paper Plagiarism Detection System in Python
Python Programming Learning Circle
Python Programming Learning Circle
Apr 20, 2024 · Fundamentals

Comparison of Five Python Automation Testing Frameworks

This article compares five popular Python automation testing frameworks—Robot Framework, Pytest, UnitTest, Behave, and Lettuce—detailing their prerequisites, strengths, weaknesses, and suitability for different testing scenarios to help developers choose the right tool for functional, unit, or behavior‑driven testing.

LettucePythonautomation
0 likes · 12 min read
Comparison of Five Python Automation Testing Frameworks
Test Development Learning Exchange
Test Development Learning Exchange
Apr 20, 2024 · Backend Development

Introduction to HTTPretty: Mocking HTTP Requests in Python

HTTPretty is a Python library for testing that enables lightweight, precise mocking of HTTP/HTTPS requests and responses, offering isolation, speed, complex scenario simulation, and data protection, illustrated with five practical code examples covering token retrieval, webhook handling, error simulation, timeout testing, and pagination.

APIHTTPrettyMock Server
0 likes · 8 min read
Introduction to HTTPretty: Mocking HTTP Requests in Python
Python Programming Learning Circle
Python Programming Learning Circle
Apr 19, 2024 · Fundamentals

Comprehensive Introduction to Python Algorithms: Sorting, Searching, and Cryptography

This article introduces a curated collection of Python algorithm implementations, covering basic sorting and searching techniques, as well as advanced methods like quickselect and tabu search, as well as cryptographic algorithms such as Caesar, Vigenère, and RSA, with explanations, visualizations, and links to the GitHub repository for further study.

AlgorithmsData StructuresPython
0 likes · 15 min read
Comprehensive Introduction to Python Algorithms: Sorting, Searching, and Cryptography
Python Programming Learning Circle
Python Programming Learning Circle
Apr 18, 2024 · Artificial Intelligence

Implementing an Automatic Math Expression Grading System with Python and Convolutional Neural Networks

This tutorial walks through building a self‑trained OCR pipeline that generates synthetic digit images, trains a CNN model, segments handwritten math expressions, predicts each character, evaluates the arithmetic result, and overlays checkmarks, crosses or answers onto the original image.

CNNImage ProcessingOCR
0 likes · 28 min read
Implementing an Automatic Math Expression Grading System with Python and Convolutional Neural Networks
JD Tech
JD Tech
Apr 18, 2024 · Artificial Intelligence

Getting Started with LangChain: Overview, Core Components, and Python Code Samples

This article introduces the LangChain framework for large language model integration, explains its key components and advantages, and provides step‑by‑step Python examples for setting up environment variables, creating prompts, chaining models, and using embeddings, completions, and chat models.

ChatModelEmbeddingLLM
0 likes · 7 min read
Getting Started with LangChain: Overview, Core Components, and Python Code Samples
Python Crawling & Data Mining
Python Crawling & Data Mining
Apr 18, 2024 · Backend Development

How to Scrape GDP Data with Python and Save to CSV in Minutes

This article demonstrates how to use Python's requests, lxml, and pandas libraries to crawl GDP data from a website, parse the HTML tables, and efficiently write the extracted rankings, regions, GDP values, and years into a CSV file, providing a complete, runnable example for web scraping beginners.

CSVPythonWeb Scraping
0 likes · 8 min read
How to Scrape GDP Data with Python and Save to CSV in Minutes
CSS Magic
CSS Magic
Apr 18, 2024 · Artificial Intelligence

Get Started with Kimi API Instantly—No Coding Experience Required

This step‑by‑step guide shows how to claim your free Kimi API credit, create an API key, test the service with Postman, and integrate it via Python SDK, frontend projects, or no‑code tools like Dify, enabling anyone to build AI applications without writing code.

AIChat CompletionFrontend
0 likes · 10 min read
Get Started with Kimi API Instantly—No Coding Experience Required
Sohu Tech Products
Sohu Tech Products
Apr 17, 2024 · Artificial Intelligence

Introduction to agere: A Lightweight, Fully Customizable Agent Framework

agere is a lightweight, dependency‑free Python framework that lets developers build fully customizable agents by defining reusable Job and handler task nodes in an edge‑node model, supporting parallel execution, fine‑grained callbacks, direct parameter passing, and hierarchical orchestration through a root Commander node.

AIAgent FrameworkPython
0 likes · 10 min read
Introduction to agere: A Lightweight, Fully Customizable Agent Framework
Python Programming Learning Circle
Python Programming Learning Circle
Apr 17, 2024 · Big Data

Comparative Analysis of Starbucks and Luckin Coffee Store Distribution in China Using Python Data Visualization

Using Python data visualization and geospatial analysis, this article compares the nationwide distribution of Starbucks and Luckin Coffee stores in China, revealing differences in regional concentration, proximity patterns, and statistical insights such as average Luckin stores within 500 m of each Starbucks location.

Big DataPythonStore Distribution
0 likes · 11 min read
Comparative Analysis of Starbucks and Luckin Coffee Store Distribution in China Using Python Data Visualization
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Apr 17, 2024 · Backend Development

Getting Started with CozeIDE: Build and Deploy Plugins in 10 Minutes

This guide introduces CozeIDE, explains its main features such as code editing, dependency management, AI programming assistant, testing and publishing, and walks you through two complete plugin development examples—including a stock‑price lookup plugin—showing how to create, test, and release plugins using Node.js or Python runtimes.

AI AssistantCozeIDENode.js
0 likes · 12 min read
Getting Started with CozeIDE: Build and Deploy Plugins in 10 Minutes
21CTO
21CTO
Apr 16, 2024 · Artificial Intelligence

Why Go Developers Are Turning to AI Despite Python Dominance

A 2024 survey of Go developers reveals strong interest in building AI applications but frustration over Python's dominant ecosystem, highlighting performance priorities, tooling gaps, and a desire for Go libraries comparable to Python's, while also showing cloud platform preferences and IDE usage trends.

Artificial IntelligenceGoPerformance
0 likes · 5 min read
Why Go Developers Are Turning to AI Despite Python Dominance
Didi Tech
Didi Tech
Apr 16, 2024 · Artificial Intelligence

Optimizing DSP Deep Model Latency by Externalizing Feature Processing with EzFeaFly

By externalizing feature processing with the EzFeaFly tool and feeding a dense index/value tensor directly to the GPU, the DSP platform decouples feature transformation from model inference, cutting instance usage by ~40%, reducing inference latency 70‑80%, and achieving over 60% end‑to‑end latency improvement while lowering costs.

DSPGPU AccelerationPython
0 likes · 11 min read
Optimizing DSP Deep Model Latency by Externalizing Feature Processing with EzFeaFly
NewBeeNLP
NewBeeNLP
Apr 16, 2024 · Artificial Intelligence

Demystifying the Transformer: Step‑by‑Step PaddlePaddle Implementation

This article provides a comprehensive, code‑rich walkthrough of the Transformer architecture using PaddlePaddle, covering the encoder and decoder components, residual connections, layer normalization, feed‑forward networks, scaled dot‑product and multi‑head attention, and shows how to assemble the full model with training and inference functions.

Attention MechanismDecoderDeep Learning
0 likes · 17 min read
Demystifying the Transformer: Step‑by‑Step PaddlePaddle Implementation
Test Development Learning Exchange
Test Development Learning Exchange
Apr 16, 2024 · Artificial Intelligence

Fuzzy String Matching in Python with difflib, fuzzywuzzy, and TheFuzz

This article demonstrates how to perform fuzzy string matching in Python using three libraries—difflib, fuzzywuzzy (with python-Levenshtein), and TheFuzz—by defining matching functions, installing required packages, and providing example code that finds the best match for a given pattern among a list of candidate strings.

PythonTheFuzzdifflib
0 likes · 3 min read
Fuzzy String Matching in Python with difflib, fuzzywuzzy, and TheFuzz
dbaplus Community
dbaplus Community
Apr 15, 2024 · Operations

How Docker Init Automates Dockerfile Creation for Your Projects

This article explains how Docker's new CLI tool docker init uses generative AI to automatically generate Dockerfiles, docker‑compose files, and .dockerignore for a project, walking through a Flask example, showing commands, generated code, and the benefits of faster, safer container setup.

ContainerizationDevOpsFlask
0 likes · 7 min read
How Docker Init Automates Dockerfile Creation for Your Projects
Python Programming Learning Circle
Python Programming Learning Circle
Apr 15, 2024 · Fundamentals

20 Python One‑Liner Tricks for Concise and Readable Code

This article showcases twenty practical Python one‑liner examples that demonstrate how to write loops, conditionals, data‑structure operations, functions, recursion, file handling, and other common tasks in a single, compact line of code, complete with explanations and ready‑to‑run snippets.

One-linerPythonTips
0 likes · 13 min read
20 Python One‑Liner Tricks for Concise and Readable Code
Model Perspective
Model Perspective
Apr 15, 2024 · Fundamentals

Unlocking Model Insights: A Practical Guide to Sobol Sensitivity Analysis

This article introduces the concept and various methods of sensitivity analysis—including one‑factor, multi‑factor, variance‑based, and Monte Carlo approaches—explains Sobol indices, outlines step‑by‑step procedures, and demonstrates their application with a Python case study on urban air‑quality modeling.

Air QualityEnvironmental ModelingMonte Carlo
0 likes · 10 min read
Unlocking Model Insights: A Practical Guide to Sobol Sensitivity Analysis