Skip to content

This is the Walmart Business API wrapper. You can access all the endpoints in Walmart Business API using it. It is not documented yet. Any sort of contribution is welcomed!!!

License

Notifications You must be signed in to change notification settings

rafsanbillah/Walmart-Wrapper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Walmart Business API wrapper

NOT DOCUMENTED YET & WORK-IN-PROGRESS

Contributions are Welcomed!

Code Samples

from walmart import Walmart
from pprint import pprint

def main():
  walmart = Walmart(
    'de154667-5b40-49b2-a4e8-77f906749127',
    'AOJMTaoR85oHSdmEZGeuAANzcEaaUKi5DP1Q_rCyuAZdYEfIVkAX9yamOUJ8XUCe1wjd-Vc8JBV6yUw3h0sEDg',
  )

  orders = walmart.report.recon_report('06092020')
  with open('./files/recon.zip', 'wb') as f:
    f.write(orders)
  pprint(orders)

  report = walmart.report.get_report('item')
  with open('./files/reports.zip', 'wb') as f:
    f.write(report)

if __name__ == '__main__':
  main()

Methods

help()

About

This is the Walmart Business API wrapper. You can access all the endpoints in Walmart Business API using it. It is not documented yet. Any sort of contribution is welcomed!!!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%