You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
#pip3 list |grep bitrix24
bitrix24-python-sdk (1.0.1)
#python3
Python 3.5.2 (default, Oct 1 2016, 13:12:23)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.38)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from bitrix24 import Bitrix24
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name 'Bitrix24'
>>>
also if you'll try
python 3.5.2 (default, Oct 1 2016, 13:12:23)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.38)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from bitrix24 import bitrix24
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.5/site-packages/bitrix24/bitrix24.py", line 9, in <module>
from multidimensional_urlencode import urlencode
File "/usr/local/lib/python3.5/site-packages/multidimensional_urlencode/__init__.py", line 1, in <module>
from urlencoder import urlencode # noqa
ImportError: No module named 'urlencoder'
multidimensional_urlencode is not yet python3 compatible. Is it necessary to form url parameters string? Because I see that B24 can get parameters inside POST body:
>>> from bitrix24 import bitrix24 Traceback (most recent call last): File "<stdin>", line 1, in <module> File "d:\OneDrive\WORC\Python\bitrix24\.env\lib\site-packages\bitrix24\bitrix24.py", line 9, in <module> from multidimensional_urlencode import urlencode File "d:\OneDrive\WORC\Python\bitrix24\.env\lib\site-packages\multidimensional_urlencode\__init__.py", line 1, in <module> from urlencoder import urlencode # noqa ModuleNotFoundError: No module named 'urlencoder'
Hi, great initiative!
But it seems not working on fresh python:
also if you'll try
multidimensional_urlencode is not yet python3 compatible. Is it necessary to form url parameters string? Because I see that B24 can get parameters inside POST body:
The text was updated successfully, but these errors were encountered: