Open guibranco opened 1 year ago
Hello @guibranco, you have reached your request limit of 5, your cycle will refresh on 2024-08-21 10:07:38. Consider subscribing if you want more requests. If you have any questions or concerns, please contact us at info@gitauto.ai.
Hey, I'm a bit lost here! Not sure which file I should be fixing. Could you give me a bit more to go on? Maybe add some details to the issue or drop a comment with some extra hints? Thanks!
Have feedback or need help? Feel free to email info@gitauto.ai.
Is your feature request related to a problem? Please describe. Grab information (TCB, SR, TC, City, State, Agencies, Service Stations) from IF.Data
Describe the solution you'd like Extract data from IF.Data
Swagger Docs
Add data from SFA - Open Finance
Documenation of the file format.
Contributing
Here is a step-by-step on how to add a new source of data to the merge tool:
Constants.cs
file.Source.cs
file. Please use the source system acronyms whenever possible.Reader.cs
called Load[NewSystemAcronym]. This should do all the heavy job of grabbing the information from the remote source.Patterns.cs
file if you need to use RegExp to extract data.Bank.cs
file.Seeder.cs
file, implement the method Merge[NewSystemAcronym] to merge the new data with the existing ones. I prefer to filter the data by ISPB and then Document to check for existing data. Rely on the existing list, DO NOT ADD new bank to the list if it is not present with COMPE, ISPB, Document, and Name at least. These are mandatory fields, if you have all this information, and you did not find the bank on the existing list, feel free to add it to the list. (Let me know this in the PR comment).AcquireData
method inside theProgram.cs
file.Writer.cs
file, edit the following methods, mapping the new field(s):SaveCsv
SaveMarkdown
SaveSql
Testing