Coder Social home page Coder Social logo

python-netsuite's Introduction

Python Netsuite

Netsuite Python Toolkit for SuiteTalk SOAP API.

Installation

pip3 install git+git://github.com/fmalina/python-netsuite.git#egg=python-netsuite

Example usage

Copy ns_config.py.txt into ns_config.py and update with your credentials.

from netsuite.client import client
from netsuite.api.customer import get_customer

# print names of first 100 customers
for internal_id in range(100):
    customer = get_customer(internal_id)
    if customer:
        print(customer.firstName, customer.lastName)

NetSuite Documentation

Development

  • Get Netsuite WSDL export to look at
mkdir archive
python3 -mzeep https://webservices.sandbox.netsuite.com/wsdl/v2016_1_0/netsuite.wsdl > archive/wsdl.txt
# improve formatting
sed -i -e 's/, /, \n          /g' archive/wsdl.txt
less archive/wsdl.txt
  • Add Netsuite models you need to work with based on WSDL to netsuite/service.py.
  • Add functions to get, create, lookup... these model instances to netsuite/api/[model].py.
  • Add tests to tests.py. Run tests using ./tests.py

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.