久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

如何將 CSV 文件直接發(fā)送到 FTP 服務器

How to send CSV file directly to an FTP server(如何將 CSV 文件直接發(fā)送到 FTP 服務器)
本文介紹了如何將 CSV 文件直接發(fā)送到 FTP 服務器的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我的問題是如何將 CSV 文件發(fā)送到 FTP 服務器.如您所見,以下腳本是我當前的代碼:

My question is How can I send a CSV file to an FTP server. As you can see, the following script is the current code of mine:

代碼示例:

def download_outage_info_all(request):

    upload_data = download_data_form(request.POST)
    if upload_data.is_valid():
        print("valid")
        start = upload_data.cleaned_data['start_date_time']

        end = upload_data.cleaned_data['end_date_time']
        print(start, '-', end)

        start_timestamp = datetime.strptime(
            start, '%Y-%m-%d %H:%M')
        end_timestamp = datetime.strptime(
            end, '%Y-%m-%d %H:%M')

    try:
        info = planned_outages.objects.filter(
            start_timestamp__gte=start_timestamp, end_timestamp__lte=end_timestamp).values()
    except Exception as e:
        print("EXCEPTION", e)
        print("**** Data not found *** ")

    filename_date_part = datetime.now().strftime("%Y%m%d%H%M")

    response = HttpResponse(content_type='text/csv')

    response['Content-Disposition'] = 'attachment;filename=m_availability_' + 
                                      filename_date_part + '.csv'
    writer = csv.writer(response, delimiter=';')

    writer.writerow(['starts YYYY-mm-dd HH:MM:SS', 'time_zone',
                     'ends YYYY-mm-dd HH:MM:SS', 'asset id', 'availability type', 'PowerKW'])

    for x in info:

        try:
            unit_mw = unit_details.objects.get(
                unit_id=x['unit_id_id'])


            # prints to csv file
            writer.writerow([x['start_timestamp'], 'UTC',
                             x['end_timestamp'], unit_mw.unit_name,x['availability_type'], x['capacity_kw']])

        except Exception as e:
            print("EXCEPTION", e)
            print("**** Data not found for unit_mw*** ")

    return response

這是一個 Django 視圖,我不想將 CSV 保存在本地系統(tǒng)上,我只想將其直接發(fā)送到 FTP 服務器.誰能幫幫我?

This is a Django view, I don't want to save the CSV on my local system, I just want to directly send it to an FTP server. Can anyone help me?

推薦答案

將 CSV 文件寫入內(nèi)存中類似文件的對象(例如 BytesIO) 并上傳:

Write the CSV file to an in-memory file-like object (e.g. BytesIO) and upload that:

from ftplib import FTP
from io import BytesIO
import csv

flo = BytesIO() 
writer = csv.writer(flo, delimiter=';')

writer.writerow(...)

ftp = FTP('ftp.example.com')
ftp.login('username', 'password')

flo.seek(0)
ftp.storbinary('STOR test.csv', flo)

這篇關(guān)于如何將 CSV 文件直接發(fā)送到 FTP 服務器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

相關(guān)文檔推薦

Why I cannot make an insert to Python list?(為什么我不能插入 Python 列表?)
Insert a column at the beginning (leftmost end) of a DataFrame(在 DataFrame 的開頭(最左端)插入一列)
Python psycopg2 not inserting into postgresql table(Python psycopg2 沒有插入到 postgresql 表中)
list extend() to index, inserting list elements not only to the end(list extend() 索引,不僅將列表元素插入到末尾)
How to add element in Python to the end of list using list.insert?(如何使用 list.insert 將 Python 中的元素添加到列表末尾?)
TypeError: #39;float#39; object is not subscriptable(TypeError:“浮動對象不可下標)
主站蜘蛛池模板: 欧美1区2区 | 日本小视频网站 | 亚洲精品无人区 | 成人av在线播放 | 激情一区二区三区 | 亚洲成人av| 在线啊v | 中日韩毛片 | 亚洲激情一区二区三区 | 国产午夜精品久久久 | 亚洲福利精品 | 99精品免费 | 国产高清视频在线观看 | 日韩免费在线视频 | 国内精品视频在线观看 | 一区二区三区国产 | 国产日韩一区二区三区 | 午夜视频一区二区三区 | 精品国产乱码久久久久久丨区2区 | 激情欧美一区二区三区中文字幕 | 久色视频在线 | 中文字幕视频免费 | 亚洲国产精品久久久久久 | 国产精品一区一区 | 日韩有码一区 | 91亚洲精品国偷拍自产在线观看 | 伊人激情综合网 | 精品99在线 | 国产亚洲成av人在线观看导航 | 国产一区2区 | 精品一区二区在线视频 | 久久婷婷av | 中国一级大毛片 | 夜夜爽99久久国产综合精品女不卡 | 国产成人99久久亚洲综合精品 | 91国产视频在线观看 | 国产精品一区二区在线观看 | 亚洲精品视频在线 | 国产一区二区精品在线观看 | 国产色视频网站 | 国产精品一区二区久久久久 |