Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/csinva/pyfim-clone
Clone of pyfim making it installable as a dependency. Copied from http://www.borgelt.net/pyfim.html
https://github.com/csinva/pyfim-clone
Last synced: 16 days ago
JSON representation
Clone of pyfim making it installable as a dependency. Copied from http://www.borgelt.net/pyfim.html
- Host: GitHub
- URL: https://github.com/csinva/pyfim-clone
- Owner: csinva
- Created: 2019-07-18T12:10:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-12T23:39:34.000Z (about 4 years ago)
- Last Synced: 2024-10-07T13:41:38.834Z (about 1 month ago)
- Language: C
- Size: 2.08 MB
- Stars: 3
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# pyfim clone
Clone of pyfim making it installable as a dependency. Copied from http://www.borgelt.net/pyfim.html - I did not write any of this code.
# installation
`pip install git+https://github.com/csinva/pyfim-clone`Now we can import pyfim (from python):
`from fim import fpgrowth`
# include in your project
If you would like to include pyfim as a dependency for your project, simply add this to your `setup.py` file:
```python
setup(
...
install_requires=[
'fim @ git+https://github.com/csinva/pyfim-clone',
],
...
)
```Alternatively, you can add it via these lines:
```python
setup(
...
install_requires=[
'fim',
],
dependency_links=[
'https://github.com/csinva/pyfim-clone/tarball/master#egg=fim-6.28'
],
...
)
```