giovedì 27 agosto 2026

Aziende che potrebbero fallire (dopo aver raccolto fondi su Ener2crowd) e loro amministratrici

 

142.566  di finanziamento  

Carla Fiorillo proprietaria di Group Rinascente S.r.l. nata a Napoli il  22/07/1982 e codice fiscale FRLCRL82L62F839J, non ha restituito la prima rata di un finanziamento tramite crowdfunding

https://www.ener2crowd.com/it/progetti/dettaglio/480-macchinarinbspelettrici-industriali

Secondo Ener2crowd, Group Rinascente S.r.l. si configura come una realtà consolidata e affidabile . Eppure tutti i soldi raccolti da  Ener2crowd probabilmente non verranno mai restituiti, se tutto andrò come i tanti altri progetti (una decina? una quindicina? di più? per alcuni milioni di euro) per i quali i soldi investiti in Ener2crowd sono andati persi, salvo improbabili recuperi tramite azioni giudiziarie.

Group Rinascente S.r.l. 
Informazioni Principali
  • Indirizzo: Via Carlo Casalegno 7, 81031 Aversa (CE)
  • Data di fondazione: 17 febbraio 2009
  • Partita IVA / Codice Fiscale: 03504720610
  • PEC: grouprinascente.srl@namirialpec.it [1, 2, 3]

 https://www.ufficiocamerale.it/7729/group-rinascente-srl?srsltid=AfmBOoq8xsMph38XSnNp6M5fszadDnaTKWA3qzaEjxUusNJPlhEYYS-c

 

giovedì 4 gennaio 2024

Python imports for beginner - import errors

 

you can find the code in

https://github.com/andrea-ferraresi/pythonE2EtestingOfRestAPI

 

 

 Visual Studio Code IDE error - this error doesn't have an impact when you execute the tests




Import "rest_client_initialization_and_actions" could not be resolved Pylance reportMissingImports

 

This error is just an IDE error, namely Visual Studio Code cannot find the custom module (in the same folder as the current file I'm developing). To solve it, as it is said in the quick fixes, it is necessary to add to the python.autoComplete.extraPaths setting the path-to-the-module

 

How to fix it

  • If you are importing a module, make sure it exists in your workspace or in a location that is included in the python.autoComplete.extraPaths setting.

https://code.visualstudio.com/docs/python/editing#_importresolvefailure

 

 Execution error

 


 

 response = rest_client_initialization_and_actions.test_getPetsWhichAre("sold")
E       AttributeError: module 'rest_client_initialization_and_actions' has no attribute 'test_getPetsWhichAre'

 

This error is caused by the fact that the imported module defines a class and some functions inside the class, so to actually reference the imported function, the code needs to reference

module.className.function