how to get all the Currency names which yahoo Finance Currency Converter Supports - yahoo

How can i get all the Currency names or codes which Yahoo finance currency converter supports. i tried using the yahoo Query Language(YQL) with different Select statements but i didnt get.
is there any Yahoo query or is there any other way to get these currency names ? can anyone help me? Thanks in advance.

I have used this API before to get currency names and codes. Hope it serves your use case.

Related

How to GET Employee Absences data from HCM Fusion by sending two dates in REST API query parameter

I would like to GET employee last 2 months and future 2 months absences data.
REST API: https://host:port/hcmRestApi/resources/11.13.18.05/absences
https://host:port/hcmRestApi/resources/11.13.18.05/absences?q=startDate between '2018-09-22' and '2018-09-25'
https://host:port/hcmRestApi/resources/11.13.18.05/absences?q=startDate>2018-09-22;startDate<2018-09-25
Tried different options but no luck. Please advise!
Thank you!
This REST API helped me to GET Employee Absence data using two dates.
https://xxxxxxx.oraclecloud.com:443/hcmRestApi/resources/11.13.18.05/absences?finder=findByAbsStartAndEndDate;startDate=2021-04-01,endDate=2021-04-30&orderBy=personId:asc
for more details please refer to the link
https://docs.oracle.com/en/cloud/saas/human-resources/21b/farws/op-absences-get.html
Thank you!

Where to find all possibilities to address_components types?

I need to deal with all that comes from Google Places API and save in a MySQL database.
With that purpose, I need to know all address components types because they will be column in my address table, but after look at documentation and tried to google it, I didn't find a thing.
Is there this information somewhere?
In Documentation example there are those types:
floor
street_number
route
locality
political
administrative_area_level_2
administrative_area_level_1
country
postal_code
But when I request the API with other address, those types change. Example:
postal_code
route
political
sublocality
sublocality_level_1
administrative_area_level_2
administrative_area_level_1
country
I found it, it was at intro, not in Google Place Search or Google Place Detail section:
https://developers.google.com/maps/documentation/geocoding/intro#Types
Looks like this was moved again:
https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types

How implement join queries in parse.com javascript?

I am new on parse server ( parse.com ). I have two classes "students_records" and "students_fee". I am storing fee records in class "students_fee" with objectId of "students_records" in column "student_id". Now I want to collect records from both classes by one query similar to join query we do in mysql with base on column 'fee_year' in class "students_fee". for example get all students who have 'fee_year'=2016 and 'student_id'=objectId of "students_records", this is link https://parseplatform.github.io/docs/js/guide/ of guide I am currently getting help, but i can't find such thing. Can anyone tell me how to do that?
Thanks.
Since parse use MongoDB (NoSQL) behind the scenes there is no real "join". What you can do is to create a array relationship from students to records and then use include in your query in order to include all the records under a student.
You can read more about it here.
I recommend you to use Parse SDK's here in order to keep it simple.
the Parse SDK is available for all the popular programming languages (e.g. iOS, Android, PHP, JavaScript and more)

Downloading data from Yahoo

I have been downloading stock information from Yahoo using this method:
http://finance.yahoo.com/d/quotes.csv?s= (enter stocks here) &f= (add tags depending on what info I need)
This provides me with a csv file with the requested information.
What I want to do is download only the information that satisfies a certain requirement. For example I want to only download data on stocks that are worth more than $100 per share, or stocks that have lost %10 of value during a day.
Much appreciated if someone could tell me how to do this or even if there is a better method than what I am doing.
Thanks a lot
can you try to use the YQL console. See example below.
http://developer.yahoo.com/yql/console/?q=select%20%20from%20internet&env=store://datatables.org/alltableswithkeys#h=select++from+yahoo.finance.historicaldata+where+symbol+in+(%22MSFT%22)+and+startDate+%3D+%222012-09-13%22+and+endDate+%3D+%222012-09-16%22%0A
Further there you have other table you can use to receive information. See yahoo.finance Tables.

Finding product name from UPC/EAN

Is there any way to get the product name from UPC/EAN barcode scanned from Google API?
There is no general registry of UPC product codes. You can find a list of the country codes at the beginning of the number easily, and with some legwork possibly get the national organization for a few countries that you're particularly interested in to give you a list of their secondary allocations.
But in order to get all the way down to "Banana chips, bag of 200 g, reduced trans fat formulation, Danish/Swedish/Finnish text on packaging" there's only the particular manufacturer to ask. That, or own a supermarket and register the UPC numbers of new items when you start stocking them.
Allegedly the gtin field holds the UPC/EAN code, if you restrict the search to values in that field you should only get responses where the gtin matches your barcode.
For example if you scanned your barcode and got an EAN-8 code of 05001234 then in the query string of your API call you could set
https://www.google.com/search&q=05001234&restrictBy=gtin=05001234
I have often seen multiple products returned for a single code so I guess the UPC/EAN are not globally unique or some providers have not been uploading their products under the right code.
In the response from Google are fields which hold the product title and description, you just need to parse the JSON or ATOM response.
I found another API https://market.mashape.com/mignify/gtin2product. It's pretty good. You can get products information from UPC/EAN/GTIN. It can return products description in different language.
You can use Rapid API https://rapidapi.com/search/ean. Here you get lot of API like Amazon API, Google Shopping, Barcode Lookup

Resources