Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
import sqlite3
- Page 1
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
17 Hours Ago
by usmanmalik57
… application. ```python from typing_extensions
import
TypedDict from langchain_openai
import
ChatOpenAI from IPython.display
import
Image, display from langgraph.graph
import
StateGraph, START from langgraph…
Re: Coin Flip (Python Newbie)
Programming
Software Development
5 Days Ago
by jassonadder
…'t change. Here's a corrected version of your code:
import
random coin_heads = 0 coin_tails = 0 timesflipped = 0 while timesflipped <…
Re: Java Coin Flip Program
Programming
Software Development
5 Days Ago
by jassonadder
… each result, and then shows the totals at the end:
import
random class CoinFlipper: def __init__(self): self.heads = 0 self…
Re: Coin Flip (Python Newbie)
Programming
Software Development
3 Days Ago
by Dani
> Presumably bumping every "coinflip" post to spam their URL Nothing wrong with that!! I'll take a trillion helpful posts if all someone wants in exchange is a free signature link back to their website (that only shows up for logged in members, so no SEO incentive).
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
… sns from itertools
import
combinations from collections
import
Counter from sklearn.metrics
import
hamming_loss, accuracy_score from rouge_score
import
rouge_scorer from openai
import
OpenAI from google…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
… on the computer you want to control. ```python # server.py
import
socket
import
pyautogui def main(): server_socket = socket.socket(socket.AF_INET, socket…’re using to control the other one. ```python # client.py
import
socket def main(): client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
… from fireworks.client
import
Fireworks
import
os
import
pandas as pd
import
time from rouge_score
import
rouge_scorer from sklearn.metrics
import
accuracy_score from collections
import
defaultdict from…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
… groq
import
Groq
import
os
import
pandas as pd from rouge_score
import
rouge_scorer from sklearn.metrics
import
accuracy_score from collections
import
defaultdict from google.colab
import
userdata…
Implementing a Dynamic Filter Option in a Web Application
Programming
Software Development
1 Month Ago
by YashSmith
… keyword, set minimum and maximum values, and filter by category.
import
React, { useState } from "react"; const DataFilter = ({ data }) =>…
Re: WooCommerce Duplicate Categories
Programming
Web Development
2 Months Ago
by simplixi
… on your production website. **It usually happens due to the
import
process creating new categories instead of matching with existing ones… and merging duplicate categories **Review
Import
Settings** * If you plan to
import
demo content again, check the
import
settings to see if there…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by rproffitt
"Wiz Research Uncovers Exposed DeepSeek Database Leaking Sensitive Information" "Security researchers tested 50 well-known jailbreaks against DeepSeek’s popular new AI chatbot. It didn’t stop a single one." It only seems to get worse the more you look at DeepSeek. And I must note how it is known to not want to talk about …
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by policenbicleara
Llama-70B struggles with sentiment analysis (69% accuracy) vs. Qwen-32B (87%). Summarization performance is weaker, with lower ROUGE scores. Qwen-32B is the better choice—smaller, faster, and more accurate.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
Understanding some SQLite Java Wrapper code
Programming
Software Development
15 Years Ago
by dmonopoly10
…myaggfun stuff? Around there...thanks in advance. [code]
import
SQLite.*; public class Test implements SQLite.Callback, SQLite.Function,…;); } } if (error) { System.exit(1); } } } [/code][code]
import
SQLite.*; public class Test implements SQLite.Callback, SQLite.Function, SQLite…
#import instead of @class
Hardware and Software
macOS
9 Years Ago
by ravi_14
….h" @class Asset; //i have used
import
"Asset.h" which contains definition for asset @interface … second line , author has used @class. I have implemented with
import
"Asset.h" Please explain the difference between two…
import a data table with spaces and export one column
Programming
Software Development
11 Years Ago
by shakin
** #
import
a data table with space? # ** Good day! I need to …
import requests endPoint = 'https://api.mnotify.com/api/template' apiKey =
Programming
Software Development
3 Years Ago
by Wis_874
import
requests endPoint = 'https://api.mnotify.com/api/template' apiKey = 'YOUR_API_KEY' url = endPoint + '?key=' + apiKey response = requests.get(url) data = response.json();
Sqlite
Programming
Databases
12 Years Ago
by ganesh641
How to install Sqlite in windows OS and how to customize the database table in sqlite and, Tools for sqlite working like mysql workbench.
sqlite manager
Programming
Databases
12 Years Ago
by TonyG_cyprus
Hi all,Anyone know of a decent free sqlite manager. One that will work with sqlite not
sqlite3
. Ive tried some and not been able to find one that works!
Re: Sqlite
Programming
Databases
12 Years Ago
by pritaeas
The installer is available from the sqlite website. As a tool I use Navicat (paid), but a search will give you plenty of free ones.
Re: SQLite " Item not found " exception
Programming
Software Development
14 Years Ago
by Ancient Dragon
SqLite doesn't throw exceptions, it just returns errors. You will have to change SqLite source code to make it throw exceptions like what you want. You have all the source code so you can change it any way you like.
Re: Import an new library in Netbeans (Jackcess)
Programming
Software Development
11 Years Ago
by JamesCherrill
`
import
static` imports any static final variables from a class (eg Colors from the Color class). Youu probably should be using just `
import
com.healthmarketscience.jackcess.Database.*; ` to
import
the classes.
Re: #import?
Programming
Software Development
16 Years Ago
by Radical Edward
#
import
isn't available in C or C++, but if you …
Sqlite, Glade and Python
Programming
Software Development
14 Years Ago
by viandante
…/office files. [code]
import
sqlite3
import
sys
import
gobject try:
import
pygtk pygtk.require("…pass try:
import
gtk
import
gtk.glade except: sys.exit(1) connection =
sqlite3
.connect('rubrypyth.…getSur,getPho,getCel,getEma,getAdd): connection =
sqlite3
.connect('rubrypyth.sqlite') cursor = connection.cursor()…
Re: Sqlite, Glade and Python
Programming
Software Development
14 Years Ago
by woooee
[QUOTE]I want to display in a treeview or listbox what I have in Sqlite[/QUOTE]I use [URL=http://code.activestate.com/recipes/52266-multilistbox-tkinter-widget/]MultiListbox[/URL] for that.
SQLite php connection
Programming
Web Development
14 Years Ago
by nelamurugan
… by you guys, Please help me out. I have got
sqlite3
db dump as dbname.db3, So then i tried to…
[SQLite] Display image from database error
Programming
Software Development
11 Years Ago
by renzlo
Hello, Everyone, I need your help with my code, I am trying to display the image from database to picturebox but I can't figure it out. Below is my code: Private Sub LoadImage(ByVal ind As Integer) Dim cn As New SQLiteConnection("Data Source=C:\db\QC_ASD_2013_08_09.qdb") Dim cmd As New SQLiteCommand(String.…
Re: import a data table with spaces and export one column
Programming
Software Development
11 Years Ago
by shakin
… without additonal intel Again the logic hope
import
data into an array for each field (
import
space char when blank) export array…
Re: Understanding some SQLite Java Wrapper code
Programming
Software Development
15 Years Ago
by masijade
The SQLLite driver is, at best, a Type 2 JDBC Driver. It is only a JNI wrapper around the SQLite library, and that code shown does not use JDBC functionality, at all. P.S. "func" is "function" and "agg" is "aggregate". The first is creating a function (seemingly a db function?), and the second is creating…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC