Michael Ilie
Michael Ilie

Reputation: 459

How to connect to SQLite3 database in python remotely

I use SQLite3 in python because my school computers don't allow us to install anything to python so I used the pre installed SQLite3 module.
I'm working on a program whose back end relies on an SQLite3 database, however the databases are created and stored on their computer.
Is it possible for me to "Host" an SQLite3 database on let's say a server and allow my script to access them remotely (my script could edit the database from my school computer)?
By the way, I'm using python 3.X

EDIT

i made a database api that runs in python 3, its called TaliffDb to install type pip3 install TaliffDB in your terminal. im working on a documentation, but please do comment if you have any questions

Upvotes: 1

Views: 1974

Answers (1)

OneCricketeer
OneCricketeer

Reputation: 191983

Write an API on the remote server, yes. This could be hosted by a web framework of your choice.

You won't get a direct network connection to a file

Upvotes: 1

Related Questions