Sazināties vai ir intrese AI risinājumus ieviest uzņēmumam, kurš nodarbojas ar Lidmašīnu tehniskā apkope, krievu uzņēmums, Airline support baltic, Union aviotian
Quality Control prezentācija: https://share.yellowrobot.xyz/quick/2025-3-8-C1748CC8-11E5-4B7A-8393-97B40CE2C352.pdf
Veikt labojumus
https://github.com/MontaAleksandra/DuckHunt_game
Izveidot jaunu private git, nosharot ar evaldsurtans. API atslēgas, DB pieejas utt nelikt iekšā GIT.
Izmantojot FastAPI, SwaggerUI, Dataclasses, MVC, PostgreSQL implementēt API, kur var augšupielādēt nestrukturizētu tāmju Excel failu un saņemt kā rezultātu strukturizētu tāmi.
Obligāti sadalīt API divos workeros, viens ir FastAPI view, kurš saņem un atdod pieprasījumus ar vismaz 2 funkcijām /task_submit
un /task_status
Un otru worker, kurš fonā while loopā ar nelielu time.sleep
starp iterācijām apstrādā DB reģistrētos pieprasījumus.
Paralēli ir palaisti 2 python scripts, katrs savā linux screen (virtuālajā konsolē) Noderīgas linux komandas (itsevišķi saistībā ar screen) https://share.yellowrobot.xyz/quick/2025-3-6-63B8EE7D-B3BD-4F1F-AF3D-1EB9CECFDD79.html
Piemērs: https://api.asya.ai/docs
API Input jābūt API_KEY (uzģenerēts UUID, kas nav publiski zināms),
Tāmes fails Excel formātā, paraugi https://share.yellowrobot.xyz/quick/2025-3-6-6B63F79C-FEFF-48B1-B228-B1F5AB883661.zip Nosūta serverim ar task_submit
API Output jabūt dataclass_json, lai veidojas šāds rezultāts (iegūst ar task_status)
xxxxxxxxxx
321[
2{
3sheet_name: str,
4positions: [
5{
6poistion: str,
7amount: float,
8price: float,
9},
10{
11poistion: str,
12amount: float,
13price: float,
14}
15]
16},
17{
18sheet_name: str,
19positions: [
20{
21poistion: str,
22amount: float,
23price: float,
24},
25{
26poistion: str,
27amount: float,
28price: float,
29}
30]
31}
32]
Macos: Lai izmantotu SSH iesaku izmantot Termius vai SSH terminal https://iterm2.com/
Priekš SFTP izmantot FileZilla vai Transmit => The best alternative to FileZilla (https://panic.com/transmit/) - First use trial version
Windows: Piemērs kā izmantot WinSCP un Putty, lai tiktu klāt serverim https://www.youtube.com/watch?v=9iH3R6Zc_GM
xxxxxxxxxx
11h: 62.122.20.14
2u: devtestapi
3Autentifikācija ar atslēgas failu
Serviss ir palaist šeit
Localhost saistība ar portu 8854
Salinkots caur nginx, bet to nevajag aiztikt
Python ir palaists ar piemēram:
x1micromamba activate devtestapi
2cd /home/devtestapi/app
3python3 ./app.py
tajā ar var uzinstalēt jaunus packages ar micromamba install numpy
piemēram
PostgreSQL ieteicams pieslēgties ar PyCharm Database Plugin!
Video kā izmantot Linux screen: https://www.youtube.com/watch?v=_ZJiEX4rmN4
API (pašlaik dummy script) palaists uz
screen -rd api
Worker dummy script palaists uz
screen -rd worker
x1micromamba activate devtestapi
2cd /home/devtestapi/app
3python3 ./worker.py
Piemēra fails, bet jāpārtaisa korektā MVC struktūrā
xxxxxxxxxx
1831import psycopg2
2import time
3import random
4import string
5
6def generate_random_event():
7"""Generate a random event string."""
8event_length = random.randint(10, 30)
9return ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(event_length))
10
11def connect_to_db():
12"""Connect to the PostgreSQL database."""
13conn = psycopg2.connect(
14dbname="devtestapi",
15user="devtestapi",
16password="50zw7VAKnHhrKkIQkbQz",
17host="62.122.20.14",
18port="5432"
19)
20return conn
21
22def insert_event(conn, event):
23"""Insert an event into the test_table."""
24cursor = conn.cursor()
25insert_query = "INSERT INTO test_table (event_register) VALUES (%s) RETURNING test_table_id;"
26cursor.execute(insert_query, (event,))
27record_id = cursor.fetchone()[0]
28conn.commit()
29cursor.close()
30return record_id
31
32def delete_old_records(conn):
33"""Delete oldest records when there are more than 50 records."""
34cursor = conn.cursor()
35
36# Count records
37cursor.execute("SELECT COUNT(*) FROM test_table;")
38count = cursor.fetchone()[0]
39
40if count > 50:
41# Delete oldest records keeping only the newest 50
42cursor.execute("""
43DELETE FROM test_table
44WHERE test_table_id IN (
45SELECT test_table_id
46FROM test_table
47ORDER BY test_table_id
48LIMIT %s
49);
50""", (count - 50,))
51deleted_count = cursor.rowcount
52print(f"Deleted {deleted_count} old records")
53
54conn.commit()
55cursor.close()
56
57def main():
58try:
59conn = connect_to_db()
60print("Connected to PostgreSQL database!")
61
62while True:
63# Generate and insert random event
64event = generate_random_event()
65record_id = insert_event(conn, event)
66print(f"Inserted event with ID {record_id}: {event}")
67
68# Check and delete old records
69delete_old_records(conn)
70
71# Wait for 60 seconds
72print("Waiting 60 seconds before next insertion...")
73time.sleep(60)
74
75except Exception as e:
76print(f"Error: {e}")
77finally:
78if conn:
79conn.close()
80print("Database connection closed.")
81
82if __name__ == "__main__":
83main()
Jābūt requirments.txt vai environment.yaml ar visām izmantotajām libraries.
Nepieciešams visas izmaiņas veikt GIT, bet arī uzstādīt uz servera.