南投 埔里鄉
軟體開發專家推薦

您附近有 731 名 軟體開發專家
尋找您附近的軟體開發專家
地區
南投縣
pro_search_arrow_down.png
區域
埔里鎮
pro_search_arrow_down.png
免費取得報價
想要提供此項服務? 加入開始接案

如何找到軟體開發公司?

回答幾個問題,告訴我們您的軟體開發需求
在幾分鐘內,我們將為您找到最合適您的軟體開發公司
比較報價後,選擇最適合您的軟體開發公司合作

近期埔里附近正在找軟體開發專家的案件

軟體開發
魏〇偉    南投縣 埔里鎮
您需要開發的項目是?
後台管理系統
您希望使用哪種程式語言?
Python
您的項目目前狀態為?
有想法與介面流程設計
江威德

洽談後報價
餘弦科技
4.5
洽談後報價
澧曜數據有限公司
5.0
洽談後報價
3天內收到3筆報價
軟體開發
黃〇    南投縣 埔里鎮
您需要開發的項目是?
其他: * 熟悉Python,尤其是Raspberry Pi上的Python程式設計,電腦應用程式
您希望使用哪種程式語言?
Python,C/C++
您的項目目前狀態為?
有想法與介面流程設計
魏卉勛

$45000/ 單次
黃興佑

洽談後報價
陳建隆

洽談後報價
3天內收到3筆報價

客戶對PRO360軟體開發專家的好評

平均4.84
179 則評論
張吉山
2024-04-21
這一次合作很愉快,工作快速👍 而且專業有技術 。持續合作中
2024-04-21
奕奇數位科技股份有限公司
2018-04-24
您好 1.刷卡機是固定型號,請參考http://bit.ly/2HmGzjr 2.接收server端指令,然後在client端(卡機)發出聲音和顯示 3.個人的話可以寫勞務報酬單
2018-04-24
李柏明
2023-09-26
我有幸與Bryant合作在一個Python程式開發項目上,他的表現超出了我的期望。不僅如此,他的專業態度和溝通能力也讓整個項目流程變得順暢。 在技術方面,Bryant展示了深厚的Python開發經驗和高水平的專業技能。他不僅迅速地掌握了項目需求,而且能有效地轉化為高質量的代碼。 更值得一提的是,Bryant的溝通能力出色。他總是能快速理解我的需求和預期,並且會及時反饋項目的進度和可能遇到的問題,這讓我感到非常放心。 此外,項目中遇到了一些API學習的挑戰,Bryant表現得相當能幹,他獨立地找到了解決方案,這不僅節省了我們的時間,也確保了項目的成功。 總之,我高度推薦Bryant作為一個可靠和高效的Python開發者。他不僅具備優秀的技術能力,更有出色的人際溝通能力,這使他成為任何項目的理想人選。
2023-09-26
石先生
2023-03-21
很多人跟我接洽 不過鄭老師給我的感覺最親切 我本來一開始打算放棄我要做的項目,但是鄭老師的堅持 !鼓勵 我。也很開心我有聽取建議 過程中不會很有壓力,反而像是朋友般的對談 結果也是完美的完成項目 第一次在這個平台就有很棒的體驗 下次還會再找鄭老師 繼續合作!
2023-03-21
陳易廷
2024-04-05
講解清晰易懂,有問題都能耐心回答,非常推薦!
2024-04-05

查看近期埔里附近找軟體開發專家的需求

