Giter Club home page Giter Club logo

Comments (3)

asarubbo avatar asarubbo commented on May 28, 2024 1

Hi, I'm not a python developer so I didn't know python dict :)

Thanks, it works like a charm!

from huawei-lte-api.

Salamek avatar Salamek commented on May 28, 2024

@asarubbo plot twist: that is NOT JSON!

It is print of Python dict, you are basically doing this:

python_dict  = {
    'a': None,
    'b': 'lol'
}

print(python_dict)

{'a': None, 'b': 'lol'}

And that is expected...
if you want JSON on stdout you must do this (convert python dict into JSON string):

import json
python_dict  = {
    'a': None,
    'b': 'lol'
}

print(json.dumps(python_dict))

{"a": null, "b": "lol"}

So in your example code:

#!/usr/bin/python3.8

from huawei_lte_api.Client import Client
from huawei_lte_api.AuthorizedConnection import AuthorizedConnection
import sys
import json

connection = AuthorizedConnection('http://admin:[email protected]/')
client = Client(connection)

print(json.dumps(client.sms.get_sms_list()))

client.user.logout()

from huawei-lte-api.

Salamek avatar Salamek commented on May 28, 2024

Well i think this is solved... closing

from huawei-lte-api.

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.