Popularity
0.3
Stable
Activity
0.0
Stable
1
1
0
Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
edgarex alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view edgarex alternatives based on common mentions on social networks and blogs.
-
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of edgarex or a related project?
README
Edgarex
Fetching an index
alias Edgarex.Fetcher
#get the first 50 records in `crawler.idx` for 2014, quarter 4.
#note that this is a stream, and will only download the chunks
#from the ftp server that you need. As a result, Enum.take(stream, 50)
#will complete much faster than Enum.into([]), which will exhaust the stream
some_items = Fetcher.crawler(2014, 4) |> Enum.take(50)
#An item in `some_items` might look like
%{
cik: "1623034",
company_name: "101 Sheridan Apartments, LLC",
date_filed: "2014-10-30",
form_type: "D",
url: "http://www.sec.gov/Archives/edgar/data/1623034/0001623034-14-000001-index.htm"
}
#similarly, you can get other indexes, which look similar
#get the `form.idx` for 2014, quarter 4
Fetcher.form(2014, 4)
#get the `xbrl.idx` for 2014, quarter 4
Fetcher.xbrl(2014, 4)
#get the `master.idx` for 2014, quarter 4
Fetcher.master(2014, 4)