amochka 0.3.4__py3-none-any.whl → 0.3.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amochka
3
- Version: 0.3.4
3
+ Version: 0.3.5
4
4
  Summary: Python library for working with amoCRM API with ETL capabilities
5
5
  Author-email: Timur <timurdt@gmail.com>
6
6
  License: MIT
@@ -3,12 +3,12 @@ amochka/client.py,sha256=6QMOem31Zs7Ks6CeEQYZ8VWrB1bM47NnxV103a8jDg8,70972
3
3
  amochka/etl.py,sha256=N8rXNFbtmlKfsYpgr7HDcP4enoj63XQPWuTDxGuMhw4,8901
4
4
  etl/__init__.py,sha256=bp9fPqbKlOc7xzs27diHEvysy1FgBrwlpX6GnR6GL9U,255
5
5
  etl/config.py,sha256=BvaGn5BSGMIfvUNNsnap04iy3BHyMOuRX81G7EiLUfE,9032
6
- etl/extractors.py,sha256=No8E581CSNNF0VBhWiUdoO8scfeHTRYRCHu41wzzdWY,13033
6
+ etl/extractors.py,sha256=PqjzlmUa8FLZa1z85mP6Y0-s_TH3REqW58632JzRKUc,13047
7
7
  etl/loaders.py,sha256=x8PcDQoq2kjbd52H2VzKKz5vHzyD6DXSsb9X0foPX_U,31941
8
8
  etl/run_etl.py,sha256=LxKQLE_yUPkg7kaFmmMxrdggz27puS1VdV9NTna9e4Q,26665
9
9
  etl/transformers.py,sha256=OwYJ_9l3oqvy2Y3-umXjAGweOIqlfRI0iSiCFPrcQ8E,17867
10
10
  etl/migrations/001_create_tables.sql,sha256=YrSaZjpofC1smjYx0bM4eHQumboruIBY3fwRDlJLLSo,15749
11
- amochka-0.3.4.dist-info/METADATA,sha256=-62tXM6dK80u1U3NJqh_jAmGPzlRoOc1oTtdbkyUVj0,7530
12
- amochka-0.3.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- amochka-0.3.4.dist-info/top_level.txt,sha256=grRX8aLFG-yYKPsAqCD6sUBmdLSQeOMHsc9Dl6S7Lzo,12
14
- amochka-0.3.4.dist-info/RECORD,,
11
+ amochka-0.3.5.dist-info/METADATA,sha256=It10dOYYGOkbKzAZmg25wZhPH2Yxgt1Wcm1Jb28wV1U,7530
12
+ amochka-0.3.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ amochka-0.3.5.dist-info/top_level.txt,sha256=grRX8aLFG-yYKPsAqCD6sUBmdLSQeOMHsc9Dl6S7Lzo,12
14
+ amochka-0.3.5.dist-info/RECORD,,
etl/extractors.py CHANGED
@@ -255,8 +255,8 @@ class AmoCRMExtractor:
255
255
  for note in self.client.iter_notes(
256
256
  entity=entity_type,
257
257
  note_type=note_type,
258
- start=updated_from,
259
- end=updated_to,
258
+ updated_from=updated_from,
259
+ updated_to=updated_to,
260
260
  ):
261
261
  count += 1
262
262
  if count % 100 == 0: