GithubHelp home page GithubHelp logo

Comments (1)

pdxmele avatar pdxmele commented on September 26, 2024

Hi there, thanks for the report! However, the way we suggest you upload a list in our docs works fine for me. Can you not use that method for some reason? Doc is here, and example below: https://docs.urbanairship.com/reference/libraries/python/3.0.0/static_lists.html

Create list:

import urbanairship as ua
airship = ua.Airship(app_key, master_secret)
static_list = ua.devices.StaticList(airship, 'list_name')
static_list.description = 'description'
static_list.create()

RESPONSE: {u'ok': True}

Next, actually upload things into the list...

static_list = ua.devices.StaticList(airship, 'list_name')
csv_file = open('/path/to/list/list_name.csv', 'rb')
resp = static_list.upload(csv_file)
csv_file.close()
print resp

RESPONSE: {u'ok': True}

I also tried to reproduce what you did for this second part, but this works fine for me as well:

static_list = ua.devices.StaticList(airship, 'list_name')
with open('/path/to/list/list_name.csv', 'rb') as csv_file:
     resp = static_list.upload(csv_file)

print resp

RESPONSE: {u'ok': True}

from python-library.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.