Popularity
0.5
Declining
Activity
0.0
Stable
2
2
0
Monthly Downloads: 30
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.
-
ethereumex
Elixir JSON-RPC client for the Ethereum blockchain 0x063D3d782598744AF1252eBEaf3aA97D990Edf72 -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
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
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

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)