-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(databases): create CACHE structure to ftp Directories & add CNES…
… database (#152) * chore(Databases): explicity require load() content on Databases * Finish CNES * remove lru_cache; returning [] when it should return content * Include download and async download methods on Databases * test * return the database when loading * Update SINAN Notebook * Update SIM Notebook * Improving Directory class * Rebase * fix poetry lock * add tomli * Recursive Directory instantiation * Refining Dirs CACHE and navigation * Minor changes * Remove requirements.txt * Move databases to their own modules, reducing the initial load time * Poetry lock * fix(docs): remove unecessary steps to build notebooks container * fix(databases): fix CNES.get_files and make Database.__content__ a dictionary * fix(Directory): fix wrong __content__ ref on directory loading * fix(File): fix File __info__ & info properties * fix(ftp): closing all possible opened ftp connections * docs(dbs): move CNES & SIM notebooks to databases docs * fix(sphinx): sphinx needs nbsphinx to be installed by conda * fix(ftp): loading directories when loading dbs * docs(dbs): move SINAN notebook to databases docs * docs(dbs): move SINASC notebook to databases docs * docs(dbs): Include Databases on sphinx index * fix(online_data): fix references on online_data for databases usage * fix(Directory): remove unnecessary root loading * docs(dbs): create SIA notebook on databases docs & minor changes * docs(dbs): create SIH notebook on databases docs & rerun database notebooks * docs(all): comment broken notebooks to fix in next PR, move documentation to a better structure * fix(dockerfile): fix notebooks paths on container
- Loading branch information
Showing
63 changed files
with
5,696 additions
and
10,548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
name: env-pysus | ||
name: pysus | ||
channels: | ||
- conda-forge | ||
- nodefaults | ||
dependencies: | ||
- python >= 3.11 | ||
- cffi | ||
- docker-compose | ||
- gcc | ||
- make | ||
- nbsphinx | ||
- pip | ||
- psycopg2 | ||
- python 3.9.* | ||
- poetry >= 1.3.2 | ||
- pip: | ||
- urllib3 ==1.26.15 | ||
- requests | ||
- pandas | ||
- sqlalchemy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
poetry config virtualenvs.create false | ||
poetry install --all-extras --with docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nbsphinx | ||
sphinx | ||
sphinx |
Oops, something went wrong.