Skip to content

Commit 7e8dbd5

Browse files
author
Prakhar Bansal
committed
Added RST File for Py-Magento. Also in the last commit, I had changed the relative imports to acutal imports.... eg, [from .api import] is chaged to [from magento.api import]
1 parent f4086e2 commit 7e8dbd5

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed

doc/pymag.rst

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
Magento API
2+
***********
3+
4+
Magento Module
5+
--------------
6+
7+
.. automodule:: magento
8+
9+
API
10+
---
11+
12+
.. automodule:: api
13+
14+
.. autoclass:: API
15+
16+
.. automethod:: __init__
17+
.. automethod:: connect
18+
.. automethod:: __enter__
19+
.. automethod:: __exit__
20+
.. automethod:: call
21+
.. automethod:: multiCall
22+
23+
Catalog
24+
-------
25+
26+
.. automodule:: catalog
27+
28+
.. autoclass:: Category
29+
30+
.. automethod:: currentStore
31+
.. automethod:: tree
32+
.. automethod:: level
33+
.. automethod:: info
34+
.. automethod:: create
35+
.. automethod:: update
36+
.. automethod:: move
37+
.. automethod:: delete
38+
.. automethod:: assignedproducts
39+
.. automethod:: assignproduct
40+
.. automethod:: updateproduct
41+
.. automethod:: removeproduct
42+
43+
44+
.. autoclass:: CategoryAttribute
45+
46+
.. automethod:: currentStore
47+
.. automethod:: options
48+
.. automethod:: list
49+
50+
51+
52+
.. autoclass:: Product
53+
54+
.. automethod:: currentStore
55+
.. automethod:: list
56+
.. automethod:: info
57+
.. automethod:: create
58+
.. automethod:: update
59+
.. automethod:: setSpecialPrice
60+
.. automethod:: getSpecialPrice
61+
.. automethod:: delete
62+
63+
.. autoclass:: ProductAttribute
64+
65+
.. autoclass:: ProductAttributeSet
66+
67+
.. autoclass:: ProductTypes
68+
69+
.. autoclass:: ProductImages
70+
71+
.. autoclass:: ProductTierPrice
72+
73+
.. autoclass:: ProductLinks
74+
75+
.. autoclass:: Inventory
76+
77+
Customer
78+
--------
79+
80+
.. automodule:: customer
81+
82+
.. autoclass:: Customer
83+
84+
.. automethod:: list
85+
.. automethod:: create
86+
.. automethod:: info
87+
.. automethod:: update
88+
.. automethod:: delete
89+
90+
.. autoclass:: CustomerGroup
91+
92+
.. automethod:: list
93+
94+
.. autoclass:: CustomerAddress
95+
96+
.. automethod:: list
97+
.. automethod:: create
98+
.. automethod:: info
99+
.. automethod:: update
100+
.. automethod:: delete
101+
102+
Directory
103+
---------
104+
105+
.. automodule:: directory
106+
107+
.. autoclass:: Country
108+
109+
.. automethod:: list
110+
111+
.. autoclass:: Region
112+
113+
.. automethod:: list
114+
115+
Utils
116+
-----
117+
118+
.. automodule:: utils
119+
120+
.. autofunction:: expand_url
121+
122+
.. automodule:: custom_api

0 commit comments

Comments
 (0)