軟體開發
Phone
魏〇偉
南投縣 埔里鎮
顧客預算:沒有預算概念
RD 工作
web 接案
Programmer 工作
1. 後台管理系統   2. Python   3. 有想法與介面流程設計   4. 都不需要   5. 南投縣,埔里鎮  
描述: 1. python create Jira ticket: 用家以email 寫內容, 當program 看到有email進來,就create Jira ticket。我會prov id******** 初稿、******** 範例。請找幫手接續寫python program。 本身這script已能開ticket,但還要做到: 1. 能辨別subject [I4](這是英文小寫「I」) 2. ⁠能辨別email content裡的fields 和 內容就要再改量   3. import imaplib from email.header import decode_header from email.parser import BytesParser from jira import JIRA import requests import html2text requests.packages.urllib3.disable_warnings() # IMAP settings IMAP_SERVER = '<exchange.server>' USERNAME = '<AD>' PASSWORD = '<Password>' # Jira settings JIRA_URL = '<https://tool-dev.home/jira>' JIRA_USERNAME = '<AD>' JIRA_PASSWORD = '<Password>' JIRA_PROJECT_KEY = 'I4' options = { 'server': JIRA_URL, 'verify': False # Disable certificate verification } # Mailbox paths INBOX_PATH = 'inbox/test/ingest' COMPLETED_PATH = 'inbox/test/completed' # Connect to IMAP server print('Connecting to IMAP server...') imap_server = imaplib.IMAP4_SSL(IMAP_SERVER) imap_server.login(USERNAME, PASSWORD) print('Connected to IMAP server.') # Select the mailbox to monitor print(f'Selecting mailbox: {INBOX_PATH}') imap_server.select(INBOX_PATH) print(f'Selected mailbox: {INBOX_PATH}') # Connect to Jira using the API URL print('Connecting to Jira...') jira = JIRA(options, basic_auth=(JIRA_USERNAME, JIRA_PASSWORD)) print('Connected to Jira.') def create_jira_ticket(summary, description): issue_dict = { 'project': {'key': JIRA_PROJECT_KEY}, # Replace with the actual project key 'summary': summary, 'description': description, 'issuetype': {'name': 'Task'} } new_issue = jira.create_issue(fields=issue_dict) print(f'Jira ticket created: {new_issue.key}') # Function to convert HTML to plaintext def html_to_plaintext(html_content): h = html2text.HTML2Text() h.ignore_links = True h.ignore_images = True h.ignore_emphasis = True return h.handle(html_content) # Search for all emails in the mailbox print('Searching for emails...') status, messages = imap_server.search(None, 'ALL') if status == 'OK': print(f'Found {len(messages[0].split())} email(s).') for num in messages[0].split(): _, msg_data = imap_server.fetch(num, '(RFC822)') for response_part in msg_data: if isinstance(response_part, tuple): msg = BytesParser().parsebytes(response_part[1]) # Parse email headers headers = decode_header(msg['Subject']) subject = None for header in headers: decoded_header = header[0] if header[1]: charset = header[1] # Decode the subject using the specified charset decoded_header = decoded_header.decode(charset) subject = decoded_header # Parse email body if needed body = None for part in msg.walk(): content_type = part.get_content_type() if content_type == "text/plain": body = part.get_payload(decode=True).decode('utf-8') break # Exit the loop after finding the plain text part elif content_type == "text/html": html_body = part.get_payload(decode=True).decode('utf-8') body = html_to_plaintext(html_body) break # Exit the loop after converting HTML to plaintext # Create Jira ticket print('Processing email...') create_jira_ticket(subject, str(body)) # Move the email to the completed mailbox print(f'Moving email to {COMPLETED_PATH}...') imap_server.copy(num, COMPLETED_PATH) imap_server.store(num, '+FLAGS', '\\Deleted') print('Email moved to the completed mailbox.') # Permanently remove deleted emails and logout from IMAP server print('Cleaning up...') imap_server.expunge() imap_server.logout() print('Cleanup completed.') print('Done.')  
軟體開發
Phone
楊〇超
南投縣 埔里鎮
顧客預算:沒有預算概念
RD 工作
web 接案
Programmer 工作
1. 不清楚,聽從專家的建議   2. 只有想法   3. 兩者兼具   4. 聽從專家的建議   5. 沒有  
描述: 1. 製作像WhatsApp的通訊軟體   2. 希望能製作公司自己內部使用的通訊軟體,需要有視訊通話、擴音、傳訊息、上傳、下載資料、下載的資料能轉傳到手機內其它App,對話聊天的內容需要有搜尋相關文字的功能,手機端需要有 ********id、i os、之後也希望能用在電腦端。 安裝apk檔後,使用時需要登入帳號、密碼,這個通訊軟體加入其他聯絡人的方式,可以連結手機內通訊錄的電話號碼自動搜尋(類似WhatsApp的加入方式)。  
免費取得報價