Index finger pointing up icon

From: Poland

Location: Jaworzno, PL

On Useme since 11 January 2023

Business bag icon

Deals 2

SUCCESSFUL: 2

DISPUTED: 0

FAILED: 0

About me

Nazywam się Dawid Mateusiak i od kilku lat zajmuję się zawodowo programowaniem serwisów webowych w Pythonie i Django. Poza web developmentem mam również doświadczenie w pisaniu web scrapperów oraz skryptów automatyzujących. W freelancingu stawiam pierwsze kroki, natomiast myślę że dotychczas zdobyte umiejętności pozwolą mi na sukcesywne wykonywanie zleconych mi projektów. Serdecznie zapraszam do kontaktu.

CV / Résumé

Aug 2021 - Now

Junior Python / Django Developer

media-press.tv S.A.

- Projektowanie i programowanie rozwiązań dla systemu finansowego, - Współpraca z działami finansowymi oraz kierownictwem przy określaniu wymaganych funkcjonalności w systemie, - Utrzymanie aplikacji i rozwiązywanie problemów technicznych

Completed offers 2

  • The problem to be solved is as follows: - each user gets access to his directory with PDF materials - under a unique link he has his files digitally tagged (in the cloud) - every month it is necessary to update some files from his directory - for example, those to which new tasks / descriptions have been added - currently these updates are implemented by generating files for the user using a script created in Golang, and then manually uploaded to the appropriate directories for the user to access them. - since we support users for at least 365 days, this means that sometimes you have to manually go back 12 months to upload the right files to the user - you know exactly what to upload to the user, because we have a directory structure according to the pattern : YYMM/RRMMRR_TAG First Name Surname, (TAG - always 3 characters) so, for example, John Smith, who received materials with the tag MPW 12.09.2022 will be in the directory of the month 2209 and the full path to his directory is 2209/220912_MPW John Smith - when it is required to upload new/new files for this user digitally tagged files are created for this user in the directory with the structure: (today's date)YYMMDD_TAG First Name Last Name -> for the above example it would be 230218_MPW Jan Kowalski
  • Na wejsciu jest JSON (przyklad w zalaczniku) - jest to odpowiedz z Baselinkera (metoda getOrders, parmater status_id). JSON zawiera pare zamowien wraz z produktami. Na wyjsciu chcialbym dostac pythonowa liste zawierajaca pare kolumn: order_id, product_sku, product_name, product_attribute (kazdy produkt jako osobny element listy). Lista ma byc pososrtowana wg pary SKU i product attribute (liczba najwiekszych wystapien na gorze listy) JSONa pobieramy uzywajac np request i json: import requests import json parametry={"status_id": 53949} parameters = json.dumps(parametry) requests_data = { 'token': 'token_key, 'method': 'getOrders', 'parameters': parameters } host='https://api.baselinker.com/connector.php' response = requests.post(host, data=requests_data) print(response.content)