Python Forum
file sharing across devices question
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
file sharing across devices question
#1
...ok, so basically i made a reminder GUI application (using TkInter mainly) and i save the date in a CSV file. The client wants to be able to install this software on various devices. I have beent searching and DuckDuckGoing for a while now and I cant find anything so I thought i could ask here.. Is there a way to share the file and update all file changes across all of the devices at all times?
Please refer me to frameworks, modules, packages, and IF possible links to documentations/videos/bootcamps.. whatever.... thanks for your time Wink
Reply
#2
i don't know if my English is poor,
or do you want to chain updates between devices?

why not create 1 "master" file on the server,
then other slave updates from it?
Reply
#3
If everyone shares the same event calendar, a database would be a good choice. Allowing access for multiple users while maintaining data integrity is built-in.
ndc85430 likes this post
Reply
#4
A online database eg Turso great free offer of 500 Databases, 9GB storage.
Eg convert the csv file to sqlite.
import pandas as pd
import sqlite3

conn = sqlite3.connect('reminders.db')
df = pd.read_csv('reminders.csv')
df.to_sql('reminders', conn, if_exists='append', index=False)
Test.
import sqlite3

conn = sqlite3.connect('reminders.db')
cursor = conn.cursor()
cursor.execute('SELECT * FROM reminders')
rows = cursor.fetchall()
for row in rows:
    print(row)
Output:
(1, 'Buy groceries', '2024-08-01') (2, 'Meeting with John', '2024-08-02') (3, 'Doctor appointment', '2024-08-03')
Or it look like can just upload csv file Turso,and they do stuff over.
Then look at Turso Quickstart (Python)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Best way to secure API key when sharing quarinteen 2 1,117 Jan-19-2024, 04:46 PM
Last Post: deanhystad
  How to install modules for 2.7 (or sharing from 3.8)) Persisto 2 3,706 Dec-31-2021, 02:33 PM
Last Post: Persisto
  multiprocessing and sharing object cyrduf 0 2,729 Feb-02-2021, 08:16 PM
Last Post: cyrduf
  sharing variables between two processes Kiyoshi767 1 2,543 Nov-07-2020, 04:00 AM
Last Post: ndc85430
  Sharing my code emirasal 2 2,771 Oct-04-2020, 02:21 PM
Last Post: emirasal
  Sharing X Axis in Sub plots JoeDainton123 1 3,055 Aug-22-2020, 04:11 AM
Last Post: deanhystad
  Best way to iterate through output to get the status of devices idkwhatimdoing 0 1,968 Apr-22-2020, 02:05 AM
Last Post: idkwhatimdoing
  How to make the script ignore down devices. wagnergt12 4 4,857 Apr-20-2020, 11:45 PM
Last Post: wagnergt12
  Instances sharing attributes midarq 4 3,393 Sep-20-2019, 11:13 AM
Last Post: midarq
  Where is usually located the python interpreter on android devices? anddontyoucomebacknomore 1 2,884 Jul-03-2019, 06:32 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020