I would like to build a REST API using a NoSQL backend with a Python based open source framework to build the API. This API would run in a cloud environment and the goal is for it to be cloud agnostic and have the ability to be deployed anywhere. It must have some abstraction for the backend database technology. I
Tag: architecture
Wrapper to Objects
This is a software design question. I have a folder like this: Each of the countries has its own calendar, like so: What I want is a wrapper to all of these countries’ calendars. In short, something like I don’t want to hard code this. I just want to load all the calendars from the calendar folder into some wrapper.
Python – instance attribute defined outside __init__()
I get the warning in question for the following code: How should I fix this? I tried to move everything to init but then I had some errors for passing the arguments in the line I was creating the Autocompelete object. So please provide me with all the changes I have to make. not just smth like you have to